blob: b0693ac3eb72600fb98df48668b2e80a7a29ed23 [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
Oscar Fuentes2100fe92011-02-03 22:48:20 +000014#ifdef HAVE_CLANG_CONFIG_H
15# include "clang/Config/config.h"
16#endif
17
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000018#include "clang/Frontend/Utils.h"
Nico Weber0fca0222008-08-22 09:25:22 +000019#include "clang/Basic/FileManager.h"
20#include "clang/Basic/LangOptions.h"
Daniel Dunbar63c8b772009-11-07 04:20:50 +000021#include "clang/Frontend/HeaderSearchOptions.h"
22#include "clang/Lex/HeaderSearch.h"
Nico Weber0fca0222008-08-22 09:25:22 +000023#include "llvm/ADT/SmallString.h"
24#include "llvm/ADT/SmallPtrSet.h"
Rafael Espindolaaadd7a42009-11-13 05:13:58 +000025#include "llvm/ADT/SmallVector.h"
Rafael Espindolaf0a2f512009-11-12 05:48:41 +000026#include "llvm/ADT/StringExtras.h"
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000027#include "llvm/ADT/Triple.h"
Benjamin Kramere89ba592009-12-08 12:38:20 +000028#include "llvm/ADT/Twine.h"
Chris Lattnerd57a7ef2009-08-23 22:45:33 +000029#include "llvm/Support/raw_ostream.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000030#include "llvm/Support/Path.h"
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +000031#include "llvm/Config/config.h"
Mike Stump620d57a2009-10-12 20:50:45 +000032#ifdef _MSC_VER
33 #define WIN32_LEAN_AND_MEAN 1
34 #include <windows.h>
35#endif
Nico Weber0fca0222008-08-22 09:25:22 +000036using namespace clang;
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000037using namespace clang::frontend;
38
39namespace {
40
41/// InitHeaderSearch - This class makes it easier to set the search paths of
42/// a HeaderSearch object. InitHeaderSearch stores several search path lists
43/// internally, which can be sent to a HeaderSearch object in one swoop.
44class InitHeaderSearch {
45 std::vector<DirectoryLookup> IncludeGroup[4];
46 HeaderSearch& Headers;
47 bool Verbose;
Michael J. Spenceraf6530c2010-12-25 20:09:27 +000048 std::string IncludeSysroot;
49 bool IsNotEmptyOrRoot;
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000050
51public:
52
Chandler Carruthc09265a2010-11-15 07:15:26 +000053 InitHeaderSearch(HeaderSearch &HS, bool verbose, llvm::StringRef sysroot)
Michael J. Spenceraf6530c2010-12-25 20:09:27 +000054 : Headers(HS), Verbose(verbose), IncludeSysroot(sysroot),
55 IsNotEmptyOrRoot(!(sysroot.empty() || sysroot == "/")) {
Chandler Carruthc09265a2010-11-15 07:15:26 +000056 }
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000057
58 /// AddPath - Add the specified path to the specified group list.
Benjamin Kramere89ba592009-12-08 12:38:20 +000059 void AddPath(const llvm::Twine &Path, IncludeDirGroup Group,
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000060 bool isCXXAware, bool isUserSupplied,
61 bool isFramework, bool IgnoreSysRoot = false);
62
mike-ma6087372010-05-05 17:00:31 +000063 /// AddGnuCPlusPlusIncludePaths - Add the necessary paths to support a gnu
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000064 /// libstdc++.
Benjamin Kramere89ba592009-12-08 12:38:20 +000065 void AddGnuCPlusPlusIncludePaths(llvm::StringRef Base,
66 llvm::StringRef ArchDir,
67 llvm::StringRef Dir32,
68 llvm::StringRef Dir64,
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000069 const llvm::Triple &triple);
70
Michael J. Spencer06a8dc62010-12-21 16:45:42 +000071 /// AddMinGWCPlusPlusIncludePaths - Add the necessary paths to support a MinGW
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000072 /// libstdc++.
Benjamin Kramere89ba592009-12-08 12:38:20 +000073 void AddMinGWCPlusPlusIncludePaths(llvm::StringRef Base,
74 llvm::StringRef Arch,
75 llvm::StringRef Version);
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000076
77 /// AddDelimitedPaths - Add a list of paths delimited by the system PATH
78 /// separator. The processing follows that of the CPATH variable for gcc.
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +000079 void AddDelimitedPaths(llvm::StringRef String);
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000080
81 // AddDefaultCIncludePaths - Add paths that should always be searched.
mike-m79bc57c2010-05-16 19:03:52 +000082 void AddDefaultCIncludePaths(const llvm::Triple &triple,
83 const HeaderSearchOptions &HSOpts);
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000084
85 // AddDefaultCPlusPlusIncludePaths - Add paths that should be searched when
86 // compiling c++.
87 void AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple);
88
89 /// AddDefaultSystemIncludePaths - Adds the default system include paths so
90 /// that e.g. stdio.h is found.
91 void AddDefaultSystemIncludePaths(const LangOptions &Lang,
Douglas Gregor4c2bcad2010-03-24 20:13:48 +000092 const llvm::Triple &triple,
mike-m79bc57c2010-05-16 19:03:52 +000093 const HeaderSearchOptions &HSOpts);
Daniel Dunbar2cdafa82009-11-09 23:02:47 +000094
95 /// Realize - Merges all search path lists into one list and send it to
96 /// HeaderSearch.
97 void Realize();
98};
99
100}
Nico Weber0fca0222008-08-22 09:25:22 +0000101
Benjamin Kramere89ba592009-12-08 12:38:20 +0000102void InitHeaderSearch::AddPath(const llvm::Twine &Path,
Benjamin Kramer458fb102009-09-05 09:49:39 +0000103 IncludeDirGroup Group, bool isCXXAware,
104 bool isUserSupplied, bool isFramework,
105 bool IgnoreSysRoot) {
Benjamin Kramere89ba592009-12-08 12:38:20 +0000106 assert(!Path.isTriviallyEmpty() && "can't handle empty path here");
Nico Weber0fca0222008-08-22 09:25:22 +0000107 FileManager &FM = Headers.getFileMgr();
Mike Stump1eb44332009-09-09 15:08:12 +0000108
Nico Weber0fca0222008-08-22 09:25:22 +0000109 // Compute the actual path, taking into consideration -isysroot.
Chandler Carruth5853b0f2010-11-15 00:05:18 +0000110 llvm::SmallString<256> MappedPathStorage;
Chandler Carruthf3721452010-11-15 00:48:13 +0000111 llvm::StringRef MappedPathStr = Path.toStringRef(MappedPathStorage);
Mike Stump1eb44332009-09-09 15:08:12 +0000112
Nico Weber0fca0222008-08-22 09:25:22 +0000113 // Handle isysroot.
Michael J. Spencer256053b2010-12-17 21:22:22 +0000114 if (Group == System && !IgnoreSysRoot &&
115 llvm::sys::path::is_absolute(MappedPathStr) &&
Michael J. Spenceraf6530c2010-12-25 20:09:27 +0000116 IsNotEmptyOrRoot) {
Chandler Carruth5619ae52010-11-15 09:28:23 +0000117 MappedPathStorage.clear();
Chandler Carruthc09265a2010-11-15 07:15:26 +0000118 MappedPathStr =
Michael J. Spenceraf6530c2010-12-25 20:09:27 +0000119 (IncludeSysroot + Path).toStringRef(MappedPathStorage);
Nico Weber0fca0222008-08-22 09:25:22 +0000120 }
Mike Stump1eb44332009-09-09 15:08:12 +0000121
Nico Weber0fca0222008-08-22 09:25:22 +0000122 // Compute the DirectoryLookup type.
Chris Lattner9d728512008-10-27 01:19:25 +0000123 SrcMgr::CharacteristicKind Type;
Nico Weber0fca0222008-08-22 09:25:22 +0000124 if (Group == Quoted || Group == Angled)
Chris Lattner0b9e7362008-09-26 21:18:42 +0000125 Type = SrcMgr::C_User;
Nico Weber0fca0222008-08-22 09:25:22 +0000126 else if (isCXXAware)
Chris Lattner0b9e7362008-09-26 21:18:42 +0000127 Type = SrcMgr::C_System;
Nico Weber0fca0222008-08-22 09:25:22 +0000128 else
Chris Lattner0b9e7362008-09-26 21:18:42 +0000129 Type = SrcMgr::C_ExternCSystem;
Mike Stump1eb44332009-09-09 15:08:12 +0000130
131
Nico Weber0fca0222008-08-22 09:25:22 +0000132 // If the directory exists, add it.
Chris Lattner39b49bc2010-11-23 08:35:12 +0000133 if (const DirectoryEntry *DE = FM.getDirectory(MappedPathStr)) {
Nico Weber0fca0222008-08-22 09:25:22 +0000134 IncludeGroup[Group].push_back(DirectoryLookup(DE, Type, isUserSupplied,
135 isFramework));
136 return;
137 }
Mike Stump1eb44332009-09-09 15:08:12 +0000138
Nico Weber0fca0222008-08-22 09:25:22 +0000139 // Check to see if this is an apple-style headermap (which are not allowed to
140 // be frameworks).
141 if (!isFramework) {
Chris Lattner39b49bc2010-11-23 08:35:12 +0000142 if (const FileEntry *FE = FM.getFile(MappedPathStr)) {
Nico Weber0fca0222008-08-22 09:25:22 +0000143 if (const HeaderMap *HM = Headers.CreateHeaderMap(FE)) {
144 // It is a headermap, add it to the search path.
145 IncludeGroup[Group].push_back(DirectoryLookup(HM, Type,isUserSupplied));
146 return;
147 }
148 }
149 }
Mike Stump1eb44332009-09-09 15:08:12 +0000150
Nico Weber0fca0222008-08-22 09:25:22 +0000151 if (Verbose)
Chandler Carruthf3721452010-11-15 00:48:13 +0000152 llvm::errs() << "ignoring nonexistent directory \""
153 << MappedPathStr << "\"\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000154}
155
156
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000157void InitHeaderSearch::AddDelimitedPaths(llvm::StringRef at) {
158 if (at.empty()) // Empty string should not add '.' path.
Nico Weber0fca0222008-08-22 09:25:22 +0000159 return;
160
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000161 llvm::StringRef::size_type delim;
162 while ((delim = at.find(llvm::sys::PathSeparator)) != llvm::StringRef::npos) {
163 if (delim == 0)
Nico Weber0fca0222008-08-22 09:25:22 +0000164 AddPath(".", Angled, false, true, false);
165 else
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000166 AddPath(at.substr(0, delim), Angled, false, true, false);
167 at = at.substr(delim + 1);
Nico Weber0fca0222008-08-22 09:25:22 +0000168 }
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000169
170 if (at.empty())
Nico Weber0fca0222008-08-22 09:25:22 +0000171 AddPath(".", Angled, false, true, false);
172 else
173 AddPath(at, Angled, false, true, false);
174}
175
Benjamin Kramere89ba592009-12-08 12:38:20 +0000176void InitHeaderSearch::AddGnuCPlusPlusIncludePaths(llvm::StringRef Base,
177 llvm::StringRef ArchDir,
178 llvm::StringRef Dir32,
179 llvm::StringRef Dir64,
Rafael Espindola31b63be2009-10-14 17:09:44 +0000180 const llvm::Triple &triple) {
Rafael Espindola6ec18a32009-11-23 16:31:19 +0000181 // Add the base dir
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000182 AddPath(Base, System, true, false, false);
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000183
184 // Add the multilib dirs
Rafael Espindola31b63be2009-10-14 17:09:44 +0000185 llvm::Triple::ArchType arch = triple.getArch();
186 bool is64bit = arch == llvm::Triple::ppc64 || arch == llvm::Triple::x86_64;
Rafael Espindola31b63be2009-10-14 17:09:44 +0000187 if (is64bit)
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000188 AddPath(Base + "/" + ArchDir + "/" + Dir64, System, true, false, false);
Rafael Espindola31b63be2009-10-14 17:09:44 +0000189 else
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000190 AddPath(Base + "/" + ArchDir + "/" + Dir32, System, true, false, false);
Rafael Espindola6ec18a32009-11-23 16:31:19 +0000191
192 // Add the backward dir
193 AddPath(Base + "/backward", System, true, false, false);
Rafael Espindola2e9f6522009-10-06 01:33:02 +0000194}
Nico Weber0fca0222008-08-22 09:25:22 +0000195
Benjamin Kramere89ba592009-12-08 12:38:20 +0000196void InitHeaderSearch::AddMinGWCPlusPlusIncludePaths(llvm::StringRef Base,
197 llvm::StringRef Arch,
198 llvm::StringRef Version) {
Benjamin Kramerab8ae192010-01-20 16:18:11 +0000199 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++",
200 System, true, false, false);
Chris Lattner8e9006b2010-09-03 16:45:53 +0000201 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/" + Arch,
202 System, true, false, false);
Benjamin Kramerab8ae192010-01-20 16:18:11 +0000203 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/backward",
204 System, true, false, false);
Mike Stump620d57a2009-10-12 20:50:45 +0000205}
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +0000206
Mike Stump620d57a2009-10-12 20:50:45 +0000207 // FIXME: This probably should goto to some platform utils place.
208#ifdef _MSC_VER
John Thompson75ee3bd2009-11-21 00:15:52 +0000209
Mike Stump620d57a2009-10-12 20:50:45 +0000210 // Read registry string.
John Thompson75ee3bd2009-11-21 00:15:52 +0000211 // This also supports a means to look for high-versioned keys by use
212 // of a $VERSION placeholder in the key path.
213 // $VERSION in the key path is a placeholder for the version number,
214 // causing the highest value path to be searched for and used.
215 // I.e. "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\$VERSION".
216 // There can be additional characters in the component. Only the numberic
217 // characters are compared.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000218static bool getSystemRegistryString(const char *keyPath, const char *valueName,
219 char *value, size_t maxLength) {
Mike Stump43d81762009-10-08 23:29:47 +0000220 HKEY hRootKey = NULL;
221 HKEY hKey = NULL;
222 const char* subKey = NULL;
223 DWORD valueType;
224 DWORD valueSize = maxLength - 1;
John Thompson75ee3bd2009-11-21 00:15:52 +0000225 long lResult;
Mike Stump43d81762009-10-08 23:29:47 +0000226 bool returnValue = false;
227 if (strncmp(keyPath, "HKEY_CLASSES_ROOT\\", 18) == 0) {
228 hRootKey = HKEY_CLASSES_ROOT;
229 subKey = keyPath + 18;
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +0000230 }
Mike Stump43d81762009-10-08 23:29:47 +0000231 else if (strncmp(keyPath, "HKEY_USERS\\", 11) == 0) {
232 hRootKey = HKEY_USERS;
233 subKey = keyPath + 11;
234 }
235 else if (strncmp(keyPath, "HKEY_LOCAL_MACHINE\\", 19) == 0) {
236 hRootKey = HKEY_LOCAL_MACHINE;
237 subKey = keyPath + 19;
238 }
239 else if (strncmp(keyPath, "HKEY_CURRENT_USER\\", 18) == 0) {
240 hRootKey = HKEY_CURRENT_USER;
241 subKey = keyPath + 18;
242 }
243 else
244 return(false);
John Thompson75ee3bd2009-11-21 00:15:52 +0000245 const char *placeHolder = strstr(subKey, "$VERSION");
246 char bestName[256];
247 bestName[0] = '\0';
248 // If we have a $VERSION placeholder, do the highest-version search.
249 if (placeHolder) {
250 const char *keyEnd = placeHolder - 1;
251 const char *nextKey = placeHolder;
252 // Find end of previous key.
253 while ((keyEnd > subKey) && (*keyEnd != '\\'))
254 keyEnd--;
255 // Find end of key containing $VERSION.
256 while (*nextKey && (*nextKey != '\\'))
257 nextKey++;
258 size_t partialKeyLength = keyEnd - subKey;
259 char partialKey[256];
260 if (partialKeyLength > sizeof(partialKey))
261 partialKeyLength = sizeof(partialKey);
262 strncpy(partialKey, subKey, partialKeyLength);
263 partialKey[partialKeyLength] = '\0';
264 HKEY hTopKey = NULL;
265 lResult = RegOpenKeyEx(hRootKey, partialKey, 0, KEY_READ, &hTopKey);
266 if (lResult == ERROR_SUCCESS) {
267 char keyName[256];
268 int bestIndex = -1;
269 double bestValue = 0.0;
270 DWORD index, size = sizeof(keyName) - 1;
Nuno Lopes33cc2432009-12-07 17:18:48 +0000271 for (index = 0; RegEnumKeyEx(hTopKey, index, keyName, &size, NULL,
272 NULL, NULL, NULL) == ERROR_SUCCESS; index++) {
273 const char *sp = keyName;
274 while (*sp && !isdigit(*sp))
275 sp++;
276 if (!*sp)
277 continue;
278 const char *ep = sp + 1;
279 while (*ep && (isdigit(*ep) || (*ep == '.')))
280 ep++;
281 char numBuf[32];
282 strncpy(numBuf, sp, sizeof(numBuf) - 1);
283 numBuf[sizeof(numBuf) - 1] = '\0';
284 double value = strtod(numBuf, NULL);
285 if (value > bestValue) {
286 bestIndex = (int)index;
287 bestValue = value;
288 strcpy(bestName, keyName);
289 }
John Thompson75ee3bd2009-11-21 00:15:52 +0000290 size = sizeof(keyName) - 1;
291 }
292 // If we found the highest versioned key, open the key and get the value.
293 if (bestIndex != -1) {
294 // Append rest of key.
295 strncat(bestName, nextKey, sizeof(bestName) - 1);
296 bestName[sizeof(bestName) - 1] = '\0';
297 // Open the chosen key path remainder.
298 lResult = RegOpenKeyEx(hTopKey, bestName, 0, KEY_READ, &hKey);
299 if (lResult == ERROR_SUCCESS) {
300 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
301 (LPBYTE)value, &valueSize);
302 if (lResult == ERROR_SUCCESS)
303 returnValue = true;
304 RegCloseKey(hKey);
305 }
306 }
307 RegCloseKey(hTopKey);
308 }
309 }
310 else {
311 lResult = RegOpenKeyEx(hRootKey, subKey, 0, KEY_READ, &hKey);
312 if (lResult == ERROR_SUCCESS) {
313 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
314 (LPBYTE)value, &valueSize);
315 if (lResult == ERROR_SUCCESS)
316 returnValue = true;
317 RegCloseKey(hKey);
318 }
Mike Stump43d81762009-10-08 23:29:47 +0000319 }
320 return(returnValue);
321}
Mike Stump620d57a2009-10-12 20:50:45 +0000322#else // _MSC_VER
323 // Read registry string.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000324static bool getSystemRegistryString(const char*, const char*, char*, size_t) {
Mike Stump620d57a2009-10-12 20:50:45 +0000325 return(false);
326}
327#endif // _MSC_VER
Argyrios Kyrtzidis121e3c22008-09-05 09:41:20 +0000328
Mike Stump43d81762009-10-08 23:29:47 +0000329 // Get Visual Studio installation directory.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000330static bool getVisualStudioDir(std::string &path) {
Michael J. Spencerff58e362010-08-21 21:55:07 +0000331 // First check the environment variables that vsvars32.bat sets.
332 const char* vcinstalldir = getenv("VCINSTALLDIR");
333 if(vcinstalldir) {
334 char *p = const_cast<char *>(strstr(vcinstalldir, "\\VC"));
335 if (p)
336 *p = '\0';
337 path = vcinstalldir;
338 return(true);
339 }
340
John Thompson75ee3bd2009-11-21 00:15:52 +0000341 char vsIDEInstallDir[256];
Douglas Gregor80f93d92010-05-18 05:47:04 +0000342 char vsExpressIDEInstallDir[256];
Michael J. Spencerff58e362010-08-21 21:55:07 +0000343 // Then try the windows registry.
John Thompson75ee3bd2009-11-21 00:15:52 +0000344 bool hasVCDir = getSystemRegistryString(
345 "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\$VERSION",
346 "InstallDir", vsIDEInstallDir, sizeof(vsIDEInstallDir) - 1);
Douglas Gregor80f93d92010-05-18 05:47:04 +0000347 bool hasVCExpressDir = getSystemRegistryString(
348 "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\$VERSION",
349 "InstallDir", vsExpressIDEInstallDir, sizeof(vsExpressIDEInstallDir) - 1);
Mike Stump43d81762009-10-08 23:29:47 +0000350 // If we have both vc80 and vc90, pick version we were compiled with.
John Thompson75ee3bd2009-11-21 00:15:52 +0000351 if (hasVCDir && vsIDEInstallDir[0]) {
Mike Stump620d57a2009-10-12 20:50:45 +0000352 char *p = (char*)strstr(vsIDEInstallDir, "\\Common7\\IDE");
353 if (p)
354 *p = '\0';
355 path = vsIDEInstallDir;
356 return(true);
357 }
Douglas Gregor80f93d92010-05-18 05:47:04 +0000358 else if (hasVCExpressDir && vsExpressIDEInstallDir[0]) {
359 char *p = (char*)strstr(vsExpressIDEInstallDir, "\\Common7\\IDE");
360 if (p)
361 *p = '\0';
362 path = vsExpressIDEInstallDir;
363 return(true);
364 }
Mike Stump620d57a2009-10-12 20:50:45 +0000365 else {
366 // Try the environment.
Douglas Gregor80f93d92010-05-18 05:47:04 +0000367 const char* vs100comntools = getenv("VS100COMNTOOLS");
Mike Stump620d57a2009-10-12 20:50:45 +0000368 const char* vs90comntools = getenv("VS90COMNTOOLS");
369 const char* vs80comntools = getenv("VS80COMNTOOLS");
370 const char* vscomntools = NULL;
Douglas Gregor80f93d92010-05-18 05:47:04 +0000371
372 // Try to find the version that we were compiled with
373 if(false) {}
374 #if (_MSC_VER >= 1600) // VC100
375 else if(vs100comntools) {
376 vscomntools = vs100comntools;
Mike Stump620d57a2009-10-12 20:50:45 +0000377 }
Douglas Gregor80f93d92010-05-18 05:47:04 +0000378 #elif (_MSC_VER == 1500) // VC80
379 else if(vs90comntools) {
380 vscomntools = vs90comntools;
381 }
382 #elif (_MSC_VER == 1400) // VC80
383 else if(vs80comntools) {
384 vscomntools = vs80comntools;
385 }
386 #endif
387 // Otherwise find any version we can
388 else if (vs100comntools)
389 vscomntools = vs100comntools;
Mike Stump620d57a2009-10-12 20:50:45 +0000390 else if (vs90comntools)
Mike Stump43d81762009-10-08 23:29:47 +0000391 vscomntools = vs90comntools;
Mike Stump620d57a2009-10-12 20:50:45 +0000392 else if (vs80comntools)
393 vscomntools = vs80comntools;
Douglas Gregor80f93d92010-05-18 05:47:04 +0000394
Mike Stump620d57a2009-10-12 20:50:45 +0000395 if (vscomntools && *vscomntools) {
Dan Gohmancb421fa2010-04-19 16:39:44 +0000396 char *p = const_cast<char *>(strstr(vscomntools, "\\Common7\\Tools"));
Mike Stump620d57a2009-10-12 20:50:45 +0000397 if (p)
398 *p = '\0';
399 path = vscomntools;
400 return(true);
401 }
402 else
403 return(false);
Mike Stump43d81762009-10-08 23:29:47 +0000404 }
Mike Stump620d57a2009-10-12 20:50:45 +0000405 return(false);
Mike Stump43d81762009-10-08 23:29:47 +0000406}
Mike Stump43d81762009-10-08 23:29:47 +0000407
John Thompson75ee3bd2009-11-21 00:15:52 +0000408 // Get Windows SDK installation directory.
Benjamin Kramer6cd52162010-01-20 16:21:40 +0000409static bool getWindowsSDKDir(std::string &path) {
John Thompson75ee3bd2009-11-21 00:15:52 +0000410 char windowsSDKInstallDir[256];
411 // Try the Windows registry.
412 bool hasSDKDir = getSystemRegistryString(
413 "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Microsoft SDKs\\Windows\\$VERSION",
414 "InstallationFolder", windowsSDKInstallDir, sizeof(windowsSDKInstallDir) - 1);
415 // If we have both vc80 and vc90, pick version we were compiled with.
416 if (hasSDKDir && windowsSDKInstallDir[0]) {
417 path = windowsSDKInstallDir;
418 return(true);
419 }
420 return(false);
421}
422
mike-m79bc57c2010-05-16 19:03:52 +0000423void InitHeaderSearch::AddDefaultCIncludePaths(const llvm::Triple &triple,
424 const HeaderSearchOptions &HSOpts) {
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000425 llvm::Triple::OSType os = triple.getOS();
426
427 switch (os) {
428 case llvm::Triple::NetBSD:
429 break;
430 default:
431 // FIXME: temporary hack: hard-coded paths.
432 AddPath("/usr/local/include", System, true, false, false);
433 break;
434 }
mike-m79bc57c2010-05-16 19:03:52 +0000435
436 // Builtin includes use #include_next directives and should be positioned
437 // just prior C include dirs.
438 if (HSOpts.UseBuiltinIncludes) {
439 // Ignore the sys root, we *always* look for clang headers relative to
440 // supplied path.
441 llvm::sys::Path P(HSOpts.ResourceDir);
442 P.appendComponent("include");
443 AddPath(P.str(), System, false, false, false, /*IgnoreSysRoot=*/ true);
444 }
445
446 // Add dirs specified via 'configure --with-c-include-dirs'.
Daniel Dunbarc7064682009-11-12 07:28:29 +0000447 llvm::StringRef CIncludeDirs(C_INCLUDE_DIRS);
448 if (CIncludeDirs != "") {
Rafael Espindolaaadd7a42009-11-13 05:13:58 +0000449 llvm::SmallVector<llvm::StringRef, 5> dirs;
450 CIncludeDirs.split(dirs, ":");
451 for (llvm::SmallVectorImpl<llvm::StringRef>::iterator i = dirs.begin();
452 i != dirs.end();
453 ++i)
Rafael Espindolaf0a2f512009-11-12 05:48:41 +0000454 AddPath(*i, System, false, false, false);
455 return;
456 }
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000457
Mike Stump43d81762009-10-08 23:29:47 +0000458 switch (os) {
Daniel Dunbard11ee7f2010-09-09 17:38:18 +0000459 case llvm::Triple::Win32: {
460 std::string VSDir;
461 std::string WindowsSDKDir;
462 if (getVisualStudioDir(VSDir)) {
463 AddPath(VSDir + "\\VC\\include", System, false, false, false);
464 if (getWindowsSDKDir(WindowsSDKDir))
465 AddPath(WindowsSDKDir + "\\include", System, false, false, false);
466 else
467 AddPath(VSDir + "\\VC\\PlatformSDK\\Include",
468 System, false, false, false);
469 } else {
470 // Default install paths.
471 AddPath("C:/Program Files/Microsoft Visual Studio 10.0/VC/include",
472 System, false, false, false);
473 AddPath("C:/Program Files/Microsoft Visual Studio 9.0/VC/include",
474 System, false, false, false);
475 AddPath(
John Thompson9319f022009-11-23 17:49:27 +0000476 "C:/Program Files/Microsoft Visual Studio 9.0/VC/PlatformSDK/Include",
Daniel Dunbard11ee7f2010-09-09 17:38:18 +0000477 System, false, false, false);
478 AddPath("C:/Program Files/Microsoft Visual Studio 8/VC/include",
479 System, false, false, false);
480 AddPath(
John Thompson9319f022009-11-23 17:49:27 +0000481 "C:/Program Files/Microsoft Visual Studio 8/VC/PlatformSDK/Include",
Daniel Dunbard11ee7f2010-09-09 17:38:18 +0000482 System, false, false, false);
Mike Stump43d81762009-10-08 23:29:47 +0000483 }
484 break;
Daniel Dunbard11ee7f2010-09-09 17:38:18 +0000485 }
Chris Lattner86ed3a32010-04-11 19:29:39 +0000486 case llvm::Triple::Haiku:
487 AddPath("/boot/common/include", System, true, false, false);
488 AddPath("/boot/develop/headers/os", System, true, false, false);
489 AddPath("/boot/develop/headers/os/app", System, true, false, false);
490 AddPath("/boot/develop/headers/os/arch", System, true, false, false);
491 AddPath("/boot/develop/headers/os/device", System, true, false, false);
492 AddPath("/boot/develop/headers/os/drivers", System, true, false, false);
493 AddPath("/boot/develop/headers/os/game", System, true, false, false);
494 AddPath("/boot/develop/headers/os/interface", System, true, false, false);
495 AddPath("/boot/develop/headers/os/kernel", System, true, false, false);
496 AddPath("/boot/develop/headers/os/locale", System, true, false, false);
497 AddPath("/boot/develop/headers/os/mail", System, true, false, false);
498 AddPath("/boot/develop/headers/os/media", System, true, false, false);
499 AddPath("/boot/develop/headers/os/midi", System, true, false, false);
500 AddPath("/boot/develop/headers/os/midi2", System, true, false, false);
501 AddPath("/boot/develop/headers/os/net", System, true, false, false);
502 AddPath("/boot/develop/headers/os/storage", System, true, false, false);
503 AddPath("/boot/develop/headers/os/support", System, true, false, false);
504 AddPath("/boot/develop/headers/os/translation",
505 System, true, false, false);
506 AddPath("/boot/develop/headers/os/add-ons/graphics",
507 System, true, false, false);
508 AddPath("/boot/develop/headers/os/add-ons/input_server",
509 System, true, false, false);
510 AddPath("/boot/develop/headers/os/add-ons/screen_saver",
511 System, true, false, false);
512 AddPath("/boot/develop/headers/os/add-ons/tracker",
513 System, true, false, false);
514 AddPath("/boot/develop/headers/os/be_apps/Deskbar",
515 System, true, false, false);
516 AddPath("/boot/develop/headers/os/be_apps/NetPositive",
517 System, true, false, false);
518 AddPath("/boot/develop/headers/os/be_apps/Tracker",
519 System, true, false, false);
520 AddPath("/boot/develop/headers/cpp", System, true, false, false);
521 AddPath("/boot/develop/headers/cpp/i586-pc-haiku",
522 System, true, false, false);
523 AddPath("/boot/develop/headers/3rdparty", System, true, false, false);
524 AddPath("/boot/develop/headers/bsd", System, true, false, false);
525 AddPath("/boot/develop/headers/glibc", System, true, false, false);
526 AddPath("/boot/develop/headers/posix", System, true, false, false);
527 AddPath("/boot/develop/headers", System, true, false, false);
Eli Friedmana7e68452010-08-22 01:00:03 +0000528 break;
NAKAMURA Takumi32df0022010-10-11 02:27:37 +0000529 case llvm::Triple::Cygwin:
530 AddPath("/usr/include/w32api", System, true, false, false);
531 break;
Mike Stump43d81762009-10-08 23:29:47 +0000532 case llvm::Triple::MinGW64:
Mike Stump620d57a2009-10-12 20:50:45 +0000533 case llvm::Triple::MinGW32:
Mike Stump43d81762009-10-08 23:29:47 +0000534 AddPath("c:/mingw/include", System, true, false, false);
535 break;
536 default:
Mike Stump43d81762009-10-08 23:29:47 +0000537 break;
538 }
John Thompsond3f88342009-10-13 18:51:32 +0000539
John Thompsond3f88342009-10-13 18:51:32 +0000540 AddPath("/usr/include", System, false, false, false);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000541}
542
Chris Lattner0e3cc052010-05-05 05:28:39 +0000543void InitHeaderSearch::
544AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple) {
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000545 llvm::Triple::OSType os = triple.getOS();
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000546 llvm::StringRef CxxIncludeRoot(CXX_INCLUDE_ROOT);
547 if (CxxIncludeRoot != "") {
548 llvm::StringRef CxxIncludeArch(CXX_INCLUDE_ARCH);
549 if (CxxIncludeArch == "")
550 AddGnuCPlusPlusIncludePaths(CxxIncludeRoot, triple.str().c_str(),
Chris Lattner0e3cc052010-05-05 05:28:39 +0000551 CXX_INCLUDE_32BIT_DIR, CXX_INCLUDE_64BIT_DIR,
552 triple);
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000553 else
554 AddGnuCPlusPlusIncludePaths(CxxIncludeRoot, CXX_INCLUDE_ARCH,
Chris Lattner0e3cc052010-05-05 05:28:39 +0000555 CXX_INCLUDE_32BIT_DIR, CXX_INCLUDE_64BIT_DIR,
556 triple);
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000557 return;
558 }
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000559 // FIXME: temporary hack: hard-coded paths.
560 switch (os) {
561 case llvm::Triple::Cygwin:
NAKAMURA Takumi32df0022010-10-11 02:27:37 +0000562 // Cygwin-1.7
563 AddMinGWCPlusPlusIncludePaths("/usr/lib/gcc", "i686-pc-cygwin", "4.3.4");
564 // g++-4 / Cygwin-1.5
565 AddMinGWCPlusPlusIncludePaths("/usr/lib/gcc", "i686-pc-cygwin", "4.3.2");
566 // FIXME: Do we support g++-3.4.4?
567 AddMinGWCPlusPlusIncludePaths("/usr/lib/gcc", "i686-pc-cygwin", "3.4.4");
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000568 break;
569 case llvm::Triple::MinGW64:
Chris Lattner6a081402010-09-01 15:51:58 +0000570 // Try gcc 4.5.0
571 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw64", "4.5.0");
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000572 // Try gcc 4.4.0
573 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw64", "4.4.0");
574 // Try gcc 4.3.0
575 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw64", "4.3.0");
576 // Fall through.
577 case llvm::Triple::MinGW32:
Chris Lattner6a081402010-09-01 15:51:58 +0000578 // Try gcc 4.5.0
579 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw32", "4.5.0");
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000580 // Try gcc 4.4.0
581 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw32", "4.4.0");
582 // Try gcc 4.3.0
583 AddMinGWCPlusPlusIncludePaths("c:/MinGW/lib/gcc", "mingw32", "4.3.0");
584 break;
585 case llvm::Triple::Darwin:
Daniel Dunbarf2070b32010-05-28 01:54:31 +0000586 switch (triple.getArch()) {
587 default: break;
588
Douglas Gregor582c3012010-05-29 01:15:12 +0000589 case llvm::Triple::ppc:
590 case llvm::Triple::ppc64:
Douglas Gregor616d4362010-05-29 01:21:11 +0000591 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2.1",
592 "powerpc-apple-darwin10", "", "ppc64",
593 triple);
Douglas Gregor582c3012010-05-29 01:15:12 +0000594 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.0.0",
595 "powerpc-apple-darwin10", "", "ppc64",
596 triple);
597 break;
598
Daniel Dunbarf2070b32010-05-28 01:54:31 +0000599 case llvm::Triple::x86:
600 case llvm::Triple::x86_64:
601 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2.1",
602 "i686-apple-darwin10", "", "x86_64", triple);
603 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.0.0",
604 "i686-apple-darwin8", "", "", triple);
605 break;
606
607 case llvm::Triple::arm:
608 case llvm::Triple::thumb:
609 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2.1",
610 "arm-apple-darwin10", "v7", "", triple);
611 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2.1",
612 "arm-apple-darwin10", "v6", "", triple);
613 break;
614 }
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000615 break;
Chris Lattner7a7ca282010-01-09 05:41:14 +0000616 case llvm::Triple::DragonFly:
617 AddPath("/usr/include/c++/4.1", System, true, false, false);
618 break;
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000619 case llvm::Triple::Linux:
mike-mac78b7a2010-05-06 14:11:13 +0000620 //===------------------------------------------------------------------===//
621 // Debian based distros.
622 // Note: these distros symlink /usr/include/c++/X.Y.Z -> X.Y
623 //===------------------------------------------------------------------===//
624 // Ubuntu 10.04 LTS "Lucid Lynx" -- gcc-4.4.3
625 // Ubuntu 9.10 "Karmic Koala" -- gcc-4.4.1
626 // Debian 6.0 "squeeze" -- gcc-4.4.2
627 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
628 "x86_64-linux-gnu", "32", "", triple);
629 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
630 "i486-linux-gnu", "", "64", triple);
Nick Lewyckydb083552011-02-01 21:32:14 +0000631 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
632 "arm-linux-gnueabi", "", "", triple);
mike-mac78b7a2010-05-06 14:11:13 +0000633 // Ubuntu 9.04 "Jaunty Jackalope" -- gcc-4.3.3
634 // Ubuntu 8.10 "Intrepid Ibex" -- gcc-4.3.2
635 // Debian 5.0 "lenny" -- gcc-4.3.2
636 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
637 "x86_64-linux-gnu", "32", "", triple);
638 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
639 "i486-linux-gnu", "", "64", triple);
Rafael Espindolae7d6c2c2010-06-04 14:28:10 +0000640 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
641 "arm-linux-gnueabi", "", "", triple);
mike-mac78b7a2010-05-06 14:11:13 +0000642 // Ubuntu 8.04.4 LTS "Hardy Heron" -- gcc-4.2.4
643 // Ubuntu 8.04.[0-3] LTS "Hardy Heron" -- gcc-4.2.3
644 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2",
645 "x86_64-linux-gnu", "32", "", triple);
646 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2",
647 "i486-linux-gnu", "", "64", triple);
648 // Ubuntu 7.10 "Gutsy Gibbon" -- gcc-4.1.3
649 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.1",
650 "x86_64-linux-gnu", "32", "", triple);
651 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.1",
652 "i486-linux-gnu", "", "64", triple);
653
654 //===------------------------------------------------------------------===//
655 // Redhat based distros.
656 //===------------------------------------------------------------------===//
Rafael Espindola6638b3a2010-11-02 18:39:34 +0000657 // Fedora 14
658 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.5.1",
659 "x86_64-redhat-linux", "32", "", triple);
660 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.5.1",
661 "i686-redhat-linux", "", "", triple);
mike-mac78b7a2010-05-06 14:11:13 +0000662 // Fedora 13
Chris Lattner4336e192010-05-29 01:01:38 +0000663 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.4",
664 "x86_64-redhat-linux", "32", "", triple);
665 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.4",
666 "i686-redhat-linux","", "", triple);
mike-mac78b7a2010-05-06 14:11:13 +0000667 // Fedora 12
668 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.3",
669 "x86_64-redhat-linux", "32", "", triple);
670 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.3",
671 "i686-redhat-linux","", "", triple);
672 // Fedora 12 (pre-FEB-2010)
673 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.2",
674 "x86_64-redhat-linux", "32", "", triple);
675 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.2",
676 "i686-redhat-linux","", "", triple);
677 // Fedora 11
678 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.1",
679 "x86_64-redhat-linux", "32", "", triple);
680 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.1",
681 "i586-redhat-linux","", "", triple);
682 // Fedora 10
683 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.2",
684 "x86_64-redhat-linux", "32", "", triple);
685 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.2",
686 "i386-redhat-linux","", "", triple);
687 // Fedora 9
688 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.0",
689 "x86_64-redhat-linux", "32", "", triple);
690 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.0",
691 "i386-redhat-linux", "", "", triple);
692 // Fedora 8
693 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.1.2",
694 "x86_64-redhat-linux", "", "", triple);
695 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.1.2",
696 "i386-redhat-linux", "", "", triple);
697
698 //===------------------------------------------------------------------===//
699
Benjamin Kramer0db3d722010-01-25 12:20:15 +0000700 // Exherbo (2010-01-25)
701 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.3",
Torok Edwinfc4b8992009-12-18 17:29:14 +0000702 "x86_64-pc-linux-gnu", "32", "", triple);
Benjamin Kramer0db3d722010-01-25 12:20:15 +0000703 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4.3",
Torok Edwinfc4b8992009-12-18 17:29:14 +0000704 "i686-pc-linux-gnu", "", "", triple);
Chris Lattnerea00f842010-04-23 15:55:20 +0000705
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000706 // openSUSE 11.1 32 bit
707 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000708 "i586-suse-linux", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000709 // openSUSE 11.1 64 bit
710 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000711 "x86_64-suse-linux", "32", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000712 // openSUSE 11.2
713 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000714 "i586-suse-linux", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000715 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000716 "x86_64-suse-linux", "", "", triple);
Rafael Espindola9d2c0602010-11-25 18:51:59 +0000717
718 // openSUSE 11.4
719 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.5",
720 "i586-suse-linux", "", "", triple);
721 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.5",
722 "x86_64-suse-linux", "", "", triple);
723
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000724 // Arch Linux 2008-06-24
725 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.1",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000726 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000727 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.3.1",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000728 "x86_64-unknown-linux-gnu", "", "", triple);
Nuno Lopes0d155a52010-09-11 17:51:45 +0000729 // Gentoo x86 2010.0 stable
730 AddGnuCPlusPlusIncludePaths(
731 "/usr/lib/gcc/i686-pc-linux-gnu/4.4.3/include/g++-v4",
732 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000733 // Gentoo x86 2009.1 stable
734 AddGnuCPlusPlusIncludePaths(
John Thompson40d1bb62009-11-05 22:03:02 +0000735 "/usr/lib/gcc/i686-pc-linux-gnu/4.3.4/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000736 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000737 // Gentoo x86 2009.0 stable
738 AddGnuCPlusPlusIncludePaths(
John Thompson40d1bb62009-11-05 22:03:02 +0000739 "/usr/lib/gcc/i686-pc-linux-gnu/4.3.2/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000740 "i686-pc-linux-gnu", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000741 // Gentoo x86 2008.0 stable
742 AddGnuCPlusPlusIncludePaths(
John Thompson40d1bb62009-11-05 22:03:02 +0000743 "/usr/lib/gcc/i686-pc-linux-gnu/4.1.2/include/g++-v4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000744 "i686-pc-linux-gnu", "", "", triple);
Nick Lewycky66935342010-07-24 21:33:13 +0000745
Chandler Carruthfbfdb202010-11-28 07:20:14 +0000746 // Gentoo amd64 gcc 4.4.5
747 AddGnuCPlusPlusIncludePaths(
748 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.4.5/include/g++-v4",
749 "x86_64-pc-linux-gnu", "32", "", triple);
Nico Weber8ad8a1c2010-11-16 12:42:55 +0000750 // Gentoo amd64 gcc 4.4.4
751 AddGnuCPlusPlusIncludePaths(
752 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.4.4/include/g++-v4",
753 "x86_64-pc-linux-gnu", "32", "", triple);
Chandler Carruthfbfdb202010-11-28 07:20:14 +0000754 // Gentoo amd64 gcc 4.4.3
755 AddGnuCPlusPlusIncludePaths(
756 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.4.3/include/g++-v4",
757 "x86_64-pc-linux-gnu", "32", "", triple);
758 // Gentoo amd64 gcc 4.3.2
759 AddGnuCPlusPlusIncludePaths(
760 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.3.2/include/g++-v4",
761 "x86_64-pc-linux-gnu", "", "", triple);
762 // Gentoo amd64 stable
763 AddGnuCPlusPlusIncludePaths(
764 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4",
765 "i686-pc-linux-gnu", "", "", triple);
Nico Weber8ad8a1c2010-11-16 12:42:55 +0000766
Nick Lewycky66935342010-07-24 21:33:13 +0000767 // Gentoo amd64 llvm-gcc trunk
768 AddGnuCPlusPlusIncludePaths(
769 "/usr/lib/llvm-gcc-4.2-9999/include/c++/4.2.1",
770 "x86_64-pc-linux-gnu", "", "", triple);
Chandler Carruthfbfdb202010-11-28 07:20:14 +0000771
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000772 break;
773 case llvm::Triple::FreeBSD:
mike-mac78b7a2010-05-06 14:11:13 +0000774 // FreeBSD 8.0
775 // FreeBSD 7.3
Nuno Lopesafe859a2010-01-17 00:00:11 +0000776 AddGnuCPlusPlusIncludePaths("/usr/include/c++/4.2", "", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000777 break;
Anton Korobeynikovab079412010-08-31 22:39:50 +0000778 case llvm::Triple::NetBSD:
779 AddGnuCPlusPlusIncludePaths("/usr/include/g++", "", "", "", triple);
780 break;
Daniel Dunbar95c04572010-08-01 23:13:54 +0000781 case llvm::Triple::OpenBSD: {
782 std::string t = triple.getTriple();
783 if (t.substr(0, 6) == "x86_64")
784 t.replace(0, 6, "amd64");
785 AddGnuCPlusPlusIncludePaths("/usr/include/g++",
786 t, "", "", triple);
787 break;
788 }
Chris Lattner38e317d2010-07-07 16:01:42 +0000789 case llvm::Triple::Minix:
790 AddGnuCPlusPlusIncludePaths("/usr/gnu/include/c++/4.4.3",
791 "", "", "", triple);
792 break;
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000793 case llvm::Triple::Solaris:
794 // Solaris - Fall though..
795 case llvm::Triple::AuroraUX:
796 // AuroraUX
797 AddGnuCPlusPlusIncludePaths("/opt/gcc4/include/c++/4.2.4",
Rafael Espindolaab7ae952009-11-16 19:49:37 +0000798 "i386-pc-solaris2.11", "", "", triple);
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000799 break;
800 default:
801 break;
802 }
803}
804
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000805void InitHeaderSearch::AddDefaultSystemIncludePaths(const LangOptions &Lang,
Douglas Gregor4c2bcad2010-03-24 20:13:48 +0000806 const llvm::Triple &triple,
mike-m79bc57c2010-05-16 19:03:52 +0000807 const HeaderSearchOptions &HSOpts) {
Daniel Dunbar80c26f42010-09-09 17:38:22 +0000808 if (Lang.CPlusPlus && HSOpts.UseStandardCXXIncludes) {
809 if (!HSOpts.CXXSystemIncludes.empty()) {
810 for (unsigned i = 0, e = HSOpts.CXXSystemIncludes.size(); i != e; ++i)
811 AddPath(HSOpts.CXXSystemIncludes[i], System, true, false, false);
812 } else
813 AddDefaultCPlusPlusIncludePaths(triple);
814 }
Rafael Espindola6ec18a32009-11-23 16:31:19 +0000815
mike-m79bc57c2010-05-16 19:03:52 +0000816 AddDefaultCIncludePaths(triple, HSOpts);
Daniel Dunbare1665822009-11-07 04:20:39 +0000817
818 // Add the default framework include paths on Darwin.
819 if (triple.getOS() == llvm::Triple::Darwin) {
820 AddPath("/System/Library/Frameworks", System, true, false, true);
821 AddPath("/Library/Frameworks", System, true, false, true);
822 }
Rafael Espindolae4b255c2009-10-27 14:47:31 +0000823}
824
Nico Weber0fca0222008-08-22 09:25:22 +0000825/// RemoveDuplicates - If there are duplicate directory entries in the specified
826/// search list, remove the later (dead) ones.
827static void RemoveDuplicates(std::vector<DirectoryLookup> &SearchList,
828 bool Verbose) {
829 llvm::SmallPtrSet<const DirectoryEntry *, 8> SeenDirs;
830 llvm::SmallPtrSet<const DirectoryEntry *, 8> SeenFrameworkDirs;
831 llvm::SmallPtrSet<const HeaderMap *, 8> SeenHeaderMaps;
832 for (unsigned i = 0; i != SearchList.size(); ++i) {
Chris Lattner7a739402008-09-26 17:46:45 +0000833 unsigned DirToRemove = i;
Mike Stump1eb44332009-09-09 15:08:12 +0000834
Chris Lattner43eee072009-02-08 01:00:10 +0000835 const DirectoryLookup &CurEntry = SearchList[i];
Mike Stump1eb44332009-09-09 15:08:12 +0000836
Chris Lattner43eee072009-02-08 01:00:10 +0000837 if (CurEntry.isNormalDir()) {
Nico Weber0fca0222008-08-22 09:25:22 +0000838 // If this isn't the first time we've seen this dir, remove it.
Chris Lattner43eee072009-02-08 01:00:10 +0000839 if (SeenDirs.insert(CurEntry.getDir()))
Nico Weber0fca0222008-08-22 09:25:22 +0000840 continue;
Chris Lattner43eee072009-02-08 01:00:10 +0000841 } else if (CurEntry.isFramework()) {
Nico Weber0fca0222008-08-22 09:25:22 +0000842 // If this isn't the first time we've seen this framework dir, remove it.
Chris Lattner43eee072009-02-08 01:00:10 +0000843 if (SeenFrameworkDirs.insert(CurEntry.getFrameworkDir()))
Nico Weber0fca0222008-08-22 09:25:22 +0000844 continue;
Nico Weber0fca0222008-08-22 09:25:22 +0000845 } else {
Chris Lattner43eee072009-02-08 01:00:10 +0000846 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
Nico Weber0fca0222008-08-22 09:25:22 +0000847 // If this isn't the first time we've seen this headermap, remove it.
Chris Lattner43eee072009-02-08 01:00:10 +0000848 if (SeenHeaderMaps.insert(CurEntry.getHeaderMap()))
Nico Weber0fca0222008-08-22 09:25:22 +0000849 continue;
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 we have a normal #include dir/framework/headermap that is shadowed
853 // later in the chain by a system include location, we actually want to
854 // ignore the user's request and drop the user dir... keeping the system
855 // dir. This is weird, but required to emulate GCC's search path correctly.
856 //
857 // Since dupes of system dirs are rare, just rescan to find the original
858 // that we're nuking instead of using a DenseMap.
Chris Lattner43eee072009-02-08 01:00:10 +0000859 if (CurEntry.getDirCharacteristic() != SrcMgr::C_User) {
Chris Lattner30f05b52009-02-08 00:55:22 +0000860 // Find the dir that this is the same of.
861 unsigned FirstDir;
862 for (FirstDir = 0; ; ++FirstDir) {
863 assert(FirstDir != i && "Didn't find dupe?");
Mike Stump1eb44332009-09-09 15:08:12 +0000864
Chris Lattner43eee072009-02-08 01:00:10 +0000865 const DirectoryLookup &SearchEntry = SearchList[FirstDir];
866
Chris Lattner30f05b52009-02-08 00:55:22 +0000867 // If these are different lookup types, then they can't be the dupe.
Chris Lattner43eee072009-02-08 01:00:10 +0000868 if (SearchEntry.getLookupType() != CurEntry.getLookupType())
Chris Lattner30f05b52009-02-08 00:55:22 +0000869 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000870
Chris Lattner30f05b52009-02-08 00:55:22 +0000871 bool isSame;
Chris Lattner43eee072009-02-08 01:00:10 +0000872 if (CurEntry.isNormalDir())
873 isSame = SearchEntry.getDir() == CurEntry.getDir();
874 else if (CurEntry.isFramework())
875 isSame = SearchEntry.getFrameworkDir() == CurEntry.getFrameworkDir();
Chris Lattner30f05b52009-02-08 00:55:22 +0000876 else {
Chris Lattner43eee072009-02-08 01:00:10 +0000877 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
878 isSame = SearchEntry.getHeaderMap() == CurEntry.getHeaderMap();
Chris Lattner30f05b52009-02-08 00:55:22 +0000879 }
Mike Stump1eb44332009-09-09 15:08:12 +0000880
Chris Lattner30f05b52009-02-08 00:55:22 +0000881 if (isSame)
882 break;
883 }
Mike Stump1eb44332009-09-09 15:08:12 +0000884
Chris Lattner30f05b52009-02-08 00:55:22 +0000885 // If the first dir in the search path is a non-system dir, zap it
886 // instead of the system one.
887 if (SearchList[FirstDir].getDirCharacteristic() == SrcMgr::C_User)
888 DirToRemove = FirstDir;
889 }
890
891 if (Verbose) {
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000892 llvm::errs() << "ignoring duplicate directory \""
893 << CurEntry.getName() << "\"\n";
Chris Lattner30f05b52009-02-08 00:55:22 +0000894 if (DirToRemove != i)
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000895 llvm::errs() << " as it is a non-system directory that duplicates "
896 << "a system directory\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000897 }
Mike Stump1eb44332009-09-09 15:08:12 +0000898
Chris Lattner7a739402008-09-26 17:46:45 +0000899 // This is reached if the current entry is a duplicate. Remove the
900 // DirToRemove (usually the current dir).
901 SearchList.erase(SearchList.begin()+DirToRemove);
Nico Weber0fca0222008-08-22 09:25:22 +0000902 --i;
903 }
904}
905
906
907void InitHeaderSearch::Realize() {
908 // Concatenate ANGLE+SYSTEM+AFTER chains together into SearchList.
909 std::vector<DirectoryLookup> SearchList;
910 SearchList = IncludeGroup[Angled];
911 SearchList.insert(SearchList.end(), IncludeGroup[System].begin(),
912 IncludeGroup[System].end());
913 SearchList.insert(SearchList.end(), IncludeGroup[After].begin(),
914 IncludeGroup[After].end());
915 RemoveDuplicates(SearchList, Verbose);
916 RemoveDuplicates(IncludeGroup[Quoted], Verbose);
Mike Stump1eb44332009-09-09 15:08:12 +0000917
Nico Weber0fca0222008-08-22 09:25:22 +0000918 // Prepend QUOTED list on the search list.
Mike Stump1eb44332009-09-09 15:08:12 +0000919 SearchList.insert(SearchList.begin(), IncludeGroup[Quoted].begin(),
Nico Weber0fca0222008-08-22 09:25:22 +0000920 IncludeGroup[Quoted].end());
Mike Stump1eb44332009-09-09 15:08:12 +0000921
Nico Weber0fca0222008-08-22 09:25:22 +0000922
923 bool DontSearchCurDir = false; // TODO: set to true if -I- is set?
924 Headers.SetSearchPaths(SearchList, IncludeGroup[Quoted].size(),
925 DontSearchCurDir);
926
927 // If verbose, print the list of directories that will be searched.
928 if (Verbose) {
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000929 llvm::errs() << "#include \"...\" search starts here:\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000930 unsigned QuotedIdx = IncludeGroup[Quoted].size();
931 for (unsigned i = 0, e = SearchList.size(); i != e; ++i) {
932 if (i == QuotedIdx)
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000933 llvm::errs() << "#include <...> search starts here:\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000934 const char *Name = SearchList[i].getName();
935 const char *Suffix;
936 if (SearchList[i].isNormalDir())
937 Suffix = "";
938 else if (SearchList[i].isFramework())
939 Suffix = " (framework directory)";
940 else {
941 assert(SearchList[i].isHeaderMap() && "Unknown DirectoryLookup");
942 Suffix = " (headermap)";
943 }
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000944 llvm::errs() << " " << Name << Suffix << "\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000945 }
Daniel Dunbare7cb7e42009-12-03 09:14:02 +0000946 llvm::errs() << "End of search list.\n";
Nico Weber0fca0222008-08-22 09:25:22 +0000947 }
948}
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000949
Daniel Dunbar5814e652009-11-11 21:44:21 +0000950void clang::ApplyHeaderSearchOptions(HeaderSearch &HS,
951 const HeaderSearchOptions &HSOpts,
952 const LangOptions &Lang,
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000953 const llvm::Triple &Triple) {
954 InitHeaderSearch Init(HS, HSOpts.Verbose, HSOpts.Sysroot);
955
956 // Add the user defined entries.
957 for (unsigned i = 0, e = HSOpts.UserEntries.size(); i != e; ++i) {
958 const HeaderSearchOptions::Entry &E = HSOpts.UserEntries[i];
Daniel Dunbar1b483e72009-11-17 05:04:15 +0000959 Init.AddPath(E.Path, E.Group, false, E.IsUserSupplied, E.IsFramework,
Chris Lattner23637be2010-08-24 22:27:37 +0000960 !E.IsSysRootRelative);
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000961 }
962
963 // Add entries from CPATH and friends.
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000964 Init.AddDelimitedPaths(HSOpts.EnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000965 if (Lang.CPlusPlus && Lang.ObjC1)
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000966 Init.AddDelimitedPaths(HSOpts.ObjCXXEnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000967 else if (Lang.CPlusPlus)
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000968 Init.AddDelimitedPaths(HSOpts.CXXEnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000969 else if (Lang.ObjC1)
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000970 Init.AddDelimitedPaths(HSOpts.ObjCEnvIncPath);
Daniel Dunbarc363cb12009-11-16 22:38:40 +0000971 else
Benjamin Kramer9e9ddf62009-12-08 12:11:06 +0000972 Init.AddDelimitedPaths(HSOpts.CEnvIncPath);
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000973
Daniel Dunbardd35ce92009-11-07 04:58:12 +0000974 if (HSOpts.UseStandardIncludes)
mike-m79bc57c2010-05-16 19:03:52 +0000975 Init.AddDefaultSystemIncludePaths(Lang, Triple, HSOpts);
Daniel Dunbar63c8b772009-11-07 04:20:50 +0000976
977 Init.Realize();
978}