guix-commits
[Top][All Lists]
Advanced

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

34/104: utils: 'target-arm32?' & co. take an optional parameter.


From: guix-commits
Subject: 34/104: utils: 'target-arm32?' & co. take an optional parameter.
Date: Sun, 17 May 2020 11:36:33 -0400 (EDT)

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

commit 3d028f03c8cc258fa74b87f15a80b7b2b7da28ec
Author: Ludovic Courtès <address@hidden>
AuthorDate: Fri May 15 22:22:03 2020 +0200

    utils: 'target-arm32?' & co. take an optional parameter.
    
    * guix/utils.scm (target-arm32?, target-aarch64?)
    (target-arm?, target-64bit?): Make 'target' an optional parameter.
---
 guix/utils.scm | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/guix/utils.scm b/guix/utils.scm
index 3e8e59b..d7b197f 100644
--- a/guix/utils.scm
+++ b/guix/utils.scm
@@ -490,18 +490,21 @@ a character other than '@'."
   (and target
        (string-suffix? "-mingw32" target)))
 
-(define (target-arm32?)
-  (string-prefix? "arm" (or (%current-target-system) (%current-system))))
+(define* (target-arm32? #:optional (target (or (%current-target-system)
+                                               (%current-system))))
+  (string-prefix? "arm" target))
 
-(define (target-aarch64?)
-  (string-prefix? "aarch64" (or (%current-target-system) (%current-system))))
+(define* (target-aarch64? #:optional (target (or (%current-target-system)
+                                                 (%current-system))))
+  (string-prefix? "aarch64" target))
 
-(define (target-arm?)
-  (or (target-arm32?) (target-aarch64?)))
+(define* (target-arm? #:optional (target (or (%current-target-system)
+                                             (%current-system))))
+  (or (target-arm32? target) (target-aarch64? target)))
 
-(define (target-64bit?)
-  (let ((system (or (%current-target-system) (%current-system))))
-    (any (cut string-prefix? <> system) '("x86_64" "aarch64" "mips64" 
"ppc64"))))
+(define* (target-64bit? #:optional (system (or (%current-target-system)
+                                               (%current-system))))
+  (any (cut string-prefix? <> system) '("x86_64" "aarch64" "mips64" "ppc64")))
 
 (define version-compare
   (let ((strverscmp



reply via email to

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