diff options
author | Mike Stump <mrs@apple.com> | 2009-10-08 23:29:47 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-10-08 23:29:47 +0000 |
commit | 43d8176d2e8e304b2d419fb0fe139cc07af80dea (patch) | |
tree | 3f7b30a5b649d744f2efc93c01cec29407e2fdad /include/clang/Frontend/InitHeaderSearch.h | |
parent | 76bee4b756badefda61ce867c757cc31b7afa12f (diff) |
Set up include paths for VC++ and Cygwin headers, along with the
existing MinGW headers, plus the newer 4.4.0 version. Patch by John
Thompson.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83594 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/InitHeaderSearch.h')
-rw-r--r-- | include/clang/Frontend/InitHeaderSearch.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Frontend/InitHeaderSearch.h b/include/clang/Frontend/InitHeaderSearch.h index 097f34ea5e..d80221ae9c 100644 --- a/include/clang/Frontend/InitHeaderSearch.h +++ b/include/clang/Frontend/InitHeaderSearch.h @@ -16,6 +16,7 @@ #include "clang/Lex/DirectoryLookup.h" #include "llvm/ADT/StringRef.h" +#include "llvm/ADT/Triple.h" #include <string> #include <vector> @@ -66,7 +67,7 @@ public: /// AddDefaultSystemIncludePaths - Adds the default system include paths so /// that e.g. stdio.h is found. - void AddDefaultSystemIncludePaths(const LangOptions &Lang); + void AddDefaultSystemIncludePaths(const LangOptions &Lang, llvm::Triple &triple); /// Realize - Merges all search path lists into one list and send it to /// HeaderSearch. |