llvm-project/libcxx/cmake/caches
Louis Dionne bb939931a1 [libc++] Always build c++experimental.a
This is the first part of a plan to ship experimental features
by default while guarding them behind a compiler flag to avoid
users accidentally depending on them. Subsequent patches will
also encompass incomplete features (such as <format> and <ranges>)
in that categorization. Basically, the idea is that we always
build and ship the c++experimental library, however users can't
use what's in it unless they pass the `-funstable` flag to Clang.

Note that this patch intentionally does not start guarding
existing <experimental/FOO> content behind the flag, because
that would merely break users that might be relying on such
content being in the headers unconditionally. Instead, we
should start guarding new TSes behind the flag, and get rid
of the existing TSes we have by shipping their Standard
counterpart.

Also, this patch must jump through a few hoops like defining
_LIBCPP_ENABLE_EXPERIMENTAL because we still support compilers
that do not implement -funstable yet.

Differential Revision: https://reviews.llvm.org/D128927
2022-07-08 16:58:22 -04:00
..
AArch64.cmake [libcxx][ci] Switch to CMAKE_CXX_COMPILER_TARGET for Arm bots 2022-02-22 09:42:55 +00:00
AIX.cmake [libc++] Always build c++experimental.a 2022-07-08 16:58:22 -04:00
Apple.cmake [libc++] Always build c++experimental.a 2022-07-08 16:58:22 -04:00
Armv7Arm.cmake [libcxx][ci] Switch to CMAKE_CXX_COMPILER_TARGET for Arm bots 2022-02-22 09:42:55 +00:00
Armv7Thumb-noexceptions.cmake [libcxx][ci] Switch to CMAKE_CXX_COMPILER_TARGET for Arm bots 2022-02-22 09:42:55 +00:00
Armv8Arm.cmake [libcxx][ci] Switch to CMAKE_CXX_COMPILER_TARGET for Arm bots 2022-02-22 09:42:55 +00:00
Armv8Thumb-noexceptions.cmake [libcxx][ci] Switch to CMAKE_CXX_COMPILER_TARGET for Arm bots 2022-02-22 09:42:55 +00:00
FreeBSD.cmake Define new/delete in libc++ when using libcxxrt 2021-02-15 21:22:12 +01:00
Generic-abi-unstable.cmake [libc++] Add Unstable ABI CI run 2022-02-05 15:37:22 +01:00
Generic-asan.cmake [libc++][NFC] Work around false positive ODR violations from ASan. 2022-02-11 11:56:51 -08:00
Generic-assertions.cmake [libc++][libc++abi] Serialize the enable_assertions Lit parameter in the generated config 2022-03-29 08:17:25 -04:00
Generic-cxx2b.cmake [libc++] Add basic support for -std=c++2b. 2021-01-08 19:02:41 +01:00
Generic-cxx03.cmake
Generic-cxx11.cmake
Generic-cxx14.cmake
Generic-cxx17.cmake
Generic-cxx20.cmake [libc++] Divorce the std Lit feature from the -std=XXX compiler flag 2021-04-12 11:55:39 -04:00
Generic-debug-mode.cmake [libc++] Make the Debug mode a configuration-time only option 2022-06-07 16:33:53 -04:00
Generic-merged.cmake [runtimes] Fix the build of merged ABI/unwinder libraries 2022-05-19 10:49:36 -04:00
Generic-modules.cmake [libc++] Add a CI configuration for the modular build 2021-06-08 13:32:08 -04:00
Generic-msan.cmake
Generic-no-experimental.cmake [libc++] Always build c++experimental.a 2022-07-08 16:58:22 -04:00
Generic-no-filesystem.cmake [libc++] Make LIBCXX_ENABLE_FILESYSTEM fully consistent 2021-01-19 14:15:48 -05:00
Generic-no-localization.cmake [libc++] Add a libc++ configuration that does not support localization 2020-10-27 14:56:30 -04:00
Generic-no-random_device.cmake [libc++] Allow building libc++ on platforms without a random device 2020-10-15 12:20:29 -04:00
Generic-no-threads.cmake [libc++] Rename the generic-singlethreaded CI job to generic-no-threads for consistency 2022-05-24 09:58:57 -04:00
Generic-no-transitive-includes.cmake [libc++] Re-add transitive includes that had been removed since LLVM 14 2022-06-27 22:18:19 -04:00
Generic-no-unicode.cmake [libc++][format] Add a CMake Unicode option. 2021-09-04 11:55:10 +02:00
Generic-no-wide-characters.cmake [libc++] Add an option to disable wide character support in libc++ 2021-10-12 06:08:23 -04:00
Generic-noexceptions.cmake
Generic-static.cmake [libc++] Switch a few CI jobs to the minimal Lit configuration 2021-05-20 10:46:59 -04:00
Generic-tsan.cmake
Generic-ubsan.cmake
MinGW.cmake [libcxx] [ci] Don't disable libc++experimental in mingw builds 2022-07-07 23:30:53 +03:00
README.md

README.md

libc++ / libc++abi configuration caches

This directory contains CMake caches for the supported configurations of libc++. Some of the configurations are specific to a vendor, others are generic and not tied to any vendor.

While we won't explicitly work to break configurations not listed here, any configuration not listed here is not explicitly supported. If you use or ship libc++ under a configuration not listed here, you should work with the libc++ maintainers to make it into a supported configuration and add it here.

Similarly, adding any new configuration that's not already covered must be discussed with the libc++ maintainers as it entails a maintenance burden.