From b5bf908fd7f87d2f0d74f62362a7e08366e926ff Mon Sep 17 00:00:00 2001 From: Ye Luo Date: Fri, 11 Nov 2022 18:14:33 -0600 Subject: [PATCH] Disable OMPD tests. Causing CMake issue. --- openmp/libompd/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openmp/libompd/CMakeLists.txt b/openmp/libompd/CMakeLists.txt index 54fa67d30520a..a62980aadcf69 100644 --- a/openmp/libompd/CMakeLists.txt +++ b/openmp/libompd/CMakeLists.txt @@ -16,6 +16,9 @@ if(LIBOMP_OMPD_SUPPORT) add_subdirectory(src) if(LIBOMP_OMPD_GDB_SUPPORT) add_subdirectory(gdb-plugin) - add_subdirectory(test) + # temporarily disabled + # test/CMakeLists.txt breaks DeviceRTL in LLVM_ENABLE_PROJECTS builds. + # find_package(LLVM) is likely the source of the trouble. + # add_subdirectory(test) endif() endif()