| /freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | VEToolchain.cpp | 45 getFilePaths().clear(); in VEToolChain() 53 getFilePaths().push_back(std::move(*Path)); in VEToolChain() 55 getFilePaths().push_back(Path); in VEToolChain() 56 getFilePaths().push_back(computeSysRoot() + "/opt/nec/ve/lib"); in VEToolChain()
|
| H A D | NetBSD.cpp | 393 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/i386")); in NetBSD() 402 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/eabi")); in NetBSD() 406 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/eabihf")); in NetBSD() 409 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/oabi")); in NetBSD() 416 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/o32")); in NetBSD() 418 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/64")); in NetBSD() 421 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/powerpc")); in NetBSD() 424 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/sparc")); in NetBSD() 430 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in NetBSD()
|
| H A D | CSKYToolChain.cpp | 41 path_list &Paths = getFilePaths(); in CSKYToolChain() 45 getFilePaths().push_back(GCCInstallation.getInstallPath().str() + in CSKYToolChain() 54 getFilePaths().push_back(computeSysRoot() + "/lib" + in CSKYToolChain() 58 getFilePaths().push_back(computeSysRoot() + "/lib"); in CSKYToolChain()
|
| H A D | DragonFly.cpp | 212 getFilePaths().push_back(getDriver().Dir + "/../lib"); in DragonFly() 213 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in DragonFly() 214 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/gcc80")); in DragonFly()
|
| H A D | MipsLinux.cpp | 35 getFilePaths().clear(); in MipsLLVMToolChain() 36 getFilePaths().push_back(computeSysRoot() + "/usr/lib" + LibSuffix); in MipsLLVMToolChain()
|
| H A D | Haiku.cpp | 166 getFilePaths().push_back(concat(getDriver().SysRoot, "/boot/system/lib")); in Haiku() 167 getFilePaths().push_back(concat(getDriver().SysRoot, "/boot/system/develop/lib")); in Haiku() 170 getFilePaths().push_back(GCCInstallation.getInstallPath().str()); in Haiku()
|
| H A D | OHOS.cpp | 145 getFilePaths().clear(); in OHOS() 148 getFilePaths().push_back(CandidateLibPath); in OHOS() 159 path_list &Paths = getFilePaths(); in OHOS()
|
| H A D | Fuchsia.cpp | 255 getFilePaths().push_back(std::string(P)); in Fuchsia() 329 getFilePaths().insert(getFilePaths().begin(), Path); in Fuchsia()
|
| H A D | MSP430.cpp | 126 addPathIfExists(D, GCCRtPath, getFilePaths()); in MSP430ToolChain() 131 addPathIfExists(D, SysRootDir, getFilePaths()); in MSP430ToolChain()
|
| H A D | WebAssembly.cpp | 255 getFilePaths().push_back(SysRoot + "/lib"); in WebAssembly() 264 getFilePaths().push_back(Dir); in WebAssembly() 266 getFilePaths().push_back(SysRoot + "/lib/" + MultiarchTriple); in WebAssembly()
|
| H A D | Cygwin.cpp | 32 path_list &Paths = getFilePaths(); in Cygwin()
|
| H A D | MinGW.cpp | 535 getFilePaths().push_back(GccLibDir); in MinGW() 542 getFilePaths().push_back( in MinGW() 546 getFilePaths().push_back( in MinGW() 555 getFilePaths().push_back(Base + "lib"); in MinGW()
|
| H A D | Hurd.cpp | 87 path_list &Paths = getFilePaths(); in Hurd()
|
| H A D | FreeBSD.cpp | 397 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib32")); in FreeBSD() 399 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in FreeBSD()
|
| H A D | Managarm.cpp | 85 path_list &Paths = getFilePaths(); in Managarm()
|
| H A D | Hexagon.cpp | 389 const ToolChain::path_list &LibPaths = HTC.getFilePaths(); in constructHexagonLinkArgs() 448 const ToolChain::path_list &LibPaths = HTC.getFilePaths(); in constructHexagonLinkArgs() 610 ToolChain::path_list &LibPaths = getFilePaths(); in HexagonToolChain()
|
| H A D | PS4CPU.cpp | 501 getFilePaths().push_back(std::string(Dir)); in PS4PS5Base() 510 getFilePaths().push_back("."); in PS4PS5Base()
|
| H A D | BareMetal.cpp | 230 path_list &Paths = getFilePaths(); in BareMetal() 254 getFilePaths().push_back(std::string(Dir)); in BareMetal()
|
| H A D | NaCl.cpp | 205 path_list &file_paths = getFilePaths(); in NaClToolChain()
|
| H A D | Solaris.cpp | 312 path_list &Paths = getFilePaths(); in Solaris()
|
| H A D | OpenBSD.cpp | 310 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in OpenBSD()
|
| H A D | Linux.cpp | 316 path_list &Paths = getFilePaths(); in Linux()
|
| H A D | CommonArgs.cpp | 2907 for (const auto &LibPath : HostTC.getFilePaths()) in addOpenMPDeviceRTL()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | ToolChain.h | 299 path_list &getFilePaths() { return FilePaths; } in getFilePaths() function 300 const path_list &getFilePaths() const { return FilePaths; } in getFilePaths() function
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ |
| H A D | ToolChain.cpp | 102 getFilePaths().push_back(*Path); in ToolChain() 104 addIfExists(getFilePaths(), Path); in ToolChain() 1532 for (const auto &LibPath : getFilePaths()) in AddFilePathLibArgs()
|