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 platform)
|
||||||
#:use-module (guix records)
|
#:use-module (guix records)
|
||||||
#:export (powerpc-linux
|
#:export (powerpc-linux
|
||||||
|
powerpc64-linux
|
||||||
powerpc64le-linux))
|
powerpc64le-linux))
|
||||||
|
|
||||||
(define powerpc-linux
|
(define powerpc-linux
|
||||||
|
@ -29,6 +30,13 @@
|
||||||
(linux-architecture "powerpc")
|
(linux-architecture "powerpc")
|
||||||
(glibc-dynamic-linker "/lib/ld.so.1")))
|
(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
|
(define powerpc64le-linux
|
||||||
(platform
|
(platform
|
||||||
(target "powerpc64le-linux-gnu")
|
(target "powerpc64le-linux-gnu")
|
||||||
|
|
Reference in New Issue