您的位置:首页 > 运维架构 > Shell

Solaris 10 x86系统下安装gcc过程

2012-04-12 10:08 537 查看
本文转载于  http://www.jb51.net/os/Solaris/1701.html

 

 

 

Solaris 10 x86系统下安装gcc过程

 

来源:互联网 作者:佚名 时间:09-08 19:12:28 【大 中 小】

点评:1.  系统环境准备 a.       由于系统默认的shell使用不太方便,所以将系统shell更改为bash。

 # which bash            usr/bin/bash

# usermod  -s  /usr/bin/ba-

 

1.  系统环境准备

a.       由于系统默认的shell使用不太方便,所以将系统shell更改为bash。

# which bash

           usr/bin/bash

# usermod  -s  /usr/bin/bash   root  

b.       建立系统 .profile文件:

         # cp  /etc/skel/local.profile   /.profile

c.       在.profile文件中添加如下内容

PATH=/usr/bin:/usr/local/bin:/usr/ucb:/etc:/usr/sbin:/usr/bin:/usr/sfw/bin:/usr/ccs/bin:/opt/csw/bin:.

export PATH

export PS1='\u:\w#'

d.       从Solaris 10安装光盘中安装如下工具包

        # pkgadd –d /cdrom/Solaris_10/Product  SUNWwgetr

        # pkgadd –d /cdrom/Solaris_10/Product  SUNWwgetu

        # pkgadd –d /cdrom/Solaris_10/Product  SUNWwgetS

        # pkgadd –d /cdrom/Solaris_10/Product  SUNWgcmn

2.  下载gcc软件

# wget    ftp://ftp.sunfreeware.com/pub/freeware/intel/10/gcc-3.4.6-sol10-x86-local.gz
# wget        ftp://ftp.sunfreeware.com/pub/freeware/intel/10/libiconv-1.11-sol10-x86-local.gz
# wget        ftp://ftp.sunfreeware.com/pub/freeware/intel/10/libgcc-3.4.6-sol10-x86-local.gz
# wget        ftp://ftp.sunfreeware.com/pub/freeware/intel/10/libintl-3.4.0-sol10-x86-local.gz
注:第一个为gcc的应用程序,下面3个为gcc的库文件包

3.  解压和安装

# gunzip  gcc-3.4.6-sol10-x86-local.gz

# gunzip  libiconv-1.11-sol10-x86-local.gz

# gunzip  libgcc-3.4.6-sol10-x86-local.gz

# gunzip  libintl-3.4.0-sol10-x86-local.gz

#pkgadd  -d  gcc-3.4.6-sol10-x86-local

#pkgadd  -d  libiconv-1.11-sol10-x86-local.gz

#pkgadd  -d  libgcc-3.4.6-sol10-x86-local.gz

#pkgadd  -d  libintl-3.4.0-sol10-x86-local.gz

4.  修改 .profile文件

在 .profile文件中增加如下内容

export LD_LIBRAEY_PATH=/usr/local/lib:.

export CC=gcc

详细出处参考:http://www.jb51.net/os/Solaris/1701.html

 

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  gcc solaris x86 bash shell path