From 269e0d4e48817924c6e4456e43e81a080f38e58f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Lalik?= Date: Fri, 27 Mar 2026 20:27:34 +0100 Subject: [PATCH 1/2] fix(tests): Fix linking base tests agains installed libs Disabling new dtags forces linker to use RPATH which ignores LD_LIBRARY_PATH over RUNPATH which is overwritten by LD_LIBRARY_PATH. Tests should always use locally build libs. --- cmake/private/FairRootTargets.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/private/FairRootTargets.cmake b/cmake/private/FairRootTargets.cmake index 1574441db6..1d2594b622 100644 --- a/cmake/private/FairRootTargets.cmake +++ b/cmake/private/FairRootTargets.cmake @@ -102,6 +102,7 @@ function(fairroot_add_catch2_test_suite suite) set(exe "test_${suite}") add_executable(${exe}) target_sources(${exe} PRIVATE ${ARGS_SOURCES}) + target_link_options(${exe} PRIVATE -Wl,--disable-new-dtags) target_link_libraries(${exe} PRIVATE Catch2::Catch2WithMain) if(ARGS_DEPENDENCIES) target_link_libraries(${exe} PRIVATE ${ARGS_DEPENDENCIES}) From c8cea0be5e81466e756190b53b477cb530a1450b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Lalik?= Date: Sun, 29 Mar 2026 00:59:37 +0100 Subject: [PATCH 2/2] docs(CONTRIBUTORS): Update contributor records --- .zenodo.json | 5 +++++ CONTRIBUTORS | 1 + codemeta.json | 6 ++++++ 3 files changed, 12 insertions(+) diff --git a/.zenodo.json b/.zenodo.json index c088975486..4947652468 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -94,6 +94,11 @@ "type": "Other", "name": "Krzewicki, Mikolaj" }, + { + "type": "Other", + "name": "Lalik, Rafa\u0142", + "orcid": "0000-0003-1313-3729" + }, { "type": "Other", "name": "Lavezzi, Lia" diff --git a/CONTRIBUTORS b/CONTRIBUTORS index c42840f9cd..2ea92c5ab2 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -14,6 +14,7 @@ Klenze, Philipp Kollegger, Thorsten Koenig, Ilse Krzewicki, Mikolaj +Lalik, RafaƂ [https://orcid.org/0000-0003-1313-3729] Lavezzi, Lia Lavrik, Evgeny Lantwin, Oliver diff --git a/codemeta.json b/codemeta.json index bce898658d..e1b733b763 100644 --- a/codemeta.json +++ b/codemeta.json @@ -150,6 +150,12 @@ "givenName": "Mikolaj", "familyName": "Krzewicki" }, + { + "@type": "Person", + "@id": "https://orcid.org/0000-0003-1313-3729", + "givenName": "Rafa\u0142", + "familyName": "Lalik" + }, { "@type": "Person", "givenName": "Lia",