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:
fanquake 2023-08-08 16:39:47 +02:00 committed by Ludovic Courtès
parent 530455be02
commit bcdafd00a3
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,7 @@
#:use-module (guix platform)
#:use-module (guix records)
#:export (powerpc-linux
powerpc64-linux
powerpc64le-linux))
(define powerpc-linux
@ -29,6 +30,13 @@
(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")