We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
lp64e
1 parent 167350d commit 44b720aCopy full SHA for 44b720a
compiler/rustc_codegen_ssa/src/back/metadata.rs
@@ -325,6 +325,7 @@ pub(crate) fn create_object_file(sess: &Session) -> Option<write::Object<'static
325
"" | "ilp32" | "lp64" => (),
326
"ilp32f" | "lp64f" => e_flags |= elf::EF_RISCV_FLOAT_ABI_SINGLE,
327
"ilp32d" | "lp64d" => e_flags |= elf::EF_RISCV_FLOAT_ABI_DOUBLE,
328
+ // Note that the `lp64e` is still unstable as it's not (yet) part of the ELF psABI.
329
"ilp32e" | "lp64e" => e_flags |= elf::EF_RISCV_RVE,
330
_ => bug!("unknown RISC-V ABI name"),
331
}
0 commit comments