summaryrefslogtreecommitdiffstats
path: root/clang/lib/Basic/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Revert r223578, perf data collection depends on the old symbol name.Paul Robinson2014-12-101-5/+5
| | | | llvm-svn: 223987
* Rename a couple of preprocessor symbols to be more descriptive. NFC.Paul Robinson2014-12-061-5/+5
| | | | | | Review feedback from recent changes to GetSVN.cmake. llvm-svn: 223578
* Use tabs instead of spaces.Benjamin Kramer2012-03-021-3/+3
| | | | | | No, really, make doesn't work with spaces. llvm-svn: 151920
* clang -v support for separate clang.git and llvm.git, patch by Andrew Trick.Jia Liu2012-03-021-8/+15
| | | | llvm-svn: 151910
* Basic: Simplify getClangRepositoryPath and getClangRevision.Daniel Dunbar2010-09-291-2/+4
| | | | | | | | | | - I don't like returning StringRef's ever, unless it is actually important for performance, which it isn't here. - Also, stop validating getClangRevision to be an integer, I don't see a good reason to do this. llvm-svn: 115071
* Basic: Add support for git svn to get the repo version in clang executable,Daniel Dunbar2010-09-291-1/+3
| | | | | | patch by Jonathan Mulder! llvm-svn: 115049
* BUILD_ARCHIVE is the default for libraries, no need to set it.Chris Lattner2010-07-181-1/+0
| | | | llvm-svn: 108633
* Makefiles: Set Clang CPP compiler flags in a single location, instead of ↵Daniel Dunbar2010-06-081-5/+0
| | | | | | scattered throughout the project Makefiles. llvm-svn: 105638
* Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile.Daniel Dunbar2010-06-081-2/+2
| | | | | | - This eliminates most dependencies on how Clang is installed relative to LLVM. llvm-svn: 105637
* -fno-rtti is now the default.Chris Lattner2010-01-241-1/+0
| | | | llvm-svn: 94379
* Move version string generation (e.g., "clang 1.1 ...") to ↵Ted Kremenek2010-01-221-0/+3
| | | | | | libBasic/Version.cpp, getClangFullVendorVersion(). llvm-svn: 94235
* Update to use llvm/utils/GetSourceVersion to detect version number, instead ofDaniel Dunbar2010-01-211-1/+1
| | | | | | assuming SVN. This should be fixed to not necessarily be an integer. llvm-svn: 94081
* Installation of Clang libraries and headers, from Axel Naumann!Douglas Gregor2009-10-081-3/+0
| | | | llvm-svn: 83582
* Provide a common set of routines in Version.h that return SubversionDouglas Gregor2009-10-051-0/+11
| | | | | | | branch/revision information. Use that information in the driver, rather than one-off branch/revision computation. llvm-svn: 83321
* Don't install Clang libraries.Douglas Gregor2009-08-231-0/+3
| | | | llvm-svn: 79824
* Build system changes to use TableGen to generate the variousDouglas Gregor2009-03-161-1/+1
| | | | | | | | | | | | | | | | | | diagnostics. This builds on the patch that Sebastian committed and then revert. Major differences are: - We don't remove or use the current ".def" files. Instead, for now, we just make sure that we're building the ".inc" files. - Fixed CMake makefiles to run TableGen and build the ".inc" files when needed. Tested with both the Xcode and Makefile generators provided by CMake, so it should be solid. - Fixed normal makefiles to handle out-of-source builds that involve the ".inc" files. I'll send a separate patch to the list with Sebastian's changes that eliminate the use of the .def files. llvm-svn: 67058
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-151-0/+22
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402
OpenPOWER on IntegriCloud