civodul pushed a commit to branch core-updates
in repository guix.
commit 856ae5e6c71a1283a414d33e638051f95d3cce35
Author: Ludovic Courtès <[email protected]>
Date: Sat Dec 27 19:20:18 2014 +0100
build-system/gnu: Strip with '--strip-all' instead of '--strip-debug'.
This saves 19% on the 'bin' directory of Coreutils, and certainly
helpful for things like Git's 'libexec' directory.
* guix/build-system/gnu.scm (gnu-build): Change default value for
#:strip-flags to '("--strip-all").
* guix/build/gnu-build-system.scm (strip): Ditto.
* gnu/packages/linux.scm (linux-libre)[arguments]: Add #:strip-flags.
---
gnu/packages/linux.scm | 5 +++++
guix/build-system/gnu.scm | 2 +-
guix/build/gnu-build-system.scm | 2 +-
3 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 9dc5f5c..5336825 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -292,6 +292,11 @@ for SYSTEM, or #f if there is no configuration for SYSTEM."
(alist-replace
'install ,install-phase
(alist-delete 'configure %standard-phases)))
+
+ ;; Use '--strip-debug', not '--strip-all', because the latter leads to
+ ;; unloadable modules (due to the lack of a symbol table.)
+ #:strip-flags '("--strip-debug")
+
#:tests? #f))
(synopsis "100% free redistribution of a cleaned Linux kernel")
(description
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm
index c675155..f765a14 100644
--- a/guix/build-system/gnu.scm
+++ b/guix/build-system/gnu.scm
@@ -274,7 +274,7 @@ standard packages used as implicit inputs of the GNU build
system."
(parallel-tests? #t)
(patch-shebangs? #t)
(strip-binaries? #t)
- (strip-flags ''("--strip-debug"))
+ (strip-flags ''("--strip-all"))
(strip-directories ''("lib" "lib64" "libexec"
"bin" "sbin"))
(phases '%standard-phases)
diff --git a/guix/build/gnu-build-system.scm b/guix/build/gnu-build-system.scm
index 4cc755f..d661736 100644
--- a/guix/build/gnu-build-system.scm
+++ b/guix/build/gnu-build-system.scm
@@ -295,7 +295,7 @@ makefiles."
(objcopy-command (if target
(string-append target "-objcopy")
"objcopy"))
- (strip-flags '("--strip-debug"))
+ (strip-flags '("--strip-all"))
(strip-directories '("lib" "lib64" "libexec"
"bin" "sbin"))
#:allow-other-keys)