Skip to content

Commit ab4d65e

Browse files
committed
compiler: Add *-unknown-hermit documentation
Signed-off-by: Martin Kröning <[email protected]>
1 parent 3003fe2 commit ab4d65e

File tree

3 files changed

+79
-2
lines changed

3 files changed

+79
-2
lines changed

src/doc/rustc/src/SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
- [sparc-unknown-none-elf](./platform-support/sparc-unknown-none-elf.md)
4343
- [*-pc-windows-gnullvm](platform-support/pc-windows-gnullvm.md)
4444
- [\*-nto-qnx-\*](platform-support/nto-qnx.md)
45+
- [*-unknown-hermit](platform-support/hermit.md)
4546
- [\*-unknown-netbsd\*](platform-support/netbsd.md)
4647
- [*-unknown-openbsd](platform-support/openbsd.md)
4748
- [\*-unknown-uefi](platform-support/unknown-uefi.md)

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ target | std | host | notes
223223
[`aarch64-unknown-linux-ohos`](platform-support/openharmony.md) | ✓ | | ARM64 OpenHarmony |
224224
[`aarch64-unknown-nto-qnx710`](platform-support/nto-qnx.md) | ✓ | | ARM64 QNX Neutrino 7.1 RTOS |
225225
`aarch64-unknown-freebsd` | ✓ | ✓ | ARM64 FreeBSD
226-
`aarch64-unknown-hermit` | ✓ | | ARM64 HermitCore
226+
[`aarch64-unknown-hermit`](platform-support/hermit.md) | ✓ | | ARM64 Hermit
227227
`aarch64-unknown-linux-gnu_ilp32` | ✓ | ✓ | ARM64 Linux (ILP32 ABI)
228228
[`aarch64-unknown-netbsd`](platform-support/netbsd.md) | ✓ | ✓ | ARM64 NetBSD
229229
[`aarch64-unknown-openbsd`](platform-support/openbsd.md) | ✓ | ✓ | ARM64 OpenBSD
@@ -303,6 +303,7 @@ target | std | host | notes
303303
[`riscv32imac-unknown-xous-elf`](platform-support/riscv32imac-unknown-xous-elf.md) | ? | | RISC-V Xous (RV32IMAC ISA)
304304
[`riscv32imc-esp-espidf`](platform-support/esp-idf.md) | ✓ | | RISC-V ESP-IDF
305305
[`riscv32imac-esp-espidf`](platform-support/esp-idf.md) | ✓ | | RISC-V ESP-IDF
306+
[`riscv64gc-unknown-hermit`](platform-support/hermit.md) | ✓ | | RISC-V Hermit
306307
`riscv64gc-unknown-freebsd` | | | RISC-V FreeBSD
307308
`riscv64gc-unknown-fuchsia` | | | RISC-V Fuchsia
308309
`riscv64gc-unknown-linux-musl` | | | RISC-V Linux (kernel 4.20, musl 1.2.0)
@@ -327,7 +328,7 @@ target | std | host | notes
327328
`x86_64-sun-solaris` | ? | | Deprecated target for 64-bit Solaris 10/11, illumos
328329
`x86_64-unknown-dragonfly` | ✓ | ✓ | 64-bit DragonFlyBSD
329330
`x86_64-unknown-haiku` | ✓ | ✓ | 64-bit Haiku
330-
`x86_64-unknown-hermit` | ✓ | | HermitCore
331+
[`x86_64-unknown-hermit`](platform-support/hermit.md) | ✓ | | x86_64 Hermit
331332
`x86_64-unknown-l4re-uclibc` | ? | |
332333
[`x86_64-unknown-linux-ohos`](platform-support/openharmony.md) | ✓ | | x86_64 OpenHarmony |
333334
[`x86_64-unknown-openbsd`](platform-support/openbsd.md) | ✓ | ✓ | 64-bit OpenBSD
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# `*-unknown-hermit`
2+
3+
**Tier: 3**
4+
5+
The [Hermit] unikernel target allows compiling your applications into self-contained, specialized unikernel images that can be run in small virtual machines.
6+
7+
[Hermit]: https://github.com/hermitcore
8+
9+
Target triplets available so far:
10+
11+
- `x86_64-unknown-hermit`
12+
- `aarch64-unknown-hermit`
13+
- `riscv64gc-unknown-hermit`
14+
15+
## Target maintainers
16+
17+
- Stefan Lankes ([@stlankes](https://github.com/stlankes))
18+
- Martin Kröning ([@mkroening](https://github.com/mkroening))
19+
20+
## Requirements
21+
22+
These targets only support cross-compilation.
23+
The targets do support std.
24+
25+
When building binaries for this target, the Hermit unikernel is built from scratch.
26+
The application developer themselves specializes the target and sets corresponding expectations.
27+
28+
The Hermit targets follow Linux's `extern "C"` calling convention.
29+
30+
Hermit binaries have the ELF format.
31+
32+
## Building the target
33+
34+
You can build Rust with support for the targets by adding it to the `target` list in `config.toml`.
35+
To run the Hermit build scripts, you also have to enable your host target.
36+
The build scripts rely on `llvm-tools` and binaries are linked using `rust-lld`, so those have to be enabled as well.
37+
38+
```toml
39+
[build]
40+
build-stage = 1
41+
target = [
42+
"<HOST_TARGET>",
43+
"x86_64-unknown-hermit",
44+
"aarch64-unknown-hermit",
45+
"riscv64gc-unknown-hermit",
46+
]
47+
48+
[rust]
49+
lld = true
50+
llvm-tools = true
51+
```
52+
53+
## Building Rust programs
54+
55+
Rust does not yet ship pre-compiled artifacts for these targets.
56+
To compile for these targets, you will either need to build Rust with the targets enabled
57+
(see “Building the targets” above), or build your own copy of `core` by using `build-std` or similar.
58+
59+
Building Rust programs can be done by following the tutorial in our starter application [rusty-demo].
60+
61+
[rusty-demo]: https://github.com/hermitcore/rusty-demo
62+
63+
## Testing
64+
65+
The targets support running binaries in the form of self-contained unikernel images.
66+
These images can be chainloaded by Hermit's [loader] or hypervisor ([Uhyve]).
67+
QEMU can be used to boot Hermit binaries using the loader on any architecture.
68+
The targets do not support running the Rust test suite.
69+
70+
[loader]: https://github.com/hermitcore/rusty-loader
71+
[Uhyve]: https://github.com/hermitcore/uhyve
72+
73+
## Cross-compilation toolchains and C code
74+
75+
The targets do not yet support C code and Rust code at the same time.

0 commit comments

Comments
 (0)