The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Ada, Go, D and Modula-2 as well as libraries for these languages (libstdc++,...).

Documentation

Home Page

Build instructions for those who are curious

$ wget https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz
$ tar xvf gcc-13.2.0.tar.xz
$ cd gcc-13.2.0
$ module load gcc/12.2.0
$ ./configure --prefix=/mnt/nasapps/production/gcc/13.2.0 \
    --enable-multiarch=no --disable-multilib \
    --enable-threads=posix --enable-tls \
    --with-arch=skylake --with-tune=skylake \
    --enable-languages=default
$ make -j 8 && make install