mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
utils: Fix target-64bit? on powerpc64le-linux.
* guix/utils.scm (target-64bit?): Change the string from "ppc64" to "powerpc64", which matches Guix system names like "powerpc64le-linux".
This commit is contained in:
parent
8d9aece8c4
commit
93f21e1a35
1 changed files with 1 additions and 1 deletions
|
@ -549,7 +549,7 @@ (define* (target-powerpc? #:optional (target (or (%current-target-system)
|
|||
|
||||
(define* (target-64bit? #:optional (system (or (%current-target-system)
|
||||
(%current-system))))
|
||||
(any (cut string-prefix? <> system) '("x86_64" "aarch64" "mips64" "ppc64")))
|
||||
(any (cut string-prefix? <> system) '("x86_64" "aarch64" "mips64" "powerpc64")))
|
||||
|
||||
(define* (cc-for-target #:optional (target (%current-target-system)))
|
||||
(if target
|
||||
|
|
Loading…
Reference in a new issue