Skip to content

Commit f636d3f

Browse files
committed
Add dedicated platform support page for Redox OS
1 parent db45105 commit f636d3f

File tree

3 files changed

+57
-3
lines changed

3 files changed

+57
-3
lines changed

src/doc/rustc/src/SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
- [*-unknown-hermit](platform-support/hermit.md)
7272
- [\*-unknown-netbsd\*](platform-support/netbsd.md)
7373
- [*-unknown-openbsd](platform-support/openbsd.md)
74+
- [*-unknown-redox](platform-support/redox.md)
7475
- [\*-unknown-uefi](platform-support/unknown-uefi.md)
7576
- [wasm32-wasip1](platform-support/wasm32-wasip1.md)
7677
- [wasm32-wasip1-threads](platform-support/wasm32-wasip1-threads.md)

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ target | std | notes
202202
`x86_64-unknown-linux-gnux32` | ✓ | 64-bit Linux (x32 ABI) (kernel 4.15, glibc 2.27)
203203
[`x86_64-unknown-linux-ohos`](platform-support/openharmony.md) | ✓ | x86_64 OpenHarmony
204204
[`x86_64-unknown-none`](platform-support/x86_64-unknown-none.md) | * | Freestanding/bare-metal x86_64, softfloat
205-
`x86_64-unknown-redox` | ✓ | Redox OS
205+
[`x86_64-unknown-redox`](platform-support/redox.md) | ✓ | Redox OS
206206
[`x86_64-unknown-uefi`](platform-support/unknown-uefi.md) | ? | 64-bit UEFI
207207

208208
[^x86_32-floats-x87]: Floating-point support on `i586` targets is non-compliant: the `x87` registers and instructions used for these targets do not provide IEEE-754-compliant behavior, in particular when it comes to rounding and NaN payload bits. See [issue #114479][x86-32-float-issue].
@@ -258,7 +258,7 @@ target | std | host | notes
258258
`aarch64-unknown-linux-gnu_ilp32` | ✓ | ✓ | ARM64 Linux (ILP32 ABI)
259259
[`aarch64-unknown-netbsd`](platform-support/netbsd.md) | ✓ | ✓ | ARM64 NetBSD
260260
[`aarch64-unknown-openbsd`](platform-support/openbsd.md) | ✓ | ✓ | ARM64 OpenBSD
261-
`aarch64-unknown-redox` | ? | | ARM64 Redox OS
261+
[`aarch64-unknown-redox`](platform-support/redox.md) | | | ARM64 Redox OS
262262
`aarch64-uwp-windows-msvc` | ? | |
263263
`aarch64-wrs-vxworks` | ? | |
264264
`aarch64_be-unknown-linux-gnu_ilp32` | ✓ | ✓ | ARM64 Linux (big-endian, ILP32 ABI)
@@ -300,7 +300,7 @@ target | std | host | notes
300300
[`i686-unknown-hurd-gnu`](platform-support/hurd.md) | ✓ | ✓ | 32-bit GNU/Hurd [^x86_32-floats-return-ABI]
301301
[`i686-unknown-netbsd`](platform-support/netbsd.md) | ✓ | ✓ | NetBSD/i386 with SSE2 [^x86_32-floats-return-ABI]
302302
[`i686-unknown-openbsd`](platform-support/openbsd.md) | ✓ | ✓ | 32-bit OpenBSD [^x86_32-floats-return-ABI]
303-
`i686-unknown-redox` | ? | | i686 Redox OS
303+
[`i686-unknown-redox`](platform-support/redox.md) | | | i686 Redox OS
304304
`i686-uwp-windows-gnu` | ? | | [^x86_32-floats-return-ABI]
305305
`i686-uwp-windows-msvc` | ? | | [^x86_32-floats-return-ABI]
306306
[`i686-win7-windows-msvc`](platform-support/win7-windows-msvc.md) | ✓ | | 32-bit Windows 7 support [^x86_32-floats-return-ABI]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# `*-unknown-redox`
2+
3+
**Tier: 2/3**
4+
5+
Targets for the [Redox OS](https://redox-os.org/) operating
6+
system.
7+
8+
Target triplets available so far:
9+
10+
- `x86_64-unknown-redox` (tier 2)
11+
- `aarch64-unknown-redox` (tier 3)
12+
- `i686-unknown-redox` (tier 3)
13+
14+
## Target maintainers
15+
16+
- Jeremy Soller ([@jackpot51](https://github.com/jackpot51))
17+
18+
## Requirements
19+
20+
These targets are natively compiled and can be cross-compiled. Std is fully supported.
21+
22+
The targets are only expected to work with the latest version of Redox OS as the ABI is not yet stable.
23+
24+
`extern "C"` uses the official calling convention of the respective architectures.
25+
26+
Redox OS binaries use ELF as file format.
27+
28+
## Building the target
29+
30+
You can build Rust with support for the targets by adding it to the `target` list in `config.toml`. In addition a copy of [relibc] needs to be present in the linker search path.
31+
32+
```toml
33+
[build]
34+
build-stage = 1
35+
target = [
36+
"<HOST_TARGET>",
37+
"x86_64-unknown-redox",
38+
"aarch64-unknown-redox",
39+
"i686-unknown-redox",
40+
]
41+
```
42+
43+
[relibc]: https://gitlab.redox-os.org/redox-os/relibc
44+
45+
## Building Rust programs and testing
46+
47+
Rust does not yet ship pre-compiled artifacts for Redox OS except for x86_64-unknown-redox.
48+
49+
The easiest way to build and test programs for Redox OS is using [redoxer](https://gitlab.redox-os.org/redox-os/redoxer) which sets up the required compiler toolchain for building as well as runs programs inside a Redox OS VM using QEMU.
50+
51+
## Cross-compilation toolchains and C code
52+
53+
The target supports C code. Pre-compiled C toolchains can be found at <https://static.redox-os.org/toolchain/>.

0 commit comments

Comments
 (0)