How to update gcc on Amazon Linux 2023

0

As far as I know, AL2023 uses GCC 11.x. However, I'd need GCC 13.x. How can I upgrade it?

asked 4 months ago568 views
1 Answer
0
Accepted Answer

Hello.

I think you can use gcc13 by installing gcc itself from source.
I confirmed that I can install it by running the following command in my environment.
Please note that the installation will take some time.
If you want to shorten the time, add "--disable-bootstrap" to the "./configure" command option to reduce the number of builds.

dnf install gcc g++ -y
wget https://ftp.tsukuba.wide.ad.jp/software/gcc/releases/gcc-13.2.0/gcc-13.2.0.tar.gz
tar xzf gcc-13.2.0.tar.gz
cd gcc-13.2.0
./contrib/download_prerequisites
mkdir build
cd build
../configure --enable-languages=c,c++ --prefix=/usr/local --disable-multilib --disable-bootstrap
make
make install
reboot
gcc -v
g++ -v
profile picture
EXPERT
answered 4 months ago
profile pictureAWS
EXPERT
reviewed 4 months ago
  • Thank you very much for your answer!

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions