summaryrefslogtreecommitdiff
path: root/lib/Driver/Distro.cpp
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2019-04-19 13:43:28 +0000
committerSylvestre Ledru <sylvestre@debian.org>2019-04-19 13:43:28 +0000
commit6ad5cdaf01f864e1aa3b1103d07e95aeede11604 (patch)
treee6a10f9ac1e5d880ba47f9551d88e3bd2c3e07f0 /lib/Driver/Distro.cpp
parenta558e8d6fe4fb7b5d75cf15cdd08181bb4e9ac07 (diff)
downloadclang-6ad5cdaf01f864e1aa3b1103d07e95aeede11604.tar.gz
Add support of the next Ubuntu (Ubuntu 19.10 - Eoan EANIMAL)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@358756 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Distro.cpp')
-rw-r--r--lib/Driver/Distro.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Driver/Distro.cpp b/lib/Driver/Distro.cpp
index bf2564ab80..737f172a06 100644
--- a/lib/Driver/Distro.cpp
+++ b/lib/Driver/Distro.cpp
@@ -51,6 +51,7 @@ static Distro::DistroType DetectDistro(llvm::vfs::FileSystem &VFS) {
.Case("bionic", Distro::UbuntuBionic)
.Case("cosmic", Distro::UbuntuCosmic)
.Case("disco", Distro::UbuntuDisco)
+ .Case("eoan", Distro::UbuntuEoan)
.Default(Distro::UnknownDistro);
if (Version != Distro::UnknownDistro)
return Version;