Skip to content

Instantly share code, notes, and snippets.

@satbirdd
Forked from akoluthic/Ubuntu12.04-g++4.8
Created April 23, 2016 05:41
Show Gist options
  • Save satbirdd/f5c8cf29c2c685a00d0b31ead3ea7604 to your computer and use it in GitHub Desktop.
Save satbirdd/f5c8cf29c2c685a00d0b31ead3ea7604 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