RedFlag Linux SP3 升级最新版gcc4.8.1
首先需要准备需要材料:
mpc-1.0.1.tar.gz
mpfr-3.1.2.tar.gz
gmp-5.1.3.tar.gz
分别解压缩
tar zxvf gmp-5.1.3.tar.gz
tar zxvf mpfr-3.1.2.tar.gz
tar zxvf mpc-1.0.1.tar.gz
解压之后, 按照下面步骤安装。
1. 安装gmp:
# ./configure --prefix=/usr
# make
# make check
这一步用来查看有没有文件不匹配或缺失,然后安装:
# make install
2. 安装mpfr
配置:
# /configure --prefix=/usr
# make
# make check
接下来安装:
# make install
3. 安装mpc
配置:
# /configure --prefix=/usr
# make
# make check
接下来安装:
# make install
准备工作完成,以下是gcc的安装与更新。
4. 配置
在我的机器上,我是这样配置的:
$ ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix
--enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-m
ultifile --disable-libmudflap --enable-languages=c,c++,java,fortran --disable-libgcj --with-cpu=generic
(注:/usr/是自定的安装目录)
将GCC安装在/usr/local/gcc4.8目录下。
5. 编译
$ make
6. 安装
# make install
如果你安装到别的目录,就需要建gcc软连接与库文件。
.建立软链接
# ln -s /usr/local/gcc4.8/bin/gcc /usr/bin/gcc
# ln -s /usr/local/gcc4.8/bin/g++ /usr/bin/g++
最后共享库目录加入到共享库配置文件/etc/ld.so.conf中, 如下
/usr/local/gcc4.8/lib
gcc4.8在编译make时会报错,
opt/gcc-4.8.1/host-i686-pc-linux-gnu/gcc/cc1: error while loading shared libraries: libmpc.so.3: cannot open shared object file: No such file or directory
/opt/gcc-4.8.1/host-i686-pc-linux-gnu/gcc/cc1: error while loading shared libraries: libmpc.so.3: cannot open shared object file: No such file or directory
configure:3605: error: in `/opt/gcc-4.8.1/i686-pc-linux-gnu/libgcc':
configure:3608: error: cannot compute suffix of object files: cannot compile
/usr/local/lib/libmpc.so.3,可以找到此文件
1) 如果共享库文件安装到了/lib或/usr/lib目录下, 那么需执行一下ldconfig命令
ldconfig命令的用途, 主要是在默认搜寻目录(/lib和/usr/lib)以及动态库配置文件/etc/ld.so.conf内所列的目录下,
搜索出可共享的动态链接库(格式如lib*.so*), 进而创建出动态装入程序(ld.so)所需的连接和缓存文件.
缓存文件默认为/etc/ld.so.cache, 此文件保存已排好序的动态链接库名字列表.
2) 如果共享库文件安装到了/usr/local/lib(很多开源的共享库都会安装到该目录下)或其它"非/lib或/usr/lib"目录下,
那么在执行ldconfig命令前, 还要把新共享库目录加入到共享库配置文件/etc/ld.so.conf中, 如下:
# cat /etc/ld.so.conf
include ld.so.conf.d/*.conf
# echo "/usr/local/lib" >> /etc/ld.so.conf
# ldconfig
3) 如果共享库文件安装到了其它"非/lib或/usr/lib" 目录下, 但是又不想在/etc/ld.so.conf中加路径(或者是没有权限加路径).
那可以export一个全局变量LD_LIBRARY_PATH, 然后运行程序的时候就会去这个目录中找共享库.
LD_LIBRARY_PATH的意思是告诉loader在哪些目录中可以找到共享库. 可以设置多个搜索目录,
这些目录之间用冒号分隔开. 比如安装了一个mysql到/usr/local/lib/目录下,
其中有一大堆库文件在/usr/local/mysql/lib下面, 则可以在.bashrc或.bash_profile或shell里加入以下语句即可:
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
目录 返回
首页