Centos7 解决gcc 4.85版本(升级更改版本gcc)

由于需要源码编译最新的包,需要用到gcc9.0版本,做个记录!

  1. 安装 gcc官方源:
#!/bin/bash
yum install centos-release-scl scl-utils-build

devtoolset-7-gcc.x86_64                    7.3.1-5.16.el7         centos-sclo-rh
devtoolset-8-gcc.x86_64                    8.3.1-3.2.el7          centos-sclo-rh
devtoolset-9-gcc.x86_64                    9.3.1-2.el7            centos-sclo-rh
gcc.x86_64                                 4.8.5-39.el7           base (默认)

devtoolset-7-gcc-c++.x86_64                7.3.1-5.16.el7         centos-sclo-rh
devtoolset-8-gcc-c++.x86_64                8.3.1-3.2.el7          centos-sclo-rh
devtoolset-9-gcc-c++.x86_64                9.3.1-2.el7            centos-sclo-rh
gcc-c++.x86_64                             4.8.5-39.el7           base (默认)
  1. 安装 gcc9 gcc9-c++
yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++
# 官方推荐的加载方式(推荐)
scl enable devtoolset-9 bash
# 使用内置脚本加载
source /opt/rh/devtoolset-9/enable
上一篇:linux 安装redis报gcc错误


下一篇:linux redis-6.0.5 部署