Searched refs:Distro (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Driver/ |
| H A D | Distro.cpp | 22 static Distro::DistroType DetectOsRelease(llvm::vfs::FileSystem &VFS) { in DetectOsRelease() 28 return Distro::UnknownDistro; in DetectOsRelease() 32 Distro::DistroType Version = Distro::UnknownDistro; in DetectOsRelease() 36 if (Version == Distro::UnknownDistro && Line.starts_with("ID=")) in DetectOsRelease() 37 Version = llvm::StringSwitch<Distro::DistroType>(Line.substr(3)) in DetectOsRelease() 38 .Case("alpine", Distro::AlpineLinux) in DetectOsRelease() 39 .Case("fedora", Distro::Fedora) in DetectOsRelease() 40 .Case("gentoo", Distro::Gentoo) in DetectOsRelease() 41 .Case("arch", Distro::ArchLinux) in DetectOsRelease() 43 .Case("sles", Distro::OpenSUSE) in DetectOsRelease() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Distro.h | 23 class Distro { 99 Distro() : DistroVal() {} in Distro() function 102 Distro(DistroType D) : DistroVal(D) {} in Distro() function 105 explicit Distro(llvm::vfs::FileSystem &VFS, const llvm::Triple &TargetOrHost); 107 bool operator==(const Distro &Other) const { 111 bool operator!=(const Distro &Other) const { 115 bool operator>=(const Distro &Other) const { 119 bool operator<=(const Distro &Other) const {
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | Linux.cpp | 223 Distro Distro(D.getVFS(), Triple); in Linux() local 225 if (Distro.IsAlpineLinux() || Triple.isAndroid()) { in Linux() 230 if (Distro.IsOpenSUSE() || Distro.IsUbuntu() || Distro.IsAlpineLinux() || in Linux() 299 if (Distro.IsOpenSUSE() || Distro == Distro::UbuntuLucid || in Linux() 300 Distro == Distro::UbuntuJaunty || Distro == Distro::UbuntuKarmic || in Linux() 446 const Distro Distro(getDriver().getVFS(), Triple); in getDynamicLinker() local 620 if (Distro == Distro::Exherbo && in getDynamicLinker()
|
| H A D | Cuda.cpp | 189 Distro Dist(FS, llvm::Triple(llvm::sys::getProcessTriple())); in CudaInstallationDetector()
|
| H A D | Clang.cpp | 7963 !Distro(D.getVFS(), TC.getTriple()).IsGentoo() && in ConstructJob()
|
| /freebsd/contrib/bc/ |
| H A D | README.md | 185 #### Package and Distro Maintainers
|
| /freebsd/lib/clang/libclang/ |
| H A D | Makefile | 375 SRCS_MIN+= Driver/Distro.cpp
|