[Openmp-commits] [openmp] 6b2431e - [OpenMP][Tool] disable archer tests in standalone build
via Openmp-commits
openmp-commits at lists.llvm.org
Fri Nov 22 06:25:56 PST 2019
Author: protze at itc.rwth-aachen.de
Date: 2019-11-22T15:25:43+01:00
New Revision: 6b2431e0c2af0fd01f86d162330ac0b66bc0f2e5
URL: https://github.com/llvm/llvm-project/commit/6b2431e0c2af0fd01f86d162330ac0b66bc0f2e5
DIFF: https://github.com/llvm/llvm-project/commit/6b2431e0c2af0fd01f86d162330ac0b66bc0f2e5.diff
LOG: [OpenMP][Tool] disable archer tests in standalone build
Will be enabled after Build-Bots are fixed
Added:
Modified:
openmp/tools/archer/tests/CMakeLists.txt
Removed:
################################################################################
diff --git a/openmp/tools/archer/tests/CMakeLists.txt b/openmp/tools/archer/tests/CMakeLists.txt
index 4f70b1a826d1..332f3a8b022a 100644
--- a/openmp/tools/archer/tests/CMakeLists.txt
+++ b/openmp/tools/archer/tests/CMakeLists.txt
@@ -2,6 +2,11 @@
include(CheckFunctionExists)
include(CheckLibraryExists)
+if (OPENMP_STANDALONE_BUILD)
+ return ()
+endif ()
+
+
# When using libgcc, -latomic may be needed for atomics
# (but when using compiler-rt, the atomics will be built-in)
# Note: we can not check for __atomic_load because clang treats it
More information about the Openmp-commits
mailing list