Bootstrap

Ubuntu gcc/g++默认版本切换

ubuntu系统中可能安装了多个版本的gcc/g++ 如gcc-5,gcc-7, gcc-9等等,在使用时,我们可以在命令直接指定gcc/g++版本来确定使用哪个编译器

g++-5 ./test.cpp -o test
g++-7 ./test.cpp -o test

此外,我们还可以通过包管理工具update-alternatives来设置默认gcc/g++版本

1 默认情况

在默认情况下,安装的gcc和g++各自都是master状态,可以分别用update-alternatives设置优先级,具体方法如下

# 设置gcc优先级,最后的数字代表优先程度,数值越大,优先程度越高,可自行调整各版本的优先级
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 50
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 90
# 设置g++优先级
sudo update-alternatives  --install /usr/bin/g++ g++ /usr/bin/g++-5 50
sudo update-alter
;