Skip to content

Instantly share code, notes, and snippets.

@andrei15
Forked from akoluthic/Ubuntu12.04-g++4.8
Created April 14, 2016 07:11
Show Gist options
  • Save andrei15/0c8ee4d0b2c1aa9ec3674727a9197dff to your computer and use it in GitHub Desktop.
Save andrei15/0c8ee4d0b2c1aa9ec3674727a9197dff to your computer and use it in GitHub Desktop.
Install g++ 4.8 on Ubuntu 12.04
*Add the toolchain/test PPA*
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-4.8
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
*If you ever want to update symlinks for a future version:*
sudo rm /usr/bin/g++
sudo ln -s /usr/bin/g++-4.XXX /usr/bin/g++
*Check version number*
g++ --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment