Home | History | Annotate | Download | only in Driver

Lines Matching refs:Dir

47   // We expect 'as', 'ld', etc. to be adjacent to our install dir.
49 if (getDriver().getInstalledDir() != getDriver().Dir)
50 getProgramPaths().push_back(getDriver().Dir);
302 SmallString<128> Dir(getDriver().ResourceDir);
303 llvm::sys::path::append(Dir, "lib", IsEmbedded ? "macho_embedded" : "darwin");
305 SmallString<128> P(Dir);
326 // Add the path to the resource dir to rpath to support using the dylib
329 CmdArgs.push_back(Args.MakeArgString(Dir));
740 // it was previously found in the gcc lib dir. However, for all the Darwin
778 // only present in the gcc lib dir, which makes it hard to find).
2690 if (getDriver().getInstalledDir() != getDriver().Dir)
2691 getProgramPaths().push_back(getDriver().Dir);
2994 for (auto &Dir : RootDirs) {
2995 std::string LibDir = Dir + "/hexagon/lib";
3013 // Note: Generic_GCC::Generic_GCC adds InstalledDir and getDriver().Dir to
3119 std::string FilePath(getDriver().Dir + "/../");
3122 std::string ProgPath(getDriver().Dir + "/../");
3174 SmallString<128> P(D.Dir + "/../");
3227 SmallString<128> P(D.Dir + "/../");
3291 std::string Path(getDriver().Dir);
3312 SmallString<128> P(getDriver().Dir);
3323 SmallString<128> P(getDriver().Dir);
3386 getFilePaths().push_back(getDriver().Dir + "/../lib");
3400 getFilePaths().push_back(getDriver().Dir + "/../lib");
3666 getFilePaths().push_back(getDriver().Dir + "/../lib");
3695 if (getDriver().getInstalledDir() != getDriver().Dir)
3696 addPathIfExists(D, getDriver().Dir, Paths);
3698 addPathIfExists(D, getDriver().SysRoot + getDriver().Dir + "/../lib", Paths);
4016 // reasoning about oslibdir spellings with the lib dir spellings in the
4167 // directory ('Dir' below) or the ResourceDir.
4168 if (StringRef(D.Dir).startswith(SysRoot)) {
4169 addPathIfExists(D, D.Dir + "/../lib/" + MultiarchTriple, Paths);
4170 addPathIfExists(D, D.Dir + "/../" + OSLibDir, Paths);
4213 // directory ('Dir' below) or the ResourceDir.
4214 if (StringRef(D.Dir).startswith(SysRoot))
4215 addPathIfExists(D, D.Dir + "/../lib", Paths);
4403 for (StringRef dir : dirs) {
4405 llvm::sys::path::is_absolute(dir) ? StringRef(SysRoot) : "";
4406 addExternCSystemInclude(DriverArgs, CC1Args, Prefix + dir);
4529 for (StringRef Dir : MultiarchIncludeDirs) {
4530 if (D.getVFS().exists(SysRoot + Dir)) {
4531 addExternCSystemInclude(DriverArgs, CC1Args, SysRoot + Dir);
4575 DetectLibcxxIncludePath(getDriver().Dir + "/../include/c++"),
4718 if (getDriver().getInstalledDir() != getDriver().Dir)
4719 getProgramPaths().push_back(getDriver().Dir);
4721 getFilePaths().push_back(getDriver().Dir + "/../lib");
5082 PS4SDKDir = getDriver().Dir;