This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
324d33dd4e
llvm-project
/
llvm
/
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-16 00:55:23 +08: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 19:37:06 +08: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-16 00:55:23 +08: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 20:20:30 +08:00
add_subdirectory
(
l
l
v
m
-
e
x
e
g
e
s
i
s
)