blob: 30fc90a467f8bd16146e9dd662e3a15f518b2121 [file] [log] [blame]
Nick Lewyckydf22c2c2010-07-25 03:12:58 +00001//===--- InitHeaderSearch.cpp - Initialize header search paths ------------===//
Nico Weber0fca0222008-08-22 09:25:22 +00002//
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
mike-ma6087372010-05-05 17:00:31 +000057 /// AddGnuCPlusPlusIncludePaths - Add the necessary paths to support a gnu
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000058 /// 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.
mike-m79bc57c2010-05-16 19:03:52 +000076 void AddDefaultCIncludePaths(const llvm::Triple &triple,
77 const HeaderSearchOptions &HSOpts);
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000078
79 // AddDefaultCPlusPlusIncludePaths - Add paths that should be searched when
80 // compiling c++.
81 void AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple);
82
83 /// AddDefaultSystemIncludePaths - Adds the default system include paths so
84 /// that e.g. stdio.h is found.
85 void AddDefaultSystemIncludePaths(const LangOptions &Lang,
Douglas Gregor4c2bcad2010-03-24 20:13:48 +000086 const llvm::Triple &triple,
mike-m79bc57c2010-05-16 19:03:52 +000087 const HeaderSearchOptions &HSOpts);
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000088
89 /// Realize - Merges all search path lists into one list and send it to
90 /// HeaderSearch.
91 void Realize();
92};
93
94}
Nico Weber0fca0222008-08-22 09:25:22 +000095
Benjamin Kramere89ba592009-12-08 12:38:20 +000096void InitHeaderSearch::AddPath(const llvm::Twine &Path,
Benjamin Kramer458fb102009-09-05 09:49:39 +000097 IncludeDirGroup Group, bool isCXXAware,
98 bool isUserSupplied, bool isFramework,
99 bool IgnoreSysRoot) {
Benjamin Kramere89ba592009-12-08 12:38:20 +0000100 assert(!Path.isTriviallyEmpty() && "can't handle empty path here");
Nico Weber0fca0222008-08-22 09:25:22 +0000101 FileManager &FM = Headers.getFileMgr();
Mike Stump1eb44332009-09-09 15:08:12 +0000102
Nico Weber0fca0222008-08-22 09:25:22 +0000103 // Compute the actual path, taking into consideration -isysroot.
Benjamin Kramere89ba592009-12-08 12:38:20 +0000104 llvm::SmallString<256> MappedPathStr;
105 llvm::raw_svector_ostream MappedPath(MappedPathStr);
Mike Stump1eb44332009-09-09 15:08:12 +0000106
Nico Weber0fca0222008-08-22 09:25:22 +0000107 // Handle isysroot.
Chris Lattner6858dd32009-02-19 06:48:28 +0000108 if (Group == System && !IgnoreSysRoot) {
Nico Weber0fca0222008-08-22 09:25:22 +0000109 // FIXME: Portability. This should be a sys::Path interface, this doesn't
110 // handle things like C:\ right, nor win32 \\network\device\blah.
111 if (isysroot.size() != 1 || isysroot[0] != '/') // Add isysroot if present.
Benjamin Kramere89ba592009-12-08 12:38:20 +0000112 MappedPath << isysroot;
Nico Weber0fca0222008-08-22 09:25:22 +0000113 }
Mike Stump1eb44332009-09-09 15:08:12 +0000114
Benjamin Kramere89ba592009-12-08 12:38:20 +0000115 Path.print(MappedPath);
Nico Weber0fca0222008-08-22 09:25:22 +0000116
117 // Compute the DirectoryLookup type.
Chris Lattner9d728512008-10-27 01:19:25 +0000118 SrcMgr::CharacteristicKind Type;
Nico Weber0fca0222008-08-22 09:25:22 +0000119 if (Group == Quoted || Group == Angled)
Chris Lattner0b9e7362008-09-26 21:18:42 +0000120 Type = SrcMgr::C_User;
Nico Weber0fca0222008-08-22 09:25:22 +0000121 else if (isCXXAware)
Chris Lattner0b9e7362008-09-26 21:18:42 +0000122 Type = SrcMgr::C_System;
Nico Weber0fca0222008-08-22 09:25:22 +0000123 else
Chris Lattner0b9e7362008-09-26 21:18:42 +0000124 Type = SrcMgr::C_ExternCSystem;
Mike Stump1eb44332009-09-09 15:08:12 +0000125
126
Nico Weber0fca0222008-08-22 09:25:22 +0000127 // If the directory exists, add it.
Benjamin Kramer458fb102009-09-05 09:49:39 +0000128 if (const DirectoryEntry *DE = FM.getDirectory(MappedPath.str())) {
Nico Weber0fca0222008-08-22 09:25:22 +0000129 IncludeGroup[Group].push_back(DirectoryLookup(DE, Type, isUserSupplied,
130 isFramework));
131 return;
132 }
Mike Stump1eb44332009-09-09 15:08:12 +0000133
Nico Weber0fca0222008-08-22 09:25:22 +0000134 // Check to see if this is an apple-style headermap (which are not allowed to
135 // be frameworks).
136 if (!isFramework) {
Benjamin Kramer458fb102009-09-05 09:49:39 +0000137 if (const FileEntry *FE = FM.getFile(MappedPath.str())) {
Nico Weber0fca0222008-08-22 09:25:22 +0000138 if (const HeaderMap *HM = Headers.CreateHeaderMap(FE)) {
139 // It is a headermap, add it to the search path.
140 IncludeGroup[Group].push_back(DirectoryLookup(HM, Type,isUserSupplied));
141 return;
142 }
143 }
144 }
Mike Stump1eb44332009-09-09 15:08:12 +0000145
Nico Weber0fca0222008-08-22 09:25:22 +0000146 if (Verbose)
Daniel Dunbar77659342009-08-19 20:04:03 +0000147 llvm::errs() << "ignoring nonexistent directory \""
148 << MappedPath.str() << "\"\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000149}
150
151
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000152void InitHeaderSearch::AddDelimitedPaths(llvm::StringRef at) {
153 if (at.empty()) // Empty string should not add '.' path.
Nico Weber0fca0222008-08-22 09:25:22 +0000154 return;
155
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000156 llvm::StringRef::size_type delim;
157 while ((delim = at.find(llvm::sys::PathSeparator)) != llvm::StringRef::npos) {
158 if (delim == 0)
Nico Weber0fca0222008-08-22 09:25:22 +0000159 AddPath(".", Angled, false, true, false);
160 else
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000161 AddPath(at.substr(0, delim), Angled, false, true, false);
162 at = at.substr(delim + 1);
Nico Weber0fca0222008-08-22 09:25:22 +0000163 }
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000164
165 if (at.empty())
Nico Weber0fca0222008-08-22 09:25:22 +0000166 AddPath(".", Angled, false, true, false);
167 else
168 AddPath(at, Angled, false, true, false);
169}
170
Benjamin Kramere89ba592009-12-08 12:38:20 +0000171void InitHeaderSearch::AddGnuCPlusPlusIncludePaths(llvm::StringRef Base,
172 llvm::StringRef ArchDir,
173 llvm::StringRef Dir32,
174 llvm::StringRef Dir64,
Rafael Espindola31b63be2009-10-14 17:09:44 +0000175 const llvm::Triple &triple) {
Rafael Espindola6ec18a32009-11-23 16:31:19 +0000176 // Add the base dir
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000177 AddPath(Base, System, true, false, false);
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000178
179 // Add the multilib dirs
Rafael Espindola31b63be2009-10-14 17:09:44 +0000180 llvm::Triple::ArchType arch = triple.getArch();
181 bool is64bit = arch == llvm::Triple::ppc64 || arch == llvm::Triple::x86_64;
Rafael Espindola31b63be2009-10-14 17:09:44 +0000182 if (is64bit)
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000183 AddPath(Base + "/" + ArchDir + "/" + Dir64, System, true, false, false);
Rafael Espindola31b63be2009-10-14 17:09:44 +0000184 else
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000185 AddPath(Base + "/" + ArchDir + "/" + Dir32, System, true, false, false);
Rafael Espindola6ec18a32009-11-23 16:31:19 +0000186
187 // Add the backward dir
188 AddPath(Base + "/backward", System, true, false, false);
Rafael Espindola2e9f6522009-10-06 01:33:02 +0000189}
Nico Weber0fca0222008-08-22 09:25:22 +0000190
Benjamin Kramere89ba592009-12-08 12:38:20 +0000191void InitHeaderSearch::AddMinGWCPlusPlusIncludePaths(llvm::StringRef Base,
192 llvm::StringRef Arch,
193 llvm::StringRef Version) {
Benjamin Kramerab8ae192010-01-20 16:18:11 +0000194 AddPath(Base + "/" + Arch + "/" + Version + "/include",
195 System, true, false, false);
196 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++",
197 System, true, false, false);
Chris Lattner8e9006b2010-09-03 16:45:53 +0000198 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/" + Arch,
199 System, true, false, false);
Benjamin Kramerab8ae192010-01-20 16:18:11 +0000200 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/backward",
201 System, true, false, false);
Mike Stump620d57a2009-10-12 20:50:45 +0000202}
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +0000203
Mike Stump620d57a2009-10-12 20:50:45 +0000204 // FIXME: This probably should goto to some platform utils place.
205#ifdef _MSC_VER
John Thompson75ee3bd2009-11-21 00:15:52 +0000206
Mike Stump620d57a2009-10-12 20:50:45 +0000207 // Read registry string.
John Thompson75ee3bd2009-11-21 00:15:52 +0000208 // This also supports a means to look for high-versioned keys by use
209 // of a $VERSION placeholder in the key path.
210 // $VERSION in the key path is a placeholder for the version number,
211 // causing the highest value path to be searched for and used.
212 // I.e. "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\$VERSION".
213 // There can be additional characters in the component. Only the numberic
214 // characters are compared.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000215static bool getSystemRegistryString(const char *keyPath, const char *valueName,
216 char *value, size_t maxLength) {
Mike Stump43d81762009-10-08 23:29:47 +0000217 HKEY hRootKey = NULL;
218 HKEY hKey = NULL;
219 const char* subKey = NULL;
220 DWORD valueType;
221 DWORD valueSize = maxLength - 1;
John Thompson75ee3bd2009-11-21 00:15:52 +0000222 long lResult;
Mike Stump43d81762009-10-08 23:29:47 +0000223 bool returnValue = false;
224 if (strncmp(keyPath, "HKEY_CLASSES_ROOT\\", 18) == 0) {
225 hRootKey = HKEY_CLASSES_ROOT;
226 subKey = keyPath + 18;
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +0000227 }
Mike Stump43d81762009-10-08 23:29:47 +0000228 else if (strncmp(keyPath, "HKEY_USERS\\", 11) == 0) {
229 hRootKey = HKEY_USERS;
230 subKey = keyPath + 11;
231 }
232 else if (strncmp(keyPath, "HKEY_LOCAL_MACHINE\\", 19) == 0) {
233 hRootKey = HKEY_LOCAL_MACHINE;
234 subKey = keyPath + 19;
235 }
236 else if (strncmp(keyPath, "HKEY_CURRENT_USER\\", 18) == 0) {
237 hRootKey = HKEY_CURRENT_USER;
238 subKey = keyPath + 18;
239 }
240 else
241 return(false);
John Thompson75ee3bd2009-11-21 00:15:52 +0000242 const char *placeHolder = strstr(subKey, "$VERSION");
243 char bestName[256];
244 bestName[0] = '\0';
245 // If we have a $VERSION placeholder, do the highest-version search.
246 if (placeHolder) {
247 const char *keyEnd = placeHolder - 1;
248 const char *nextKey = placeHolder;
249 // Find end of previous key.
250 while ((keyEnd > subKey) && (*keyEnd != '\\'))
251 keyEnd--;
252 // Find end of key containing $VERSION.
253 while (*nextKey && (*nextKey != '\\'))
254 nextKey++;
255 size_t partialKeyLength = keyEnd - subKey;
256 char partialKey[256];
257 if (partialKeyLength > sizeof(partialKey))
258 partialKeyLength = sizeof(partialKey);
259 strncpy(partialKey, subKey, partialKeyLength);
260 partialKey[partialKeyLength] = '\0';
261 HKEY hTopKey = NULL;
262 lResult = RegOpenKeyEx(hRootKey, partialKey, 0, KEY_READ, &hTopKey);
263 if (lResult == ERROR_SUCCESS) {
264 char keyName[256];
265 int bestIndex = -1;
266 double bestValue = 0.0;
267 DWORD index, size = sizeof(keyName) - 1;
Nuno Lopes33cc2432009-12-07 17:18:48 +0000268 for (index = 0; RegEnumKeyEx(hTopKey, index, keyName, &size, NULL,
269 NULL, NULL, NULL) == ERROR_SUCCESS; index++) {
270 const char *sp = keyName;
271 while (*sp && !isdigit(*sp))
272 sp++;
273 if (!*sp)
274 continue;
275 const char *ep = sp + 1;
276 while (*ep && (isdigit(*ep) || (*ep == '.')))
277 ep++;
278 char numBuf[32];
279 strncpy(numBuf, sp, sizeof(numBuf) - 1);
280 numBuf[sizeof(numBuf) - 1] = '\0';
281 double value = strtod(numBuf, NULL);
282 if (value > bestValue) {
283 bestIndex = (int)index;
284 bestValue = value;
285 strcpy(bestName, keyName);
286 }
John Thompson75ee3bd2009-11-21 00:15:52 +0000287 size = sizeof(keyName) - 1;
288 }
289 // If we found the highest versioned key, open the key and get the value.
290 if (bestIndex != -1) {
291 // Append rest of key.
292 strncat(bestName, nextKey, sizeof(bestName) - 1);
293 bestName[sizeof(bestName) - 1] = '\0';
294 // Open the chosen key path remainder.
295 lResult = RegOpenKeyEx(hTopKey, bestName, 0, KEY_READ, &hKey);
296 if (lResult == ERROR_SUCCESS) {
297 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
298 (LPBYTE)value, &valueSize);
299 if (lResult == ERROR_SUCCESS)
300 returnValue = true;
301 RegCloseKey(hKey);
302 }
303 }
304 RegCloseKey(hTopKey);
305 }
306 }
307 else {
308 lResult = RegOpenKeyEx(hRootKey, subKey, 0, KEY_READ, &hKey);
309 if (lResult == ERROR_SUCCESS) {
310 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
311 (LPBYTE)value, &valueSize);
312 if (lResult == ERROR_SUCCESS)
313 returnValue = true;
314 RegCloseKey(hKey);
315 }
Mike Stump43d81762009-10-08 23:29:47 +0000316 }
317 return(returnValue);
318}
Mike Stump620d57a2009-10-12 20:50:45 +0000319#else // _MSC_VER
320 // Read registry string.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000321static bool getSystemRegistryString(const char*, const char*, char*, size_t) {
Mike Stump620d57a2009-10-12 20:50:45 +0000322 return(false);
323}
324#endif // _MSC_VER
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +0000325
Mike Stump43d81762009-10-08 23:29:47 +0000326 // Get Visual Studio installation directory.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000327static bool getVisualStudioDir(std::string &path) {
Michael J. Spencerff58e362010-08-21 21:55:07 +0000328 // First check the environment variables that vsvars32.bat sets.
329 const char* vcinstalldir = getenv("VCINSTALLDIR");
330 if(vcinstalldir) {
331 char *p = const_cast<char *>(strstr(vcinstalldir, "\\VC"));
332 if (p)
333 *p = '\0';
334 path = vcinstalldir;
335 return(true);
336 }
337
John Thompson75ee3bd2009-11-21 00:15:52 +0000338 char vsIDEInstallDir[256];
Douglas Gregor80f93d92010-05-18 05:47:04 +0000339 char vsExpressIDEInstallDir[256];
Michael J. Spencerff58e362010-08-21 21:55:07 +0000340 // Then try the windows registry.
John Thompson75ee3bd2009-11-21 00:15:52 +0000341 bool hasVCDir = getSystemRegistryString(
342 "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\$VERSION",
343 "InstallDir", vsIDEInstallDir, sizeof(vsIDEInstallDir) - 1);
Douglas Gregor80f93d92010-05-18 05:47:04 +0000344 bool hasVCExpressDir = getSystemRegistryString(
345 "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\$VERSION",
346 "InstallDir", vsExpressIDEInstallDir, sizeof(vsExpressIDEInstallDir) - 1);
Mike Stump43d81762009-10-08 23:29:47 +0000347 // If we have both vc80 and vc90, pick version we were compiled with.
John Thompson75ee3bd2009-11-21 00:15:52 +0000348 if (hasVCDir && vsIDEInstallDir[0]) {
Mike Stump620d57a2009-10-12 20:50:45 +0000349 char *p = (char*)strstr(vsIDEInstallDir, "\\Common7\\IDE");
350 if (p)
351 *p = '\0';
352 path = vsIDEInstallDir;
353 return(true);
354 }
Douglas Gregor80f93d92010-05-18 05:47:04 +0000355 else if (hasVCExpressDir && vsExpressIDEInstallDir[0]) {
356 char *p = (char*)strstr(vsExpressIDEInstallDir, "\\Common7\\IDE");
357 if (p)
358 *p = '\0';
359 path = vsExpressIDEInstallDir;
360 return(true);
361 }
Mike Stump620d57a2009-10-12 20:50:45 +0000362 else {
363 // Try the environment.
Douglas Gregor80f93d92010-05-18 05:47:04 +0000364 const char* vs100comntools = getenv("VS100COMNTOOLS");
Mike Stump620d57a2009-10-12 20:50:45 +0000365 const char* vs90comntools = getenv("VS90COMNTOOLS");
366 const char* vs80comntools = getenv("VS80COMNTOOLS");
367 const char* vscomntools = NULL;
Douglas Gregor80f93d92010-05-18 05:47:04 +0000368
369 // Try to find the version that we were compiled with
370 if(false) {}
371 #if (_MSC_VER >= 1600) // VC100
372 else if(vs100comntools) {
373 vscomntools = vs100comntools;
Mike Stump620d57a2009-10-12 20:50:45 +0000374 }
Douglas Gregor80f93d92010-05-18 05:47:04 +0000375 #elif (_MSC_VER == 1500) // VC80
376 else if(vs90comntools) {
377 vscomntools = vs90comntools;
378 }
379 #elif (_MSC_VER == 1400) // VC80
380 else if(vs80comntools) {
381 vscomntools = vs80comntools;
382 }
383 #endif
384 // Otherwise find any version we can
385 else if (vs100comntools)
386 vscomntools = vs100comntools;
Mike Stump620d57a2009-10-12 20:50:45 +0000387 else if (vs90comntools)
Mike Stump43d81762009-10-08 23:29:47 +0000388 vscomntools = vs90comntools;
Mike Stump620d57a2009-10-12 20:50:45 +0000389 else if (vs80comntools)
390 vscomntools = vs80comntools;
Douglas Gregor80f93d92010-05-18 05:47:04 +0000391
Mike Stump620d57a2009-10-12 20:50:45 +0000392 if (vscomntools && *vscomntools) {
Dan Gohmancb421fa2010-04-19 16:39:44 +0000393 char *p = const_cast<char *>(strstr(vscomntools, "\\Common7\\Tools"));
Mike Stump620d57a2009-10-12 20:50:45 +0000394 if (p)
395 *p = '\0';
396 path = vscomntools;
397 return(true);
398 }
399 else
400 return(false);
Mike Stump43d81762009-10-08 23:29:47 +0000401 }
Mike Stump620d57a2009-10-12 20:50:45 +0000402 return(false);
Mike Stump43d81762009-10-08 23:29:47 +0000403}
Mike Stump43d81762009-10-08 23:29:47 +0000404
John Thompson75ee3bd2009-11-21 00:15:52 +0000405 // Get Windows SDK installation directory.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000406static bool getWindowsSDKDir(std::string &path) {
John Thompson75ee3bd2009-11-21 00:15:52 +0000407 char windowsSDKInstallDir[256];
408 // Try the Windows registry.
409 bool hasSDKDir = getSystemRegistryString(
410 "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Microsoft SDKs\\Windows\\$VERSION",
411 "InstallationFolder", windowsSDKInstallDir, sizeof(windowsSDKInstallDir) - 1);
412 // If we have both vc80 and vc90, pick version we were compiled with.
413 if (hasSDKDir && windowsSDKInstallDir[0]) {
414 path = windowsSDKInstallDir;
415 return(true);
416 }
417 return(false);
418}
419
mike-m79bc57c2010-05-16 19:03:52 +0000420void InitHeaderSearch::AddDefaultCIncludePaths(const llvm::Triple &triple,
421 const HeaderSearchOptions &HSOpts) {
Mike Stump43d81762009-10-08 23:29:47 +0000422 // FIXME: temporary hack: hard-coded paths.
mike-m79bc57c2010-05-16 19:03:52 +0000423 AddPath("/usr/local/include", System, true, false, false);
424
425 // Builtin includes use #include_next directives and should be positioned
426 // just prior C include dirs.
427 if (HSOpts.UseBuiltinIncludes) {
428 // Ignore the sys root, we *always* look for clang headers relative to
429 // supplied path.
430 llvm::sys::Path P(HSOpts.ResourceDir);
431 P.appendComponent("include");
432 AddPath(P.str(), System, false, false, false, /*IgnoreSysRoot=*/ true);
433 }
434
435 // Add dirs specified via 'configure --with-c-include-dirs'.
Daniel Dunbarc7064682009-11-12 07:28:29 +0000436 llvm::StringRef CIncludeDirs(C_INCLUDE_DIRS);
437 if (CIncludeDirs != "") {
Rafael Espindolaaadd7a42009-11-13 05:13:58 +0000438 llvm::SmallVector<llvm::StringRef, 5> dirs;
439 CIncludeDirs.split(dirs, ":");
440 for (llvm::SmallVectorImpl<llvm::StringRef>::iterator i = dirs.begin();
441 i != dirs.end();
442 ++i)
Rafael Espindolaf0a2f512009-11-12 05:48:41 +0000443 AddPath(*i, System, false, false, false);
444 return;
445 }
Mike Stump43d81762009-10-08 23:29:47 +0000446 llvm::Triple::OSType os = triple.getOS();
Mike Stump43d81762009-10-08 23:29:47 +0000447 switch (os) {
Daniel Dunbard11ee7f2010-09-09 17:38:18 +0000448 case llvm::Triple::Win32: {
449 std::string VSDir;
450 std::string WindowsSDKDir;
451 if (getVisualStudioDir(VSDir)) {
452 AddPath(VSDir + "\\VC\\include", System, false, false, false);
453 if (getWindowsSDKDir(WindowsSDKDir))
454 AddPath(WindowsSDKDir + "\\include", System, false, false, false);
455 else
456 AddPath(VSDir + "\\VC\\PlatformSDK\\Include",
457 System, false, false, false);
458 } else {
459 // Default install paths.
460 AddPath("C:/Program Files/Microsoft Visual Studio 10.0/VC/include",
461 System, false, false, false);
462 AddPath("C:/Program Files/Microsoft Visual Studio 9.0/VC/include",
463 System, false, false, false);
464 AddPath(
John Thompson9319f022009-11-23 17:49:27 +0000465 "C:/Program Files/Microsoft Visual Studio 9.0/VC/PlatformSDK/Include",
Daniel Dunbard11ee7f2010-09-09 17:38:18 +0000466 System, false, false, false);
467 AddPath("C:/Program Files/Microsoft Visual Studio 8/VC/include",
468 System, false, false, false);
469 AddPath(
John Thompson9319f022009-11-23 17:49:27 +0000470 "C:/Program Files/Microsoft Visual Studio 8/VC/PlatformSDK/Include",
Daniel Dunbard11ee7f2010-09-09 17:38:18 +0000471 System, false, false, false);
472 // For some clang developers.
473 AddPath("G:/Program Files/Microsoft Visual Studio 9.0/VC/include",
474 System, false, false, false);
475 AddPath(
John Thompson9319f022009-11-23 17:49:27 +0000476 "G:/Program Files/Microsoft Visual Studio 9.0/VC/PlatformSDK/Include",
Daniel Dunbard11ee7f2010-09-09 17:38:18 +0000477 System, false, false, false);
Mike Stump43d81762009-10-08 23:29:47 +0000478 }
479 break;
Daniel Dunbard11ee7f2010-09-09 17:38:18 +0000480 }
Chris Lattner86ed3a32010-04-11 19:29:39 +0000481 case llvm::Triple::Haiku:
482 AddPath("/boot/common/include", System, true, false, false);
483 AddPath("/boot/develop/headers/os", System, true, false, false);
484 AddPath("/boot/develop/headers/os/app", System, true, false, false);
485 AddPath("/boot/develop/headers/os/arch", System, true, false, false);
486 AddPath("/boot/develop/headers/os/device", System, true, false, false);
487 AddPath("/boot/develop/headers/os/drivers", System, true, false, false);
488 AddPath("/boot/develop/headers/os/game", System, true, false, false);
489 AddPath("/boot/develop/headers/os/interface", System, true, false, false);
490 AddPath("/boot/develop/headers/os/kernel", System, true, false, false);
491 AddPath("/boot/develop/headers/os/locale", System, true, false, false);
492 AddPath("/boot/develop/headers/os/mail", System, true, false, false);
493 AddPath("/boot/develop/headers/os/media", System, true, false, false);
494 AddPath("/boot/develop/headers/os/midi", System, true, false, false);
495 AddPath("/boot/develop/headers/os/midi2", System, true, false, false);
496 AddPath("/boot/develop/headers/os/net", System, true, false, false);
497 AddPath("/boot/develop/headers/os/storage", System, true, false, false);
498 AddPath("/boot/develop/headers/os/support", System, true, false, false);
499 AddPath("/boot/develop/headers/os/translation",
500 System, true, false, false);
501 AddPath("/boot/develop/headers/os/add-ons/graphics",
502 System, true, false, false);
503 AddPath("/boot/develop/headers/os/add-ons/input_server",
504 System, true, false, false);
505 AddPath("/boot/develop/headers/os/add-ons/screen_saver",
506 System, true, false, false);
507 AddPath("/boot/develop/headers/os/add-ons/tracker",
508 System, true, false, false);
509 AddPath("/boot/develop/headers/os/be_apps/Deskbar",
510 System, true, false, false);
511 AddPath("/boot/develop/headers/os/be_apps/NetPositive",
512 System, true, false, false);
513 AddPath("/boot/develop/headers/os/be_apps/Tracker",
514 System, true, false, false);
515 AddPath("/boot/develop/headers/cpp", System, true, false, false);
516 AddPath("/boot/develop/headers/cpp/i586-pc-haiku",
517 System, true, false, false);
518 AddPath("/boot/develop/headers/3rdparty", System, true, false, false);
519 AddPath("/boot/develop/headers/bsd", System, true, false, false);
520 AddPath("/boot/develop/headers/glibc", System, true, false, false);
521 AddPath("/boot/develop/headers/posix", System, true, false, false);
522 AddPath("/boot/develop/headers", System, true, false, false);
Eli Friedmana7e68452010-08-22 01:00:03 +0000523 break;
Mike Stump43d81762009-10-08 23:29:47 +0000524 case llvm::Triple::MinGW64:
Mike Stump620d57a2009-10-12 20:50:45 +0000525 case llvm::Triple::MinGW32:
Mike Stump43d81762009-10-08 23:29:47 +0000526 AddPath("c:/mingw/include", System, true, false, false);
527 break;
528 default:
Mike Stump43d81762009-10-08 23:29:47 +0000529 break;
530 }
John Thompsond3f88342009-10-13 18:51:32 +0000531
John Thompsond3f88342009-10-13 18:51:32 +0000532 AddPath("/usr/include", System, false, false, false);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000533}
534
Chris Lattner0e3cc052010-05-05 05:28:39 +0000535void InitHeaderSearch::
536AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple) {
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000537 llvm::Triple::OSType os = triple.getOS();
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000538 llvm::StringRef CxxIncludeRoot(CXX_INCLUDE_ROOT);
539 if (CxxIncludeRoot != "") {
540 llvm::StringRef CxxIncludeArch(CXX_INCLUDE_ARCH);
541 if (CxxIncludeArch == "")
542 AddGnuCPlusPlusIncludePaths(CxxIncludeRoot, triple.str().c_str(),
Chris Lattner0e3cc052010-05-05 05:28:39 +0000543 CXX_INCLUDE_32BIT_DIR, CXX_INCLUDE_64BIT_DIR,
544 triple);
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000545 else
546 AddGnuCPlusPlusIncludePaths(CxxIncludeRoot, CXX_INCLUDE_ARCH,
Chris Lattner0e3cc052010-05-05 05:28:39 +0000547 CXX_INCLUDE_32BIT_DIR, CXX_INCLUDE_64BIT_DIR,
548 triple);
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000549 return;
550 }
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000551 // FIXME: temporary hack: hard-coded paths.
552 switch (os) {
553 case llvm::Triple::Cygwin:
554 AddPath("/lib/gcc/i686-pc-cygwin/3.4.4/include",
555 System, true, false, false);
556 AddPath("/lib/gcc/i686-pc-cygwin/3.4.4/include/c++",
557 System, true, false, false);
Douglas Gregorea9e56d2010-06-16 16:24:51 +0000558 AddPath("/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/i686-pc-cygwin",
559 System, true, false, false);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000560 break;
561 case llvm::Triple::MinGW64:
Chris Lattner6a081402010-09-01 15:51:58 +0000562 // Try gcc 4.5.0
563 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw64", "4.5.0");
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000564 // Try gcc 4.4.0
565 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw64", "4.4.0");
566 // Try gcc 4.3.0
567 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw64", "4.3.0");
568 // Fall through.
569 case llvm::Triple::MinGW32:
Chris Lattner6a081402010-09-01 15:51:58 +0000570 // Try gcc 4.5.0
571 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw32", "4.5.0");
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000572 // Try gcc 4.4.0
573 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw32", "4.4.0");
574 // Try gcc 4.3.0
575 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw32", "4.3.0");
576 break;
577 case llvm::Triple::Darwin:
Daniel Dunbarf2070b32010-05-28 01:54:31 +0000578 switch (triple.getArch()) {
579 default: break;
580
Douglas Gregor582c3012010-05-29 01:15:12 +0000581 case llvm::Triple::ppc:
582 case llvm::Triple::ppc64:
Douglas Gregor616d4362010-05-29 01:21:11 +0000583 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2.1",
584 "powerpc-apple-darwin10", "", "ppc64",
585 triple);
Douglas Gregor582c3012010-05-29 01:15:12 +0000586 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.0.0",
587 "powerpc-apple-darwin10", "", "ppc64",
588 triple);
589 break;
590
Daniel Dunbarf2070b32010-05-28 01:54:31 +0000591 case llvm::Triple::x86:
592 case llvm::Triple::x86_64:
593 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2.1",
594 "i686-apple-darwin10", "", "x86_64", triple);
595 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.0.0",
596 "i686-apple-darwin8", "", "", triple);
597 break;
598
599 case llvm::Triple::arm:
600 case llvm::Triple::thumb:
601 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2.1",
602 "arm-apple-darwin10", "v7", "", triple);
603 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2.1",
604 "arm-apple-darwin10", "v6", "", triple);
605 break;
606 }
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000607 break;
Chris Lattner7a7ca282010-01-09 05:41:14 +0000608 case llvm::Triple::DragonFly:
609 AddPath("/usr/include/c++/4.1", System, true, false, false);
610 break;
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000611 case llvm::Triple::Linux:
mike-mac78b7a2010-05-06 14:11:13 +0000612 //===------------------------------------------------------------------===//
613 // Debian based distros.
614 // Note: these distros symlink /usr/include/c++/X.Y.Z -> X.Y
615 //===------------------------------------------------------------------===//
616 // Ubuntu 10.04 LTS "Lucid Lynx" -- gcc-4.4.3
617 // Ubuntu 9.10 "Karmic Koala" -- gcc-4.4.1
618 // Debian 6.0 "squeeze" -- gcc-4.4.2
619 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
620 "x86_64-linux-gnu", "32", "", triple);
621 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
622 "i486-linux-gnu", "", "64", triple);
623 // Ubuntu 9.04 "Jaunty Jackalope" -- gcc-4.3.3
624 // Ubuntu 8.10 "Intrepid Ibex" -- gcc-4.3.2
625 // Debian 5.0 "lenny" -- gcc-4.3.2
626 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
627 "x86_64-linux-gnu", "32", "", triple);
628 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
629 "i486-linux-gnu", "", "64", triple);
Rafael Espindolae7d6c2c2010-06-04 14:28:10 +0000630 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
631 "arm-linux-gnueabi", "", "", triple);
mike-mac78b7a2010-05-06 14:11:13 +0000632 // Ubuntu 8.04.4 LTS "Hardy Heron" -- gcc-4.2.4
633 // Ubuntu 8.04.[0-3] LTS "Hardy Heron" -- gcc-4.2.3
634 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2",
635 "x86_64-linux-gnu", "32", "", triple);
636 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2",
637 "i486-linux-gnu", "", "64", triple);
638 // Ubuntu 7.10 "Gutsy Gibbon" -- gcc-4.1.3
639 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.1",
640 "x86_64-linux-gnu", "32", "", triple);
641 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.1",
642 "i486-linux-gnu", "", "64", triple);
643
644 //===------------------------------------------------------------------===//
645 // Redhat based distros.
646 //===------------------------------------------------------------------===//
647 // Fedora 13
Chris Lattner4336e192010-05-29 01:01:38 +0000648 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.4",
649 "x86_64-redhat-linux", "32", "", triple);
650 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.4",
651 "i686-redhat-linux","", "", triple);
mike-mac78b7a2010-05-06 14:11:13 +0000652 // Fedora 12
653 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.3",
654 "x86_64-redhat-linux", "32", "", triple);
655 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.3",
656 "i686-redhat-linux","", "", triple);
657 // Fedora 12 (pre-FEB-2010)
658 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.2",
659 "x86_64-redhat-linux", "32", "", triple);
660 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.2",
661 "i686-redhat-linux","", "", triple);
662 // Fedora 11
663 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.1",
664 "x86_64-redhat-linux", "32", "", triple);
665 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.1",
666 "i586-redhat-linux","", "", triple);
667 // Fedora 10
668 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.2",
669 "x86_64-redhat-linux", "32", "", triple);
670 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.2",
671 "i386-redhat-linux","", "", triple);
672 // Fedora 9
673 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.0",
674 "x86_64-redhat-linux", "32", "", triple);
675 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.0",
676 "i386-redhat-linux", "", "", triple);
677 // Fedora 8
678 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.1.2",
679 "x86_64-redhat-linux", "", "", triple);
680 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.1.2",
681 "i386-redhat-linux", "", "", triple);
682
683 //===------------------------------------------------------------------===//
684
Benjamin Kramer0db3d722010-01-25 12:20:15 +0000685 // Exherbo (2010-01-25)
686 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.3",
Torok Edwinfc4b8992009-12-18 17:29:14 +0000687 "x86_64-pc-linux-gnu", "32", "", triple);
Benjamin Kramer0db3d722010-01-25 12:20:15 +0000688 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.3",
Torok Edwinfc4b8992009-12-18 17:29:14 +0000689 "i686-pc-linux-gnu", "", "", triple);
Chris Lattnerea00f842010-04-23 15:55:20 +0000690
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000691 // openSUSE 11.1 32 bit
692 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000693 "i586-suse-linux", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000694 // openSUSE 11.1 64 bit
695 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000696 "x86_64-suse-linux", "32", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000697 // openSUSE 11.2
698 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000699 "i586-suse-linux", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000700 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000701 "x86_64-suse-linux", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000702 // Arch Linux 2008-06-24
703 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.1",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000704 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000705 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.1",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000706 "x86_64-unknown-linux-gnu", "", "", triple);
Nuno Lopes0d155a52010-09-11 17:51:45 +0000707 // Gentoo x86 2010.0 stable
708 AddGnuCPlusPlusIncludePaths(
709 "/usr/lib/gcc/i686-pc-linux-gnu/4.4.3/include/g++-v4",
710 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000711 // Gentoo x86 2009.1 stable
712 AddGnuCPlusPlusIncludePaths(
John Thompson40d1bb62009-11-05 22:03:02 +0000713 "/usr/lib/gcc/i686-pc-linux-gnu/4.3.4/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000714 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000715 // Gentoo x86 2009.0 stable
716 AddGnuCPlusPlusIncludePaths(
John Thompson40d1bb62009-11-05 22:03:02 +0000717 "/usr/lib/gcc/i686-pc-linux-gnu/4.3.2/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000718 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000719 // Gentoo x86 2008.0 stable
720 AddGnuCPlusPlusIncludePaths(
John Thompson40d1bb62009-11-05 22:03:02 +0000721 "/usr/lib/gcc/i686-pc-linux-gnu/4.1.2/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000722 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000723 // Gentoo amd64 stable
724 AddGnuCPlusPlusIncludePaths(
725 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000726 "i686-pc-linux-gnu", "", "", triple);
Eric Christopher70d9d412010-03-03 21:41:50 +0000727
728 // Gentoo amd64 gcc 4.3.2
729 AddGnuCPlusPlusIncludePaths(
730 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.3.2/include/g++-v4",
731 "x86_64-pc-linux-gnu", "", "", triple);
732
733 // Gentoo amd64 gcc 4.4.3
734 AddGnuCPlusPlusIncludePaths(
735 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.4.3/include/g++-v4",
736 "x86_64-pc-linux-gnu", "32", "", triple);
Nick Lewycky66935342010-07-24 21:33:13 +0000737
738 // Gentoo amd64 llvm-gcc trunk
739 AddGnuCPlusPlusIncludePaths(
740 "/usr/lib/llvm-gcc-4.2-9999/include/c++/4.2.1",
741 "x86_64-pc-linux-gnu", "", "", triple);
Eric Christopher70d9d412010-03-03 21:41:50 +0000742
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000743 break;
744 case llvm::Triple::FreeBSD:
mike-mac78b7a2010-05-06 14:11:13 +0000745 // FreeBSD 8.0
746 // FreeBSD 7.3
Nuno Lopesafe859a2010-01-17 00:00:11 +0000747 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2", "", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000748 break;
Anton Korobeynikovab079412010-08-31 22:39:50 +0000749 case llvm::Triple::NetBSD:
750 AddGnuCPlusPlusIncludePaths("/usr/include/g++", "", "", "", triple);
751 break;
Daniel Dunbar95c04572010-08-01 23:13:54 +0000752 case llvm::Triple::OpenBSD: {
753 std::string t = triple.getTriple();
754 if (t.substr(0, 6) == "x86_64")
755 t.replace(0, 6, "amd64");
756 AddGnuCPlusPlusIncludePaths("/usr/include/g++",
757 t, "", "", triple);
758 break;
759 }
Chris Lattner38e317d2010-07-07 16:01:42 +0000760 case llvm::Triple::Minix:
761 AddGnuCPlusPlusIncludePaths("/usr/gnu/include/c++/4.4.3",
762 "", "", "", triple);
763 break;
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000764 case llvm::Triple::Solaris:
765 // Solaris - Fall though..
766 case llvm::Triple::AuroraUX:
767 // AuroraUX
768 AddGnuCPlusPlusIncludePaths("/opt/gcc4/include/c++/4.2.4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000769 "i386-pc-solaris2.11", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000770 break;
771 default:
772 break;
773 }
774}
775
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000776void InitHeaderSearch::AddDefaultSystemIncludePaths(const LangOptions &Lang,
Douglas Gregor4c2bcad2010-03-24 20:13:48 +0000777 const llvm::Triple &triple,
mike-m79bc57c2010-05-16 19:03:52 +0000778 const HeaderSearchOptions &HSOpts) {
Daniel Dunbar80c26f42010-09-09 17:38:22 +0000779 if (Lang.CPlusPlus && HSOpts.UseStandardCXXIncludes) {
780 if (!HSOpts.CXXSystemIncludes.empty()) {
781 for (unsigned i = 0, e = HSOpts.CXXSystemIncludes.size(); i != e; ++i)
782 AddPath(HSOpts.CXXSystemIncludes[i], System, true, false, false);
783 } else
784 AddDefaultCPlusPlusIncludePaths(triple);
785 }
Rafael Espindola6ec18a32009-11-23 16:31:19 +0000786
mike-m79bc57c2010-05-16 19:03:52 +0000787 AddDefaultCIncludePaths(triple, HSOpts);
Daniel Dunbare1665822009-11-07 04:20:39 +0000788
789 // Add the default framework include paths on Darwin.
790 if (triple.getOS() == llvm::Triple::Darwin) {
791 AddPath("/System/Library/Frameworks", System, true, false, true);
792 AddPath("/Library/Frameworks", System, true, false, true);
793 }
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000794}
795
Nico Weber0fca0222008-08-22 09:25:22 +0000796/// RemoveDuplicates - If there are duplicate directory entries in the specified
797/// search list, remove the later (dead) ones.
798static void RemoveDuplicates(std::vector<DirectoryLookup> &SearchList,
799 bool Verbose) {
800 llvm::SmallPtrSet<const DirectoryEntry *, 8> SeenDirs;
801 llvm::SmallPtrSet<const DirectoryEntry *, 8> SeenFrameworkDirs;
802 llvm::SmallPtrSet<const HeaderMap *, 8> SeenHeaderMaps;
803 for (unsigned i = 0; i != SearchList.size(); ++i) {
Chris Lattner7a739402008-09-26 17:46:45 +0000804 unsigned DirToRemove = i;
Mike Stump1eb44332009-09-09 15:08:12 +0000805
Chris Lattner43eee072009-02-08 01:00:10 +0000806 const DirectoryLookup &CurEntry = SearchList[i];
Mike Stump1eb44332009-09-09 15:08:12 +0000807
Chris Lattner43eee072009-02-08 01:00:10 +0000808 if (CurEntry.isNormalDir()) {
Nico Weber0fca0222008-08-22 09:25:22 +0000809 // If this isn't the first time we've seen this dir, remove it.
Chris Lattner43eee072009-02-08 01:00:10 +0000810 if (SeenDirs.insert(CurEntry.getDir()))
Nico Weber0fca0222008-08-22 09:25:22 +0000811 continue;
Chris Lattner43eee072009-02-08 01:00:10 +0000812 } else if (CurEntry.isFramework()) {
Nico Weber0fca0222008-08-22 09:25:22 +0000813 // If this isn't the first time we've seen this framework dir, remove it.
Chris Lattner43eee072009-02-08 01:00:10 +0000814 if (SeenFrameworkDirs.insert(CurEntry.getFrameworkDir()))
Nico Weber0fca0222008-08-22 09:25:22 +0000815 continue;
Nico Weber0fca0222008-08-22 09:25:22 +0000816 } else {
Chris Lattner43eee072009-02-08 01:00:10 +0000817 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
Nico Weber0fca0222008-08-22 09:25:22 +0000818 // If this isn't the first time we've seen this headermap, remove it.
Chris Lattner43eee072009-02-08 01:00:10 +0000819 if (SeenHeaderMaps.insert(CurEntry.getHeaderMap()))
Nico Weber0fca0222008-08-22 09:25:22 +0000820 continue;
Chris Lattner30f05b52009-02-08 00:55:22 +0000821 }
Mike Stump1eb44332009-09-09 15:08:12 +0000822
Chris Lattner30f05b52009-02-08 00:55:22 +0000823 // If we have a normal #include dir/framework/headermap that is shadowed
824 // later in the chain by a system include location, we actually want to
825 // ignore the user's request and drop the user dir... keeping the system
826 // dir. This is weird, but required to emulate GCC's search path correctly.
827 //
828 // Since dupes of system dirs are rare, just rescan to find the original
829 // that we're nuking instead of using a DenseMap.
Chris Lattner43eee072009-02-08 01:00:10 +0000830 if (CurEntry.getDirCharacteristic() != SrcMgr::C_User) {
Chris Lattner30f05b52009-02-08 00:55:22 +0000831 // Find the dir that this is the same of.
832 unsigned FirstDir;
833 for (FirstDir = 0; ; ++FirstDir) {
834 assert(FirstDir != i && "Didn't find dupe?");
Mike Stump1eb44332009-09-09 15:08:12 +0000835
Chris Lattner43eee072009-02-08 01:00:10 +0000836 const DirectoryLookup &SearchEntry = SearchList[FirstDir];
837
Chris Lattner30f05b52009-02-08 00:55:22 +0000838 // If these are different lookup types, then they can't be the dupe.
Chris Lattner43eee072009-02-08 01:00:10 +0000839 if (SearchEntry.getLookupType() != CurEntry.getLookupType())
Chris Lattner30f05b52009-02-08 00:55:22 +0000840 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000841
Chris Lattner30f05b52009-02-08 00:55:22 +0000842 bool isSame;
Chris Lattner43eee072009-02-08 01:00:10 +0000843 if (CurEntry.isNormalDir())
844 isSame = SearchEntry.getDir() == CurEntry.getDir();
845 else if (CurEntry.isFramework())
846 isSame = SearchEntry.getFrameworkDir() == CurEntry.getFrameworkDir();
Chris Lattner30f05b52009-02-08 00:55:22 +0000847 else {
Chris Lattner43eee072009-02-08 01:00:10 +0000848 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
849 isSame = SearchEntry.getHeaderMap() == CurEntry.getHeaderMap();
Chris Lattner30f05b52009-02-08 00:55:22 +0000850 }
Mike Stump1eb44332009-09-09 15:08:12 +0000851
Chris Lattner30f05b52009-02-08 00:55:22 +0000852 if (isSame)
853 break;
854 }
Mike Stump1eb44332009-09-09 15:08:12 +0000855
Chris Lattner30f05b52009-02-08 00:55:22 +0000856 // If the first dir in the search path is a non-system dir, zap it
857 // instead of the system one.
858 if (SearchList[FirstDir].getDirCharacteristic() == SrcMgr::C_User)
859 DirToRemove = FirstDir;
860 }
861
862 if (Verbose) {
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000863 llvm::errs() << "ignoring duplicate directory \""
864 << CurEntry.getName() << "\"\n";
Chris Lattner30f05b52009-02-08 00:55:22 +0000865 if (DirToRemove != i)
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000866 llvm::errs() << " as it is a non-system directory that duplicates "
867 << "a system directory\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000868 }
Mike Stump1eb44332009-09-09 15:08:12 +0000869
Chris Lattner7a739402008-09-26 17:46:45 +0000870 // This is reached if the current entry is a duplicate. Remove the
871 // DirToRemove (usually the current dir).
872 SearchList.erase(SearchList.begin()+DirToRemove);
Nico Weber0fca0222008-08-22 09:25:22 +0000873 --i;
874 }
875}
876
877
878void InitHeaderSearch::Realize() {
879 // Concatenate ANGLE+SYSTEM+AFTER chains together into SearchList.
880 std::vector<DirectoryLookup> SearchList;
881 SearchList = IncludeGroup[Angled];
882 SearchList.insert(SearchList.end(), IncludeGroup[System].begin(),
883 IncludeGroup[System].end());
884 SearchList.insert(SearchList.end(), IncludeGroup[After].begin(),
885 IncludeGroup[After].end());
886 RemoveDuplicates(SearchList, Verbose);
887 RemoveDuplicates(IncludeGroup[Quoted], Verbose);
Mike Stump1eb44332009-09-09 15:08:12 +0000888
Nico Weber0fca0222008-08-22 09:25:22 +0000889 // Prepend QUOTED list on the search list.
Mike Stump1eb44332009-09-09 15:08:12 +0000890 SearchList.insert(SearchList.begin(), IncludeGroup[Quoted].begin(),
Nico Weber0fca0222008-08-22 09:25:22 +0000891 IncludeGroup[Quoted].end());
Mike Stump1eb44332009-09-09 15:08:12 +0000892
Nico Weber0fca0222008-08-22 09:25:22 +0000893
894 bool DontSearchCurDir = false; // TODO: set to true if -I- is set?
895 Headers.SetSearchPaths(SearchList, IncludeGroup[Quoted].size(),
896 DontSearchCurDir);
897
898 // If verbose, print the list of directories that will be searched.
899 if (Verbose) {
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000900 llvm::errs() << "#include \"...\" search starts here:\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000901 unsigned QuotedIdx = IncludeGroup[Quoted].size();
902 for (unsigned i = 0, e = SearchList.size(); i != e; ++i) {
903 if (i == QuotedIdx)
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000904 llvm::errs() << "#include <...> search starts here:\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000905 const char *Name = SearchList[i].getName();
906 const char *Suffix;
907 if (SearchList[i].isNormalDir())
908 Suffix = "";
909 else if (SearchList[i].isFramework())
910 Suffix = " (framework directory)";
911 else {
912 assert(SearchList[i].isHeaderMap() && "Unknown DirectoryLookup");
913 Suffix = " (headermap)";
914 }
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000915 llvm::errs() << " " << Name << Suffix << "\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000916 }
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000917 llvm::errs() << "End of search list.\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000918 }
919}
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000920
Daniel Dunbar5814e652009-11-11 21:44:21 +0000921void clang::ApplyHeaderSearchOptions(HeaderSearch &HS,
922 const HeaderSearchOptions &HSOpts,
923 const LangOptions &Lang,
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000924 const llvm::Triple &Triple) {
925 InitHeaderSearch Init(HS, HSOpts.Verbose, HSOpts.Sysroot);
926
927 // Add the user defined entries.
928 for (unsigned i = 0, e = HSOpts.UserEntries.size(); i != e; ++i) {
929 const HeaderSearchOptions::Entry &E = HSOpts.UserEntries[i];
Daniel Dunbar1b483e72009-11-17 05:04:15 +0000930 Init.AddPath(E.Path, E.Group, false, E.IsUserSupplied, E.IsFramework,
Chris Lattner23637be2010-08-24 22:27:37 +0000931 !E.IsSysRootRelative);
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000932 }
933
934 // Add entries from CPATH and friends.
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000935 Init.AddDelimitedPaths(HSOpts.EnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000936 if (Lang.CPlusPlus && Lang.ObjC1)
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000937 Init.AddDelimitedPaths(HSOpts.ObjCXXEnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000938 else if (Lang.CPlusPlus)
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000939 Init.AddDelimitedPaths(HSOpts.CXXEnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000940 else if (Lang.ObjC1)
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000941 Init.AddDelimitedPaths(HSOpts.ObjCEnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000942 else
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000943 Init.AddDelimitedPaths(HSOpts.CEnvIncPath);
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000944
Daniel Dunbardd35ce92009-11-07 04:58:12 +0000945 if (HSOpts.UseStandardIncludes)
mike-m79bc57c2010-05-16 19:03:52 +0000946 Init.AddDefaultSystemIncludePaths(Lang, Triple, HSOpts);
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000947
948 Init.Realize();
949}