summaryrefslogtreecommitdiff
path: root/lib/clang/include/llvm/Config
Commit message (Collapse)AuthorAgeFilesLines
...
* Upgrade our copy of llvm/clang to 3.3 release.Dimitry Andric2013-06-122-4/+16
| | | | | | | | | Release notes are still in the works, these will follow soon. MFC after: 1 month Notes: svn path=/head/; revision=251662
* Allow building clang on older FreeBSD releases, where log2() does notDimitry Andric2013-05-031-0/+5
| | | | | | | | | | exist yet. With this change, I have verified that building head on 8.1-RELEASE works. Noticed by: Ryan Stone <rysto32@gmail.com> Notes: svn path=/head/; revision=250217
* Upgrade our copy of llvm/clang to trunk r178860, in preparation of theDimitry Andric2013-04-122-7/+36
| | | | | | | | | | | | upcoming 3.3 release (branching and freezing expected in a few weeks). Preliminary release notes can be found at the usual location: <http://llvm.org/docs/ReleaseNotes.html> An MFC is planned once the actual 3.3 release is finished. Notes: svn path=/head/; revision=249423
* Upgrade our copy of llvm/clang to r168974, from upstream's release_32Dimitry Andric2012-12-031-0/+6
| | | | | | | | branch. This is effectively llvm/clang 3.2 RC2; the 3.2 release is coming soon. Notes: svn path=/head/; revision=243830
* Upgrade our copy of llvm/clang to trunk r162107. With thanks toDimitry Andric2012-08-204-5/+16
| | | | | | | Benjamin Kramer and Joerg Sonnenberger for their input and fixes. Notes: svn path=/head/; revision=239462
* Upgrade our copy of llvm/clang to 3.1 release. Release notes can beDimitry Andric2012-05-231-2/+2
| | | | | | | | | found at: http://llvm.org/releases/3.1/docs/ReleaseNotes.html MFC after: 3 days Notes: svn path=/head/; revision=235864
* Upgrade our copy of llvm/clang to r155985, from upstream's release_31Dimitry Andric2012-05-031-0/+3
| | | | | | | | | | branch. This brings us very close to the 3.1 release, which is planned for May 14th. MFC after: 2 weeks Notes: svn path=/head/; revision=234982
* Upgrade our copy of llvm/clang to trunk r154661, in preparation of theDimitry Andric2012-04-162-33/+48
| | | | | | | | | | upcoming 3.1 release (expected in a few weeks). Preliminary release notes can be found at: <http://llvm.org/docs/ReleaseNotes.html> MFC after: 2 weeks Notes: svn path=/head/; revision=234353
* Revert r227538, since it doesn't compile with clang at all (it doesn'tDimitry Andric2011-11-172-6/+2
| | | | | | | | | | | | | | allow the built-in operations to be redefined, at least not without excessive force). Instead, just disable LLVM's support for atomic operations for now. Nothing in either clang or the tablegen tools currently depends on it. This still allows users of head built before r198344 to upgrade to top-of-head seamlessly. Notes: svn path=/head/; revision=227636
* When one attempts to compile the tree with -march=i386, which also usedDimitry Andric2011-11-062-0/+4
| | | | | | | | | | | | | | to be gcc's default before r198344, calls to atomic builtins will not be expanded inline. Instead, they will be generated as calls to external functions (e.g. __sync_fetch_and_add_N), leading to linking errors later on. Put in a seatbelt that disables use of atomic builtins in libstdc++ and llvm, when tuning specifically for the real i386 CPU. This does not protect against all possible issues, but it is better than nothing. Notes: svn path=/head/; revision=227215
* Upgrade our copy of llvm/clang to r142614, from upstream's release_30Dimitry Andric2011-10-222-23/+29
| | | | | | | | | | branch. This brings us very close to the 3.0 release, which is expected in a week or two. MFC after: 1 week Notes: svn path=/head/; revision=226633
* Upgrade our copy of llvm/clang to r135360, from upstream's trunk.Dimitry Andric2011-07-172-0/+15
| | | | Notes: svn path=/head/; revision=224145
* Upgrade our copy of llvm/clang to r130700, from upstream's trunk.Dimitry Andric2011-05-021-2/+2
| | | | Notes: svn path=/head/; revision=221345
* Instead of defining LLVM_MULTITHREADED as 0 or 1, define or undefine it,Dimitry Andric2011-02-272-2/+2
| | | | | | | | and test appropriately. Otherwise it might erroneously pick up some pthread primitives, and fail to link. Notes: svn path=/head/; revision=219076
* Update llvm's config.h files to match more closely what is generated byDimitry Andric2011-02-262-11/+132
| | | | | | | a regular autoconf-based build. More cosmetic than functional changes. Notes: svn path=/head/; revision=219074
* Upgrade our copy of llvm/clang to r126079, from upstream's trunk.Dimitry Andric2011-02-205-16/+35
| | | | | | | | This contains many improvements, primarily better C++ support, an integrated assembler for x86 and support for -pg. Notes: svn path=/head/; revision=218893
* Upgrade our Clang in base to r114020, from upstream's release_28 branch.Dimitry Andric2010-09-202-1/+81
| | | | | | | Approved-by: rpaulo (mentor) Notes: svn path=/head/; revision=212904
* Upgrade our Clang in base to r108428.Ed Schouten2010-07-204-103/+11
| | | | | | | | | | | | This commit merges the latest LLVM sources from the vendor space. It also updates the build glue to match the new sources. Clang's version number is changed to match LLVM's, which means /usr/include/clang/2.0 has been renamed to /usr/include/clang/2.8. Obtained from: projects/clangbsd Notes: svn path=/head/; revision=210299
* Disable usage of posix_spawn() inside LLVM.Ed Schouten2010-06-131-1/+1
| | | | | | | | | | | | Even though it's nice to use posix_spawn() instead of manually using fork()/exec(), it's better to disable this. FreeBSD 7 doesn't support this interface. When enabled, we can't build tblgen, which prevents us from building FreeBSD 9 on 7. Tested by: raj Notes: svn path=/head/; revision=209124
* Disable usage of __DATE__.Ed Schouten2010-06-101-1/+1
| | | | | | | | This ensures that the Clang binary doesn't change checksums every time it's built. Notes: svn path=/head/; revision=208985
* Import the build makefiles for clang/LLVM.Roman Divacky2010-06-095-0/+688
Approved by: ed (mentor) Notes: svn path=/head/; revision=208963