svn commit: r219073 - head/contrib/llvm/tools/clang/lib/Driver

Dimitry Andric dim at FreeBSD.org
Sat Feb 26 23:07:44 UTC 2011


Author: dim
Date: Sat Feb 26 23:07:43 2011
New Revision: 219073
URL: http://svn.freebsd.org/changeset/base/219073

Log:
  Remove getDriver().Dir + /../libexec and /usr/libexec from clang's
  program paths.  Unlike gcc, clang has no executables in libexec.

Modified:
  head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp

Modified: head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
==============================================================================
--- head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp	Sat Feb 26 23:05:47 2011	(r219072)
+++ head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp	Sat Feb 26 23:07:43 2011	(r219073)
@@ -1108,8 +1108,6 @@ FreeBSD::FreeBSD(const HostInfo &Host, c
         llvm::Triple::x86_64)
     Lib32 = true;
     
-  getProgramPaths().push_back(getDriver().Dir + "/../libexec");
-  getProgramPaths().push_back("/usr/libexec");
   if (Lib32) {
     getFilePaths().push_back(CLANG_PREFIX "/usr/lib32");
   } else {


More information about the svn-src-head mailing list