[Openmp-commits] [PATCH] D29801: libomptarget: Disable on Win32

Hans Wennborg via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Thu Feb 9 17:04:00 PST 2017


hans created this revision.
Herald added a subscriber: mgorny.

It's not supported, and currently breaks the weekly LLVM snapshot builds.


https://reviews.llvm.org/D29801

Files:
  CMakeLists.txt


Index: CMakeLists.txt
===================================================================
--- CMakeLists.txt
+++ 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.87921.patch
Type: text/x-patch
Size: 341 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20170210/3ef8ee53/attachment.bin>


More information about the Openmp-commits mailing list