We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
lp64e
1 parent 8b9f0f9 commit 167350dCopy full SHA for 167350d
compiler/rustc_codegen_ssa/src/back/metadata.rs
@@ -325,7 +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
- "ilp32e" => e_flags |= elf::EF_RISCV_RVE,
+ "ilp32e" | "lp64e" => e_flags |= elf::EF_RISCV_RVE,
329
_ => bug!("unknown RISC-V ABI name"),
330
}
331
0 commit comments