summaryrefslogtreecommitdiff
path: root/lib/clang/include/llvm/Config/llvm-config.h
Commit message (Collapse)AuthorAgeFilesLines
* Update generated llvm-project related version headers, config.h filesDimitry Andric2020-08-061-3/+9
| | | | | | | and add a newly generated lldb Plugins.def file too. Notes: svn path=/projects/clang1100-import/; revision=363982
* Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmpDimitry Andric2020-05-231-2/+2
| | | | | | | | | llvmorg-10.0.1-rc1-0-gf79cd71e145 (aka 10.0.1 rc1). MFC after: 3 weeks Notes: svn path=/head/; revision=361410
* * Bump version numbers to 10.0.0Dimitry Andric2020-01-251-6/+3
| | | | | | | | | | | * Update UPDATING * Update (Optional)ObsoleteFiles.inc * Update VCS(Revision|Version) files * Update generated config headers * Update clang internal headers Makefile Notes: svn path=/projects/clang1000-import/; revision=357120
* Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmpDimitry Andric2019-12-221-2/+2
| | | | | | | | | | | | | | | | | | 9.0.1 final release c1a0a213378a458fbea1a5c77b315c7dce08fd05. Release notes for llvm, clang, lld and libc++ 9.0.1 will become available here: https://releases.llvm.org/9.0.1/docs/ReleaseNotes.html https://releases.llvm.org/9.0.1/tools/clang/docs/ReleaseNotes.html https://releases.llvm.org/9.0.1/tools/lld/docs/ReleaseNotes.html https://releases.llvm.org/9.0.1/projects/libcxx/docs/ReleaseNotes.html PR: 240629 MFC after: 1 month Notes: svn path=/head/; revision=356004
* Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb, and openmpDimitry Andric2019-09-021-1/+1
| | | | | | | release_90 branch r369369, and update version numbers. Notes: svn path=/projects/clang900-import/; revision=351708
* Regenerate config and version headers.Dimitry Andric2019-08-231-7/+7
| | | | Notes: svn path=/projects/clang900-import/; revision=351442
* Upgrade our copies of clang, llvm, lld, lldb, compiler-rt, libc++,Dimitry Andric2019-06-121-2/+2
| | | | | | | | | | | libunwind and openmp to the upstream release_80 branch r363030 (effectively, 8.0.1 rc2). The 8.0.1 release should follow this within a week or so. MFC after: 2 weeks Notes: svn path=/head/; revision=349004
* Now for the release_80 branch, update version numbers for llvm, clangDimitry Andric2019-01-221-1/+1
| | | | | | | and lld, and regenerate config headers. Notes: svn path=/projects/clang800-import/; revision=343319
* Update version numbers, and regenerate config headers for llvm, clang,Dimitry Andric2019-01-201-3/+3
| | | | | | | lld and lldb. Update ObsoleteFiles.inc and OptionalObsoleteFiles.inc. Notes: svn path=/projects/clang800-import/; revision=343220
* Update LLVM_VERSION_PATCH define in llvm-config.h.Dimitry Andric2018-11-041-1/+1
| | | | Notes: svn path=/projects/clang700-import/; revision=340131
* Merge llvm, clang, lld, lldb, compiler-rt and libc++ release_70 branchDimitry Andric2018-11-041-1/+1
| | | | | | | | | | r346007 (effectively 7.0.1 rc2), resolve conflicts, and bump version numbers. PR: 230240, 230355 Notes: svn path=/projects/clang700-import/; revision=340125
* Merge llvm, clang, lld, lldb, compiler-rt and libc++ release_70 branchDimitry Andric2018-08-181-1/+1
| | | | | | | | | r339999, resolve conflicts, and bump version numbers. PR: 230240,230355 Notes: svn path=/projects/clang700-import/; revision=338014
* Update llvm/clang version numbers in various files.Dimitry Andric2018-07-311-6/+11
| | | | Notes: svn path=/projects/clang700-import/; revision=336988
* Follow-up to r335799 (llvm/clang 6.0.1 update), by regenerating variousDimitry Andric2018-06-301-2/+2
| | | | | | | | | | headers with new version information defines. MFC after: 2 weeks X-MFC-With: r335799 Notes: svn path=/head/; revision=335813
* Add support for selectively enabling LLVM targetsDimitry Andric2018-06-221-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes it possible, through src.conf(5) settings, to select which LLVM targets you want to build during buildworld. The current list is: * (WITH|WITHOUT)_LLVM_TARGET_AARCH64 * (WITH|WITHOUT)_LLVM_TARGET_ARM * (WITH|WITHOUT)_LLVM_TARGET_MIPS * (WITH|WITHOUT)_LLVM_TARGET_POWERPC * (WITH|WITHOUT)_LLVM_TARGET_SPARC * (WITH|WITHOUT)_LLVM_TARGET_X86 To not influence anything right now, all of these are on by default, in situations where clang is enabled. Selectively turning a few targets off manually should work. Turning on only one target should work too, even if that target does not correspond to the build architecture. (In that case, LLVM_NATIVE_ARCH will not be defined, and you can only use the resulting clang executable for cross-compiling.) I performed a few measurements on one of the FreeBSD.org reference machines, building clang from scratch, with all targets enabled, and with only the x86 target enabled. The latter was ~12% faster in real time (on a 32-core box), and ~14% faster in user time. For a full buildworld the difference will probably be less pronounced, though. Reviewed by: bdrewery MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D11077 Notes: svn path=/head/; revision=335558
* Merge llvm, clang, lld, lldb, compiler-rt and libc++ release_60 r321788,Dimitry Andric2018-01-061-1/+1
| | | | | | | update build glue and version numbers. Notes: svn path=/projects/clang600-import/; revision=327657
* Update generated config headers, and version numbers.Dimitry Andric2017-12-201-3/+6
| | | | Notes: svn path=/projects/clang600-import/; revision=327041
* Upgrade our copies of clang, llvm, lldb and libc++ to r319231 from theDimitry Andric2017-12-031-2/+2
| | | | | | | | | upstream release_50 branch. This corresponds to 5.0.1 rc2. MFC after: 2 weeks Notes: svn path=/head/; revision=326496
* Initial update of clang/llvm build glue, for building just a minimalDimitry Andric2017-04-171-5/+2
| | | | | | | clang executable. Notes: svn path=/projects/clang500-import/; revision=317046
* Merge llvm, clang, lld and lldb release_40 branch r292009. Also updateDimitry Andric2017-01-141-1/+1
| | | | | | | build glue. Notes: svn path=/projects/clang400-import/; revision=312197
* Initial updates to llvm/clang build glue.Dimitry Andric2017-01-031-36/+8
| | | | Notes: svn path=/projects/clang400-import/; revision=311166
* Update build glue for llvm/clang 3.9.1.Dimitry Andric2016-11-261-2/+2
| | | | Notes: svn path=/projects/clang391-import/; revision=309176
* Update build glue for clang and the llvm/clang extras.Dimitry Andric2016-08-191-2/+2
| | | | Notes: svn path=/projects/clang390-import/; revision=304486
* Update llvm/clang build glue.Dimitry Andric2016-01-161-1/+2
| | | | Notes: svn path=/projects/clang380-import/; revision=294171
* Update clang's Version.inc file, and regenerate various generatedDimitry Andric2015-12-301-9/+11
| | | | | | | | configuration headers (these used to be generated by autoconf, but upstream has deprecated autoconf in favor of CMake). Notes: svn path=/projects/clang380-import/; revision=292958
* Upgrade our copies of clang and llvm to 3.7.1 release. This is aDimitry Andric2015-12-251-2/+2
| | | | | | | | | | bugfix-only release, with no new features. Please note that from 3.5.0 onwards, clang and llvm require C++11 support to build; see UPDATING for more information. Notes: svn path=/head/; revision=292735
* Update llvm, clang and lldb to 3.7.0 release.Dimitry Andric2015-09-061-1/+1
| | | | Notes: svn path=/projects/clang370-import/; revision=287521
* Update llvm/clang build glue.Dimitry Andric2015-06-231-5/+5
| | | | Notes: svn path=/projects/clang-trunk/; revision=284735
* Update Makefiles and other build glue for llvm/clang 3.7.0, as of trunkDimitry Andric2015-05-301-3/+6
| | | | | | | r238337. Notes: svn path=/projects/clang-trunk/; revision=283770
* Upgrade our copy of clang and llvm to 3.6.1 release.Dimitry Andric2015-05-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | This release contains the following cherry-picked revisions from upstream trunk: 226124 226151 226164 226165 226166 226407 226408 226409 226652 226905 226983 227084 227087 227089 227208 227209 227210 227211 227212 227213 227214 227269 227430 227482 227503 227519 227574 227822 227986 227987 227988 227989 227990 228037 228038 228039 228040 228188 228189 228190 228273 228372 228373 228374 228403 228765 228848 228918 229223 229225 229226 229227 229228 229230 229234 229235 229236 229238 229239 229413 229507 229680 229750 229751 229752 229911 230146 230147 230235 230253 230255 230469 230500 230564 230603 230657 230742 230748 230956 231219 231237 231245 231259 231280 231451 231563 231601 231658 231659 231662 231984 231986 232046 232085 232142 232176 232179 232189 232382 232386 232389 232425 232438 232443 232675 232786 232797 232943 232957 233075 233080 233351 233353 233409 233410 233508 233584 233819 233904 234629 234636 234891 234975 234977 235524 235641 235662 235931 236099 236306 236307 Please note that from 3.5.0 onwards, clang and llvm require C++11 support to build; see UPDATING for more information. Notes: svn path=/head/; revision=283526
* Minor updates to llvm's pregenerated config headers.Dimitry Andric2015-02-261-0/+3
| | | | Notes: svn path=/projects/clang360-import/; revision=279337
* Update llvm and clang library and binary Makefiles for 3.6.0 rc1.Dimitry Andric2015-01-261-1/+4
| | | | Notes: svn path=/projects/clang360-import/; revision=277765
* Update llvm and clang include files.Dimitry Andric2014-11-241-36/+7
| | | | Notes: svn path=/projects/clang350-import/; revision=274972
* Upgrade our copy of llvm/clang to 3.4.1 release. This release containsDimitry Andric2014-05-121-1/+1
| | | | | | | | | | | | | | | | | | mostly fixes, for the following upstream bugs: http://llvm.org/PR16365 http://llvm.org/PR17473 http://llvm.org/PR18000 http://llvm.org/PR18068 http://llvm.org/PR18102 http://llvm.org/PR18165 http://llvm.org/PR18260 http://llvm.org/PR18290 http://llvm.org/PR18316 http://llvm.org/PR18460 http://llvm.org/PR18473 http://llvm.org/PR18515 http://llvm.org/PR18526 http://llvm.org/PR18600 http://llvm.org/PR18762 http://llvm.org/PR18773 http://llvm.org/PR18860 http://llvm.org/PR18994 http://llvm.org/PR19007 http://llvm.org/PR19010 http://llvm.org/PR19033 http://llvm.org/PR19059 http://llvm.org/PR19144 http://llvm.org/PR19326 MFC after: 2 weeks Notes: svn path=/head/; revision=265925
* Upgrade our copy of llvm/clang to 3.4 release. This version supportsDimitry Andric2014-02-161-4/+1
| | | | | | | | | | | | | | | | | | | | all of the features in the current working draft of the upcoming C++ standard, provisionally named C++1y. The code generator's performance is greatly increased, and the loop auto-vectorizer is now enabled at -Os and -O2 in addition to -O3. The PowerPC backend has made several major improvements to code generation quality and compile time, and the X86, SPARC, ARM32, Aarch64 and SystemZ backends have all seen major feature work. Release notes for llvm and clang can be found here: <http://llvm.org/releases/3.4/docs/ReleaseNotes.html> <http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html> MFC after: 1 month Notes: svn path=/head/; revision=261991
* Upgrade our copy of llvm/clang to 3.3 release.Dimitry Andric2013-06-121-1/+1
| | | | | | | | | Release notes are still in the works, these will follow soon. MFC after: 1 month Notes: svn path=/head/; revision=251662
* Upgrade our copy of llvm/clang to trunk r178860, in preparation of theDimitry Andric2013-04-121-2/+8
| | | | | | | | | | | | 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 trunk r162107. With thanks toDimitry Andric2012-08-201-1/+4
| | | | | | | Benjamin Kramer and Joerg Sonnenberger for their input and fixes. Notes: svn path=/head/; revision=239462
* Upgrade our copy of llvm/clang to trunk r154661, in preparation of theDimitry Andric2012-04-161-3/+15
| | | | | | | | | | 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-171-3/+1
| | | | | | | | | | | | | | 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-061-0/+2
| | | | | | | | | | | | | | 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-221-11/+14
| | | | | | | | | | 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-171-0/+6
| | | | Notes: svn path=/head/; revision=224145
* Instead of defining LLVM_MULTITHREADED as 0 or 1, define or undefine it,Dimitry Andric2011-02-271-1/+1
| | | | | | | | 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-261-2/+32
| | | | | | | 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-201-3/+9
| | | | | | | | 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-201-0/+63
Approved-by: rpaulo (mentor) Notes: svn path=/head/; revision=212904