Skip to content

Instantly share code, notes, and snippets.

@ambakshi
Created April 1, 2016 11:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ambakshi/83e0d4f5ba0079fc4edc4f28d59db13e to your computer and use it in GitHub Desktop.
Save ambakshi/83e0d4f5ba0079fc4edc4f28d59db13e to your computer and use it in GitHub Desktop.
Install g++ 5.x on Ubuntu Trusty (14.04)
#!/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