diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2017-10-25 14:21:33 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2017-10-25 14:21:33 +0000 |
commit | f8e9ffa56f26bd64057913708cb3ee96508bd799 (patch) | |
tree | 239b179b4fc4ebcef9fda92bf36c57c9391bcc30 /clang/lib/Driver/Distro.cpp | |
parent | cb58558c2f680199ae7d9085c5f58d5e127e6f57 (diff) | |
download | bcm5719-llvm-f8e9ffa56f26bd64057913708cb3ee96508bd799.tar.gz bcm5719-llvm-f8e9ffa56f26bd64057913708cb3ee96508bd799.zip |
Add support of the next Ubuntu (Ubuntu 18.04 - Bionic Beaver)
llvm-svn: 316577
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 2df297f3cfc..437641b23d7 100644 --- a/clang/lib/Driver/Distro.cpp +++ b/clang/lib/Driver/Distro.cpp @@ -48,6 +48,7 @@ static Distro::DistroType DetectDistro(vfs::FileSystem &VFS) { .Case("yakkety", Distro::UbuntuYakkety) .Case("zesty", Distro::UbuntuZesty) .Case("artful", Distro::UbuntuArtful) + .Case("bionic", Distro::UbuntuBionic) .Default(Distro::UnknownDistro); if (Version != Distro::UnknownDistro) return Version; |