Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For ATS v8.0.0 and later, a compiler with support for C++17 is required. On Ubuntu 16 and 17.10, you an install this using the test PPA:

Code Block
$ sudo apt-get install software-properties-common python-software-properties
$ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
$ apt-get update
# Optional, but this avoids having apt-get upgrade download other things from the test repository
$ cat > /etc/apt/preferences.d/xenial
Package: *
Pin: release a=xenial
Pin-Priority: 50
$ apt-get -t xenial install gcc-7 g++-7 

If you prefer to use LLVM / clang, you can install this on Ubuntu 16 and 17 with:

Code Block
$ sudo apt-get install clang-5.0

...