Skip to content

Instantly share code, notes, and snippets.

@huacnlee
Created January 12, 2016 07:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save huacnlee/20365dd588b176523d97 to your computer and use it in GitHub Desktop.
Save huacnlee/20365dd588b176523d97 to your computer and use it in GitHub Desktop.
Upgrade GCC 4.9 on Ubuntu Server
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.9 g++-4.9
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment