Forked from wisdomfusion/install-gcc-4.9.3-on-centos6.txt
Created
March 20, 2019 00:48
-
-
Save jmcabandara/3d15aa6033d6af46e3f60975697ae4d1 to your computer and use it in GitHub Desktop.
Install gcc-4.9.3 on CentOS 6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum install libmpc-devel mpfr-devel gmp-devel | |
cd /usr/src/ | |
curl ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-4.9.3/gcc-4.9.3.tar.bz2 -O | |
tar xvfj gcc-4.9.3.tar.bz2 | |
cd gcc-4.9.3 | |
./configure --disable-multilib --enable-languages=c,c++ | |
make -j `grep processor /proc/cpuinfo | wc -l` | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment