File: ungoogled-chromium-RUNPATH.patch

package info (click to toggle)
guix 1.4.0-9
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 161,500 kB
  • sloc: lisp: 861,023; cpp: 10,741; javascript: 9,632; sh: 8,913; makefile: 951; ansic: 558; python: 129; sql: 33; sed: 16
file content (22 lines) | stat: -rw-r--r-- 791 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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?
       #