Last active
November 4, 2018 09:19
-
-
Save ywiyogo/80b857571e860d0785b40571f360179f to your computer and use it in GitHub Desktop.
Installation script for GCC 5.4.0 in Fedora 28/29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Download gcc 5.4.0 source code..." | |
wget http://ftp.gnu.org/gnu/gcc/gcc-5.4.0/gcc-5.4.0.tar.gz | |
echo "extract the tar file..." | |
tar xvfz gcc-5.4.0.tar.gz | |
cd gcc-5.4.0 | |
# Download prerequisites | |
./contrib/download_prerequisites | |
# Bug fixing based on the hint from https://stackoverflow.com/a/48458759 | |
sed -i 's/struct ucontext/struct ucontext_t/g' libgcc/config/i386/linux-unwind.h | |
cd .. | |
echo "Installing the dependencies..." | |
sudo dnf install gmp-devel mpfr-devel libmpc-devel | |
echo "Create a build folder, configure and install gcc 5.4" | |
mkdir gcc540-build | |
cd gcc540-build | |
../gcc-5.4.0/configure --with-system-lib --enable-languages=c,c++ -disable-multilib --prefix=/home/$USER/gcc54 | |
make -j$(nproc) && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment