diff options
author | Nikita Popov <npopov@redhat.com> | 2024-07-05 09:49:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-05 09:49:01 +0200 |
commit | a14a53e11b07ea6ab9517d7811bb4e23e9874f2b (patch) | |
tree | bfe3f54844d925176800e70f6befc72ca74dbae2 /openmp/libompd/test | |
parent | d6df01870a24cc707c724849b346111959413363 (diff) | |
download | llvm-a14a53e11b07ea6ab9517d7811bb4e23e9874f2b.zip llvm-a14a53e11b07ea6ab9517d7811bb4e23e9874f2b.tar.gz llvm-a14a53e11b07ea6ab9517d7811bb4e23e9874f2b.tar.bz2 |
[openmp] Add ompdModule dependency to check-ompd (#97736)
ompdModule is required by the gdb plugin. Ran into this when trying to
run check-ompd without explicitly building openmp first.
Diffstat (limited to 'openmp/libompd/test')
-rw-r--r-- | openmp/libompd/test/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/libompd/test/CMakeLists.txt b/openmp/libompd/test/CMakeLists.txt index 35b96b1..09c9c16 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() |