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. You can install this using the testing repo on both Debian 8 and 9:

Code Block
$ sudo cat >> /etc/apt/sources.list
deb http://deb.debian.org/debian testing main
$ apt-get update
$ apt-get install linux-compiler-gcc-7-x86 g++-7
 
# This is optional, but prevents apt-get upgrade from upgrading everything from testing. We recommend doing this!
$ cat >> /etc/apt/preferences.d/testing
Package: *
Pin: release a=testing
Pin-Priority: 50
 
$ sudo cat >> /etc/apt/sources.list
deb http://deb.debian.org/debian testing main
$ apt-get update
$ apt-get -t testing install linux-compiler-gcc-7-x86 g++-7

Git

To use Git, you must install the appropriate packages:

...