Skip to content

Instantly share code, notes, and snippets.

@xnagireddy
Forked from beci/gcc 5 on ubuntu 14.04
Last active May 22, 2018 06:02
Show Gist options
  • Save xnagireddy/c640585f136422ef64252bd47166db60 to your computer and use it in GitHub Desktop.
Save xnagireddy/c640585f136422ef64252bd47166db60 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
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 1
sudo update-alternatives --install /usr/bin/gcc g++ /usr/bin/g++-5 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment