[Openmp-commits] [PATCH] D35719: [CMake] Disable building libomptarget and add CMake switch
Jonas Hahnfeld via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Sun Jul 23 23:15:58 PDT 2017
Hahnfeld updated this revision to Diff 107849.
Hahnfeld retitled this revision from "[CMake] Allow to disable building libomptarget" to "[CMake] Disable building libomptarget and add CMake switch".
Hahnfeld edited the summary of this revision.
Hahnfeld added a comment.
Disable building by default.
https://reviews.llvm.org/D35719
Files:
CMakeLists.txt
Index: CMakeLists.txt
===================================================================
--- CMakeLists.txt
+++ CMakeLists.txt
@@ -4,9 +4,20 @@
add_subdirectory(runtime)
+
+# The tests currently don't pass if the generic ELF plugin is built.
+# TODO: Fix the tests and enable libomptarget by default on supported
+# architectures and platforms.
+set(ENABLE_LIBOMPTARGET OFF)
# Currently libomptarget cannot be compiled on Windows or MacOS X.
# Since the device plugins are only supported on Linux anyway,
# there is no point in trying to compile libomptarget on other OSes.
-if (NOT (WIN32 OR ${CMAKE_SYSTEM_NAME} MATCHES "Darwin"))
+if (WIN32 OR ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
+ set(ENABLE_LIBOMPTARGET OFF)
+endif()
+
+option(OPENMP_ENABLE_LIBOMPTARGET "Enable building libomptarget for offloading."
+ ${ENABLE_LIBOMPTARGET})
+if (OPENMP_ENABLE_LIBOMPTARGET)
add_subdirectory(libomptarget)
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D35719.107849.patch
Type: text/x-patch
Size: 934 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20170724/e09aeade/attachment.bin>
More information about the Openmp-commits
mailing list