
Update the folder titles for targets in the monorepository that have not seen taken care of for some time. These are the folders that targets are organized in Visual Studio and XCode (`set_property(TARGET <target> PROPERTY FOLDER "<title>")`) when using the respective CMake's IDE generator. * Ensure that every target is in a folder * Use a folder hierarchy with each LLVM subproject as a top-level folder * Use consistent folder names between subprojects * When using target-creating functions from AddLLVM.cmake, automatically deduce the folder. This reduces the number of `set_property`/`set_target_property`, but are still necessary when `add_custom_target`, `add_executable`, `add_library`, etc. are used. A LLVM_SUBPROJECT_TITLE definition is used for that in each subproject's root CMakeLists.txt.
35 lines
1.3 KiB
CMake
35 lines
1.3 KiB
CMake
set(ORC_LIT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(ORC_TESTSUITES)
|
|
set(ORC_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS})
|
|
|
|
# TODO: This conditional was added to get standalone builds working
|
|
# (rdar://99453446). Longer term we should aim to identify and disable
|
|
# tests that depend on llvm-jitlink, or perhaps just disable ORC runtime
|
|
# regression testing entirely when it's not available.
|
|
if (NOT ANDROID AND NOT COMPILER_RT_STANDALONE_BUILD AND
|
|
NOT LLVM_RUNTIMES_BUILD)
|
|
list(APPEND ORC_TEST_DEPS llvm-jitlink lli)
|
|
endif()
|
|
|
|
set(ORC_TEST_ARCH ${ORC_SUPPORTED_ARCH})
|
|
if (COMPILER_RT_BUILD_ORC AND COMPILER_RT_HAS_ORC)
|
|
list(APPEND ORC_TEST_DEPS orc)
|
|
foreach(arch ${ORC_TEST_ARCH})
|
|
set(ORC_TEST_TARGET_ARCH ${arch})
|
|
string(TOLOWER "-${arch}-${OS_NAME}" ORC_TEST_CONFIG_SUFFIX)
|
|
get_test_cc_for_arch(${arch} ORC_TEST_TARGET_CC ORC_TEST_TARGET_CFLAGS)
|
|
string(TOUPPER ${arch} ARCH_UPPER_CASE)
|
|
set(CONFIG_NAME ${ARCH_UPPER_CASE}${OS_NAME}Config)
|
|
|
|
configure_lit_site_cfg(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg.py)
|
|
list(APPEND ORC_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME})
|
|
endforeach()
|
|
endif()
|
|
|
|
add_lit_testsuite(check-orc-rt "Running the ORC runtime tests"
|
|
${ORC_TESTSUITES}
|
|
DEPENDS ${ORC_TEST_DEPS})
|