Skip to content

Instantly share code, notes, and snippets.

@radxene
Created September 30, 2016 07:35
Show Gist options
  • Save radxene/7036d0d1f75b8c4d0f62ee5c9f83fd7c to your computer and use it in GitHub Desktop.
Save radxene/7036d0d1f75b8c4d0f62ee5c9f83fd7c to your computer and use it in GitHub Desktop.
Build GCC 4.9.2 for C/C++ on CentOS 7
sudo yum install libmpc-devel mpfr-devel gmp-devel
cd ~/Downloads
curl ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-4.9.2/gcc-4.9.2.tar.bz2 -O
tar xvfj gcc-4.9.2.tar.bz2
cd gcc-4.9.2
./configure --disable-multilib --enable-languages=c,c++
make -j 4
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment