This website requires JavaScript.
Explore
Help
Sign In
RPCS3
/
llvm-mirror
Watch
1
Star
0
Fork
0
You've already forked llvm-mirror
mirror of
https://github.com/RPCS3/llvm-mirror.git
synced
2024-11-23 19:23:23 +01:00
Code
Issues
Projects
Releases
Wiki
Activity
b9cba67387
llvm-mirror
/
unittests
/
tools
/
CMakeLists.txt
11 lines
130 B
CMake
Raw
Normal View
History
Unescape
Escape
[unittests] Only build llvm-cfi-verify if X86 is in LLVM_TARGETS_TO_BUILD The test requires a target for triple x86-64, and it fails in builds that do not have the X86 backend. llvm-svn: 315861
2017-10-15 18:55:23 +02:00
if
(
LLVM_TARGETS_TO_BUILD
MATCHES
"X86"
)
Re-land r329156 "Add llvm-exegesis tool." Fixed to depend on and initialize the native target instead of X86. llvm-svn: 329169
2018-04-04 13:37:06 +02:00
add_subdirectory
(
l
l
v
m
-
c
f
i
-
v
e
r
i
f
y
)
[unittests] Only build llvm-cfi-verify if X86 is in LLVM_TARGETS_TO_BUILD The test requires a target for triple x86-64, and it fails in builds that do not have the X86 backend. llvm-svn: 315861
2017-10-15 18:55:23 +02:00
endif
(
)
[llvm-exegesis] Run unit tests on more platforms. 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 llvm-svn: 330008
2018-04-13 14:20:30 +02:00
add_subdirectory
(
l
l
v
m
-
e
x
e
g
e
s
i
s
)
Reference in New Issue
Copy Permalink