Skip to content

Commit ad063e8

Browse files
authored
Unrolled build for rust-lang#117356
Rollup merge of rust-lang#117356 - he32:netbsd-mipsel, r=oli-obk Add support for mipsel-unknown-netbsd, 32-bit LE mips.
2 parents e6e931d + 5e6c313 commit ad063e8

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
}

compiler/rustc_target/src/spec/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1566,6 +1566,7 @@ supported_targets! {
15661566
("armv7-unknown-netbsd-eabihf", armv7_unknown_netbsd_eabihf),
15671567
("i586-unknown-netbsd", i586_unknown_netbsd),
15681568
("i686-unknown-netbsd", i686_unknown_netbsd),
1569+
("mipsel-unknown-netbsd", mipsel_unknown_netbsd),
15691570
("powerpc-unknown-netbsd", powerpc_unknown_netbsd),
15701571
("riscv64gc-unknown-netbsd", riscv64gc_unknown_netbsd),
15711572
("sparc64-unknown-netbsd", sparc64_unknown_netbsd),

src/bootstrap/src/core/build_steps/llvm.rs

+6
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,12 @@ impl Step for Llvm {
396396
ldflags.shared.push(" -latomic");
397397
}
398398

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+
399405
if target.contains("msvc") {
400406
cfg.define("LLVM_USE_CRT_DEBUG", "MT");
401407
cfg.define("LLVM_USE_CRT_RELEASE", "MT");

src/doc/rustc/src/platform-support.md

+1
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ target | std | host | notes
287287
`mips64el-unknown-linux-muslabi64` | ✓ | | MIPS64 (little endian) Linux, N64 ABI, musl libc
288288
`mipsel-unknown-linux-gnu` | ✓ | ✓ | MIPS (little endian) Linux (kernel 4.4, glibc 2.23)
289289
`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
290291
`mipsel-sony-psp` | * | | MIPS (LE) Sony PlayStation Portable (PSP)
291292
[`mipsel-sony-psx`](platform-support/mipsel-sony-psx.md) | * | | MIPS (LE) Sony PlayStation 1 (PSX)
292293
`mipsel-unknown-linux-uclibc` | ✓ | | MIPS (LE) Linux with uClibc

0 commit comments

Comments
 (0)