]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/x86_64_linux_kernel.rs
Auto merge of #77618 - fusion-engineering-forks:windows-parker, r=Amanieu
[rust.git] / compiler / rustc_target / src / spec / x86_64_linux_kernel.rs
1 // This defines the amd64 target for the Linux Kernel. See the linux-kernel-base module for
2 // generic Linux kernel options.
3
4 use crate::spec::{CodeModel, LinkerFlavor, Target};
5
6 pub fn target() -> Target {
7     let mut base = super::linux_kernel_base::opts();
8     base.cpu = "x86-64".to_string();
9     base.max_atomic_width = Some(64);
10     base.features =
11         "-mmx,-sse,-sse2,-sse3,-ssse3,-sse4.1,-sse4.2,-3dnow,-3dnowa,-avx,-avx2,+soft-float"
12             .to_string();
13     base.code_model = Some(CodeModel::Kernel);
14     base.pre_link_args.get_mut(&LinkerFlavor::Gcc).unwrap().push("-m64".to_string());
15
16     Target {
17         // FIXME: Some dispute, the linux-on-clang folks think this should use "Linux"
18         llvm_target: "x86_64-elf".to_string(),
19         pointer_width: 64,
20         data_layout: "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
21             .to_string(),
22         arch: "x86_64".to_string(),
23
24         options: base,
25     }
26 }