Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/
H A DNetBSD.cpp351 getFilePaths().push_back("=/usr/lib/i386"); in NetBSD()
360 getFilePaths().push_back("=/usr/lib/eabi"); in NetBSD()
364 getFilePaths().push_back("=/usr/lib/eabihf"); in NetBSD()
367 getFilePaths().push_back("=/usr/lib/oabi"); in NetBSD()
374 getFilePaths().push_back("=/usr/lib/o32"); in NetBSD()
376 getFilePaths().push_back("=/usr/lib/64"); in NetBSD()
379 getFilePaths().push_back("=/usr/lib/powerpc"); in NetBSD()
382 getFilePaths().push_back("=/usr/lib/sparc"); in NetBSD()
388 getFilePaths().push_back("=/usr/lib"); in NetBSD()
H A DDragonFly.cpp187 getFilePaths().push_back(getDriver().Dir + "/../lib"); in DragonFly()
188 getFilePaths().push_back("/usr/lib"); in DragonFly()
189 getFilePaths().push_back("/usr/lib/gcc50"); in DragonFly()
H A DMinix.cpp100 getFilePaths().push_back(getDriver().Dir + "/../lib"); in Minix()
101 getFilePaths().push_back("/usr/lib"); in Minix()
H A DMipsLinux.cpp38 getFilePaths().clear(); in MipsLLVMToolChain()
39 getFilePaths().push_back(computeSysRoot() + "/usr/lib" + LibSuffix); in MipsLLVMToolChain()
H A DRISCVToolchain.cpp31 getFilePaths().push_back(computeSysRoot() + "/lib"); in RISCVToolChain()
33 getFilePaths().push_back(GCCInstallation.getInstallPath().str()); in RISCVToolChain()
H A DWebAssembly.cpp92 getFilePaths().push_back(getDriver().SysRoot + "/lib"); in WebAssembly()
96 getFilePaths().push_back(getDriver().SysRoot + "/lib/" + MultiarchTriple); in WebAssembly()
H A DMinGW.cpp390 getFilePaths().push_back(GccLibDir); in MinGW()
391 getFilePaths().push_back( in MinGW()
393 getFilePaths().push_back(Base + "lib"); in MinGW()
395 getFilePaths().push_back(Base + Arch + "/sys-root/mingw/lib"); in MinGW()
H A DMSP430.cpp128 addPathIfExists(D, GCCRtPath, getFilePaths()); in MSP430ToolChain()
133 addPathIfExists(D, SysRootDir, getFilePaths()); in MSP430ToolChain()
H A DMyriad.cpp231 addPathIfExists(D, CompilerSupportDir, getFilePaths()); in MyriadToolChain()
234 addPathIfExists(D, D.Dir + "/../sparc-myriad-rtems/lib", getFilePaths()); in MyriadToolChain()
H A DHurd.cpp69 path_list &Paths = getFilePaths(); in Hurd()
H A DCloudABI.cpp106 getFilePaths().push_back(P.str()); in CloudABI()
H A DFreeBSD.cpp349 getFilePaths().push_back(getDriver().SysRoot + "/usr/lib32"); in FreeBSD()
351 getFilePaths().push_back(getDriver().SysRoot + "/usr/lib"); in FreeBSD()
H A DAnanas.cpp134 getFilePaths().push_back(getDriver().SysRoot + "/usr/lib"); in Ananas()
H A DHexagon.cpp316 const ToolChain::path_list &LibPaths = HTC.getFilePaths(); in constructHexagonLinkArgs()
469 ToolChain::path_list &LibPaths = getFilePaths(); in HexagonToolChain()
H A DSolaris.cpp178 path_list &Paths = getFilePaths(); in Solaris()
H A DOpenBSD.cpp255 getFilePaths().push_back(getDriver().SysRoot + "/usr/lib"); in OpenBSD()
H A DFuchsia.cpp170 getFilePaths().push_back(P.str()); in Fuchsia()
H A DNaCl.cpp208 path_list &file_paths = getFilePaths(); in NaClToolChain()
H A DPS4CPU.cpp411 getFilePaths().push_back(PS4SDKLibDir.str()); in PS4CPU()
H A DLinux.cpp318 path_list &Paths = getFilePaths(); in Linux()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Driver/
H A DToolChain.h224 path_list &getFilePaths() { return FilePaths; } in getFilePaths() function
225 const path_list &getFilePaths() const { return FilePaths; } in getFilePaths() function
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/
H A DToolChain.cpp91 getFilePaths().push_back(CandidateLibPath); in ToolChain()
784 for (const auto &LibPath : getFilePaths()) in AddFilePathLibArgs()
H A DDriver.cpp1692 for (const std::string &Path : TC.getFilePaths()) { in HandleImmediateArgs()
4407 if (auto P = SearchPaths(TC.getFilePaths())) in GetFilePath()