
This speeds up the CI a bit (anecdotally ~10%) for those jobs, and it also helps ensure that we are clean w.r.t. Clang modules when we disable some of the carve-outs like no-localization or no-threads.
7 lines
284 B
CMake
7 lines
284 B
CMake
set(LIBCXX_TEST_PARAMS "enable_experimental=False" CACHE STRING "")
|
|
set(LIBCXXABI_TEST_PARAMS "${LIBCXX_TEST_PARAMS}" CACHE STRING "")
|
|
|
|
# Speed up the CI
|
|
set(LIBCXX_TEST_PARAMS "enable_modules=clang" CACHE STRING "")
|
|
set(LIBCXXABI_TEST_PARAMS "${LIBCXX_TEST_PARAMS}" CACHE STRING "")
|