按照以下步骤将我gcc
的 Ubuntu 14.04 从 4.8 升级到 6.3(如所述将 GCC 更新到 6.3 版本)
wget https://ftp.gnu.org/gnu/gcc/gcc-6.3.0/gcc-6.3.0.tar.bz2
tar xzvf gcc-6.3.0.tar.bz2
cd gcc-6.3.0
./contrib/download_prerequisites
cd ~
mkdir gcc-build && cd gcc-build
../gcc-6.3.0/configure -v --prefix=$HOME/gcc-6.3.0
make -j16
sudo make install -j16
但我没能看到升级版gcc
的gcc -v
有人能为此提出解决方案吗?
先感谢您。