guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates updated: build-system/gnu: strip with --strip-unneed


From: guix-commits
Subject: branch core-updates updated: build-system/gnu: strip with --strip-unneeded
Date: Sat, 19 Sep 2020 09:37:53 -0400

This is an automated email from the git hooks/post-receive script.

niedzejkob pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new f32a605  build-system/gnu: strip with --strip-unneeded
f32a605 is described below

commit f32a6055a5d67b48abc74fb69652fab1a2058ffe
Author: Jakub Kądziołka <kuba@kadziolka.net>
AuthorDate: Mon Jul 27 01:38:50 2020 +0200

    build-system/gnu: strip with --strip-unneeded
    
    Apart from debug information, one can also strip some symbols. This can
    be a significant difference, qtbase:out consists of about 5 MB of those
    symbols. As per [1], --strip-debug is included in --strip-unneeded, and
    the debug files created also contain a copy of the information removed
    by --strip-unneeded.
    
    Linux From Scratch suggests that this option shouldn't be used on static
    libraries [2], however other sources [3] indicate otherwise. Building a
    toolchain with this patch succeeds, and the result works fine for
    'gcc -static hello-world.c'.
    
    [1]: https://stackoverflow.com/a/52555093
    [2]: http://www.linuxfromscratch.org/lfs/view/9.1/chapter05/stripping.html
    [3]: https://www.technovelty.org/linux/stripping-shared-libraries.html
    
    * guix/build/gnu-build-system.scm (strip): Use --strip-unneeded.
---
 guix/build/gnu-build-system.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/build/gnu-build-system.scm b/guix/build/gnu-build-system.scm
index 2e7dff2..d3347c9 100644
--- a/guix/build/gnu-build-system.scm
+++ b/guix/build/gnu-build-system.scm
@@ -425,7 +425,7 @@ makefiles."
                 (objcopy-command (if target
                                      (string-append target "-objcopy")
                                      "objcopy"))
-                (strip-flags '("--strip-debug"
+                (strip-flags '("--strip-unneeded"
                                "--enable-deterministic-archives"))
                 (strip-directories '("lib" "lib64" "libexec"
                                      "bin" "sbin"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]