Skip to content

Commit 1155ad1

Browse files
committedFeb 10, 2017
libomptarget: Disable on Win32
It's not supported, and currently breaks the weekly LLVM snapshot builds. Differential Revision: https://reviews.llvm.org/D29801 llvm-svn: 294758
1 parent beda0f1 commit 1155ad1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎openmp/CMakeLists.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@ cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
33
set(OPENMP_LLVM_TOOLS_DIR "" CACHE PATH "Path to LLVM tools for testing")
44

55
add_subdirectory(runtime)
6-
add_subdirectory(libomptarget)
6+
7+
if (NOT WIN32)
8+
add_subdirectory(libomptarget)
9+
endif()

0 commit comments

Comments
 (0)
Please sign in to comment.