1 # This testing configuration handles running the test suite against LLVM's libc++
2 # using a shared library, with GCC. This is done differently from Clang because
3 # GCC does not support the -nostdlib++ command-line flag.
5 lit_config.load_config(config, '@CMAKE_CURRENT_BINARY_DIR@/cmake-bridge.cfg')
7 config.substitutions.append(('%{flags}', '-pthread'))
8 config.substitutions.append(('%{compile_flags}',
9 '-nostdinc++ -I %{include} -I %{target-include} -I %{libcxx}/test/support'
11 config.substitutions.append(('%{link_flags}',
12 '-L %{lib} -Wl,-rpath,%{lib} -nodefaultlibs -lc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc -latomic'
14 config.substitutions.append(('%{exec}',
15 '%{executor} --execdir %T -- '
19 site.addsitedir(os.path.join('@LIBCXX_SOURCE_DIR@', 'utils'))
20 import libcxx.test.params, libcxx.test.config
21 libcxx.test.config.configure(
22 libcxx.test.params.DEFAULT_PARAMETERS,
23 libcxx.test.features.DEFAULT_FEATURES,