0 序
- 本文背景:因在centos 7.9 server上安装nodejs21.7.1,编译nodejs时,依赖了gnu17/gcc11。
例如:遇到
Qt requires c++11 support
、-std=gnu++17
例如:编译器不支持c++17,就会提示:g++: error: unrecognized command line option ‘-std=c++17’
例如:编译器不支持c++17,就会提示:g++: error: unrecognized command line option ‘-std=gnu++17’
- 然而,centos 7.9 默认的 gcc版本为 4.8.5。因此,需要升级到 gcc11。这种升级场景,在centos7.9中因为nodejs等重要组件,而变得较为频繁、且重要。故记录之。
- 环境信息
- centos : 7.9.2009
- gcc 原版本 : 4.8.5
- 目标升级版本 : 11
1 基于centos7.9 安装 gcc 4.8.5(默认版本)
- 安装
yum -y update gcc
yum -y install gcc+ gcc-c++
- 查看版本
# g++ --version
g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-44)
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
2 升级步骤 : gcc 4.8.5 -> gcc 11
2.1 升级
- 安装centos-release-scl
如果出现权限问题使用超级用户(sudo)或者root进行安装
yum -y install centos-release-scl
安装devtoolset,如果想安装其他版本,例如 gcc7.* 改为 devtoolset-7-gcc* 即可
yum -y install devtoolset-11-gcc*
注:启用gcc11,devtoolset会安装在/opt/rh目录下
cd /opt/rh/devtoolset-11/
- 每个版本下面都会有个enable文件,执行以下命令即可启用
source ./enable
如果想要切换到不同的版本时,只要执行命令即可
source /opt/rh/devtoolset-11/enable
- 直接替换相应软连接
该方法可以避免每次都要进行enable
mv /usr/bin/gcc /usr/bin/gcc.bak
ln -s /opt/rh/devtoolset-11/root/bin/gcc /usr/bin/gcc
mv /usr/bin/g++ /usr/bin/g++.bak
ln -s /opt/rh/devtoolset-11/root/bin/g++ /usr/bin/g++
mv /usr/bin/c++ /usr/bin/c++.bak
ln -s /opt/rh/devtoolset-11/root/bin/c++ /usr/bin/c++
mv /usr/bin/cpp /usr/bin/cpp.bak
ln -s /opt/rh/devtoolset-11/root/bin/cpp /usr/bin/cpp
mv /usr/bin/cc /usr/bin/cc.bak
ln -s /opt/rh/devtoolset-11/root/bin/cc /usr/bin/cc
2.2 查验:查看版本
# g++ --version
g++ (GCC) 11.2.1 20220127 (Red Hat 11.2.1-9)
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# gcc --version
gcc (GCC) 11.2.1 20220127 (Red Hat 11.2.1-9)
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
uploading-image-28412.png
X 参考文献
- Centos7.9 gcc4.8.5升级到gcc11 - 博客园 【推荐】
- CentOS下g++: command not found问题的解决 - CSDN
- [单片机框架][esp32] 使用C++17新特性报错 - CSDN