]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/i686_pc_windows_msvc.rs
Rollup merge of #67686 - ssomers:keys_start_slasher, r=Mark-Simulacrum
[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.get_mut(&LinkerFlavor::Msvc).unwrap().push("/LARGEADDRESSAWARE".to_string());
11
12     // Ensure the linker will only produce an image if it can also produce a table of
13     // the image's safe exception handlers.
14     // https://docs.microsoft.com/en-us/cpp/build/reference/safeseh-image-has-safe-exception-handlers
15     base.pre_link_args.get_mut(&LinkerFlavor::Msvc).unwrap().push("/SAFESEH".to_string());
16
17     Ok(Target {
18         llvm_target: "i686-pc-windows-msvc".to_string(),
19         target_endian: "little".to_string(),
20         target_pointer_width: "32".to_string(),
21         target_c_int_width: "32".to_string(),
22         data_layout: "e-m:x-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
23             i64:64-f80:32-n8:16:32-a:0:32-S32"
24             .to_string(),
25         arch: "x86".to_string(),
26         target_os: "windows".to_string(),
27         target_env: "msvc".to_string(),
28         target_vendor: "pc".to_string(),
29         linker_flavor: LinkerFlavor::Msvc,
30         options: base,
31     })
32 }