2018. 7. 19. 13:44 나의일 관련/Linux
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
'나의일 관련 > Linux' 카테고리의 다른 글
MAC XQuartz GLX 오류 해결 기록 (0) | 2019.01.22 |
---|---|
antlr-2.7.7 설치 기록 (0) | 2019.01.08 |
mpich 또는 mvapich2 사용 시 오류 (0) | 2018.02.01 |
오류내용 : undefined reference to `tgetstr' (0) | 2018.02.01 |
OpenFOAM 4.1 설치 기록 (0) | 2018.02.01 |