mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-03 15:15:27 +02:00
11 lines
224 B
Bash
11 lines
224 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
VERSION=$1
|
||
|
|
||
|
apt-get install -y -o Acquire::Retries=10 \
|
||
|
gcc-$VERSION \
|
||
|
g++-$VERSION
|
||
|
|
||
|
rm /usr/bin/gcc /usr/bin/g++
|
||
|
ln -s /usr/bin/gcc-$VERSION /usr/bin/gcc
|
||
|
ln -s /usr/bin/g++-$VERSION /usr/bin/g++
|