]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/i686_pc_windows_msvc.rs
Rollup merge of #61675 - fintelia:riscv-frame-pointer, r=nagisa
[rust.git] / src / librustc_target / spec / i686_pc_windows_msvc.rs
1 use crate::spec::{LinkerFlavor, Target, TargetResult};
2
3 pub fn target() -> TargetResult {
4     let mut base = super::windows_msvc_base::opts();
5     base.cpu = "pentium4".to_string();
6     base.max_atomic_width = Some(64);
7
8     // Mark all dynamic libraries and executables as compatible with the larger 4GiB address
9     // space available to x86 Windows binaries on x86_64.
10     base.pre_link_args
11         .get_mut(&LinkerFlavor::Msvc).unwrap().push("/LARGEADDRESSAWARE".to_string());
12
13     // Ensure the linker will only produce an image if it can also produce a table of
14     // the image's safe exception handlers.
15     // https://msdn.microsoft.com/en-us/library/9a89h429.aspx
16     base.pre_link_args.get_mut(&LinkerFlavor::Msvc).unwrap().push("/SAFESEH".to_string());
17
18     Ok(Target {
19         llvm_target: "i686-pc-windows-msvc".to_string(),
20         target_endian: "little".to_string(),
21         target_pointer_width: "32".to_string(),
22         target_c_int_width: "32".to_string(),
23         data_layout: "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32".to_string(),
24         arch: "x86".to_string(),
25         target_os: "windows".to_string(),
26         target_env: "msvc".to_string(),
27         target_vendor: "pc".to_string(),
28         linker_flavor: LinkerFlavor::Msvc,
29         options: base,
30     })
31 }