CentOS7 升级 gcc william 收录于 Programming2019-10-22 约 300 字 预计阅读 1 分钟 警告 本文最后更新于 2019-10-22,文中内容可能已过时。 1 2 3 4 5 6 7 8 yum install centos-release-scl -y yum install devtoolset-7 -y scl enable devtoolset-7 bash gcc --version ## 注释: 在centos的devtoolset库中 最新的为 devtoolset-7,所以我们以后可以自己改数字安装最新的版本 ## scl enable devtoolset-7 bash 如果使用的是zsh则使用 ## scl enable devtoolset-7 zsh ## 如果不知道什么是zsh那么默认的就好了 重新做软链接 1 2 3 4 5 6 7 8 9 10 11 12 ln -sf /opt/rh/devtoolset-7/root/usr/bin/gcc /usr/bin/gcc ln -sf /opt/rh/devtoolset-7/root/usr/bin/g++ /usr/bin/g++ gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-7/root/usr/libexec/gcc/x86_64-redhat-linux/7/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/devtoolset-7/root/usr --mandir=/opt/rh/devtoolset-7/root/usr/share/man --infodir=/opt/rh/devtoolset-7/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-plugin --with-linker-hash-style=gnu --enable-initfini-array --with-default-libstdcxx-abi=gcc4-compatible --with-isl=/builddir/build/BUILD/gcc-7.3.1-20180303/obj-x86_64-redhat-linux/isl-install --enable-libmpx --enable-gnu-indirect-function --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux Thread model: posix gcc version 7.3.1 20180303 (Red Hat 7.3.1-5) (GCC) 相关内容 makefile 将所有目录中的源文件编译成独立程序 SublimeGDB: 更好用的轻量级 Debugger CentOS7 安装 Qt5 CentOS7 系统配置 利用frp实现内网穿透 赞赏 支付宝 微信 Please enable JavaScript to view the comments powered by giscus.