Skip to content

Commit f35433e

Browse files
Rollup merge of #131222 - thejpster:fix-sparc-v7-symbol-o, r=workingjubilee
Generate correct symbols.o for sparc-unknown-none-elf This fixes #130172 by selecting the correct ELF Machine type for sparc-unknown-none-elf (which has a baseline of SPARC V7).
2 parents 43c7805 + 0f72faa commit f35433e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

compiler/rustc_codegen_ssa/src/back/metadata.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,15 @@ pub(crate) fn create_object_file(sess: &Session) -> Option<write::Object<'static
211211
"powerpc64" => (Architecture::PowerPc64, None),
212212
"riscv32" => (Architecture::Riscv32, None),
213213
"riscv64" => (Architecture::Riscv64, None),
214-
"sparc" => (Architecture::Sparc32Plus, None),
214+
"sparc" => {
215+
if sess.target.options.cpu == "v9" {
216+
// Target uses V8+, aka EM_SPARC32PLUS, aka 64-bit V9 but in 32-bit mode
217+
(Architecture::Sparc32Plus, None)
218+
} else {
219+
// Target uses V7 or V8, aka EM_SPARC
220+
(Architecture::Sparc, None)
221+
}
222+
}
215223
"sparc64" => (Architecture::Sparc64, None),
216224
"avr" => (Architecture::Avr, None),
217225
"msp430" => (Architecture::Msp430, None),

0 commit comments

Comments
 (0)