gcc-6.1.0 설치 기록
RedHat 5.3 OS 에 GCC 6.1 설치 과정 기록
1. binutils-2.30 install
./configure --prefix=/home01/sunlsy/tachyon2
make
make install
export PATH=/home01/sunlsy/tachyon2/bin:$PATH
export LD_LIBRARY_PATH=/home01/sunlsy/tachyon2/lib:$LD_LIBRARY_PATH
2. gmp-6.1.0
./configure --prefix=/home01/sunlsy/tachyon2
make
make install
3. mpfr-3.1.6
./configure --prefix=/home01/sunlsy/tachyon2 --with-gmp-include=/home01/sunlsy/tachyon2/include --with-gmp-lib=/home01/sunlsy/tachyon2/lib
make
make install
4. mpc-1.0.3
./configure --prefix=/home01/sunlsy/tachyon2 --with-mpfr=/home01/sunlsy/tachyon2 --with-gmp=/home01/sunlsy/tachyon2
make
make install
export PATH=/applic/common/utils/bin:$PATH
5. gcc-6.1.0
./configure --prefix=/home01/sunlsy/tachyon2 \
--enable-shared --enable-threads=posix \
--enable-clocale=gnu --enable-languages=c,c++,fortran,lto \
--with-mpc=/home01/sunlsy/tachyon2 --with-mpfr=/home01/sunlsy/tachyon2 \
--with-gmp=/home01/sunlsy/tachyon2
make
make install