Skip to content

Instantly share code, notes, and snippets.

@gciruelos
Created September 20, 2017 03:35
Show Gist options
  • Save gciruelos/e378061eae84ffc47026e1aa286d2ad9 to your computer and use it in GitHub Desktop.
Save gciruelos/e378061eae84ffc47026e1aa286d2ad9 to your computer and use it in GitHub Desktop.
Instalar gcc 5 en ubuntu
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
# robado de: https://gist.github.com/beci/2a2091f282042ed20cda por si lo borra
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment