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
https://gcc.gnu.org/svn.html
https://gcc.gnu.org/wiki/InstallingGCC
https://wiki.debian.org/ArmHardFloatPort#Minimum_CPU_.26_FPU
https://www.raspberrypi.org/forums/viewtopic.php?f=33&t=146222
# 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