Skip to content

Commit e594932

Browse files
authored
Unrolled build for rust-lang#133186
Rollup merge of rust-lang#133186 - uweigand:s390x-maintainer, r=wesleywiser Document s390x-unknown-linux targets This adds documentation for the following existing targets: s390x-unknown-linux-gnu (Tier 2 with host tools) s390x-unknown-linux-musl (Tier 3) I volunteer as maintainer for these targets going forward.
2 parents 5926e82 + 3ae8036 commit e594932

File tree

4 files changed

+200
-2
lines changed

4 files changed

+200
-2
lines changed

src/doc/rustc/src/SUMMARY.md

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@
7272
- [riscv32imac-unknown-xous-elf](platform-support/riscv32imac-unknown-xous-elf.md)
7373
- [riscv64gc-unknown-linux-gnu](platform-support/riscv64gc-unknown-linux-gnu.md)
7474
- [riscv64gc-unknown-linux-musl](platform-support/riscv64gc-unknown-linux-musl.md)
75+
- [s390x-unknown-linux-gnu](platform-support/s390x-unknown-linux-gnu.md)
76+
- [s390x-unknown-linux-musl](platform-support/s390x-unknown-linux-musl.md)
7577
- [sparc-unknown-none-elf](./platform-support/sparc-unknown-none-elf.md)
7678
- [*-pc-windows-gnullvm](platform-support/pc-windows-gnullvm.md)
7779
- [\*-nto-qnx-\*](platform-support/nto-qnx.md)

src/doc/rustc/src/platform-support.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ target | notes
9999
`powerpc64le-unknown-linux-gnu` | PPC64LE Linux (kernel 3.10, glibc 2.17)
100100
[`riscv64gc-unknown-linux-gnu`](platform-support/riscv64gc-unknown-linux-gnu.md) | RISC-V Linux (kernel 4.20, glibc 2.29)
101101
[`riscv64gc-unknown-linux-musl`](platform-support/riscv64gc-unknown-linux-musl.md) | RISC-V Linux (kernel 4.20, musl 1.2.3)
102-
`s390x-unknown-linux-gnu` | S390x Linux (kernel 3.2, glibc 2.17)
102+
[`s390x-unknown-linux-gnu`](platform-support/s390x-unknown-linux-gnu.md) | S390x Linux (kernel 3.2, glibc 2.17)
103103
`x86_64-unknown-freebsd` | 64-bit FreeBSD
104104
`x86_64-unknown-illumos` | illumos
105105
`x86_64-unknown-linux-musl` | 64-bit Linux with musl 1.2.3
@@ -367,7 +367,7 @@ target | std | host | notes
367367
[`riscv64gc-unknown-openbsd`](platform-support/openbsd.md) | ✓ | ✓ | OpenBSD/riscv64
368368
[`riscv64-linux-android`](platform-support/android.md) | | | RISC-V 64-bit Android
369369
[`riscv64-wrs-vxworks`](platform-support/vxworks.md) | ✓ | |
370-
`s390x-unknown-linux-musl` | | | S390x Linux (kernel 3.2, musl 1.2.3)
370+
[`s390x-unknown-linux-musl`](platform-support/s390x-unknown-linux-musl.md) | | | S390x Linux (kernel 3.2, musl 1.2.3)
371371
`sparc-unknown-linux-gnu` | ✓ | | 32-bit SPARC Linux
372372
[`sparc-unknown-none-elf`](./platform-support/sparc-unknown-none-elf.md) | * | | Bare 32-bit SPARC V7+
373373
[`sparc64-unknown-netbsd`](platform-support/netbsd.md) | ✓ | ✓ | NetBSD/sparc64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
# `s390x-unknown-linux-gnu`
2+
3+
**Tier: 2 (with Host Tools)**
4+
5+
IBM z/Architecture (s390x) targets (including IBM Z and LinuxONE) running Linux.
6+
7+
## Target maintainers
8+
9+
- Ulrich Weigand, <[email protected]>, [@uweigand](https://github.com/uweigand)
10+
- Josh Stone, <[email protected]>, [@cuviper](https://github.com/cuviper)
11+
12+
## Requirements
13+
14+
This target requires:
15+
16+
* Linux Kernel version 3.2 or later
17+
* glibc 2.17 or later
18+
19+
Code generated by the target uses the z/Architecture ISA assuming a minimum
20+
architecture level of z10 (Eighth Edition of the z/Architecture Principles
21+
of Operation), and is compliant with the s390x ELF ABI.
22+
23+
Reference material:
24+
25+
* [z/Architecture Principles of Operation][s390x-isa]
26+
* [z/Architecture ELF Application Binary Interface][s390x-abi]
27+
28+
[s390x-isa]: https://publibfp.dhe.ibm.com/epubs/pdf/a227832d.pdf
29+
[s390x-abi]: https://github.com/IBM/s390x-abi
30+
31+
## Building the target
32+
33+
This target is distributed through `rustup`, and otherwise requires no
34+
special configuration.
35+
36+
If you need to build your own Rust for some reason though, the target can be
37+
enabled in `config.toml`. For example:
38+
39+
```toml
40+
[build]
41+
target = ["s390x-unknown-linux-gnu"]
42+
```
43+
44+
## Building Rust programs
45+
46+
On a s390x Linux host, the `s390x-unknown-linux-gnu` target should be
47+
automatically installed and used by default.
48+
49+
On a non-s390x host, add the target:
50+
51+
```bash
52+
rustup target add s390x-unknown-linux-gnu
53+
```
54+
55+
Then cross compile crates with:
56+
57+
```bash
58+
cargo build --target s390x-unknown-linux-gnu
59+
```
60+
61+
## Testing
62+
63+
There are no special requirements for testing and running the target.
64+
For testing cross builds on the host, please refer to the "Cross-compilation
65+
toolchains and C code" section below.
66+
67+
## Cross-compilation toolchains and C code
68+
69+
Rust code built using the target is compatible with C code compiled with
70+
GCC or Clang using the `s390x-unknown-linux-gnu` target triple (via either
71+
native or cross-compilation).
72+
73+
On Ubuntu, a s390x cross-toolchain can be installed with:
74+
75+
```bash
76+
apt install gcc-s390x-linux-gnu g++-s390x-linux-gnu libc6-dev-s390x-cross
77+
```
78+
79+
Depending on your system, you may need to configure the target to use the GNU
80+
GCC linker. To use it, add the following to your `.cargo/config.toml`:
81+
82+
```toml
83+
[target.s390x-unknown-linux-gnu]
84+
linker = "s390x-linux-gnu-gcc"
85+
```
86+
87+
If your `s390x-linux-gnu-*` toolchain is not in your `PATH` you may need to
88+
configure additional settings:
89+
90+
```toml
91+
[target.s390x-unknown-linux-gnu]
92+
# Adjust the paths to point at your toolchain
93+
cc = "/TOOLCHAIN_PATH/bin/s390x-linux-gnu-gcc"
94+
cxx = "/TOOLCHAIN_PATH/bin/s390x-linux-gnu-g++"
95+
ar = "/TOOLCHAIN_PATH/bin/s390x-linux-gnu-ar"
96+
ranlib = "/TOOLCHAIN_PATH/bin/s390x-linux-gnu-ranlib"
97+
linker = "/TOOLCHAIN_PATH/bin/s390x-linux-gnu-gcc"
98+
```
99+
100+
To test cross compiled binaries on a non-s390x host, you can use
101+
[`qemu`](https://www.qemu.org/docs/master/system/target-s390x.html).
102+
On Ubuntu, a s390x emulator can be obtained with:
103+
104+
```bash
105+
apt install qemu-system-s390x
106+
```
107+
108+
Then, in `.cargo/config.toml` set the `runner`:
109+
110+
```toml
111+
[target.s390x-unknown-linux-gnu]
112+
runner = "qemu-s390x-static -L /usr/s390x-linux-gnu"
113+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# `s390x-unknown-linux-musl`
2+
3+
**Tier: 3**
4+
5+
IBM z/Architecture (s390x) targets (including IBM Z and LinuxONE) running Linux.
6+
7+
## Target maintainers
8+
9+
- Ulrich Weigand, <[email protected]>, [@uweigand](https://github.com/uweigand)
10+
11+
## Requirements
12+
13+
This target requires:
14+
15+
* Linux Kernel version 3.2 or later
16+
* musl 1.2.3 or later
17+
18+
Code generated by the target uses the z/Architecture ISA assuming a minimum
19+
architecture level of z10 (Eighth Edition of the z/Architecture Principles
20+
of Operation), and is compliant with the s390x ELF ABI.
21+
22+
Reference material:
23+
24+
* [z/Architecture Principles of Operation][s390x-isa]
25+
* [z/Architecture ELF Application Binary Interface][s390x-abi]
26+
27+
[s390x-isa]: https://publibfp.dhe.ibm.com/epubs/pdf/a227832d.pdf
28+
[s390x-abi]: https://github.com/IBM/s390x-abi
29+
30+
## Building the target
31+
32+
Because it is Tier 3, Rust does not yet ship pre-compiled artifacts for this
33+
target.
34+
35+
Therefore, you can build Rust with support for the target by adding it to the
36+
target list in `config.toml`, a sample configuration is shown below.
37+
38+
```toml
39+
[build]
40+
target = ["s390x-unknown-linux-musl"]
41+
```
42+
43+
## Building Rust programs
44+
45+
Rust does not yet ship pre-compiled artifacts for this target. To compile for
46+
this target, you will first need to build Rust with the target enabled (see
47+
"Building the target" above).
48+
49+
## Testing
50+
51+
There are no special requirements for testing and running the target.
52+
For testing cross builds on the host, please refer to the "Cross-compilation
53+
toolchains and C code" section below.
54+
55+
## Cross-compilation toolchains and C code
56+
57+
Rust code built using the target is compatible with C code compiled with
58+
GCC or Clang using the `s390x-unknown-linux-musl` target triple (via either
59+
native or cross-compilation).
60+
61+
Depending on your system, you may need to configure the target to use the GNU
62+
GCC linker. To use it, add the following to your `.cargo/config.toml`:
63+
64+
```toml
65+
[target.s390x-unknown-linux-musl]
66+
linker = "s390x-linux-musl-gcc"
67+
```
68+
69+
If your `s390x-linux-musl-*` toolchain is not in your `PATH` you may need to
70+
configure additional settings:
71+
72+
```toml
73+
[target.s390x-unknown-linux-musl]
74+
# Adjust the paths to point at your toolchain
75+
cc = "/TOOLCHAIN_PATH/bin/s390x-linux-musl-gcc"
76+
cxx = "/TOOLCHAIN_PATH/bin/s390x-linux-musl-g++"
77+
ar = "/TOOLCHAIN_PATH/bin/s390x-linux-musl-ar"
78+
ranlib = "/TOOLCHAIN_PATH/bin/s390x-linux-musl-ranlib"
79+
linker = "/TOOLCHAIN_PATH/bin/s390x-linux-musl-gcc"
80+
```
81+
82+
To test cross compiled binaries on a non-s390x host, you can use
83+
[`qemu`](https://www.qemu.org/docs/master/system/target-s390x.html).

0 commit comments

Comments
 (0)