92

What would be the easiest way to install gcc 4.7.x/4.8.x on a system with CentOS 6.2+? The default RPM package contains an older version of gcc.

slm
  • 9,959
  • 10
  • 49
  • 57
Tomas Andrle
  • 3,092
  • 4
  • 31
  • 32

8 Answers8

68

Tru Huynh of centos.org has built the redhat developer toolset 1.1, for centos and it contains gcc 4.7.2

So you could simply use his repo and install just gcc, instantly.

cd /etc/yum.repos.d
wget http://people.centos.org/tru/devtools-1.1/devtools-1.1.repo 
yum --enablerepo=testing-1.1-devtools-6 install devtoolset-1.1-gcc devtoolset-1.1-gcc-c++

This will install it most likely into /opt/centos/devtoolset-1.1/root/usr/bin/

Then you can tell your compile process to use the gcc 4.7 instead of 4.4 with the CC variable

export CC=/opt/centos/devtoolset-1.1/root/usr/bin/gcc  
export CPP=/opt/centos/devtoolset-1.1/root/usr/bin/cpp
export CXX=/opt/centos/devtoolset-1.1/root/usr/bin/c++
ck_
  • 1,875
  • 1
  • 16
  • 16
  • 5
    running `yum --enablerepo=testing-devtools-6 install devtoolset-1.1-gcc devtoolset-1.1-gcc-c++` returns a four-o-four, .. : [image](http://img690.imageshack.us/img690/354/screenshotrafalcentos6v.png) –  Mar 12 '13 at 07:28
  • Thanks for reporting that, looks like he changed the url and repo name slightly for 1.1 and I had just edited it from 1.0 - I fixed it now, I think http://people.centos.org/tru/devtools-1.1/ – ck_ Mar 12 '13 at 10:45
  • 1
    don't forget to `yum clean all` before doing the steps again after failure else you will still get 404 –  Mar 12 '13 at 11:18
  • 6
    instead of setting individual variables you can do `scl enable devtoolset-1.1 bash` (it starts new shell with all variables set). – marcin Mar 28 '13 at 11:42
  • 13
    For g++ 4.8.2, change `1.1` to `2` everywhere, and change `--enablerepo=testing-1.1-devtools-6` to `--enablerepo=testing-devtools-2-centos-6` – dwurf Apr 15 '14 at 23:28
  • 3
    Does this still work ? I get http://people.centos.org/tru/devtools-2/6Workstation/i386/RPMS/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404" – Paul Praet May 21 '14 at 09:21
  • 1
    it does work, the only problem is that for some reason yum will now try to access: http://people.centos.org/tru/devtools-2/6Server/x86_64/RPMS/repodata/repomd.xml notice 6Server here which is wrong. To get the package you need to edit your repo file to contain this instead of its contents: http://people.centos.org/tru/devtools-2/6/x86_64/RPMS/ – Zeks Jun 09 '14 at 13:35
  • if you run into assembler errors, don't forget to update your binutils `yum install devtoolset-2-gcc devtoolset-2-binutils` – Naveen Sharma Oct 21 '15 at 07:54
  • FYI: the above answer still works as of Feb 10 2015 on CentOS 6.7. – Manuel J. Diaz Feb 10 '16 at 19:54
  • I'm getting `http://people.centos.org/tru/devtools-1.1/7/x86_64/RPMS/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found` – B T Jun 16 '16 at 08:12
  • Still works in September 2016. Tried it for a sass gem and library https://github.com/sass/sassc-ruby/issues/37#issuecomment-248959463. No errors in Centos 6.8 – GeorgeKaf Sep 23 '16 at 12:39
43

Here is how to get devtoolset-2 (including gcc 4.8.1)

This was taken from http://people.centos.org/tru/devtools-2/readme

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 devtoolset-2-gcc-c++

Known issues:

  • unsigned packages
  • CentOS-6 devtoolset-2 needs devtoolset-2-ide which contains the whole Eclipse stack, but does not build yet
  • CentOS-6 all the maven related file are not built either

Main changes from devtools-1.1:

  • /opt/centos is no longer used
  • /opt/rh is now used as upstream (as SL version)
Cristian Ciupitu
  • 5,513
  • 2
  • 37
  • 47
Mark Lakata
  • 8,340
  • 2
  • 18
  • 16
  • 1
    I had to export these for it to work. Thanks! export CC=/opt/rh/devtoolset-2/root/usr/bin/gcc export CXX=/opt/rh/devtoolset-2/root/usr/bin/c++ export CPP=/opt/rh/devtoolset-2/root/usr/bin/cpp – jemiloii Mar 09 '16 at 19:49
  • 2
    @JemiloII - did you do `scl enable devtoolset-2` after installing? That should work to get the correct compilers on the path. – Mark Lakata Mar 09 '16 at 21:58
  • that actually works better than the exports! – jemiloii Mar 09 '16 at 22:22
  • @MarkLakata - Running `scl enable devtoolset-2` throws the following error `Need at least 3 arguments. Run scl --help to get help.` – Swanidhi Jul 05 '16 at 15:45
  • 3
    @Swanidhi The full command is `scl enable devtoolset-2 bash` where the last field could be different if you are not using bash. – Mark Lakata Jul 05 '16 at 17:16
  • It seems that `devtoolset-2` is the last version which supports 32-bit. – Weekend Feb 14 '17 at 08:56
  • I'm getting "Connecting to people.centos.org|...|:80... connected. - HTTP request sent, awaiting response... 403 Forbidden" – riv Mar 08 '21 at 14:51
29

There is new version of devtoolset 2.0. Nice people from Cern working on Scientific Linux created an open version:

If you use CentOS (not Scientific Linux), then you will have to import their GPG key from here using:

rpm --import http://www.scientificlinux.org/documentation/gpg/RPM-GPG-KEY-cern

Enjoy!

David
  • 9,144
  • 3
  • 24
  • 41
JiriHnidek
  • 409
  • 5
  • 6
  • 1
    the link above is broken now, I found similar key here: [ftp.riken.jp] (http://ftp.riken.jp/Linux/cern/slc58/x86_64/RPM-GPG-KEYs/RPM-GPG-KEY-cern) – Remo Harsono Nov 10 '17 at 08:36
21
# 1. Install a package with repository for your system:
# RHEL 6: `yum-config-manager --enable rhel-server-rhscl-6-rpmss`
# RHEL 7: `yum-config-manager --enable rhel-server-rhscl-7-rpms`
$ sudo yum install centos-release-scl # On CentOS 6/7+, install package centos-release-scl available in CentOS repository

# 2. Install the collection:
$ sudo yum install devtoolset-3

# 3. Start using software collections:
$ scl enable devtoolset-3 bash

$ sudo yum list devtoolset-3\*
Denis Denisov
  • 317
  • 1
  • 3
  • 6
2

From what I can see from the gnu gcc, latest stable version is 4.62. The version 4.7 can be downloaded and compiled, more info on the gcc installation.

bbaja42
  • 3,021
  • 1
  • 27
  • 30
  • I asked about 4.7 because it is supposed to have some C++11 features that I need (porting from Clang). – Tomas Andrle Jan 22 '12 at 19:01
  • So apart from compiling from source there is no, say, website that would have some rpms I could use? – Tomas Andrle Jan 22 '12 at 19:02
  • Not that I'm aware of, but I'm not very knowledgeable on the topic. RPM repository typicly include the RPM only in it's stable form. – bbaja42 Jan 22 '12 at 20:28
2

neither one of these answers worked for me.
even in the shell of devtoolset is still saw my gcc 4.4.7.
My trick was the following:

mv /usr/bin/gcc /usr/bin/gcc.bckup
ln -s /opt/centos/devtoolset-1.1/root/usr/bin/gcc /usr/bin/gcc
Dylan Westra
  • 121
  • 1
2

there is a problem with devtool1.1 so I did some changes - finally, this worked for me : first run

yum clean all

than :

wget http://people.centos.org/tru/devtools-1.1/devtools-1.1.repo -O /etc/yum.repos.d/devtools-1.1.repo

now open /etc/yum.repos.d/devtools-1.1.repo and change from :

http://people.centos.org/tru/devtools-2/$releasever/$basearch/RPMS

(if you are using x86_64)to:

http://people.centos.org/tru/devtools-1.1/6/x86_64/RPMS/ 

or ((if you are using x86))

http://people.centos.org/tru/devtools-1.1/6/i386/RPMS/

and finally run :

yum install devtoolset-1.1
yehudahs
  • 121
  • 3
0

One way of achieving this would be to fetch src RPMs from the fedora repositories and recompile them for your target system.
Fedora 17 and later provide gcc 4.7

user1055604
  • 1,585
  • 13
  • 19