From f82534a8a884dd75862a9a989057e80d359841f2 Mon Sep 17 00:00:00 2001 From: John Kehayias Date: Sun, 10 Nov 2024 16:24:17 -0500 Subject: [PATCH] build-system: binary: Add comment about patchelf version. This is a followup to commit c7e6962eb359493251220a1db174dde868013673. * nonguix/build-system/binary.scm (default-patchelf): Add comment and TODO about using older patchelf-0.16 due to upstream bug. Reported-by: Attila Lendvai --- nonguix/build-system/binary.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nonguix/build-system/binary.scm b/nonguix/build-system/binary.scm index eb2a72e..2eb1c30 100644 --- a/nonguix/build-system/binary.scm +++ b/nonguix/build-system/binary.scm @@ -41,6 +41,10 @@ ;; Do not use `@' to avoid introducing circular dependencies. (let ((module (resolve-interface '(gnu packages elf)))) + ;; Use the older 0.16 version due to an upstream bug which can segfault + ;; some binaries. See . + ;; TODO: Set back to patchelf when the package has been updated (or + ;; patched) to fix this issue. (module-ref module 'patchelf-0.16))) (define (default-glibc)