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?

feita há 4 meses622 visualizações
1 Resposta
0
Resposta aceita

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
ESPECIALISTA
respondido há 4 meses
profile pictureAWS
ESPECIALISTA
avaliado há 4 meses
  • Thank you very much for your answer!

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas