Please use GitHub pull requests for new patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
compiler-rt/test/CMakeLists.txt
Show All 16 Lines | |||||
# When ANDROID, we build tests with the host compiler (i.e. CMAKE_C_COMPILER), | # When ANDROID, we build tests with the host compiler (i.e. CMAKE_C_COMPILER), | ||||
# and run tests with tools from the host toolchain. | # and run tests with tools from the host toolchain. | ||||
if(NOT ANDROID) | if(NOT ANDROID) | ||||
if(NOT COMPILER_RT_STANDALONE_BUILD AND NOT RUNTIMES_BUILD) | if(NOT COMPILER_RT_STANDALONE_BUILD AND NOT RUNTIMES_BUILD) | ||||
# Use LLVM utils and Clang from the same build tree. | # Use LLVM utils and Clang from the same build tree. | ||||
list(APPEND SANITIZER_COMMON_LIT_TEST_DEPS | list(APPEND SANITIZER_COMMON_LIT_TEST_DEPS | ||||
clang clang-resource-headers FileCheck count not llvm-config llvm-nm llvm-objdump | clang clang-resource-headers FileCheck count not llvm-config llvm-nm llvm-objdump | ||||
llvm-readobj llvm-symbolizer compiler-rt-headers sancov) | llvm-readelf llvm-readobj llvm-size llvm-symbolizer compiler-rt-headers sancov) | ||||
if (WIN32) | if (WIN32) | ||||
list(APPEND SANITIZER_COMMON_LIT_TEST_DEPS KillTheDoctor) | list(APPEND SANITIZER_COMMON_LIT_TEST_DEPS KillTheDoctor) | ||||
endif() | endif() | ||||
endif() | endif() | ||||
endif() | endif() | ||||
function(compiler_rt_test_runtime runtime) | function(compiler_rt_test_runtime runtime) | ||||
string(TOUPPER ${runtime} runtime_uppercase) | string(TOUPPER ${runtime} runtime_uppercase) | ||||
▲ Show 20 Lines • Show All 66 Lines • Show Last 20 Lines |