summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rw-r--r--doc/guix.texi2
-rw-r--r--guix/platforms/s390.scm29
3 files changed, 0 insertions, 32 deletions
diff --git a/Makefile.am b/Makefile.am
index bc114c9dae9..968bde81319 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -137,7 +137,6 @@ MODULES = \
137 guix/platforms/mips.scm \ 137 guix/platforms/mips.scm \
138 guix/platforms/powerpc.scm \ 138 guix/platforms/powerpc.scm \
139 guix/platforms/riscv.scm \ 139 guix/platforms/riscv.scm \
140 guix/platforms/s390.scm \
141 guix/platforms/x86.scm \ 140 guix/platforms/x86.scm \
142 guix/build-system.scm \ 141 guix/build-system.scm \
143 guix/build-system/android-ndk.scm \ 142 guix/build-system/android-ndk.scm \
diff --git a/doc/guix.texi b/doc/guix.texi
index 55c992ca255..bcc193366fd 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -15265,7 +15265,6 @@ The available targets are:
15265 - powerpc-linux-gnu 15265 - powerpc-linux-gnu
15266 - powerpc64le-linux-gnu 15266 - powerpc64le-linux-gnu
15267 - riscv64-linux-gnu 15267 - riscv64-linux-gnu
15268 - s390x-linux-gnu
15269 - x86_64-linux-gnu 15268 - x86_64-linux-gnu
15270 - x86_64-w64-mingw32 15269 - x86_64-w64-mingw32
15271@end example 15270@end example
@@ -15313,7 +15312,6 @@ The available systems are:
15313 - powerpc-linux 15312 - powerpc-linux
15314 - powerpc64le-linux 15313 - powerpc64le-linux
15315 - riscv64-linux 15314 - riscv64-linux
15316 - s390x-linux
15317 15315
15318$ guix build --system=i686-linux hello 15316$ guix build --system=i686-linux hello
15319/gnu/store/cc0km35s8x2z4pmwkrqqjx46i8b1i3gm-hello-2.12 15317/gnu/store/cc0km35s8x2z4pmwkrqqjx46i8b1i3gm-hello-2.12
diff --git a/guix/platforms/s390.scm b/guix/platforms/s390.scm
deleted file mode 100644
index b5477f1e5ea..00000000000
--- a/guix/platforms/s390.scm
+++ /dev/null
@@ -1,29 +0,0 @@
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2022 Mathieu Othacehe <othacehe@gnu.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (guix platforms s390)
20 #:use-module (guix platform)
21 #:use-module (guix records)
22 #:export (s390x-linux))
23
24(define s390x-linux
25 (platform
26 (target "s390x-linux-gnu")
27 (system "s390x-linux")
28 (linux-architecture "s390")
29 (glibc-dynamic-linker "/lib/ld64.so.1")))