Home
last modified time | relevance | path

Searched refs:getFilePaths (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DNetBSD.cpp392 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/i386")); in NetBSD()
401 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/eabi")); in NetBSD()
405 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/eabihf")); in NetBSD()
408 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/oabi")); in NetBSD()
415 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/o32")); in NetBSD()
417 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/64")); in NetBSD()
420 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/powerpc")); in NetBSD()
423 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/sparc")); in NetBSD()
429 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in NetBSD()
H A DDragonFly.cpp211 getFilePaths().push_back(getDriver().Dir + "/../lib"); in DragonFly()
212 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in DragonFly()
213 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/gcc80")); in DragonFly()
H A DRISCVToolchain.cpp57 path_list &Paths = getFilePaths(); in RISCVToolChain()
61 getFilePaths().push_back(GCCInstallation.getInstallPath().str()); in RISCVToolChain()
72 getFilePaths().push_back(computeSysRoot() + "/lib"); in RISCVToolChain()
H A DMipsLinux.cpp37 getFilePaths().clear(); in MipsLLVMToolChain()
38 getFilePaths().push_back(computeSysRoot() + "/usr/lib" + LibSuffix); in MipsLLVMToolChain()
H A DHaiku.cpp170 getFilePaths().push_back(concat(getDriver().SysRoot, "/boot/system/lib")); in Haiku()
171 getFilePaths().push_back(concat(getDriver().SysRoot, "/boot/system/develop/lib")); in Haiku()
174 getFilePaths().push_back(GCCInstallation.getInstallPath().str()); in Haiku()
H A DOHOS.cpp144 getFilePaths().clear(); in OHOS()
147 getFilePaths().push_back(CandidateLibPath); in OHOS()
158 path_list &Paths = getFilePaths(); in OHOS()
H A DFuchsia.cpp262 getFilePaths().push_back(std::string(P)); in Fuchsia()
336 getFilePaths().insert(getFilePaths().begin(), Path); in Fuchsia()
H A DWebAssembly.cpp228 getFilePaths().push_back(SysRoot + "/lib"); in WebAssembly()
237 getFilePaths().push_back(Dir); in WebAssembly()
239 getFilePaths().push_back(SysRoot + "/lib/" + MultiarchTriple); in WebAssembly()
H A DMinGW.cpp521 getFilePaths().push_back(GccLibDir); in MinGW()
528 getFilePaths().push_back( in MinGW()
532 getFilePaths().push_back( in MinGW()
541 getFilePaths().push_back(Base + "lib"); in MinGW()
H A DFreeBSD.cpp403 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib32")); in FreeBSD()
405 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in FreeBSD()
H A DHexagon.cpp390 const ToolChain::path_list &LibPaths = HTC.getFilePaths(); in constructHexagonLinkArgs()
449 const ToolChain::path_list &LibPaths = HTC.getFilePaths(); in constructHexagonLinkArgs()
611 ToolChain::path_list &LibPaths = getFilePaths(); in HexagonToolChain()
H A DOpenBSD.cpp319 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in OpenBSD()
H A DSolaris.cpp316 path_list &Paths = getFilePaths(); in Solaris()
H A DPS4CPU.cpp381 getFilePaths().push_back(std::string(SDKLibDir)); in PS4PS5Base()
H A DBareMetal.cpp111 getFilePaths().push_back(std::string(Dir)); in BareMetal()
H A DLinux.cpp305 path_list &Paths = getFilePaths(); in Linux()
H A DCommonArgs.cpp2746 for (const auto &LibPath : HostTC.getFilePaths()) in addOpenMPDeviceRTL()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DToolChain.h295 path_list &getFilePaths() { return FilePaths; } in getFilePaths() function
296 const path_list &getFilePaths() const { return FilePaths; } in getFilePaths() function
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp101 getFilePaths().push_back(*Path); in ToolChain()
103 addIfExists(getFilePaths(), Path); in ToolChain()
1309 for (const auto &LibPath : getFilePaths()) in AddFilePathLibArgs()
H A DDriver.cpp2216 for (const std::string &Path : TC.getFilePaths()) { in HandleImmediateArgs()
6189 if (auto P = SearchPaths(TC.getFilePaths())) in GetFilePath()