platform: Add powerpc64-linux.
* guix/platforms/powerpc.scm (powerpc64-linux): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>master
parent
530455be02
commit
bcdafd00a3
|
@ -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")
|
||||
|
|
Reference in New Issue