Skip to content

Instantly share code, notes, and snippets.

@giwa
Last active December 6, 2023 07:36
Show Gist options
  • Save giwa/b1fb1e44dc0a7d270881 to your computer and use it in GitHub Desktop.
Save giwa/b1fb1e44dc0a7d270881 to your computer and use it in GitHub Desktop.
Install g++/gcc 4.8.2 in CentOS 6.6 ref: http://qiita.com/giwa/items/28c754d8fc2936c0f6d2
$ wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O /etc/yum.repos.d/devtools-2.repo
$ yum install devtoolset-2-gcc devtoolset-2-binutils
$ yum install devtoolset-2-gcc-c++ devtoolset-2-gcc-gfortran
$ /opt/rh/devtoolset-2/root/usr/bin/gcc --version
gcc (GCC) 4.8.2 20140120 (Red Hat 4.8.2-15)
Copyright (C) 2013 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.
scl enable devtoolset-2 bash
source /opt/rh/devtoolset-2/enable
@ForeverYoung1208
Copy link

tank you!!! This really helps to install sassc ruby gem (it needs g++ compiler more than 4.5.0) on old centos systems!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment