blob: 6102760aef53f6dcc09a8a28fa1cd6f1125009f4 [file] [log] [blame]
Nico Weber0fca0222008-08-22 09:25:22 +00001//===--- InitHeaderSearch.cpp - Initialize header search paths ----------*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the InitHeaderSearch class.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000014#include "clang/Frontend/Utils.h"
Nico Weber0fca0222008-08-22 09:25:22 +000015#include "clang/Basic/FileManager.h"
16#include "clang/Basic/LangOptions.h"
Daniel Dunbar63c8b772009-11-07 04:20:50 +000017#include "clang/Frontend/HeaderSearchOptions.h"
18#include "clang/Lex/HeaderSearch.h"
Nico Weber0fca0222008-08-22 09:25:22 +000019#include "llvm/ADT/SmallString.h"
20#include "llvm/ADT/SmallPtrSet.h"
Rafael Espindolaaadd7a42009-11-13 05:13:58 +000021#include "llvm/ADT/SmallVector.h"
Rafael Espindolaf0a2f512009-11-12 05:48:41 +000022#include "llvm/ADT/StringExtras.h"
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000023#include "llvm/ADT/Triple.h"
Benjamin Kramere89ba592009-12-08 12:38:20 +000024#include "llvm/ADT/Twine.h"
Chris Lattnerd57a7ef2009-08-23 22:45:33 +000025#include "llvm/Support/raw_ostream.h"
Nico Weber0fca0222008-08-22 09:25:22 +000026#include "llvm/System/Path.h"
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +000027#include "llvm/Config/config.h"
Mike Stump620d57a2009-10-12 20:50:45 +000028#ifdef _MSC_VER
29 #define WIN32_LEAN_AND_MEAN 1
30 #include <windows.h>
31#endif
Nico Weber0fca0222008-08-22 09:25:22 +000032using namespace clang;
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000033using namespace clang::frontend;
34
35namespace {
36
37/// InitHeaderSearch - This class makes it easier to set the search paths of
38/// a HeaderSearch object. InitHeaderSearch stores several search path lists
39/// internally, which can be sent to a HeaderSearch object in one swoop.
40class InitHeaderSearch {
41 std::vector<DirectoryLookup> IncludeGroup[4];
42 HeaderSearch& Headers;
43 bool Verbose;
44 std::string isysroot;
45
46public:
47
48 InitHeaderSearch(HeaderSearch &HS,
49 bool verbose = false, const std::string &iSysroot = "")
50 : Headers(HS), Verbose(verbose), isysroot(iSysroot) {}
51
52 /// AddPath - Add the specified path to the specified group list.
Benjamin Kramere89ba592009-12-08 12:38:20 +000053 void AddPath(const llvm::Twine &Path, IncludeDirGroup Group,
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000054 bool isCXXAware, bool isUserSupplied,
55 bool isFramework, bool IgnoreSysRoot = false);
56
57 /// AddGnuCPlusPlusIncludePaths - Add the necessary paths to suport a gnu
58 /// libstdc++.
Benjamin Kramere89ba592009-12-08 12:38:20 +000059 void AddGnuCPlusPlusIncludePaths(llvm::StringRef Base,
60 llvm::StringRef ArchDir,
61 llvm::StringRef Dir32,
62 llvm::StringRef Dir64,
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000063 const llvm::Triple &triple);
64
65 /// AddMinGWCPlusPlusIncludePaths - Add the necessary paths to suport a MinGW
66 /// libstdc++.
Benjamin Kramere89ba592009-12-08 12:38:20 +000067 void AddMinGWCPlusPlusIncludePaths(llvm::StringRef Base,
68 llvm::StringRef Arch,
69 llvm::StringRef Version);
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000070
71 /// AddDelimitedPaths - Add a list of paths delimited by the system PATH
72 /// separator. The processing follows that of the CPATH variable for gcc.
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +000073 void AddDelimitedPaths(llvm::StringRef String);
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000074
75 // AddDefaultCIncludePaths - Add paths that should always be searched.
76 void AddDefaultCIncludePaths(const llvm::Triple &triple);
77
78 // AddDefaultCPlusPlusIncludePaths - Add paths that should be searched when
79 // compiling c++.
80 void AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple);
81
82 /// AddDefaultSystemIncludePaths - Adds the default system include paths so
83 /// that e.g. stdio.h is found.
84 void AddDefaultSystemIncludePaths(const LangOptions &Lang,
85 const llvm::Triple &triple);
86
87 /// Realize - Merges all search path lists into one list and send it to
88 /// HeaderSearch.
89 void Realize();
90};
91
92}
Nico Weber0fca0222008-08-22 09:25:22 +000093
Benjamin Kramere89ba592009-12-08 12:38:20 +000094void InitHeaderSearch::AddPath(const llvm::Twine &Path,
Benjamin Kramer458fb102009-09-05 09:49:39 +000095 IncludeDirGroup Group, bool isCXXAware,
96 bool isUserSupplied, bool isFramework,
97 bool IgnoreSysRoot) {
Benjamin Kramere89ba592009-12-08 12:38:20 +000098 assert(!Path.isTriviallyEmpty() && "can't handle empty path here");
Nico Weber0fca0222008-08-22 09:25:22 +000099 FileManager &FM = Headers.getFileMgr();
Mike Stump1eb44332009-09-09 15:08:12 +0000100
Nico Weber0fca0222008-08-22 09:25:22 +0000101 // Compute the actual path, taking into consideration -isysroot.
Benjamin Kramere89ba592009-12-08 12:38:20 +0000102 llvm::SmallString<256> MappedPathStr;
103 llvm::raw_svector_ostream MappedPath(MappedPathStr);
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Nico Weber0fca0222008-08-22 09:25:22 +0000105 // Handle isysroot.
Chris Lattner6858dd32009-02-19 06:48:28 +0000106 if (Group == System && !IgnoreSysRoot) {
Nico Weber0fca0222008-08-22 09:25:22 +0000107 // FIXME: Portability. This should be a sys::Path interface, this doesn't
108 // handle things like C:\ right, nor win32 \\network\device\blah.
109 if (isysroot.size() != 1 || isysroot[0] != '/') // Add isysroot if present.
Benjamin Kramere89ba592009-12-08 12:38:20 +0000110 MappedPath << isysroot;
Nico Weber0fca0222008-08-22 09:25:22 +0000111 }
Mike Stump1eb44332009-09-09 15:08:12 +0000112
Benjamin Kramere89ba592009-12-08 12:38:20 +0000113 Path.print(MappedPath);
Nico Weber0fca0222008-08-22 09:25:22 +0000114
115 // Compute the DirectoryLookup type.
Chris Lattner9d728512008-10-27 01:19:25 +0000116 SrcMgr::CharacteristicKind Type;
Nico Weber0fca0222008-08-22 09:25:22 +0000117 if (Group == Quoted || Group == Angled)
Chris Lattner0b9e7362008-09-26 21:18:42 +0000118 Type = SrcMgr::C_User;
Nico Weber0fca0222008-08-22 09:25:22 +0000119 else if (isCXXAware)
Chris Lattner0b9e7362008-09-26 21:18:42 +0000120 Type = SrcMgr::C_System;
Nico Weber0fca0222008-08-22 09:25:22 +0000121 else
Chris Lattner0b9e7362008-09-26 21:18:42 +0000122 Type = SrcMgr::C_ExternCSystem;
Mike Stump1eb44332009-09-09 15:08:12 +0000123
124
Nico Weber0fca0222008-08-22 09:25:22 +0000125 // If the directory exists, add it.
Benjamin Kramer458fb102009-09-05 09:49:39 +0000126 if (const DirectoryEntry *DE = FM.getDirectory(MappedPath.str())) {
Nico Weber0fca0222008-08-22 09:25:22 +0000127 IncludeGroup[Group].push_back(DirectoryLookup(DE, Type, isUserSupplied,
128 isFramework));
129 return;
130 }
Mike Stump1eb44332009-09-09 15:08:12 +0000131
Nico Weber0fca0222008-08-22 09:25:22 +0000132 // Check to see if this is an apple-style headermap (which are not allowed to
133 // be frameworks).
134 if (!isFramework) {
Benjamin Kramer458fb102009-09-05 09:49:39 +0000135 if (const FileEntry *FE = FM.getFile(MappedPath.str())) {
Nico Weber0fca0222008-08-22 09:25:22 +0000136 if (const HeaderMap *HM = Headers.CreateHeaderMap(FE)) {
137 // It is a headermap, add it to the search path.
138 IncludeGroup[Group].push_back(DirectoryLookup(HM, Type,isUserSupplied));
139 return;
140 }
141 }
142 }
Mike Stump1eb44332009-09-09 15:08:12 +0000143
Nico Weber0fca0222008-08-22 09:25:22 +0000144 if (Verbose)
Daniel Dunbar77659342009-08-19 20:04:03 +0000145 llvm::errs() << "ignoring nonexistent directory \""
146 << MappedPath.str() << "\"\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000147}
148
149
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000150void InitHeaderSearch::AddDelimitedPaths(llvm::StringRef at) {
151 if (at.empty()) // Empty string should not add '.' path.
Nico Weber0fca0222008-08-22 09:25:22 +0000152 return;
153
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000154 llvm::StringRef::size_type delim;
155 while ((delim = at.find(llvm::sys::PathSeparator)) != llvm::StringRef::npos) {
156 if (delim == 0)
Nico Weber0fca0222008-08-22 09:25:22 +0000157 AddPath(".", Angled, false, true, false);
158 else
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000159 AddPath(at.substr(0, delim), Angled, false, true, false);
160 at = at.substr(delim + 1);
Nico Weber0fca0222008-08-22 09:25:22 +0000161 }
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000162
163 if (at.empty())
Nico Weber0fca0222008-08-22 09:25:22 +0000164 AddPath(".", Angled, false, true, false);
165 else
166 AddPath(at, Angled, false, true, false);
167}
168
Benjamin Kramere89ba592009-12-08 12:38:20 +0000169void InitHeaderSearch::AddGnuCPlusPlusIncludePaths(llvm::StringRef Base,
170 llvm::StringRef ArchDir,
171 llvm::StringRef Dir32,
172 llvm::StringRef Dir64,
Rafael Espindola31b63be2009-10-14 17:09:44 +0000173 const llvm::Triple &triple) {
Rafael Espindola6ec18a32009-11-23 16:31:19 +0000174 // Add the base dir
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000175 AddPath(Base, System, true, false, false);
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000176
177 // Add the multilib dirs
Rafael Espindola31b63be2009-10-14 17:09:44 +0000178 llvm::Triple::ArchType arch = triple.getArch();
179 bool is64bit = arch == llvm::Triple::ppc64 || arch == llvm::Triple::x86_64;
Rafael Espindola31b63be2009-10-14 17:09:44 +0000180 if (is64bit)
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000181 AddPath(Base + "/" + ArchDir + "/" + Dir64, System, true, false, false);
Rafael Espindola31b63be2009-10-14 17:09:44 +0000182 else
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000183 AddPath(Base + "/" + ArchDir + "/" + Dir32, System, true, false, false);
Rafael Espindola6ec18a32009-11-23 16:31:19 +0000184
185 // Add the backward dir
186 AddPath(Base + "/backward", System, true, false, false);
Rafael Espindola2e9f6522009-10-06 01:33:02 +0000187}
Nico Weber0fca0222008-08-22 09:25:22 +0000188
Benjamin Kramere89ba592009-12-08 12:38:20 +0000189void InitHeaderSearch::AddMinGWCPlusPlusIncludePaths(llvm::StringRef Base,
190 llvm::StringRef Arch,
191 llvm::StringRef Version) {
Benjamin Kramerab8ae192010-01-20 16:18:11 +0000192 AddPath(Base + "/" + Arch + "/" + Version + "/include",
193 System, true, false, false);
194 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++",
195 System, true, false, false);
196 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/backward",
197 System, true, false, false);
Mike Stump620d57a2009-10-12 20:50:45 +0000198}
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +0000199
Mike Stump620d57a2009-10-12 20:50:45 +0000200 // FIXME: This probably should goto to some platform utils place.
201#ifdef _MSC_VER
John Thompson75ee3bd2009-11-21 00:15:52 +0000202
Mike Stump620d57a2009-10-12 20:50:45 +0000203 // Read registry string.
John Thompson75ee3bd2009-11-21 00:15:52 +0000204 // This also supports a means to look for high-versioned keys by use
205 // of a $VERSION placeholder in the key path.
206 // $VERSION in the key path is a placeholder for the version number,
207 // causing the highest value path to be searched for and used.
208 // I.e. "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\$VERSION".
209 // There can be additional characters in the component. Only the numberic
210 // characters are compared.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000211static bool getSystemRegistryString(const char *keyPath, const char *valueName,
212 char *value, size_t maxLength) {
Mike Stump43d81762009-10-08 23:29:47 +0000213 HKEY hRootKey = NULL;
214 HKEY hKey = NULL;
215 const char* subKey = NULL;
216 DWORD valueType;
217 DWORD valueSize = maxLength - 1;
John Thompson75ee3bd2009-11-21 00:15:52 +0000218 long lResult;
Mike Stump43d81762009-10-08 23:29:47 +0000219 bool returnValue = false;
220 if (strncmp(keyPath, "HKEY_CLASSES_ROOT\\", 18) == 0) {
221 hRootKey = HKEY_CLASSES_ROOT;
222 subKey = keyPath + 18;
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +0000223 }
Mike Stump43d81762009-10-08 23:29:47 +0000224 else if (strncmp(keyPath, "HKEY_USERS\\", 11) == 0) {
225 hRootKey = HKEY_USERS;
226 subKey = keyPath + 11;
227 }
228 else if (strncmp(keyPath, "HKEY_LOCAL_MACHINE\\", 19) == 0) {
229 hRootKey = HKEY_LOCAL_MACHINE;
230 subKey = keyPath + 19;
231 }
232 else if (strncmp(keyPath, "HKEY_CURRENT_USER\\", 18) == 0) {
233 hRootKey = HKEY_CURRENT_USER;
234 subKey = keyPath + 18;
235 }
236 else
237 return(false);
John Thompson75ee3bd2009-11-21 00:15:52 +0000238 const char *placeHolder = strstr(subKey, "$VERSION");
239 char bestName[256];
240 bestName[0] = '\0';
241 // If we have a $VERSION placeholder, do the highest-version search.
242 if (placeHolder) {
243 const char *keyEnd = placeHolder - 1;
244 const char *nextKey = placeHolder;
245 // Find end of previous key.
246 while ((keyEnd > subKey) && (*keyEnd != '\\'))
247 keyEnd--;
248 // Find end of key containing $VERSION.
249 while (*nextKey && (*nextKey != '\\'))
250 nextKey++;
251 size_t partialKeyLength = keyEnd - subKey;
252 char partialKey[256];
253 if (partialKeyLength > sizeof(partialKey))
254 partialKeyLength = sizeof(partialKey);
255 strncpy(partialKey, subKey, partialKeyLength);
256 partialKey[partialKeyLength] = '\0';
257 HKEY hTopKey = NULL;
258 lResult = RegOpenKeyEx(hRootKey, partialKey, 0, KEY_READ, &hTopKey);
259 if (lResult == ERROR_SUCCESS) {
260 char keyName[256];
261 int bestIndex = -1;
262 double bestValue = 0.0;
263 DWORD index, size = sizeof(keyName) - 1;
Nuno Lopes33cc2432009-12-07 17:18:48 +0000264 for (index = 0; RegEnumKeyEx(hTopKey, index, keyName, &size, NULL,
265 NULL, NULL, NULL) == ERROR_SUCCESS; index++) {
266 const char *sp = keyName;
267 while (*sp && !isdigit(*sp))
268 sp++;
269 if (!*sp)
270 continue;
271 const char *ep = sp + 1;
272 while (*ep && (isdigit(*ep) || (*ep == '.')))
273 ep++;
274 char numBuf[32];
275 strncpy(numBuf, sp, sizeof(numBuf) - 1);
276 numBuf[sizeof(numBuf) - 1] = '\0';
277 double value = strtod(numBuf, NULL);
278 if (value > bestValue) {
279 bestIndex = (int)index;
280 bestValue = value;
281 strcpy(bestName, keyName);
282 }
John Thompson75ee3bd2009-11-21 00:15:52 +0000283 size = sizeof(keyName) - 1;
284 }
285 // If we found the highest versioned key, open the key and get the value.
286 if (bestIndex != -1) {
287 // Append rest of key.
288 strncat(bestName, nextKey, sizeof(bestName) - 1);
289 bestName[sizeof(bestName) - 1] = '\0';
290 // Open the chosen key path remainder.
291 lResult = RegOpenKeyEx(hTopKey, bestName, 0, KEY_READ, &hKey);
292 if (lResult == ERROR_SUCCESS) {
293 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
294 (LPBYTE)value, &valueSize);
295 if (lResult == ERROR_SUCCESS)
296 returnValue = true;
297 RegCloseKey(hKey);
298 }
299 }
300 RegCloseKey(hTopKey);
301 }
302 }
303 else {
304 lResult = RegOpenKeyEx(hRootKey, subKey, 0, KEY_READ, &hKey);
305 if (lResult == ERROR_SUCCESS) {
306 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
307 (LPBYTE)value, &valueSize);
308 if (lResult == ERROR_SUCCESS)
309 returnValue = true;
310 RegCloseKey(hKey);
311 }
Mike Stump43d81762009-10-08 23:29:47 +0000312 }
313 return(returnValue);
314}
Mike Stump620d57a2009-10-12 20:50:45 +0000315#else // _MSC_VER
316 // Read registry string.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000317static bool getSystemRegistryString(const char*, const char*, char*, size_t) {
Mike Stump620d57a2009-10-12 20:50:45 +0000318 return(false);
319}
320#endif // _MSC_VER
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +0000321
Mike Stump43d81762009-10-08 23:29:47 +0000322 // Get Visual Studio installation directory.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000323static bool getVisualStudioDir(std::string &path) {
John Thompson75ee3bd2009-11-21 00:15:52 +0000324 char vsIDEInstallDir[256];
Mike Stump620d57a2009-10-12 20:50:45 +0000325 // Try the Windows registry first.
John Thompson75ee3bd2009-11-21 00:15:52 +0000326 bool hasVCDir = getSystemRegistryString(
327 "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\$VERSION",
328 "InstallDir", vsIDEInstallDir, sizeof(vsIDEInstallDir) - 1);
Mike Stump43d81762009-10-08 23:29:47 +0000329 // If we have both vc80 and vc90, pick version we were compiled with.
John Thompson75ee3bd2009-11-21 00:15:52 +0000330 if (hasVCDir && vsIDEInstallDir[0]) {
Mike Stump620d57a2009-10-12 20:50:45 +0000331 char *p = (char*)strstr(vsIDEInstallDir, "\\Common7\\IDE");
332 if (p)
333 *p = '\0';
334 path = vsIDEInstallDir;
335 return(true);
336 }
337 else {
338 // Try the environment.
339 const char* vs90comntools = getenv("VS90COMNTOOLS");
340 const char* vs80comntools = getenv("VS80COMNTOOLS");
341 const char* vscomntools = NULL;
342 // If we have both vc80 and vc90, pick version we were compiled with.
343 if (vs90comntools && vs80comntools) {
344 #if (_MSC_VER >= 1500) // VC90
Mike Stump43d81762009-10-08 23:29:47 +0000345 vscomntools = vs90comntools;
346 #elif (_MSC_VER == 1400) // VC80
347 vscomntools = vs80comntools;
348 #else
349 vscomntools = vs90comntools;
350 #endif
Mike Stump620d57a2009-10-12 20:50:45 +0000351 }
352 else if (vs90comntools)
Mike Stump43d81762009-10-08 23:29:47 +0000353 vscomntools = vs90comntools;
Mike Stump620d57a2009-10-12 20:50:45 +0000354 else if (vs80comntools)
355 vscomntools = vs80comntools;
356 if (vscomntools && *vscomntools) {
357 char *p = (char*)strstr(vscomntools, "\\Common7\\Tools");
358 if (p)
359 *p = '\0';
360 path = vscomntools;
361 return(true);
362 }
363 else
364 return(false);
Mike Stump43d81762009-10-08 23:29:47 +0000365 }
Mike Stump620d57a2009-10-12 20:50:45 +0000366 return(false);
Mike Stump43d81762009-10-08 23:29:47 +0000367}
Mike Stump43d81762009-10-08 23:29:47 +0000368
John Thompson75ee3bd2009-11-21 00:15:52 +0000369 // Get Windows SDK installation directory.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000370static bool getWindowsSDKDir(std::string &path) {
John Thompson75ee3bd2009-11-21 00:15:52 +0000371 char windowsSDKInstallDir[256];
372 // Try the Windows registry.
373 bool hasSDKDir = getSystemRegistryString(
374 "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Microsoft SDKs\\Windows\\$VERSION",
375 "InstallationFolder", windowsSDKInstallDir, sizeof(windowsSDKInstallDir) - 1);
376 // If we have both vc80 and vc90, pick version we were compiled with.
377 if (hasSDKDir && windowsSDKInstallDir[0]) {
378 path = windowsSDKInstallDir;
379 return(true);
380 }
381 return(false);
382}
383
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000384void InitHeaderSearch::AddDefaultCIncludePaths(const llvm::Triple &triple) {
Mike Stump43d81762009-10-08 23:29:47 +0000385 // FIXME: temporary hack: hard-coded paths.
Daniel Dunbarc7064682009-11-12 07:28:29 +0000386 llvm::StringRef CIncludeDirs(C_INCLUDE_DIRS);
387 if (CIncludeDirs != "") {
Rafael Espindolaaadd7a42009-11-13 05:13:58 +0000388 llvm::SmallVector<llvm::StringRef, 5> dirs;
389 CIncludeDirs.split(dirs, ":");
390 for (llvm::SmallVectorImpl<llvm::StringRef>::iterator i = dirs.begin();
391 i != dirs.end();
392 ++i)
Rafael Espindolaf0a2f512009-11-12 05:48:41 +0000393 AddPath(*i, System, false, false, false);
394 return;
395 }
Mike Stump43d81762009-10-08 23:29:47 +0000396 llvm::Triple::OSType os = triple.getOS();
Mike Stump43d81762009-10-08 23:29:47 +0000397 switch (os) {
398 case llvm::Triple::Win32:
399 {
Mike Stump620d57a2009-10-12 20:50:45 +0000400 std::string VSDir;
John Thompson75ee3bd2009-11-21 00:15:52 +0000401 std::string WindowsSDKDir;
Mike Stump620d57a2009-10-12 20:50:45 +0000402 if (getVisualStudioDir(VSDir)) {
403 AddPath(VSDir + "\\VC\\include", System, false, false, false);
John Thompson75ee3bd2009-11-21 00:15:52 +0000404 if (getWindowsSDKDir(WindowsSDKDir))
405 AddPath(WindowsSDKDir, System, false, false, false);
406 else
407 AddPath(VSDir + "\\VC\\PlatformSDK\\Include",
408 System, false, false, false);
Mike Stump620d57a2009-10-12 20:50:45 +0000409 }
John Thompson9319f022009-11-23 17:49:27 +0000410 else {
411 // Default install paths.
412 AddPath("C:/Program Files/Microsoft Visual Studio 9.0/VC/include",
413 System, false, false, false);
414 AddPath(
415 "C:/Program Files/Microsoft Visual Studio 9.0/VC/PlatformSDK/Include",
416 System, false, false, false);
417 AddPath("C:/Program Files/Microsoft Visual Studio 8/VC/include",
418 System, false, false, false);
419 AddPath(
420 "C:/Program Files/Microsoft Visual Studio 8/VC/PlatformSDK/Include",
421 System, false, false, false);
422 // For some clang developers.
423 AddPath("G:/Program Files/Microsoft Visual Studio 9.0/VC/include",
424 System, false, false, false);
425 AddPath(
426 "G:/Program Files/Microsoft Visual Studio 9.0/VC/PlatformSDK/Include",
427 System, false, false, false);
428 }
Mike Stump43d81762009-10-08 23:29:47 +0000429 }
430 break;
Mike Stump43d81762009-10-08 23:29:47 +0000431 case llvm::Triple::MinGW64:
Mike Stump620d57a2009-10-12 20:50:45 +0000432 case llvm::Triple::MinGW32:
Mike Stump43d81762009-10-08 23:29:47 +0000433 AddPath("c:/mingw/include", System, true, false, false);
434 break;
435 default:
Mike Stump43d81762009-10-08 23:29:47 +0000436 break;
437 }
John Thompsond3f88342009-10-13 18:51:32 +0000438
439 AddPath("/usr/local/include", System, false, false, false);
440 AddPath("/usr/include", System, false, false, false);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000441}
442
443void InitHeaderSearch::AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple) {
444 llvm::Triple::OSType os = triple.getOS();
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000445 llvm::StringRef CxxIncludeRoot(CXX_INCLUDE_ROOT);
446 if (CxxIncludeRoot != "") {
447 llvm::StringRef CxxIncludeArch(CXX_INCLUDE_ARCH);
448 if (CxxIncludeArch == "")
449 AddGnuCPlusPlusIncludePaths(CxxIncludeRoot, triple.str().c_str(),
450 CXX_INCLUDE_32BIT_DIR, CXX_INCLUDE_64BIT_DIR, triple);
451 else
452 AddGnuCPlusPlusIncludePaths(CxxIncludeRoot, CXX_INCLUDE_ARCH,
453 CXX_INCLUDE_32BIT_DIR, CXX_INCLUDE_64BIT_DIR, triple);
454 return;
455 }
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000456 // FIXME: temporary hack: hard-coded paths.
457 switch (os) {
458 case llvm::Triple::Cygwin:
459 AddPath("/lib/gcc/i686-pc-cygwin/3.4.4/include",
460 System, true, false, false);
461 AddPath("/lib/gcc/i686-pc-cygwin/3.4.4/include/c++",
462 System, true, false, false);
463 break;
464 case llvm::Triple::MinGW64:
465 // Try gcc 4.4.0
466 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw64", "4.4.0");
467 // Try gcc 4.3.0
468 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw64", "4.3.0");
469 // Fall through.
470 case llvm::Triple::MinGW32:
471 // Try gcc 4.4.0
472 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw32", "4.4.0");
473 // Try gcc 4.3.0
474 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw32", "4.3.0");
475 break;
476 case llvm::Triple::Darwin:
477 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2.1",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000478 "i686-apple-darwin10", "", "x86_64", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000479 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.0.0",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000480 "i686-apple-darwin8", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000481 break;
Chris Lattner7a7ca282010-01-09 05:41:14 +0000482 case llvm::Triple::DragonFly:
483 AddPath("/usr/include/c++/4.1", System, true, false, false);
484 break;
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000485 case llvm::Triple::Linux:
Torok Edwinfc4b8992009-12-18 17:29:14 +0000486 // Exherbo (2009-10-26)
487 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.2",
488 "x86_64-pc-linux-gnu", "32", "", triple);
489 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.2",
490 "i686-pc-linux-gnu", "", "", triple);
Torok Edwin331e8012009-12-18 17:43:54 +0000491 // Debian sid
492 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.2",
493 "x86_64-linux-gnu", "32", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000494 // Ubuntu 7.10 - Gutsy Gibbon
495 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.1.3",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000496 "i486-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000497 // Ubuntu 9.04
498 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.3",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000499 "x86_64-linux-gnu","32", "", triple);
Sebastian Redl5114eca2009-11-05 17:44:49 +0000500 // Ubuntu 9.10
501 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.1",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000502 "x86_64-linux-gnu", "32", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000503 // Fedora 8
504 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.1.2",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000505 "i386-redhat-linux", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000506 // Fedora 9
507 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.0",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000508 "i386-redhat-linux", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000509 // Fedora 10
510 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.2",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000511 "i386-redhat-linux","", "", triple);
Nuno Lopes189a1482009-11-17 15:28:35 +0000512
Chris Lattner0720b512010-01-19 23:30:00 +0000513 // Fedora 10 x86_64
514 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.2",
515 "x86_64-redhat-linux", "32", "", triple);
516
Nuno Lopes189a1482009-11-17 15:28:35 +0000517 // Fedora 11
518 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.1",
519 "i586-redhat-linux","", "", triple);
520
Nuno Lopes33cc2432009-12-07 17:18:48 +0000521 // Fedora 12
522 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.2",
523 "i686-redhat-linux","", "", triple);
524
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000525 // openSUSE 11.1 32 bit
526 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000527 "i586-suse-linux", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000528 // openSUSE 11.1 64 bit
529 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000530 "x86_64-suse-linux", "32", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000531 // openSUSE 11.2
532 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000533 "i586-suse-linux", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000534 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000535 "x86_64-suse-linux", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000536 // Arch Linux 2008-06-24
537 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.1",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000538 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000539 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.1",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000540 "x86_64-unknown-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000541 // Gentoo x86 2009.1 stable
542 AddGnuCPlusPlusIncludePaths(
John Thompson40d1bb62009-11-05 22:03:02 +0000543 "/usr/lib/gcc/i686-pc-linux-gnu/4.3.4/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000544 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000545 // Gentoo x86 2009.0 stable
546 AddGnuCPlusPlusIncludePaths(
John Thompson40d1bb62009-11-05 22:03:02 +0000547 "/usr/lib/gcc/i686-pc-linux-gnu/4.3.2/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000548 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000549 // Gentoo x86 2008.0 stable
550 AddGnuCPlusPlusIncludePaths(
John Thompson40d1bb62009-11-05 22:03:02 +0000551 "/usr/lib/gcc/i686-pc-linux-gnu/4.1.2/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000552 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000553 // Ubuntu 8.10
554 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000555 "i486-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000556 // Ubuntu 9.04
557 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000558 "i486-linux-gnu","", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000559 // Gentoo amd64 stable
560 AddGnuCPlusPlusIncludePaths(
561 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000562 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000563 break;
564 case llvm::Triple::FreeBSD:
Nuno Lopesafe859a2010-01-17 00:00:11 +0000565 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2", "", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000566 break;
567 case llvm::Triple::Solaris:
568 // Solaris - Fall though..
569 case llvm::Triple::AuroraUX:
570 // AuroraUX
571 AddGnuCPlusPlusIncludePaths("/opt/gcc4/include/c++/4.2.4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000572 "i386-pc-solaris2.11", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000573 break;
574 default:
575 break;
576 }
577}
578
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000579void InitHeaderSearch::AddDefaultSystemIncludePaths(const LangOptions &Lang,
580 const llvm::Triple &triple) {
Rafael Espindola6ec18a32009-11-23 16:31:19 +0000581 if (Lang.CPlusPlus)
582 AddDefaultCPlusPlusIncludePaths(triple);
583
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000584 AddDefaultCIncludePaths(triple);
Daniel Dunbare1665822009-11-07 04:20:39 +0000585
586 // Add the default framework include paths on Darwin.
587 if (triple.getOS() == llvm::Triple::Darwin) {
588 AddPath("/System/Library/Frameworks", System, true, false, true);
589 AddPath("/Library/Frameworks", System, true, false, true);
590 }
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000591}
592
Nico Weber0fca0222008-08-22 09:25:22 +0000593/// RemoveDuplicates - If there are duplicate directory entries in the specified
594/// search list, remove the later (dead) ones.
595static void RemoveDuplicates(std::vector<DirectoryLookup> &SearchList,
596 bool Verbose) {
597 llvm::SmallPtrSet<const DirectoryEntry *, 8> SeenDirs;
598 llvm::SmallPtrSet<const DirectoryEntry *, 8> SeenFrameworkDirs;
599 llvm::SmallPtrSet<const HeaderMap *, 8> SeenHeaderMaps;
600 for (unsigned i = 0; i != SearchList.size(); ++i) {
Chris Lattner7a739402008-09-26 17:46:45 +0000601 unsigned DirToRemove = i;
Mike Stump1eb44332009-09-09 15:08:12 +0000602
Chris Lattner43eee072009-02-08 01:00:10 +0000603 const DirectoryLookup &CurEntry = SearchList[i];
Mike Stump1eb44332009-09-09 15:08:12 +0000604
Chris Lattner43eee072009-02-08 01:00:10 +0000605 if (CurEntry.isNormalDir()) {
Nico Weber0fca0222008-08-22 09:25:22 +0000606 // If this isn't the first time we've seen this dir, remove it.
Chris Lattner43eee072009-02-08 01:00:10 +0000607 if (SeenDirs.insert(CurEntry.getDir()))
Nico Weber0fca0222008-08-22 09:25:22 +0000608 continue;
Chris Lattner43eee072009-02-08 01:00:10 +0000609 } else if (CurEntry.isFramework()) {
Nico Weber0fca0222008-08-22 09:25:22 +0000610 // If this isn't the first time we've seen this framework dir, remove it.
Chris Lattner43eee072009-02-08 01:00:10 +0000611 if (SeenFrameworkDirs.insert(CurEntry.getFrameworkDir()))
Nico Weber0fca0222008-08-22 09:25:22 +0000612 continue;
Nico Weber0fca0222008-08-22 09:25:22 +0000613 } else {
Chris Lattner43eee072009-02-08 01:00:10 +0000614 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
Nico Weber0fca0222008-08-22 09:25:22 +0000615 // If this isn't the first time we've seen this headermap, remove it.
Chris Lattner43eee072009-02-08 01:00:10 +0000616 if (SeenHeaderMaps.insert(CurEntry.getHeaderMap()))
Nico Weber0fca0222008-08-22 09:25:22 +0000617 continue;
Chris Lattner30f05b52009-02-08 00:55:22 +0000618 }
Mike Stump1eb44332009-09-09 15:08:12 +0000619
Chris Lattner30f05b52009-02-08 00:55:22 +0000620 // If we have a normal #include dir/framework/headermap that is shadowed
621 // later in the chain by a system include location, we actually want to
622 // ignore the user's request and drop the user dir... keeping the system
623 // dir. This is weird, but required to emulate GCC's search path correctly.
624 //
625 // Since dupes of system dirs are rare, just rescan to find the original
626 // that we're nuking instead of using a DenseMap.
Chris Lattner43eee072009-02-08 01:00:10 +0000627 if (CurEntry.getDirCharacteristic() != SrcMgr::C_User) {
Chris Lattner30f05b52009-02-08 00:55:22 +0000628 // Find the dir that this is the same of.
629 unsigned FirstDir;
630 for (FirstDir = 0; ; ++FirstDir) {
631 assert(FirstDir != i && "Didn't find dupe?");
Mike Stump1eb44332009-09-09 15:08:12 +0000632
Chris Lattner43eee072009-02-08 01:00:10 +0000633 const DirectoryLookup &SearchEntry = SearchList[FirstDir];
634
Chris Lattner30f05b52009-02-08 00:55:22 +0000635 // If these are different lookup types, then they can't be the dupe.
Chris Lattner43eee072009-02-08 01:00:10 +0000636 if (SearchEntry.getLookupType() != CurEntry.getLookupType())
Chris Lattner30f05b52009-02-08 00:55:22 +0000637 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Chris Lattner30f05b52009-02-08 00:55:22 +0000639 bool isSame;
Chris Lattner43eee072009-02-08 01:00:10 +0000640 if (CurEntry.isNormalDir())
641 isSame = SearchEntry.getDir() == CurEntry.getDir();
642 else if (CurEntry.isFramework())
643 isSame = SearchEntry.getFrameworkDir() == CurEntry.getFrameworkDir();
Chris Lattner30f05b52009-02-08 00:55:22 +0000644 else {
Chris Lattner43eee072009-02-08 01:00:10 +0000645 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
646 isSame = SearchEntry.getHeaderMap() == CurEntry.getHeaderMap();
Chris Lattner30f05b52009-02-08 00:55:22 +0000647 }
Mike Stump1eb44332009-09-09 15:08:12 +0000648
Chris Lattner30f05b52009-02-08 00:55:22 +0000649 if (isSame)
650 break;
651 }
Mike Stump1eb44332009-09-09 15:08:12 +0000652
Chris Lattner30f05b52009-02-08 00:55:22 +0000653 // If the first dir in the search path is a non-system dir, zap it
654 // instead of the system one.
655 if (SearchList[FirstDir].getDirCharacteristic() == SrcMgr::C_User)
656 DirToRemove = FirstDir;
657 }
658
659 if (Verbose) {
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000660 llvm::errs() << "ignoring duplicate directory \""
661 << CurEntry.getName() << "\"\n";
Chris Lattner30f05b52009-02-08 00:55:22 +0000662 if (DirToRemove != i)
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000663 llvm::errs() << " as it is a non-system directory that duplicates "
664 << "a system directory\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000665 }
Mike Stump1eb44332009-09-09 15:08:12 +0000666
Chris Lattner7a739402008-09-26 17:46:45 +0000667 // This is reached if the current entry is a duplicate. Remove the
668 // DirToRemove (usually the current dir).
669 SearchList.erase(SearchList.begin()+DirToRemove);
Nico Weber0fca0222008-08-22 09:25:22 +0000670 --i;
671 }
672}
673
674
675void InitHeaderSearch::Realize() {
676 // Concatenate ANGLE+SYSTEM+AFTER chains together into SearchList.
677 std::vector<DirectoryLookup> SearchList;
678 SearchList = IncludeGroup[Angled];
679 SearchList.insert(SearchList.end(), IncludeGroup[System].begin(),
680 IncludeGroup[System].end());
681 SearchList.insert(SearchList.end(), IncludeGroup[After].begin(),
682 IncludeGroup[After].end());
683 RemoveDuplicates(SearchList, Verbose);
684 RemoveDuplicates(IncludeGroup[Quoted], Verbose);
Mike Stump1eb44332009-09-09 15:08:12 +0000685
Nico Weber0fca0222008-08-22 09:25:22 +0000686 // Prepend QUOTED list on the search list.
Mike Stump1eb44332009-09-09 15:08:12 +0000687 SearchList.insert(SearchList.begin(), IncludeGroup[Quoted].begin(),
Nico Weber0fca0222008-08-22 09:25:22 +0000688 IncludeGroup[Quoted].end());
Mike Stump1eb44332009-09-09 15:08:12 +0000689
Nico Weber0fca0222008-08-22 09:25:22 +0000690
691 bool DontSearchCurDir = false; // TODO: set to true if -I- is set?
692 Headers.SetSearchPaths(SearchList, IncludeGroup[Quoted].size(),
693 DontSearchCurDir);
694
695 // If verbose, print the list of directories that will be searched.
696 if (Verbose) {
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000697 llvm::errs() << "#include \"...\" search starts here:\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000698 unsigned QuotedIdx = IncludeGroup[Quoted].size();
699 for (unsigned i = 0, e = SearchList.size(); i != e; ++i) {
700 if (i == QuotedIdx)
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000701 llvm::errs() << "#include <...> search starts here:\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000702 const char *Name = SearchList[i].getName();
703 const char *Suffix;
704 if (SearchList[i].isNormalDir())
705 Suffix = "";
706 else if (SearchList[i].isFramework())
707 Suffix = " (framework directory)";
708 else {
709 assert(SearchList[i].isHeaderMap() && "Unknown DirectoryLookup");
710 Suffix = " (headermap)";
711 }
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000712 llvm::errs() << " " << Name << Suffix << "\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000713 }
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000714 llvm::errs() << "End of search list.\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000715 }
716}
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000717
Daniel Dunbar5814e652009-11-11 21:44:21 +0000718void clang::ApplyHeaderSearchOptions(HeaderSearch &HS,
719 const HeaderSearchOptions &HSOpts,
720 const LangOptions &Lang,
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000721 const llvm::Triple &Triple) {
722 InitHeaderSearch Init(HS, HSOpts.Verbose, HSOpts.Sysroot);
723
724 // Add the user defined entries.
725 for (unsigned i = 0, e = HSOpts.UserEntries.size(); i != e; ++i) {
726 const HeaderSearchOptions::Entry &E = HSOpts.UserEntries[i];
Daniel Dunbar1b483e72009-11-17 05:04:15 +0000727 Init.AddPath(E.Path, E.Group, false, E.IsUserSupplied, E.IsFramework,
728 false);
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000729 }
730
731 // Add entries from CPATH and friends.
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000732 Init.AddDelimitedPaths(HSOpts.EnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000733 if (Lang.CPlusPlus && Lang.ObjC1)
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000734 Init.AddDelimitedPaths(HSOpts.ObjCXXEnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000735 else if (Lang.CPlusPlus)
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000736 Init.AddDelimitedPaths(HSOpts.CXXEnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000737 else if (Lang.ObjC1)
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000738 Init.AddDelimitedPaths(HSOpts.ObjCEnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000739 else
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000740 Init.AddDelimitedPaths(HSOpts.CEnvIncPath);
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000741
Daniel Dunbar1e69fe32009-12-13 03:45:58 +0000742 if (HSOpts.UseBuiltinIncludes) {
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000743 // Ignore the sys root, we *always* look for clang headers relative to
744 // supplied path.
Daniel Dunbar8b9adfe2009-12-15 00:06:45 +0000745 llvm::sys::Path P(HSOpts.ResourceDir);
746 P.appendComponent("include");
747 Init.AddPath(P.str(), System, false, false, false, /*IgnoreSysRoot=*/ true);
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000748 }
749
Daniel Dunbardd35ce92009-11-07 04:58:12 +0000750 if (HSOpts.UseStandardIncludes)
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000751 Init.AddDefaultSystemIncludePaths(Lang, Triple);
752
753 Init.Realize();
754}