[llvm] ae217bf - Conditionalize the JIT test dependency
David Blaikie via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 30 13:04:12 PDT 2021
Author: David Blaikie
Date: 2021-03-30T13:04:02-07:00
New Revision: ae217bf1f3277b8c14590a130ee5e63cc1664443
URL: https://github.com/llvm/llvm-project/commit/ae217bf1f3277b8c14590a130ee5e63cc1664443
DIFF: https://github.com/llvm/llvm-project/commit/ae217bf1f3277b8c14590a130ee5e63cc1664443.diff
LOG: Conditionalize the JIT test dependency
Added:
Modified:
llvm/test/CMakeLists.txt
Removed:
################################################################################
diff --git a/llvm/test/CMakeLists.txt b/llvm/test/CMakeLists.txt
index 7c4fa2e9033a..81107be862de 100644
--- a/llvm/test/CMakeLists.txt
+++ b/llvm/test/CMakeLists.txt
@@ -158,6 +158,11 @@ if(LLVM_BUILD_EXAMPLES)
Kaleidoscope-Ch7
LLJITWithThinLTOSummaries
)
+ if(CMAKE_HOST_UNIX)
+ list(APPEND LLVM_TEST_DEPENDS
+ LLJITWithRemoteDebugging
+ )
+ endif()
if (NOT WIN32)
list(APPEND LLVM_TEST_DEPENDS
Bye
More information about the llvm-commits
mailing list