forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/doc/rustc/src/platform-support/riscv32e-unknown-none-elf.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# `riscv32{e,em,emc}-unknown-none-elf` | ||
|
||
**Tier: 3** | ||
|
||
Bare-metal target for RISC-V CPUs with the RV32E, RV32EM and RV32EMC ISAs. | ||
|
||
## Target maintainers | ||
|
||
* Henri Lunnikivi, <[email protected]>, [@hegza](https://github.com/hegza) | ||
|
||
## Requirements | ||
|
||
The target is cross-compiled, and uses static linking. No external toolchain is | ||
required and the default `rust-lld` linker works, but you must specify a linker | ||
script. | ||
|
||
## Building the target | ||
|
||
This target is included in Rust and can be installed via `rustup`. | ||
|
||
## Testing | ||
|
||
This is a cross-compiled `no-std` target, which must be run either in a | ||
simulator or by programming them onto suitable hardware. It is not possible to | ||
run the Rust test-suite on this target. | ||
|
||
## Cross-compilation toolchains and C code | ||
|
||
This target supports C code. If interlinking with C or C++, you may need to use | ||
`riscv32-unknown-elf-gcc` as a linker instead of `rust-lld`. |