about summary refs log tree commit diff
path: root/pkgs/development/tools/rust/rustup/0001-dynamically-patchelf-binaries.patch
blob: 4d77cf45d4177da244ad0e56b90f54f8bdc00751 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
From c21cc756b69a5f33c8a7758b746a816f40f55932 Mon Sep 17 00:00:00 2001
From: Leon Isenberg <ljli@users.noreply.github.com>
Date: Sat, 28 Oct 2017 17:58:17 +0200
Subject: [PATCH] nix customization: patchelf installed binaries

---
 src/rustup-dist/src/component/package.rs | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/src/rustup-dist/src/component/package.rs b/src/rustup-dist/src/component/package.rs
index 8aa63db9..4d219826 100644
--- a/src/rustup-dist/src/component/package.rs
+++ b/src/rustup-dist/src/component/package.rs
@@ -99,7 +99,13 @@ impl Package for DirectoryPackage {
             let src_path = root.join(&path);
 
             match &*part.0 {
-                "file" => try!(builder.copy_file(path.clone(), &src_path)),
+                "file" => {
+                    try!(builder.copy_file(path.clone(), &src_path));
+                    nix_patchelf_if_needed(
+                        &target.prefix().path().join(path.clone()),
+                        &src_path,
+                    )
+                }
                 "dir" => try!(builder.copy_dir(path.clone(), &src_path)),
                 _ => return Err(ErrorKind::CorruptComponent(name.to_owned()).into()),
             }
@@ -117,6 +123,22 @@ impl Package for DirectoryPackage {
     }
 }
 
+fn nix_patchelf_if_needed(dest_path: &Path, src_path: &Path) {
+    let is_bin = if let Some(p) = src_path.parent() {
+        p.ends_with("bin")
+    } else {
+        false
+    };
+
+    if is_bin {
+        let _ = ::std::process::Command::new("@patchelf@/bin/patchelf")
+            .arg("--set-interpreter")
+            .arg("@dynamicLinker@")
+            .arg(dest_path)
+            .output();
+    }
+}
+
 // On Unix we need to set up the file permissions correctly so
 // binaries are executable and directories readable. This shouldn't be
 // necessary: the source files *should* have the right permissions,
-- 
2.14.1