mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-16 18:35:53 +00:00

Summary: - Target-independent tests are run all the time. - Tests that codegen X86 code are run when X86 is in build targets. - Tests that run X86 jitted code are run only on X86 hosts. Reviewers: gchatelet Subscribers: mgorny, llvm-commits, tschuett Differential Revision: https://reviews.llvm.org/D45614 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@330008 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
130 B
CMake
11 lines
130 B
CMake
if(LLVM_TARGETS_TO_BUILD MATCHES "X86")
|
|
add_subdirectory(
|
|
llvm-cfi-verify
|
|
)
|
|
endif()
|
|
|
|
add_subdirectory(
|
|
llvm-exegesis
|
|
)
|
|
|