]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/x86_64_pc_windows_gnu.rs
Rollup merge of #58034 - faern:stabilize-time-checked-add, r=alexcrichton
[rust.git] / src / librustc_target / spec / x86_64_pc_windows_gnu.rs
1 use crate::spec::{LinkerFlavor, Target, TargetResult};
2
3 pub fn target() -> TargetResult {
4     let mut base = super::windows_base::opts();
5     base.cpu = "x86-64".to_string();
6     base.pre_link_args.get_mut(&LinkerFlavor::Gcc).unwrap().push("-m64".to_string());
7     base.max_atomic_width = Some(64);
8
9     Ok(Target {
10         llvm_target: "x86_64-pc-windows-gnu".to_string(),
11         target_endian: "little".to_string(),
12         target_pointer_width: "64".to_string(),
13         target_c_int_width: "32".to_string(),
14         data_layout: "e-m:w-i64:64-f80:128-n8:16:32:64-S128".to_string(),
15         arch: "x86_64".to_string(),
16         target_os: "windows".to_string(),
17         target_env: "gnu".to_string(),
18         target_vendor: "pc".to_string(),
19         linker_flavor: LinkerFlavor::Gcc,
20         options: base,
21     })
22 }