1 # This testing configuration handles running the test suite against LLVM's libc++
2 # using a DLL, with Clang-cl on Windows.
4 lit_config.load_config(config, '@CMAKE_CURRENT_BINARY_DIR@/cmake-bridge.cfg')
7 runtime_library = '@CMAKE_MSVC_RUNTIME_LIBRARY@'
8 if runtime_library == '' or runtime_library.endswith('DLL'):
9 fms_runtime_lib = 'dll'
12 fms_runtime_lib = 'static'
15 if '@CMAKE_BUILD_TYPE@'.upper() == 'DEBUG':
16 dbg_include = ' -D_DEBUG -include set_windows_crt_report_mode.h'
17 fms_runtime_lib += '_dbg'
20 config.substitutions.append(('%{flags}', '--driver-mode=g++'))
21 config.substitutions.append(('%{compile_flags}',
22 '-fms-runtime-lib=' + fms_runtime_lib + ' -nostdinc++ -I %{target-include-dir} -I %{include-dir} -I %{libcxx-dir}/test/support -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_STDIO_ISO_WIDE_SPECIFIERS -DNOMINMAX' + dbg_include
24 config.substitutions.append(('%{link_flags}',
25 '-nostdlib -L %{lib-dir} -lc++ -l' + cxx_lib
27 config.substitutions.append(('%{exec}',
28 '%{executor} --execdir %T --prepend_env PATH=%{install-prefix}/bin -- '
32 site.addsitedir(os.path.join('@LIBCXX_SOURCE_DIR@', 'utils'))
33 import libcxx.test.params, libcxx.test.config
34 libcxx.test.config.configure(
35 libcxx.test.params.DEFAULT_PARAMETERS,
36 libcxx.test.features.DEFAULT_FEATURES,