centos 6 install gcc-c++
2021-06-29 05:05
标签:memory gcc source com 解决 初始 就是 code ack 问题出现nodejs 环境,在初始安装nodejs相关依赖时,出现gcc-c++ 版本错误 查阅资料得知 centos6 最新的gcc版本仍停留在4.4.7,不符合要求,这时想到的就是编译安装gcc-c++ ,但在尝试通过rpm升级gcc-c++的过程中发现其和系统基础库有和多依赖 会得到类似如下结果: 这里使用devtoolset-6-gcc-c++ 当前shell启用devtoolset-6-gcc-c++,如想默认启用,将此行加入到 再次编译nodejs依赖,问题顺利解决 当无法顺利升级到高版本时,可以尝试是否有多版本共存或替代的方法 centos 6 install gcc-c++ 标签:memory gcc source com 解决 初始 就是 code ack 原文地址:http://blog.51cto.com/morrowind/2175331In file included from ../src/bcrypt_node.cc:1:
../../nan/nan.h:47:3: error: #error This version of node/NAN/v8 requires a C++11 compiler
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/memory
由于node4.0版本后升级了v8引擎,编译时需要gcc4.8以上版本,Centos6自带的gcc为gcc-4.4.7, 不支持编译所需的C++11标准,所以只好升级gcc版本升级方案
这种对系统层面会产生严重未知影响的升级,能避免还是尽量便面的好
继续参阅资料后发现,可使用devtoolset 工具在系统间使用多个版本gcc-c++安装devtoolset
yum install centos-release-scl-rh centos-release-scl
yum check-update
这里不必安装全部的devtoolset ,只需要安装devtoolset-gcc-c++即可
要注意,安装前要先确认devtoolset 完整包名
yum search devtoolset
devtoolset-6.x86_64 : Package that installs devtoolset-6
devtoolset-7.x86_64 : Package that installs devtoolset-7
devtoolset-6-gcc.x86_64 : GCC version 6
devtoolset-6-gcc-c++.x86_64 : C++ support for GCC version 6
devtoolset-7-gcc.x86_64 : GCC version 7
devtoolset-7-gcc-c++.x86_64 : C++ support for GCC version 7
yum install devtoolset-6-gcc-c++
/etc/profile
内即可source /opt/rh/devtoolset-6/enable
后话
文章标题:centos 6 install gcc-c++
文章链接:http://soscw.com/index.php/essay/99219.html