File tree 4 files changed +29
-0
lines changed
compiler/rustc_target/src/spec
bootstrap/src/core/build_steps
4 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ use crate :: abi:: Endian ;
2
+ use crate :: spec:: { Target , TargetOptions } ;
3
+
4
+ pub fn target ( ) -> Target {
5
+ let mut base = super :: netbsd_base:: opts ( ) ;
6
+ base. max_atomic_width = Some ( 32 ) ;
7
+ base. cpu = "mips32" . into ( ) ;
8
+
9
+ Target {
10
+ llvm_target : "mipsel-unknown-netbsd" . into ( ) ,
11
+ pointer_width : 32 ,
12
+ data_layout : "e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64" . into ( ) ,
13
+ arch : "mips" . into ( ) ,
14
+ options : TargetOptions {
15
+ features : "+soft-float" . into ( ) ,
16
+ mcount : "__mcount" . into ( ) ,
17
+ endian : Endian :: Little ,
18
+ ..base
19
+ } ,
20
+ }
21
+ }
Original file line number Diff line number Diff line change @@ -1566,6 +1566,7 @@ supported_targets! {
1566
1566
( "armv7-unknown-netbsd-eabihf" , armv7_unknown_netbsd_eabihf) ,
1567
1567
( "i586-unknown-netbsd" , i586_unknown_netbsd) ,
1568
1568
( "i686-unknown-netbsd" , i686_unknown_netbsd) ,
1569
+ ( "mipsel-unknown-netbsd" , mipsel_unknown_netbsd) ,
1569
1570
( "powerpc-unknown-netbsd" , powerpc_unknown_netbsd) ,
1570
1571
( "riscv64gc-unknown-netbsd" , riscv64gc_unknown_netbsd) ,
1571
1572
( "sparc64-unknown-netbsd" , sparc64_unknown_netbsd) ,
Original file line number Diff line number Diff line change @@ -396,6 +396,12 @@ impl Step for Llvm {
396
396
ldflags. shared . push ( " -latomic" ) ;
397
397
}
398
398
399
+ if target. starts_with ( "mips" ) && target. contains ( "netbsd" ) {
400
+ // LLVM wants 64-bit atomics, while mipsel is 32-bit only, so needs -latomic
401
+ ldflags. exe . push ( " -latomic" ) ;
402
+ ldflags. shared . push ( " -latomic" ) ;
403
+ }
404
+
399
405
if target. contains ( "msvc" ) {
400
406
cfg. define ( "LLVM_USE_CRT_DEBUG" , "MT" ) ;
401
407
cfg. define ( "LLVM_USE_CRT_RELEASE" , "MT" ) ;
Original file line number Diff line number Diff line change @@ -287,6 +287,7 @@ target | std | host | notes
287
287
` mips64el-unknown-linux-muslabi64 ` | ✓ | | MIPS64 (little endian) Linux, N64 ABI, musl libc
288
288
` mipsel-unknown-linux-gnu ` | ✓ | ✓ | MIPS (little endian) Linux (kernel 4.4, glibc 2.23)
289
289
` mipsel-unknown-linux-musl ` | ✓ | | MIPS (little endian) Linux with musl libc
290
+ [ ` mipsel-unknown-netbsd ` ] ( platform-support/netbsd.md ) | ✓ | ✓ | 32-bit MIPS (LE), requires mips32 cpu support
290
291
` mipsel-sony-psp ` | * | | MIPS (LE) Sony PlayStation Portable (PSP)
291
292
[ ` mipsel-sony-psx ` ] ( platform-support/mipsel-sony-psx.md ) | * | | MIPS (LE) Sony PlayStation 1 (PSX)
292
293
` mipsel-unknown-linux-uclibc ` | ✓ | | MIPS (LE) Linux with uClibc
You can’t perform that action at this time.
0 commit comments