We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 111f2e8 commit afe6059Copy full SHA for afe6059
compiler/rustc_target/src/spec/targets/mipsel_sony_psx.rs
@@ -14,6 +14,10 @@ pub(crate) fn target() -> Target {
14
arch: "mips".into(),
15
16
options: TargetOptions {
17
+ // The Playstation 1 is mostly bare-metal, but the BIOS does provide some a slight bit
18
+ // of functionality post load, so we still declare it as `cfg!(target_os = "psx")`.
19
+ //
20
+ // See <https://github.com/rust-lang/rust/pull/131168> for details.
21
os: "psx".into(),
22
vendor: "sony".into(),
23
linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes),
0 commit comments