mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
Merge branch 'master' into core-updates
This commit is contained in:
commit
2a7648774f
108 changed files with 4080 additions and 1733 deletions
|
@ -14,6 +14,7 @@
|
|||
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||||
;;; Copyright © 2018 Steve Sprang <scs@stevesprang.com>
|
||||
;;; Copyright © 2022 Taiju HIGASHI <higashi@taiju.info>
|
||||
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -92,6 +93,7 @@
|
|||
target-mingw?
|
||||
target-x86-32?
|
||||
target-x86-64?
|
||||
target-x86?
|
||||
target-arm32?
|
||||
target-aarch64?
|
||||
target-arm?
|
||||
|
@ -696,6 +698,10 @@ a character other than '@'."
|
|||
architecture (x86_64)?"
|
||||
(string-prefix? "x86_64-" target))
|
||||
|
||||
(define* (target-x86? #:optional (target (or (%current-target-system)
|
||||
(%current-system))))
|
||||
(or (target-x86-32? target) (target-x86-64? target)))
|
||||
|
||||
(define* (target-arm32? #:optional (target (or (%current-target-system)
|
||||
(%current-system))))
|
||||
(string-prefix? "arm" target))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue