Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/
H A DHurd.cpp23 using tools::addPathIfExists;
79 addPathIfExists(D, D.Dir + "/../lib/" + MultiarchTriple, Paths); in Hurd()
80 addPathIfExists(D, D.Dir + "/../" + OSLibDir, Paths); in Hurd()
83 addPathIfExists(D, SysRoot + "/lib/" + MultiarchTriple, Paths); in Hurd()
84 addPathIfExists(D, SysRoot + "/lib/../" + OSLibDir, Paths); in Hurd()
86 addPathIfExists(D, SysRoot + "/usr/lib/" + MultiarchTriple, Paths); in Hurd()
87 addPathIfExists(D, SysRoot + "/usr/lib/../" + OSLibDir, Paths); in Hurd()
94 addPathIfExists(D, D.Dir + "/../lib", Paths); in Hurd()
96 addPathIfExists(D, SysRoot + "/lib", Paths); in Hurd()
97 addPathIfExists(D, SysRoot + "/usr/lib", Paths); in Hurd()
H A DLinux.cpp33 using tools::addPathIfExists;
218 addPathIfExists(D, InstallPath + Path, Paths); in addMultilibsFilePaths()
381 addPathIfExists(D, D.Dir + "/../" + OSLibDir, Paths); in Linux()
395 addPathIfExists(D, in Linux()
407 addPathIfExists(D, SysRoot + "/usr/" + OSLibDir, Paths); in Linux()
419 addPathIfExists(D, in Linux()
427 addPathIfExists(D, GCCInstallation.getInstallPath() + in Linux()
444 addPathIfExists(D, LibPath, Paths); in Linux()
453 addPathIfExists(D, D.Dir + "/../lib", Paths); in Linux()
455 addPathIfExists(D, SysRoot + "/lib", Paths); in Linux()
[all …]
H A DSolaris.cpp182 addPathIfExists(D, in Solaris()
186 addPathIfExists(D, GCCInstallation.getParentLibPath() + LibSuffix, Paths); in Solaris()
192 addPathIfExists(D, D.Dir + "/../lib", Paths); in Solaris()
194 addPathIfExists(D, D.SysRoot + "/usr/lib" + LibSuffix, Paths); in Solaris()
H A DMSP430.cpp123 addPathIfExists(D, GCCBinPath, getProgramPaths()); in MSP430ToolChain()
128 addPathIfExists(D, GCCRtPath, getFilePaths()); in MSP430ToolChain()
133 addPathIfExists(D, SysRootDir, getFilePaths()); in MSP430ToolChain()
H A DMyriad.cpp23 using tools::addPathIfExists;
231 addPathIfExists(D, CompilerSupportDir, getFilePaths()); in MyriadToolChain()
234 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 DCommonArgs.cpp62 void tools::addPathIfExists(const Driver &D, const Twine &Path, in addPathIfExists() function in tools