Home | History | Annotate | Download | only in Driver

Lines Matching defs:Paths

1314 /// This performs all of the autodetection and sets up the various paths.
1634 // \brief -- try common CUDA installation paths looking for files we need for
2387 /// \brief Helper to add the variant paths of a libstdc++ installation.
2611 // Other standard paths
2648 // program paths
2655 // Remove paths added by Linux toolchain. Currently Hexagon_TC really targets
2656 // 'elf' OS type, so the Linux paths are not appropriate. When we actually
2748 // Remove paths added by Generic_GCC. NaCl Toolchain cannot use the
2749 // default paths, and must instead only use the paths provided
3285 ToolChain::path_list &Paths) {
3287 Paths.push_back(Path.str());
3298 path_list &Paths = getFilePaths();
3300 addPathIfExists(D, GCCInstallation.getInstallPath(), Paths);
3302 addPathIfExists(D, getDriver().getInstalledDir(), Paths);
3304 addPathIfExists(D, getDriver().Dir, Paths);
3306 addPathIfExists(D, getDriver().SysRoot + getDriver().Dir + "/../lib", Paths);
3323 addPathIfExists(D, getDriver().SysRoot + LibPath, Paths);
3492 /// a target-triple directory in the library and header search paths.
3692 // The selection of paths to try here is designed to match the patterns which
3696 // to the link paths.
3697 path_list &Paths = getFilePaths();
3702 // Add the multilib suffixed paths where they are available.
3711 Paths);
3733 Paths);
3737 // It is important to *not* use these paths when the GCC installation is
3745 addPathIfExists(D, LibPath + "/" + MultiarchTriple, Paths);
3746 addPathIfExists(D, LibPath + "/../" + OSLibDir, Paths);
3751 // of the requested system root, add its parent library paths to
3756 addPathIfExists(D, D.Dir + "/../lib/" + MultiarchTriple, Paths);
3757 addPathIfExists(D, D.Dir + "/../" + OSLibDir, Paths);
3760 addPathIfExists(D, SysRoot + "/lib/" + MultiarchTriple, Paths);
3761 addPathIfExists(D, SysRoot + "/lib/../" + OSLibDir, Paths);
3762 addPathIfExists(D, SysRoot + "/usr/lib/" + MultiarchTriple, Paths);
3763 addPathIfExists(D, SysRoot + "/usr/lib/../" + OSLibDir, Paths);
3771 Paths);
3778 Paths);
3788 Paths);
3793 addPathIfExists(D, LibPath, Paths);
3802 addPathIfExists(D, D.Dir + "/../lib", Paths);
3804 addPathIfExists(D, SysRoot + "/lib", Paths);
3805 addPathIfExists(D, SysRoot + "/usr/lib", Paths);
4043 // Check if libc++ has been enabled and provide its include paths if so.