~ruther/guix-local

3d2256dce63a77e96236d630c4ee8861902bb0fc — Maxim Cournoyer 6 months ago d65646b
Revert "build/gnu: Do not attempt to strip Guile byte-compiled files."

This reverts commit 2ac2a4877d76e6ca4f4300e042050f7857fb2130.
1 files changed, 1 insertions(+), 11 deletions(-)

M guix/build/gnu-build-system.scm
M guix/build/gnu-build-system.scm => guix/build/gnu-build-system.scm +1 -11
@@ 518,12 518,6 @@ makefiles."
                           (debug-file file))
            file))

  (define (guile-bytecode? file)
    (and (string-suffix? ".go" file)
         (elf-section-by-name
          (parse-elf (call-with-input-file file get-bytevector-all))
          ".guile.procprops")))

  (define (strip-dir dir)
    (format #t "stripping binaries in ~s with ~s and flags ~s~%"
            dir strip-command strip-flags)


@@ 532,11 526,7 @@ makefiles."
              debug-output objcopy-command))

    (for-each (lambda (file)
                (when (and (or (elf-file? file) (ar-file? file))
                           ;; XXX: 'strip' (and 'objdump') choke on the Guile
                           ;; byte-compiled objects, with errors like "Unable
                           ;; to recognise the format of the input file".
                           (not (guile-bytecode? file)))
                (when (or (elf-file? file) (ar-file? file))
                  ;; If an error occurs while processing a file, issue a
                  ;; warning and continue to the next file.
                  (guard (c ((invoke-error? c)