Add riscv64gc-unknown-none-elf target
This commit is contained in:
parent
06f21a5314
commit
1f1a82434b
4 changed files with 34 additions and 0 deletions
|
@ -113,6 +113,7 @@ ENV TARGETS=$TARGETS,thumbv8m.main-none-eabi
|
||||||
ENV TARGETS=$TARGETS,riscv32imc-unknown-none-elf
|
ENV TARGETS=$TARGETS,riscv32imc-unknown-none-elf
|
||||||
ENV TARGETS=$TARGETS,riscv32imac-unknown-none-elf
|
ENV TARGETS=$TARGETS,riscv32imac-unknown-none-elf
|
||||||
ENV TARGETS=$TARGETS,riscv64imac-unknown-none-elf
|
ENV TARGETS=$TARGETS,riscv64imac-unknown-none-elf
|
||||||
|
ENV TARGETS=$TARGETS,riscv64gc-unknown-none-elf
|
||||||
ENV TARGETS=$TARGETS,armebv7r-none-eabi
|
ENV TARGETS=$TARGETS,armebv7r-none-eabi
|
||||||
ENV TARGETS=$TARGETS,armebv7r-none-eabihf
|
ENV TARGETS=$TARGETS,armebv7r-none-eabihf
|
||||||
ENV TARGETS=$TARGETS,armv7r-none-eabi
|
ENV TARGETS=$TARGETS,armv7r-none-eabi
|
||||||
|
|
|
@ -452,6 +452,7 @@ supported_targets! {
|
||||||
("riscv32imc-unknown-none-elf", riscv32imc_unknown_none_elf),
|
("riscv32imc-unknown-none-elf", riscv32imc_unknown_none_elf),
|
||||||
("riscv32imac-unknown-none-elf", riscv32imac_unknown_none_elf),
|
("riscv32imac-unknown-none-elf", riscv32imac_unknown_none_elf),
|
||||||
("riscv64imac-unknown-none-elf", riscv64imac_unknown_none_elf),
|
("riscv64imac-unknown-none-elf", riscv64imac_unknown_none_elf),
|
||||||
|
("riscv64gc-unknown-none-elf", riscv64gc_unknown_none_elf),
|
||||||
|
|
||||||
("aarch64-unknown-none", aarch64_unknown_none),
|
("aarch64-unknown-none", aarch64_unknown_none),
|
||||||
|
|
||||||
|
|
31
src/librustc_target/spec/riscv64gc_unknown_none_elf.rs
Normal file
31
src/librustc_target/spec/riscv64gc_unknown_none_elf.rs
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
use crate::spec::{LinkerFlavor, LldFlavor, PanicStrategy,
|
||||||
|
Target, TargetOptions, TargetResult};
|
||||||
|
|
||||||
|
pub fn target() -> TargetResult {
|
||||||
|
Ok(Target {
|
||||||
|
data_layout: "e-m:e-p:64:64-i64:64-i128:128-n64-S128".to_string(),
|
||||||
|
llvm_target: "riscv64".to_string(),
|
||||||
|
target_endian: "little".to_string(),
|
||||||
|
target_pointer_width: "64".to_string(),
|
||||||
|
target_c_int_width: "32".to_string(),
|
||||||
|
target_os: "none".to_string(),
|
||||||
|
target_env: String::new(),
|
||||||
|
target_vendor: "unknown".to_string(),
|
||||||
|
arch: "riscv64".to_string(),
|
||||||
|
linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
|
||||||
|
|
||||||
|
options: TargetOptions {
|
||||||
|
linker: Some("rust-lld".to_string()),
|
||||||
|
cpu: "generic-rv64".to_string(),
|
||||||
|
max_atomic_width: Some(64),
|
||||||
|
atomic_cas: true,
|
||||||
|
features: "+m,+a,+f,+d,+c".to_string(),
|
||||||
|
executables: true,
|
||||||
|
panic_strategy: PanicStrategy::Abort,
|
||||||
|
relocation_model: "static".to_string(),
|
||||||
|
emit_debug_gdb_scripts: false,
|
||||||
|
abi_blacklist: super::riscv_base::abi_blacklist(),
|
||||||
|
.. Default::default()
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
|
@ -86,6 +86,7 @@ static TARGETS: &'static [&'static str] = &[
|
||||||
"riscv32imc-unknown-none-elf",
|
"riscv32imc-unknown-none-elf",
|
||||||
"riscv32imac-unknown-none-elf",
|
"riscv32imac-unknown-none-elf",
|
||||||
"riscv64imac-unknown-none-elf",
|
"riscv64imac-unknown-none-elf",
|
||||||
|
"riscv64gc-unknown-none-elf",
|
||||||
"s390x-unknown-linux-gnu",
|
"s390x-unknown-linux-gnu",
|
||||||
"sparc64-unknown-linux-gnu",
|
"sparc64-unknown-linux-gnu",
|
||||||
"sparcv9-sun-solaris",
|
"sparcv9-sun-solaris",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue