Skip to content

Commit 76f884a

Browse files
committedMay 7, 2021
rename LLVM target for RustyHermit
RustyHermit ist is a library operating system. In this case, we link a static library as kernel to the application. The final result is a bootable application. The library and the application have to use the same target. Currently, the targets are different (see also https://github.com/rust-lang/rust/blob/master/compiler/rustc_target/src/spec/x86_64_unknown_hermit.rs). Consequently, this commit change the LLVM target to 'hermit'. This kernel spec is needed to disable the usage of FPU registers, which are not allowed in kernel space. In contrast to Linux, everything is running in ring 0 and also in the same address space. Signed-off-by: Stefan Lankes <slankes@eonerc.rwth-aachen.de>
1 parent dc5f2cd commit 76f884a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎compiler/rustc_target/src/spec/x86_64_unknown_none_hermitkernel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub fn target() -> Target {
1111
base.stack_probes = StackProbeType::Call;
1212

1313
Target {
14-
llvm_target: "x86_64-unknown-none-elf".to_string(),
14+
llvm_target: "x86_64-unknown-hermit".to_string(),
1515
pointer_width: 64,
1616
data_layout: "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
1717
.to_string(),

0 commit comments

Comments
 (0)
Please sign in to comment.