[llvm-branch-commits] [openmp] r338728 - Merging r338721:

Hans Wennborg via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Aug 2 08:00:26 PDT 2018


Author: hans
Date: Thu Aug  2 08:00:25 2018
New Revision: 338728

URL: http://llvm.org/viewvc/llvm-project?rev=338728&view=rev
Log:
Merging r338721:
------------------------------------------------------------------------
r338721 | hahnfeld | 2018-08-02 16:34:08 +0200 (Thu, 02 Aug 2018) | 7 lines

[OMPT] Disable by default on Windows

This is broken per PR36561 and PR36574, so disable it for now until
somebody interested can take a look. OMPT can still be activated manually
by passing -DLIBOMP_OMPT_SUPPORT=ON during configuration.

Differential Revision: https://reviews.llvm.org/D50086
------------------------------------------------------------------------

Modified:
    openmp/branches/release_70/   (props changed)
    openmp/branches/release_70/README.rst
    openmp/branches/release_70/runtime/CMakeLists.txt

Propchange: openmp/branches/release_70/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Thu Aug  2 08:00:25 2018
@@ -1 +1 @@
-/openmp/trunk:338580,338720
+/openmp/trunk:338580,338720-338721

Modified: openmp/branches/release_70/README.rst
URL: http://llvm.org/viewvc/llvm-project/openmp/branches/release_70/README.rst?rev=338728&r1=338727&r2=338728&view=diff
==============================================================================
--- openmp/branches/release_70/README.rst (original)
+++ openmp/branches/release_70/README.rst Thu Aug  2 08:00:25 2018
@@ -194,7 +194,7 @@ Optional Features
 **LIBOMP_OMPT_SUPPORT** = ``ON|OFF``
   Include support for the OpenMP Tools Interface (OMPT). 
   This option is supported and ``ON`` by default for x86, x86_64, AArch64, and 
-  PPC64 on Linux*, Windows*, and macOS*.
+  PPC64 on Linux* and macOS*.
   This option is ``OFF`` if this feature is not supported for the platform.
 
 **LIBOMP_OMPT_OPTIONAL** = ``ON|OFF``

Modified: openmp/branches/release_70/runtime/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/openmp/branches/release_70/runtime/CMakeLists.txt?rev=338728&r1=338727&r2=338728&view=diff
==============================================================================
--- openmp/branches/release_70/runtime/CMakeLists.txt (original)
+++ openmp/branches/release_70/runtime/CMakeLists.txt Thu Aug  2 08:00:25 2018
@@ -302,7 +302,7 @@ endif()
 # OMPT-support defaults to ON for OpenMP 5.0+ and if the requirements in
 # cmake/config-ix.cmake are fulfilled.
 set(OMPT_DEFAULT FALSE)
-if ((${LIBOMP_OMP_VERSION} GREATER 49) AND (LIBOMP_HAVE_OMPT_SUPPORT))
+if ((${LIBOMP_OMP_VERSION} GREATER 49) AND (LIBOMP_HAVE_OMPT_SUPPORT) AND (NOT WIN32))
   set(OMPT_DEFAULT TRUE)
 endif()
 set(LIBOMP_OMPT_SUPPORT ${OMPT_DEFAULT} CACHE BOOL




More information about the llvm-branch-commits mailing list