]> granicus.if.org Git - clang/commitdiff
On FreeBSD, we don't want 'getDriver().Dir + "/../lib"' added to the
authorRoman Divacky <rdivacky@freebsd.org>
Tue, 1 Mar 2011 18:03:28 +0000 (18:03 +0000)
committerRoman Divacky <rdivacky@freebsd.org>
Tue, 1 Mar 2011 18:03:28 +0000 (18:03 +0000)
ToolChain's FilePaths.  If clang is installed as a port in /usr/local,
it is *not* supposed to use /usr/local/lib by default, for example.

Additionally, there are no clang-related executables in either
/usr/libexec, or getDriver().Dir + "/../libexec", anymore, so remove
that from the ToolChain's ProgramPaths.

Patch by Dimitry Andric!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126760 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/ToolChains.cpp

index 1c396bd0ed5b39385c350f9f00429a89600be408..561476ecdf0d575652c4a0919661dd0a61df15e2 100644 (file)
@@ -1104,13 +1104,9 @@ FreeBSD::FreeBSD(const HostInfo &Host, const llvm::Triple& Triple)
         llvm::Triple::x86_64)
     Lib32 = true;
     
-  getProgramPaths().push_back(getDriver().Dir + "/../libexec");
-  getProgramPaths().push_back("/usr/libexec");
   if (Lib32) {
-    getFilePaths().push_back(getDriver().Dir + "/../lib32");
     getFilePaths().push_back("/usr/lib32");
   } else {
-    getFilePaths().push_back(getDriver().Dir + "/../lib");
     getFilePaths().push_back("/usr/lib");
   }
 }