Home
last modified time | relevance | path

Searched refs:addPathIfExists (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DHurd.cpp22 using tools::addPathIfExists;
96 addPathIfExists(D, D.Dir + "/../lib/" + MultiarchTriple, Paths); in Hurd()
97 addPathIfExists(D, D.Dir + "/../" + OSLibDir, Paths); in Hurd()
100 addPathIfExists(D, SysRoot + "/lib/" + MultiarchTriple, Paths); in Hurd()
101 addPathIfExists(D, SysRoot + "/lib/../" + OSLibDir, Paths); in Hurd()
103 addPathIfExists(D, SysRoot + "/usr/lib/" + MultiarchTriple, Paths); in Hurd()
104 addPathIfExists(D, SysRoot + "/usr/lib/../" + OSLibDir, Paths); in Hurd()
114 addPathIfExists(D, D.Dir + "/../lib", Paths); in Hurd()
116 addPathIfExists(D, SysRoot + "/lib", Paths); in Hurd()
117 addPathIfExists(D, SysRoot + "/usr/lib", Paths); in Hurd()
H A DLinux.cpp32 using tools::addPathIfExists;
268 addPathIfExists(D, SysRoot + "/lib/" + MultiarchTriple, Paths); in Linux()
269 addPathIfExists(D, SysRoot + "/lib/../" + OSLibDir, Paths); in Linux()
279 addPathIfExists(D, in Linux()
285 addPathIfExists(D, SysRoot + "/usr/lib/" + MultiarchTriple, Paths); in Linux()
291 addPathIfExists(D, SysRoot + "/usr/" + OSLibDir, Paths); in Linux()
293 addPathIfExists(D, SysRoot + "/usr/lib/../" + OSLibDir, Paths); in Linux()
296 addPathIfExists(D, SysRoot + "/" + OSLibDir + "/" + ABIName, Paths); in Linux()
297 addPathIfExists(D, SysRoot + "/usr/" + OSLibDir + "/" + ABIName, Paths); in Linux()
308 addPathIfExists(D, D.Dir + "/../lib", Paths); in Linux()
[all …]
H A DSolaris.cpp186 addPathIfExists(D, in Solaris()
190 addPathIfExists(D, GCCInstallation.getParentLibPath() + LibSuffix, Paths); in Solaris()
196 addPathIfExists(D, D.Dir + "/../lib", Paths); in Solaris()
198 addPathIfExists(D, D.SysRoot + "/usr/lib" + LibSuffix, Paths); in Solaris()
H A DMSP430.cpp122 addPathIfExists(D, GCCBinPath, getProgramPaths()); in MSP430ToolChain()
127 addPathIfExists(D, GCCRtPath, getFilePaths()); in MSP430ToolChain()
132 addPathIfExists(D, SysRootDir, getFilePaths()); in MSP430ToolChain()
H A DMyriad.cpp22 using tools::addPathIfExists;
233 addPathIfExists(D, CompilerSupportDir, getFilePaths()); in MyriadToolChain()
236 addPathIfExists(D, D.Dir + "/../sparc-myriad-rtems/lib", getFilePaths()); in MyriadToolChain()
H A DCommonArgs.h23 void addPathIfExists(const Driver &D, const Twine &Path,
H A DRISCVToolchain.cpp31 addPathIfExists(D, InstallPath + Path, Paths); in addMultilibsFilePaths()
H A DGnu.cpp38 using tools::addPathIfExists;
2805 addPathIfExists(D, GCCInstallation.getInstallPath() + Path, Paths); in AddMultilibPaths()
2808 addPathIfExists( in AddMultilibPaths()
2830 addPathIfExists(D, in AddMultilibPaths()
2845 addPathIfExists(D, LibPath + "/../" + OSLibDir, Paths); in AddMultilibPaths()
2858 addPathIfExists( in AddMultiarchPaths()
H A DCommonArgs.cpp121 void tools::addPathIfExists(const Driver &D, const Twine &Path, in addPathIfExists() function in tools