[cfe-commits] r141980 - /cfe/trunk/lib/Driver/ToolChains.cpp
Rafael Espindola
rafael.espindola at gmail.com
Fri Oct 14 12:50:09 PDT 2011
Author: rafael
Date: Fri Oct 14 14:50:08 2011
New Revision: 141980
URL: http://llvm.org/viewvc/llvm-project?rev=141980&view=rev
Log:
Fix the CXX_INCLUDE_ROOT case that was out of date with ScanLibDirForGCCTriple.
Modified:
cfe/trunk/lib/Driver/ToolChains.cpp
Modified: cfe/trunk/lib/Driver/ToolChains.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/ToolChains.cpp?rev=141980&r1=141979&r2=141980&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/ToolChains.cpp (original)
+++ cfe/trunk/lib/Driver/ToolChains.cpp Fri Oct 14 14:50:08 2011
@@ -1575,7 +1575,7 @@
GccInstallPath.append(CXX_INCLUDE_ARCH);
GccInstallPath.append("/");
GccInstallPath.append(Version);
- GccParentLibPath = GccInstallPath + "/../../../..";
+ GccParentLibPath = GccInstallPath + "/../../..";
IsValid = true;
return;
}
More information about the cfe-commits
mailing list