mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
platform: Add powerpc64-linux.
* guix/platforms/powerpc.scm (powerpc64-linux): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
530455be02
commit
bcdafd00a3
1 changed files with 8 additions and 0 deletions
|
@ -20,6 +20,7 @@ (define-module (guix platforms powerpc)
|
|||
#:use-module (guix platform)
|
||||
#:use-module (guix records)
|
||||
#:export (powerpc-linux
|
||||
powerpc64-linux
|
||||
powerpc64le-linux))
|
||||
|
||||
(define powerpc-linux
|
||||
|
@ -29,6 +30,13 @@ (define powerpc-linux
|
|||
(linux-architecture "powerpc")
|
||||
(glibc-dynamic-linker "/lib/ld.so.1")))
|
||||
|
||||
(define powerpc64-linux
|
||||
(platform
|
||||
(target "powerpc64-linux-gnu")
|
||||
(system #f) ;not supported
|
||||
(linux-architecture "powerpc")
|
||||
(glibc-dynamic-linker "/lib/ld64.so.1")))
|
||||
|
||||
(define powerpc64le-linux
|
||||
(platform
|
||||
(target "powerpc64le-linux-gnu")
|
||||
|
|
Loading…
Reference in a new issue