Author: Abhinav Kumar
Date: 2025-09-18T10:16:39+03:00
New Revision: 304454980b9122e8037f857c577a7af981c5c884

URL: 
https://github.com/llvm/llvm-project/commit/304454980b9122e8037f857c577a7af981c5c884
DIFF: 
https://github.com/llvm/llvm-project/commit/304454980b9122e8037f857c577a7af981c5c884.diff

LOG: [clang-repl] Disable out of process JIT tests on non-unix platforms 
(#159404)

Co-authored-by: kr-2003 <kumar.kr.abhi...@gmail.com>
Co-authored-by: Anutosh Bhat <andersonbhat...@gmail.com>

Added: 
    

Modified: 
    clang/unittests/Interpreter/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/clang/unittests/Interpreter/CMakeLists.txt 
b/clang/unittests/Interpreter/CMakeLists.txt
index 7b8dcfc9b0546..66b396b53cb55 100644
--- a/clang/unittests/Interpreter/CMakeLists.txt
+++ b/clang/unittests/Interpreter/CMakeLists.txt
@@ -37,7 +37,7 @@ set(CLANG_REPL_TEST_SOURCES
   CodeCompletionTest.cpp
 )
 
-if(TARGET compiler-rt)
+if(TARGET compiler-rt AND LLVM_ON_UNIX)
   list(APPEND CLANG_REPL_TEST_SOURCES
     OutOfProcessInterpreterTests.cpp
   )
@@ -61,7 +61,7 @@ add_distinct_clang_unittest(ClangReplInterpreterTests
   ${LLVM_COMPONENTS_TO_LINK}
   )
 
-if(TARGET compiler-rt)
+if(TARGET compiler-rt AND LLVM_ON_UNIX)
   add_dependencies(ClangReplInterpreterTests 
     llvm-jitlink-executor 
     compiler-rt


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to