Created
April 1, 2016 11:57
-
-
Save ambakshi/83e0d4f5ba0079fc4edc4f28d59db13e to your computer and use it in GitHub Desktop.
Install g++ 5.x on Ubuntu Trusty (14.04)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get update | |
DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common | |
add-apt-repository ppa:ubuntu-toolchain-r/test | |
apt-get update | |
DEBIAN_FRONTEND=noninteractive apt-get install -y g++-5 gcc-5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment