1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02: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:
fanquake
2023-08-08 16:39:47 +02:00
committed by Ludovic Courtès
parent 530455be02
commit bcdafd00a3

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")