diff options
author | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-06-23 13:50:47 +0000 |
---|---|---|
committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-06-23 13:50:47 +0000 |
commit | 89bb6146a8eca177b63fbcbc03c68f9012666023 (patch) | |
tree | 3f595e57c604d8b67d9903e9fa9bbe5608e49413 /lib/Driver/ToolChains.cpp | |
parent | 1626601b00a1feccd6b7a3f54e2991f56b659192 (diff) |
fix autoconf build from r133710
Sorry! This commit worked in CMake, but
CXX_INCLUDE_ROOT is defined in a different
config.h for autoconf.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133715 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/ToolChains.cpp')
-rw-r--r-- | lib/Driver/ToolChains.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp index 4cd96beb05..5eb859446f 100644 --- a/lib/Driver/ToolChains.cpp +++ b/lib/Driver/ToolChains.cpp @@ -36,6 +36,8 @@ #include <cstdlib> // ::getenv +#include "llvm/Config/config.h" // for CXX_INCLUDE_ROOT + using namespace clang::driver; using namespace clang::driver::toolchains; |