Skip to content

Instantly share code, notes, and snippets.

View DevipriyaSarkar's full-sized avatar

Devipriya Sarkar DevipriyaSarkar

View GitHub Profile
@DevipriyaSarkar
DevipriyaSarkar / gist:5b67f39eaead3209809aca80c6fd53a7
Last active April 24, 2018 10:07 — forked from ibogun/gist:ec0a4005c25df57a1b9d
Installing gcc 4.9 & g++ 4.9 on Ubuntu 12.04 OR Ubuntu 14.04
sudo apt-get install software-properties-common python-software-properties
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.9
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 50
sudo apt-get install g++-4.9
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 50