diff options
author | fanquake <fanquake@gmail.com> | 2023-08-08 16:39:47 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-08-12 23:02:31 +0200 |
commit | bcdafd00a3acad32db68e300ce4d67f25583b4d4 (patch) | |
tree | fb9d8aedcd257f5227a57112d62c96fe2d6ba9cd /guix/platforms | |
parent | 530455be0275f9f2728f38afac0e7aeffd736336 (diff) |
platform: Add powerpc64-linux.
* guix/platforms/powerpc.scm (powerpc64-linux): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/platforms')
-rw-r--r-- | guix/platforms/powerpc.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/guix/platforms/powerpc.scm b/guix/platforms/powerpc.scm index 9d0b343bc3..1c7141ab42 100644 --- a/guix/platforms/powerpc.scm +++ b/guix/platforms/powerpc.scm @@ -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") |