[Openmp-commits] [openmp] [openmp] Add ompdModule dependency to check-ompd (PR #97736)

Nikita Popov via Openmp-commits openmp-commits at lists.llvm.org
Thu Jul 4 08:08:58 PDT 2024


https://github.com/nikic created https://github.com/llvm/llvm-project/pull/97736

ompdModule is required by the gdb plugin. Ran into this when trying to run check-ompd without explicitly building openmp first.

>From 81f5dfb56e44481d4e5e8b7c8ef22c3a83e8b066 Mon Sep 17 00:00:00 2001
From: Nikita Popov <npopov at redhat.com>
Date: Thu, 4 Jul 2024 17:06:26 +0200
Subject: [PATCH] [openmp] Add ompdModule dependency to check-ompd

ompdModule is required by the gdb plugin. Ran into this when trying
to run check-ompd without explicitly building openmp first.
---
 openmp/libompd/test/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openmp/libompd/test/CMakeLists.txt b/openmp/libompd/test/CMakeLists.txt
index 35b96b1af2ccb..09c9c169b2dc8 100644
--- a/openmp/libompd/test/CMakeLists.txt
+++ b/openmp/libompd/test/CMakeLists.txt
@@ -13,6 +13,6 @@ set(AUTO_GEN_COMMENT "## Autogenerated by libomp configuration.\n# Do not edit!"
 configure_file(lit.site.cfg.in lit.site.cfg @ONLY)
 add_openmp_testsuite(check-ompd "Running OMPD tests"
   ${CMAKE_CURRENT_BINARY_DIR}
-  DEPENDS omp ompd ompd_gdb_plugin)
+  DEPENDS omp ompd ompdModule ompd_gdb_plugin)
 
 endif()



More information about the Openmp-commits mailing list