[Openmp-commits] [openmp] r294758 - libomptarget: Disable on Win32
Hans Wennborg via Openmp-commits
openmp-commits at lists.llvm.org
Fri Feb 10 09:13:29 PST 2017
Author: hans
Date: Fri Feb 10 11:13:28 2017
New Revision: 294758
URL: http://llvm.org/viewvc/llvm-project?rev=294758&view=rev
Log:
libomptarget: Disable on Win32
It's not supported, and currently breaks the weekly LLVM snapshot
builds.
Differential Revision: https://reviews.llvm.org/D29801
Modified:
openmp/trunk/CMakeLists.txt
Modified: openmp/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/CMakeLists.txt?rev=294758&r1=294757&r2=294758&view=diff
==============================================================================
--- openmp/trunk/CMakeLists.txt (original)
+++ openmp/trunk/CMakeLists.txt Fri Feb 10 11:13:28 2017
@@ -3,4 +3,7 @@ cmake_minimum_required(VERSION 2.8 FATAL
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()
More information about the Openmp-commits
mailing list