Skip to content

Commit 6fd358e

Browse files
committed
Add documentation for target armv7-rtems-eabihf
1 parent 124454c commit 6fd358e

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

src/doc/rustc/src/SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
- [thumbv8m.base-none-eabi](./platform-support/thumbv8m.base-none-eabi.md)
4141
- [thumbv8m.main-none-eabi\*](./platform-support/thumbv8m.main-none-eabi.md)
4242
- [armv6k-nintendo-3ds](platform-support/armv6k-nintendo-3ds.md)
43+
- [armv7-rtems-eabihf](platform-support/armv7-rtems-eabihf.md)
4344
- [armv7-sony-vita-newlibeabihf](platform-support/armv7-sony-vita-newlibeabihf.md)
4445
- [armv7-unknown-linux-uclibceabi](platform-support/armv7-unknown-linux-uclibceabi.md)
4546
- [armv7-unknown-linux-uclibceabihf](platform-support/armv7-unknown-linux-uclibceabihf.md)

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

+1
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ target | std | host | notes
280280
`armv6-unknown-freebsd` | ✓ | ✓ | Armv6 FreeBSD
281281
[`armv6-unknown-netbsd-eabihf`](platform-support/netbsd.md) | ✓ | ✓ | Armv6 NetBSD w/hard-float
282282
[`armv6k-nintendo-3ds`](platform-support/armv6k-nintendo-3ds.md) | ? | | Armv6k Nintendo 3DS, Horizon (Requires devkitARM toolchain)
283+
[`armv7-rtems-eabihf`](platform-support/armv7-rtems-eabihf.md) | ? | | RTEMS OS for ARM BSPs
283284
[`armv7-sony-vita-newlibeabihf`](platform-support/armv7-sony-vita-newlibeabihf.md) | ✓ | | Armv7-A Cortex-A9 Sony PlayStation Vita (requires VITASDK toolchain)
284285
[`armv7-unknown-linux-uclibceabi`](platform-support/armv7-unknown-linux-uclibceabi.md) | ✓ | ✓ | Armv7-A Linux with uClibc, softfloat
285286
[`armv7-unknown-linux-uclibceabihf`](platform-support/armv7-unknown-linux-uclibceabihf.md) | ✓ | ? | Armv7-A Linux with uClibc, hardfloat
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# `armv7-rtems-eabihf`
2+
3+
**Tier: 3**
4+
5+
ARM targets for the [RTEMS realtime operating system](https://www.rtems.org) using the RTEMS gcc cross-compiler for linking against the libraries of a specified Board Support Package (BSP).
6+
7+
## Target maintainers
8+
9+
- [@thesummer](https://github.com/thesummer)
10+
11+
## Requirements
12+
13+
The target does not support host tools. Only cross-compilation is possible.
14+
The cross-compiler toolchain can be obtained by following the installation instructions
15+
of the [RTEMS Documentation](https://docs.rtems.org/branches/master/user/index.html). Additionally to the cross-compiler also a compiled BSP
16+
for a board fitting the architecture needs to be available on the host.
17+
Currently tested has been the BSP `xilinx_zynq_a9_qemu` of RTEMS 6.
18+
19+
`std` support is available, but not yet fully tested. Do NOT use in flight software!
20+
21+
The target follows the EABI calling convention for `extern "C"`.
22+
23+
The resulting binaries are in ELF format.
24+
25+
## Building the target
26+
27+
The target can be built by the standard compiler of Rust.
28+
29+
## Building Rust programs
30+
31+
Rust does not yet ship pre-compiled artifacts for this target. To compile for
32+
this target, you will either need to build Rust with the target enabled (see
33+
"Building the target" above), or build your own copy of `core` by using
34+
`build-std` or similar.
35+
36+
In order to build an RTEMS executable it is also necessary to have a basic RTEMS configuration (in C) compiled to link against as this configures the operating system.
37+
An example can be found at this [`rtems-sys`](https://github.com/thesummer/rtems-sys) crate which could be added as an dependency to your application.
38+
39+
## Testing
40+
41+
The resulting binaries run fine on an emulated target (possibly also on a real Zedboard or similar).
42+
For example, on qemu the following command can execute the binary:
43+
```sh
44+
qemu-system-arm -no-reboot -serial null -serial mon:stdio -net none -nographic -M xilinx-zynq-a9 -m 512M -kernel <binary file>
45+
```
46+
47+
While basic execution of the unit test harness seems to work. However, running the Rust testsuite on the (emulated) hardware has not yet been tested.
48+
49+
## Cross-compilation toolchains and C code
50+
51+
Compatible C-code can be built with the RTEMS cross-compiler toolchain `arm-rtems6-gcc`.
52+
For more information how to build the toolchain, RTEMS itself and RTEMS applications please have a look at the [RTEMS Documentation](https://docs.rtems.org/branches/master/user/index.html).

0 commit comments

Comments
 (0)