Skip to content

Commit 7a8a400

Browse files
authored
Merge pull request #28 from Rust-for-Linux/rust-fix-panic
Forbid rustc from using -f{function,data}-sections (fixes #20 panic)
2 parents 9ed86cb + 096dd7c commit 7a8a400

File tree

3 files changed

+37
-4
lines changed

3 files changed

+37
-4
lines changed

Makefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -510,11 +510,9 @@ KBUILD_CFLAGS := -Wall -Wundef -Werror=strict-prototypes -Wno-trigraphs \
510510
KBUILD_CPPFLAGS := -D__KERNEL__
511511
KBUILD_RUSTCFLAGS :=
512512
# TODO: a simple way to update `Cargo.lock` when we add a new driver
513-
# TODO: another option is using explicit target specs, e.g.
514-
# `--target=$(srctree)/arch/$(SRCARCH)/rust-target-spec.json`
515513
KBUILD_CARGOFLAGS := $(CARGO_VERBOSE) --locked \
516514
-Z build-std=core,alloc -Z unstable-options \
517-
--out-dir=out --target=x86_64-linux-kernel
515+
--out-dir=out --target=$(PWD)/$(srctree)/arch/$(SRCARCH)/rust/target.json
518516
KBUILD_AFLAGS_KERNEL :=
519517
KBUILD_CFLAGS_KERNEL :=
520518
KBUILD_RUSTCFLAGS_KERNEL :=

arch/x86/rust/target.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"arch": "x86_64",
3+
"code-model": "kernel",
4+
"cpu": "x86-64",
5+
"data-layout": "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128",
6+
"disable-redzone": true,
7+
"eliminate-frame-pointer": false,
8+
"env": "gnu",
9+
"features": "-mmx,-sse,-sse2,-sse3,-ssse3,-sse4.1,-sse4.2,-3dnow,-3dnowa,-avx,-avx2,+soft-float",
10+
"function-sections": false,
11+
"is-builtin": true,
12+
"linker-flavor": "gcc",
13+
"linker-is-gnu": true,
14+
"llvm-target": "x86_64-elf",
15+
"max-atomic-width": 64,
16+
"needs-plt": true,
17+
"os": "none",
18+
"panic-strategy": "abort",
19+
"position-independent-executables": true,
20+
"pre-link-args": {
21+
"gcc": [
22+
"-Wl,--as-needed",
23+
"-Wl,-z,noexecstack",
24+
"-m64"
25+
]
26+
},
27+
"relocation-model": "static",
28+
"relro-level": "full",
29+
"stack-probes": true,
30+
"target-c-int-width": "32",
31+
"target-endian": "little",
32+
"target-pointer-width": "64",
33+
"vendor": "unknown"
34+
}

rust/kernel/build.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ fn main() {
9696

9797
let kernel_args = prepare_cflags(&cflags, &kernel_dir);
9898

99-
let target = env::var("TARGET").unwrap();
99+
// TODO: pass the proper triple to bindgen
100+
let target = "x86_64-linux-kernel";
100101

101102
let mut builder = bindgen::Builder::default()
102103
.use_core()

0 commit comments

Comments
 (0)