summaryrefslogtreecommitdiff
path: root/guix/build-system
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-08-31 17:04:53 +0200
committerLudovic Courtès <ludo@gnu.org>2012-08-31 17:04:53 +0200
commite815763e69c621412830cada8ded53ccd1b8247f (patch)
tree61cb5c79ea95db9bb7024efe101faa5806898a2b /guix/build-system
parent84209975fd6a475321e96a5243157a4b4a098a33 (diff)
build-system/gnu: Add a `strip' phase.
* guix/build/gnu-build-system.scm (strip): New procedure. (%standard-phases): Add it. * guix/build-system/gnu.scm (gnu-build): New `strip-binaries?', `strip-flags', and `strip-directories' keyword parameters. Pass them to BUILDER.
Diffstat (limited to 'guix/build-system')
-rw-r--r--guix/build-system/gnu.scm9
1 files changed, 8 insertions, 1 deletions
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm
index fd9a6d026e..7bdd4174bd 100644
--- a/guix/build-system/gnu.scm
+++ b/guix/build-system/gnu.scm
@@ -50,6 +50,10 @@
(tests? #t)
(parallel-build? #t) (parallel-tests? #t)
(patch-shebangs? #t)
+ (strip-binaries? #t)
+ (strip-flags ''("--strip-debug"))
+ (strip-directories ''("lib" "lib64" "libexec"
+ "bin" "sbin"))
(phases '%standard-phases)
(system (%current-system))
(modules '((guix build gnu-build-system)
@@ -73,7 +77,10 @@ input derivation INPUTS, using the usual procedure of the GNU Build System."
#:tests? ,tests?
#:parallel-build? ,parallel-build?
#:parallel-tests? ,parallel-tests?
- #:patch-shebangs? ,patch-shebangs?)))
+ #:patch-shebangs? ,patch-shebangs?
+ #:strip-binaries? ,strip-binaries?
+ #:strip-flags ,strip-flags
+ #:strip-directories ,strip-directories)))
(build-expression->derivation store name system
builder