GNU安装
操作步骤
- 使用PuTTY工具,以root用户登录服务器。
- 执行以下命令解压GNU安装包。
tar -vxf gcc-9.3.0.tar.xz
- 执行以下命令进入GNU源码目录。
cd gcc-9.3.0
- 执行以下命令进行编译安装。
./configure --disable-multilib --enable-languages="c,c++,fortran" --prefix=/path/to/GNU --disable-static --enable-shared --with-gmp=/path/to/GMP --with-mpfr=/path/to/MPFR --with-mpc=/path/to/MPC make make install
- 执行以下命令加载环境变量。
export PATH=/path/to/GNU/bin:$PATH export LD_LIBRARY_PATH=/path/to/GNU/lib64:$LD_LIBRARY_PATH
父主题: 集群场景环境搭建