When running ovniver without LD_LIBRARY_PATH set, the loader couldn't find any ovni installation and therefore was failing to start the program. With this change we set the RUNPATH (not RPATH) of ovniver to the installation libdir, so when no other libovni library is loaded via LD_LIBRARY_PATH the one provided by the same source as ovniver is used. The value of LD_LIBRARY_PATH is also printed so we can determine where it may be loading libovni. Using LD_DEBUG=libs will give more information of the search process. Fixes: https://pm.bsc.es/gitlab/rarias/ovni/-/issues/163
99 lines
2.0 KiB
CMake
99 lines
2.0 KiB
CMake
# Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
include_directories(
|
|
"${CMAKE_SOURCE_DIR}/src/include"
|
|
"${CMAKE_SOURCE_DIR}/src/emu"
|
|
"${CMAKE_SOURCE_DIR}/src"
|
|
"${CMAKE_SOURCE_DIR}/include"
|
|
)
|
|
|
|
add_library(emu STATIC
|
|
../common.c
|
|
bay.c
|
|
chan.c
|
|
clkoff.c
|
|
cpu.c
|
|
emu.c
|
|
emu_args.c
|
|
emu_ev.c
|
|
emu_stat.c
|
|
model.c
|
|
model_cpu.c
|
|
model_thread.c
|
|
model_pvt.c
|
|
models.c
|
|
player.c
|
|
stream.c
|
|
trace.c
|
|
loom.c
|
|
metadata.c
|
|
mux.c
|
|
sort.c
|
|
path.c
|
|
proc.c
|
|
pv/pcf.c
|
|
pv/prf.c
|
|
pv/prv.c
|
|
pv/pvt.c
|
|
pv/cfg.c
|
|
recorder.c
|
|
system.c
|
|
task.c
|
|
track.c
|
|
thread.c
|
|
extend.c
|
|
value.c
|
|
ovni/event.c
|
|
ovni/setup.c
|
|
nanos6/setup.c
|
|
nanos6/event.c
|
|
nanos6/breakdown.c
|
|
nosv/setup.c
|
|
nosv/event.c
|
|
nodes/setup.c
|
|
nodes/event.c
|
|
mpi/setup.c
|
|
mpi/event.c
|
|
tampi/setup.c
|
|
tampi/event.c
|
|
kernel/setup.c
|
|
kernel/event.c
|
|
)
|
|
target_link_libraries(emu ovni-static)
|
|
|
|
add_executable(ovniemu ovniemu.c)
|
|
target_link_libraries(ovniemu emu parson-static ovni-static)
|
|
|
|
add_executable(ovnidump ovnidump.c)
|
|
target_link_libraries(ovnidump emu parson-static ovni-static)
|
|
|
|
add_executable(ovnisort ovnisort.c)
|
|
target_link_libraries(ovnisort emu parson-static ovni-static)
|
|
|
|
add_executable(ovnitop ovnitop.c)
|
|
target_link_libraries(ovnitop emu parson-static ovni-static)
|
|
|
|
add_executable(ovniver ovniver.c)
|
|
target_link_libraries(ovniver ovni)
|
|
set_property(TARGET ovniver
|
|
PROPERTY INSTALL_RPATH "${CMAKE_INSTALL_FULL_LIBDIR}")
|
|
|
|
set(USE_MPI ON CACHE BOOL "Use MPI (required by ovnisync)")
|
|
if(USE_MPI)
|
|
# Use <PackageName>_ROOT variables if available, commonly used by MPI
|
|
# installations
|
|
if(POLICY CMP0074)
|
|
cmake_policy(SET CMP0074 NEW)
|
|
endif()
|
|
find_package(MPI REQUIRED)
|
|
add_executable(ovnisync ovnisync.c)
|
|
target_link_libraries(ovnisync ovni-static m MPI::MPI_C)
|
|
install(TARGETS ovnisync)
|
|
else()
|
|
message(STATUS "Disabling ovnisync as MPI is disabled")
|
|
endif()
|
|
|
|
install(TARGETS ovniemu ovnidump ovnisort ovnitop ovniver)
|
|
install(FILES ovnitop.1 DESTINATION "${CMAKE_INSTALL_MANDIR}/man1")
|