id: 12389 nodeId: 12389 type: General point: 166.0 linkPoint: 1.0 maker: cella permission: linkable made at: 2017.12.18 01:04 edited at: 2017.12.27 11:27
|
how to install GCC from source: failures
# eg. to install GCC 4.8.5
$ svn co svn://gcc.gnu.org/svn/gcc/branches/gcc-4_8_5_release gcc-4.8.5
$ cd gcc-4.8.5
$ ./contrib/download_prerequisites
$ cd ..
$ mkdir objdir
$ cd objdir
# it is recommended to configure at the other directory
$ $PWD/../gcc-4.8.5/configure --prefix=$HOME/GCC-4.8.5
# "--enable-languages=c,c++" is not used
$ make
$ make install
Return to
how to install GCC from source: failures