summaryrefslogtreecommitdiff
path: root/guix/build
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
parent84209975fd6a475321e96a5243157a4b4a098a33 (diff)
downloadguix-patches-e815763e69c621412830cada8ded53ccd1b8247f.tar
guix-patches-e815763e69c621412830cada8ded53ccd1b8247f.tar.gz
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')
-rw-r--r--guix/build/gnu-build-system.scm32
1 files changed, 31 insertions, 1 deletions
diff --git a/guix/build/gnu-build-system.scm b/guix/build/gnu-build-system.scm
index a1a0f03467..4a83bd0637 100644
--- a/guix/build/gnu-build-system.scm
+++ b/guix/build/gnu-build-system.scm
@@ -160,12 +160,42 @@
bindirs)
#t))
+(define* (strip #:key outputs (strip-binaries? #t)
+ (strip-flags '("--strip-debug"))
+ (strip-directories '("lib" "lib64" "libexec"
+ "bin" "sbin"))
+ #:allow-other-keys)
+ (define (strip-dir dir)
+ (file-system-fold (const #t)
+ (lambda (path stat result) ; leaf
+ (zero? (apply system* "strip"
+ (append strip-flags (list path)))))
+ (const #t) ; down
+ (const #t) ; up
+ (const #t) ; skip
+ (lambda (path stat errno result)
+ (format (current-error-port)
+ "strip: failed to access `~a': ~a~%"
+ path (strerror errno))
+ #f)
+ #t
+ dir))
+
+ (every strip-dir
+ (append-map (match-lambda
+ ((_ . dir)
+ (filter-map (lambda (d)
+ (let ((sub (string-append dir "/" d)))
+ (and (directory-exists? sub) sub)))
+ strip-directories)))
+ outputs)))
+
(define %standard-phases
;; Standard build phases, as a list of symbol/procedure pairs.
(let-syntax ((phases (syntax-rules ()
((_ p ...) `((p . ,p) ...)))))
(phases set-paths unpack patch configure build check install
- patch-shebangs)))
+ patch-shebangs strip)))
(define* (gnu-build #:key (source #f) (outputs #f) (inputs #f)