From 6b2431e0c2af0fd01f86d162330ac0b66bc0f2e5 Mon Sep 17 00:00:00 2001 From: "protze@itc.rwth-aachen.de" Date: Fri, 22 Nov 2019 15:25:22 +0100 Subject: [PATCH] [OpenMP][Tool] disable archer tests in standalone build Will be enabled after Build-Bots are fixed --- openmp/tools/archer/tests/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/openmp/tools/archer/tests/CMakeLists.txt b/openmp/tools/archer/tests/CMakeLists.txt index 4f70b1a..332f3a8 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 -- 2.7.4