summaryrefslogtreecommitdiffstats
path: root/clang/lib/Frontend/InitHeaderSearch.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Add header searching for llvm-gcc trunk on Gentoo AMD64. Patch by Mark Wood!Nick Lewycky2010-07-241-1/+6
| | | | llvm-svn: 109357
* add driver support for minix, patch by Kees van ReeuwijkChris Lattner2010-07-071-0/+4
| | | | | | from PR7583 llvm-svn: 107788
* Add Cygwin C++ header search path.Douglas Gregor2010-06-161-0/+2
| | | | llvm-svn: 106108
* Add ARM paths for debian. Not enough to bootstrap on a beagle board, butRafael Espindola2010-06-041-0/+2
| | | | | | moves us further. llvm-svn: 105468
* More PowerPC paths on DarwinDouglas Gregor2010-05-291-0/+3
| | | | llvm-svn: 105084
* Add C++ include paths for Darwin PowerPCDouglas Gregor2010-05-291-0/+7
| | | | llvm-svn: 105083
* add fedora 13 paths, patch by Hendrik Richter.Chris Lattner2010-05-291-0/+4
| | | | llvm-svn: 105082
* Frontend: Sprinkle in some C++ header paths for ARM/Darwin. Also, don't add x86Daniel Dunbar2010-05-281-4/+19
| | | | | | | | paths on non-x86. I really detest this file. llvm-svn: 104921
* "The attached patch allows clang to find the headersDouglas Gregor2010-05-181-9/+33
| | | | | | | for Visual Studio 2010. It also adds a registry search for the Express edition,", from Steven Watanabe! llvm-svn: 104015
* Moved clang-builtin include dir position to immediately precede C includes.mike-m2010-05-161-21/+22
| | | | | | This aligns with how gcc compiler does things. llvm-svn: 103912
* Reverted part of r103177 (repositioning of clang-builtin include/)mike-m2010-05-061-18/+20
| | | | | | which breaks clang-i686-xp-msvc9 test-clang. llvm-svn: 103180
* Reposition clang-builtin include/ to immediately precede /usr/include/,mike-m2010-05-061-64/+78
| | | | | | | | | | matching gcc compiler. Fixes #include_next <...> shenanigans that lead to file-not-found failures with <cstddef> on libstdc++ 4.3.[012]. Updated C++ include header search paths for various Debian/Ubuntu and Fedora linux distros. llvm-svn: 103177
* Test commit.mike-m2010-05-051-1/+1
| | | | llvm-svn: 103090
* fit in 80 colsChris Lattner2010-05-051-3/+6
| | | | llvm-svn: 103075
* add GNU C++ include paths for Fedora 11,12 x86_64,Chris Lattner2010-04-231-1/+13
| | | | | | patch by mikem! llvm-svn: 102177
* Fix -Wcast-qual warnings.Dan Gohman2010-04-191-1/+1
| | | | llvm-svn: 101786
* add haiku support, patch by Paul Davey!Chris Lattner2010-04-111-0/+43
| | | | llvm-svn: 100982
* Implement support for -nostdc++. Fixes PR6446.Douglas Gregor2010-03-241-4/+7
| | | | llvm-svn: 99417
* on both the mac and linux, /usr/local/include is treated Chris Lattner2010-03-061-1/+1
| | | | | | | as a "C++ Friendly" system header directory. This fixes PR6523. llvm-svn: 97885
* Remove the linux c includes part of my last patch.Eric Christopher2010-03-031-3/+0
| | | | llvm-svn: 97679
* Add in more c++ header paths for later gccs under gentoo linux.Eric Christopher2010-03-031-0/+14
| | | | | | | | Add in c header path for various linuxes as well. Partial patch from Christian Adåker! llvm-svn: 97666
* Debian sid moved these headers into /4.4 and left /4.4.3 as a symlink. Update.Nick Lewycky2010-02-271-1/+3
| | | | | | Also, add support for 32-bit x86 Debian sid. llvm-svn: 97347
* add support for t Fedora 12 (February 2010), patch byChris Lattner2010-02-131-0/+4
| | | | | | Dyachenko Dmitry. Our system is "not so elegant" here. llvm-svn: 96111
* Update C++ include paths for Exherbo, by Ingmar Vanhassel.Benjamin Kramer2010-01-251-3/+3
| | | | llvm-svn: 94420
* Make some helper functions static.Benjamin Kramer2010-01-201-5/+5
| | | | llvm-svn: 94004
* Don't store a Twine temporary, it's unsafe.Benjamin Kramer2010-01-201-4/+6
| | | | llvm-svn: 94003
* add support for Fedora 10 x86_64, there really should be a better way to ↵Chris Lattner2010-01-191-0/+4
| | | | | | | | handle this. patch by Dmitry llvm-svn: 93948
* PR6055: fix FreeBSD c++ include path. patch by Roman DivackyNuno Lopes2010-01-171-1/+1
| | | | llvm-svn: 93668
* improve support for dragonfly, patch by Sascha Wildner!Chris Lattner2010-01-091-3/+3
| | | | llvm-svn: 93044
* Debian has x86_64-linux-gnu, not x86_64-pc-linux-gnu, so add it.Torok Edwin2009-12-181-0/+3
| | | | llvm-svn: 91698
* Move the 4.4.2 c++ include search to the top, otherwise it was picking the 4.1.3Torok Edwin2009-12-181-5/+5
| | | | | | | dirs on my system. Which is wrong, since it was missing the x86_64-pc-linux-gnu suffix. llvm-svn: 91694
* Add -resource-dir to clang -cc1, this allows the base directory for compilerDaniel Dunbar2009-12-151-2/+3
| | | | | | | resources (e.g., /usr/lib/clang/1.1) to be passed on the command line instead of computed. llvm-svn: 91370
* CompilerInvocation: Move builtin-include-path logic out of ↵Daniel Dunbar2009-12-131-1/+1
| | | | | | CompilerInvocation::CreateFromArgs. llvm-svn: 91237
* Twinify InitHeaderSearch::AddPath and use it in C++ include path generation.Benjamin Kramer2009-12-081-21/+23
| | | | llvm-svn: 90853
* Use StringRefs in InitHeaderSearch::AddDelimitedPaths.Benjamin Kramer2009-12-081-15/+15
| | | | llvm-svn: 90852
* add fedora 12 include pathNuno Lopes2009-12-071-19/+23
| | | | llvm-svn: 90772
* Kill a few more random stderr uses.Daniel Dunbar2009-12-031-9/+8
| | | | llvm-svn: 90441
* Put back hard-coded paths for win32 until I figure out what happened to ↵John Thompson2009-11-231-0/+19
| | | | | | failed tests. llvm-svn: 89677
* Reorder the header search a bit so that it matches gcc exactly:Rafael Espindola2009-11-231-5/+7
| | | | | | | *) the ../backward dir is the last in libstdc++ to be searched *) If compiling c++, the c++ headers are searched first llvm-svn: 89661
* Revised Win32 include path to search highest version in registry, plus ↵John Thompson2009-11-211-55/+109
| | | | | | platform SDK path llvm-svn: 89517
* add Fedora 11 include path. what a crap..Nuno Lopes2009-11-171-0/+5
| | | | llvm-svn: 89098
* Remove unused IsCXXAware and IgnoreSysRoots option from ↵Daniel Dunbar2009-11-171-2/+2
| | | | | | HeaderSearchOptions::Entry. llvm-svn: 89035
* Store more information in HeaderSearchOptions so that its initialization is notDaniel Dunbar2009-11-161-1/+8
| | | | | | language dependent. llvm-svn: 88981
* Use configure options for searching for libstdc++.Rafael Espindola2009-11-161-79/+47
| | | | llvm-svn: 88945
* Use StringRef::split instead of SplitString.Rafael Espindola2009-11-131-3/+6
| | | | llvm-svn: 87085
* Avoid comparing string literals.Daniel Dunbar2009-11-121-3/+3
| | | | llvm-svn: 86967
* Use the --with-c-include-dirs configure option.Rafael Espindola2009-11-121-0/+9
| | | | llvm-svn: 86956
* Allow Preprocessor to take ownership of the HeaderSearch object. I think it ↵Daniel Dunbar2009-11-111-2/+3
| | | | | | should probably always own the header search object, but I'm not sure... llvm-svn: 86882
* Privatize InitHeaderSearch, this functionality is only exposed viaDaniel Dunbar2009-11-091-2/+61
| | | | | | ApplyHeaderSearchOptions now. llvm-svn: 86617
* Switch clang-cc to use ApplyHeaderSearchOptions, and fix a thinko.Daniel Dunbar2009-11-071-1/+1
| | | | llvm-svn: 86341
OpenPOWER on IntegriCloud