Use RUNPATH instead of RPATH so that end users can override the library search path (and the 'validate-runpath' phase can do its work). diff --git a/build/config/gcc/BUILD.gn b/build/config/gcc/BUILD.gn --- a/build/config/gcc/BUILD.gn +++ b/build/config/gcc/BUILD.gn @@ -99,7 +99,14 @@ config("executable_config") { ] } - if (!is_android && current_os != "aix") { + if (is_linux) { + ldflags += [ + # Set DT_RUNPATH instead of DT_RPATH which is important because the + # former can be overridden at runtime, and Guix has support for + # verifying that nothing is missing. + "-Wl,--enable-new-dtags", + ] + } else if (!is_android && current_os != "aix") { ldflags += [ # TODO(GYP): Do we need a check on the binutils version here? # ion value='koszko-scripts'>koszko-scripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/messaging.scm
commit/gnu/tests/base.scm?id=21f641e9faf55b13263d5f0b3314860af5d697a5'>marionette: Make marionette-screen-text private....
AgeCommit message (Expand)Author
2020-09-15services: bitlbee: Support libpurple plugins....Ludovic Courtès
2019-03-13Remove traces of "GuixSD"....Ludovic Courtès
2019-01-10services: Use 'define-deprecated' for service procedures....Ludovic Courtès
2018-12-24services: Add quassel....Efraim Flashner
2018-08-13services: prosody: Get the Shepherd to respawn Prosody....Clément Lassieur
2018-08-13services: prosody: Use 'invoke' rather than 'system*'....Clément Lassieur
Maxim Cournoyer
2022-08-28build: marionette: Add support for Tesseract OCR....Maxim Cournoyer
2022-07-01image: Add default value for partition initializer....Ludovic Courtès
2022-07-01services: root-file-system: Cleanly unmount upon shutdown....Ludovic Courtès
2022-03-19tests: install: Adjust the timeouts on two failing tests....Maxim Cournoyer
2021-11-11gnu: glibc: Look for the current timezone in /etc/localtime....Ludovic Courtès
2021-09-27tests: base: Fix the screendump test....Mathieu Othacehe
2021-09-26tests: Reduce boilerplate for users of 'system-test-runner'....Ludovic Courtès
2021-09-25tests: Adjust to SRFI-64 as found in Guile 3.0.7....Ludovic Courtès
2021-04-13tests: halt: Fix it....Mathieu Othacehe