Skip to content

Commit c0afabb

Browse files
committed
Support for Fuchsia RISC-V target
Fuchsia is in the process of implementing the RISC-V support. This change implements the minimal Rust compiler support. The support for building runtime libraries will be implemented in follow up changes once Fuchsia SDK has the RISC-V support.
1 parent 70adb4e commit c0afabb

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

compiler/rustc_target/src/spec/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1115,6 +1115,7 @@ supported_targets! {
11151115
// FIXME(#106649): Remove aarch64-fuchsia in favor of aarch64-unknown-fuchsia
11161116
("aarch64-fuchsia", aarch64_fuchsia),
11171117
("aarch64-unknown-fuchsia", aarch64_unknown_fuchsia),
1118+
("riscv64gc-unknown-fuchsia", riscv64gc_unknown_fuchsia),
11181119
// FIXME(#106649): Remove x86_64-fuchsia in favor of x86_64-unknown-fuchsia
11191120
("x86_64-fuchsia", x86_64_fuchsia),
11201121
("x86_64-unknown-fuchsia", x86_64_unknown_fuchsia),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
use crate::spec::{CodeModel, SanitizerSet, Target, TargetOptions};
2+
3+
pub fn target() -> Target {
4+
Target {
5+
llvm_target: "riscv64gc-unknown-fuchsia".into(),
6+
pointer_width: 64,
7+
data_layout: "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128".into(),
8+
arch: "riscv64".into(),
9+
options: TargetOptions {
10+
code_model: Some(CodeModel::Medium),
11+
cpu: "generic-rv64".into(),
12+
features: "+m,+a,+f,+d,+c".into(),
13+
llvm_abiname: "lp64d".into(),
14+
max_atomic_width: Some(64),
15+
supported_sanitizers: SanitizerSet::SHADOWCALLSTACK,
16+
..super::fuchsia_base::opts()
17+
},
18+
}
19+
}

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

+1
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ target | std | host | notes
295295
[`riscv32imac-unknown-xous-elf`](platform-support/riscv32imac-unknown-xous-elf.md) | ? | | RISC-V Xous (RV32IMAC ISA)
296296
`riscv32imc-esp-espidf` | ✓ | | RISC-V ESP-IDF
297297
`riscv64gc-unknown-freebsd` | | | RISC-V FreeBSD
298+
`riscv64gc-unknown-fuchsia` | | | RISC-V Fuchsia
298299
`riscv64gc-unknown-linux-musl` | | | RISC-V Linux (kernel 4.20, musl 1.2.0)
299300
[`riscv64gc-unknown-openbsd`](platform-support/openbsd.md) | ✓ | ✓ | OpenBSD/riscv64
300301
`s390x-unknown-linux-musl` | | | S390x Linux (kernel 3.2, MUSL)

0 commit comments

Comments
 (0)