[Openmp-commits] [PATCH] D29801: libomptarget: Disable on Win32
Hans Wennborg via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Fri Feb 10 09:25:08 PST 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294758: libomptarget: Disable on Win32 (authored by hans).
Changed prior to commit:
https://reviews.llvm.org/D29801?vs=87921&id=88010#toc
Repository:
rL LLVM
https://reviews.llvm.org/D29801
Files:
openmp/trunk/CMakeLists.txt
Index: openmp/trunk/CMakeLists.txt
===================================================================
--- openmp/trunk/CMakeLists.txt
+++ openmp/trunk/CMakeLists.txt
@@ -3,4 +3,7 @@
set(OPENMP_LLVM_TOOLS_DIR "" CACHE PATH "Path to LLVM tools for testing")
add_subdirectory(runtime)
-add_subdirectory(libomptarget)
+
+if (NOT WIN32)
+ add_subdirectory(libomptarget)
+endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D29801.88010.patch
Type: text/x-patch
Size: 380 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20170210/80ace309/attachment.bin>
More information about the Openmp-commits
mailing list