Table of Contents |
---|
Introduction
...
No Format |
---|
svn ls svn://gcc.gnu.org/svn/gcc/tags | grep gcc | grep release >>>>>>>>>>>>>>>>>>>>>>>>>> ... gcc_4_9_3_release/ gcc_4_9_4_release/ gcc_5_1_0_release/ gcc_5_2_0_release/ gcc_5_3_0_release/ gcc_5_4_0_release/ gcc_6_1_0_release/ >>>>>>>>>>>>>>>>>>>>>>>>>>> svn co svn://gcc.gnu.org/svn/gcc/tags/gcc_7_1_0_release/ cd /sw/gcc/src/gcc-7.1.0 ./contrib/download_prerequisites --- Run from /sw/gcc/src/gcc-7.1.0 --- Do not cd to the contrib directory >>>>>>>>>>>> All prerequisites downloaded successfully. >>>>>>>>>>>> mkdir /sw/gcc/src/gcc_7_1_0_build cd /sw/gcc/src/gcc_7_1_0_build ../gcc-7.1.0/configure --help 2>&1 | tee configureHelp.txt The above command would list the configure options available ../gcc-7.1.0/configure --prefix=/sw/gcc/7.1.0 2>&1 | tee configureLog.txt make 2>&1 | tee makeLog.txt make install 2>&1 | tee makeInstall.txt |
6.3.0
No Format |
---|
mkdir /sw/gcc/src/gcc_6_3_0_build
cd /sw/gcc/src/gcc_6_3_0_build
../gcc-6.3.0/configure --help 2>&1 | tee configureHelp.txt
#The above command would list the configure options available
../gcc-6.3.0/configure --prefix=/sw/gcc/6.3.0 2>&1 | tee configureLog.txt
make 2>&1 | tee makeLog.txt
make install 2>&1 | tee makeInstall.txt |
5.4.0
No Format |
---|
mkdir /sw/gcc/src/gcc_5_4_0_build
cd /sw/gcc/src/gcc_5_4_0_build
../gcc-5.4.0/configure --help 2>&1 | tee configureHelp.txt
#The above command would list the configure options available
../gcc-5.4.0/configure --prefix=/sw/gcc/5.4.0 2>&1 | tee configureLog.txt
make 2>&1 | tee makeLog.txt
make install 2>&1 | tee makeInstall.txt |
...