diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2017-10-25 14:25:28 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2017-10-25 14:25:28 +0000 |
commit | a3436bb21a26799610005f1956ec0e6ce36789b0 (patch) | |
tree | acad45dad987e899f9ae2cf31f7257fec05d7624 /clang/lib/Driver/Distro.cpp | |
parent | de828bad7ea0d6bf29ecbb7ba7bd780200dada7c (diff) | |
download | bcm5719-llvm-a3436bb21a26799610005f1956ec0e6ce36789b0.tar.gz bcm5719-llvm-a3436bb21a26799610005f1956ec0e6ce36789b0.zip |
Add support of the next Debian (Debian buster - version 10)
llvm-svn: 316579
Diffstat (limited to 'clang/lib/Driver/Distro.cpp')
-rw-r--r-- | clang/lib/Driver/Distro.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Driver/Distro.cpp b/clang/lib/Driver/Distro.cpp index 437641b23d7..9a0b854e32f 100644 --- a/clang/lib/Driver/Distro.cpp +++ b/clang/lib/Driver/Distro.cpp @@ -89,6 +89,8 @@ static Distro::DistroType DetectDistro(vfs::FileSystem &VFS) { return Distro::DebianJessie; case 9: return Distro::DebianStretch; + case 10: + return Distro::DebianBuster; default: return Distro::UnknownDistro; } |