diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2018-11-04 17:41:41 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2018-11-04 17:41:41 +0000 |
commit | 99682d0af7eb152dc59b8771a49936903d38ce4b (patch) | |
tree | 9ba24ad7b186206364ae37e39710067c0409ec4a /clang/lib/Driver/Distro.cpp | |
parent | ed6a0a817ffdd4078c25336b473094c60f98b509 (diff) | |
download | bcm5719-llvm-99682d0af7eb152dc59b8771a49936903d38ce4b.tar.gz bcm5719-llvm-99682d0af7eb152dc59b8771a49936903d38ce4b.zip |
Add support of the next Ubuntu (Ubuntu 19.04 - Disco Dingo)
llvm-svn: 346103
Diffstat (limited to 'clang/lib/Driver/Distro.cpp')
-rw-r--r-- | clang/lib/Driver/Distro.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Driver/Distro.cpp b/clang/lib/Driver/Distro.cpp index fbfc041304a..eb537c87e75 100644 --- a/clang/lib/Driver/Distro.cpp +++ b/clang/lib/Driver/Distro.cpp @@ -51,6 +51,7 @@ static Distro::DistroType DetectDistro(llvm::vfs::FileSystem &VFS) { .Case("artful", Distro::UbuntuArtful) .Case("bionic", Distro::UbuntuBionic) .Case("cosmic", Distro::UbuntuCosmic) + .Case("disco", Distro::UbuntuDisco) .Default(Distro::UnknownDistro); if (Version != Distro::UnknownDistro) return Version; |