We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e58b1c commit 7d24411Copy full SHA for 7d24411
compiler/rustc_target/src/spec/mipsel_unknown_none.rs
@@ -1,6 +1,7 @@
1
// Bare MIPS32r2, little endian, softfloat
2
// can be used for MIPS M4K core (e.g. on PIC32MX devices)
3
4
+use crate::spec::abi::Abi;
5
use crate::spec::{LinkerFlavor, LldFlavor, RelocModel};
6
use crate::spec::{PanicStrategy, Target, TargetOptions};
7
@@ -25,6 +26,14 @@ pub fn target() -> Target {
25
26
linker: Some("rust-lld".to_owned()),
27
panic_strategy: PanicStrategy::Abort,
28
relocation_model: RelocModel::Static,
29
+ unsupported_abis: vec![
30
+ Abi::Stdcall,
31
+ Abi::Fastcall,
32
+ Abi::Vectorcall,
33
+ Abi::Thiscall,
34
+ Abi::Win64,
35
+ Abi::SysV64,
36
+ ],
37
emit_debug_gdb_scripts: false,
38
..Default::default()
39
},
0 commit comments