aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Marusich <cmmarusich@gmail.com>2021-02-02 00:00:57 -0800
committerChris Marusich <cmmarusich@gmail.com>2021-03-23 23:19:55 -0700
commitfc7cf0c1ecc1ab6d59bab0040be917d5900d98f1 (patch)
tree0707504c90d2f57963e887e4734686332c87e013
parent8a1118a96c9ae128302c3d435ae77cb3dd693aea (diff)
downloadguix-fc7cf0c1ecc1ab6d59bab0040be917d5900d98f1.tar
guix-fc7cf0c1ecc1ab6d59bab0040be917d5900d98f1.tar.gz
utils: Add target-powerpc? procedure.
* guix/utils.scm (target-powerpc?): New exported procedure.
-rw-r--r--guix/utils.scm6
1 files changed, 6 insertions, 0 deletions
diff --git a/guix/utils.scm b/guix/utils.scm
index 21e3460b2c..fc57620319 100644
--- a/guix/utils.scm
+++ b/guix/utils.scm
@@ -9,6 +9,7 @@
;;; Copyright © 2018, 2020 Marius Bakke <marius@gnu.org>
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
+;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -79,6 +80,7 @@
target-arm32?
target-aarch64?
target-arm?
+ target-powerpc?
target-64bit?
cc-for-target
cxx-for-target
@@ -541,6 +543,10 @@ a character other than '@'."
(%current-system))))
(or (target-arm32? target) (target-aarch64? target)))
+(define* (target-powerpc? #:optional (target (or (%current-target-system)
+ (%current-system))))
+ (string-prefix? "powerpc" target))
+
(define* (target-64bit? #:optional (system (or (%current-target-system)
(%current-system))))
(any (cut string-prefix? <> system) '("x86_64" "aarch64" "mips64" "ppc64")))