]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/x86_64_linux_kernel.rs
Rollup merge of #63630 - andjo403:bump_compiler, r=nikomatsakis
[rust.git] / src / librustc_target / 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::{LinkerFlavor, Target, TargetResult};
5
6 pub fn target() -> TargetResult {
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("kernel".to_string());
14     base.pre_link_args.get_mut(&LinkerFlavor::Gcc).unwrap().push("-m64".to_string());
15
16     Ok(Target {
17         // FIXME: Some dispute, the linux-on-clang folks think this should use "Linux"
18         llvm_target: "x86_64-elf".to_string(),
19         target_endian: "little".to_string(),
20         target_pointer_width: "64".to_string(),
21         target_c_int_width: "32".to_string(),
22         data_layout: "e-m:e-i64:64-f80:128-n8:16:32:64-S128".to_string(),
23         target_os: "none".to_string(),
24         target_env: "gnu".to_string(),
25         target_vendor: "unknown".to_string(),
26         arch: "x86_64".to_string(),
27         linker_flavor: LinkerFlavor::Gcc,
28
29         options: base,
30     })
31 }