diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-03-07 15:21:48 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-03-07 15:21:48 -0600 |
commit | 7442499990b44130ad9de911808161177b214322 (patch) | |
tree | e0f9588b2552682e1176322fe19b6d15b67e9c47 /system/clang/clang-0001-Add-Alpine-Linux-distro.patch | |
parent | 00f714f7a538159c8a821e1872c1d39d75cbf144 (diff) | |
download | packages-7442499990b44130ad9de911808161177b214322.tar.gz packages-7442499990b44130ad9de911808161177b214322.tar.bz2 packages-7442499990b44130ad9de911808161177b214322.tar.xz packages-7442499990b44130ad9de911808161177b214322.zip |
system/clang: yay, a non-GCC compiler
Diffstat (limited to 'system/clang/clang-0001-Add-Alpine-Linux-distro.patch')
-rw-r--r-- | system/clang/clang-0001-Add-Alpine-Linux-distro.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/system/clang/clang-0001-Add-Alpine-Linux-distro.patch b/system/clang/clang-0001-Add-Alpine-Linux-distro.patch new file mode 100644 index 000000000..f69baf5b8 --- /dev/null +++ b/system/clang/clang-0001-Add-Alpine-Linux-distro.patch @@ -0,0 +1,37 @@ +From: Natanael Copa <ncopa@alpinelinux.org> +From: Jakub Jirutka <jakub@jirutka.cz> +Date: Sun, 16 Apr 2017 16:49:00 +0100 +Subject: [PATCH] Add Alpine Linux distro + +--- a/include/clang/Driver/Distro.h ++++ b/include/clang/Driver/Distro.h +@@ -26,6 +26,7 @@ + // NB: Releases of a particular Linux distro should be kept together + // in this enum, because some tests are done by integer comparison against + // the first and last known member in the family, e.g. IsRedHat(). ++ AlpineLinux, + ArchLinux, + DebianLenny, + DebianSqueeze, +@@ -97,6 +98,10 @@ + /// @name Convenience Predicates + /// @{ + ++ bool IsAlpineLinux() const { ++ return DistroVal == AlpineLinux; ++ } ++ + bool IsRedhat() const { + return DistroVal == Fedora || (DistroVal >= RHEL5 && DistroVal <= RHEL7); + } +--- a/lib/Driver/Distro.cpp ++++ b/lib/Driver/Distro.cpp +@@ -128,6 +128,9 @@ + if (VFS.exists("/etc/arch-release")) + return Distro::ArchLinux; + ++ if (VFS.exists("/etc/alpine-release")) ++ return Distro::AlpineLinux; ++ + return Distro::UnknownDistro; + } |