Skip to content

Commit 3044549

Browse files
kr-2003kr-2003anutosh491
authored
[clang-repl] Disable out of process JIT tests on non-unix platforms (#159404)
Co-authored-by: kr-2003 <[email protected]> Co-authored-by: Anutosh Bhat <[email protected]>
1 parent ddf0f6f commit 3044549

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/unittests/Interpreter/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ set(CLANG_REPL_TEST_SOURCES
3737
CodeCompletionTest.cpp
3838
)
3939

40-
if(TARGET compiler-rt)
40+
if(TARGET compiler-rt AND LLVM_ON_UNIX)
4141
list(APPEND CLANG_REPL_TEST_SOURCES
4242
OutOfProcessInterpreterTests.cpp
4343
)
@@ -61,7 +61,7 @@ add_distinct_clang_unittest(ClangReplInterpreterTests
6161
${LLVM_COMPONENTS_TO_LINK}
6262
)
6363

64-
if(TARGET compiler-rt)
64+
if(TARGET compiler-rt AND LLVM_ON_UNIX)
6565
add_dependencies(ClangReplInterpreterTests
6666
llvm-jitlink-executor
6767
compiler-rt

0 commit comments

Comments
 (0)