Skip to content

Instantly share code, notes, and snippets.

@beci
Created October 15, 2015 07:18
Show Gist options
  • Star 90 You must be signed in to star a gist
  • Fork 14 You must be signed in to fork a gist
  • Save beci/2a2091f282042ed20cda to your computer and use it in GitHub Desktop.
Save beci/2a2091f282042ed20cda to your computer and use it in GitHub Desktop.
use gcc 5.x on ubuntu 14.04
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-5 g++-5
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5
@mandardeshmukh03
Copy link

mandardeshmukh03 commented Dec 21, 2021

For me this worked:
sudo apt-add-repository "deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty main"
sudo apt-get update
sudo apt-get install gcc-5 g++-5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment