1

Is there any ppa available for gcc 7.1 for ubuntu 17.04?

https://launchpad.net/~jonathonf/+archive/ubuntu/gcc-7.1 This ppa is for 16.04, which I have found

Saquib Rais
  • 11
  • 1
  • 2
  • Welcome to Stack Overflow. Please review the [guidelines](https://stackoverflow.com/help/mcve) for creating a Minimal, Complete and Verifiable example in your question. – Toby May 16 '17 at 23:28

1 Answers1

1

Check this page ubuntu-toolchain-r/test

You can install using

sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-7

I think ubuntu stopped putting the minor version as part of the package name.

Wei Zhang
  • 11
  • 1