Home | History | Annotate | Download | only in ToolChains

Lines Matching defs:OSLibDir

157   // oslibdir, and using that variant while targeting other architectures causes
163 // reasoning about oslibdir spellings with the lib dir spellings in the
263 const std::string OSLibDir = std::string(getOSLibDir(Triple, Args));
266 Generic_GCC::AddMultilibPaths(D, SysRoot, OSLibDir, MultiarchTriple, Paths);
269 addPathIfExists(D, SysRoot + "/lib/../" + OSLibDir, Paths);
291 addPathIfExists(D, SysRoot + "/usr/" + OSLibDir, Paths);
293 addPathIfExists(D, SysRoot + "/usr/lib/../" + OSLibDir, Paths);
296 addPathIfExists(D, SysRoot + "/" + OSLibDir + "/" + ABIName, Paths);
297 addPathIfExists(D, SysRoot + "/usr/" + OSLibDir + "/" + ABIName, Paths);
300 Generic_GCC::AddMultiarchPaths(D, SysRoot, OSLibDir, Paths);