]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/i686_pc_windows_msvc.rs
Rollup merge of #95446 - notseanray:master, r=Mark-Simulacrum
[rust.git] / compiler / rustc_target / src / spec / i686_pc_windows_msvc.rs
1 use crate::spec::{LinkerFlavor, LldFlavor, Target};
2
3 pub fn target() -> Target {
4     let mut base = super::windows_msvc_base::opts();
5     base.cpu = "pentium4".into();
6     base.max_atomic_width = Some(64);
7
8     let pre_link_args_msvc = vec![
9         // Mark all dynamic libraries and executables as compatible with the larger 4GiB address
10         // space available to x86 Windows binaries on x86_64.
11         "/LARGEADDRESSAWARE".into(),
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         "/SAFESEH".into(),
16     ];
17     base.pre_link_args.entry(LinkerFlavor::Msvc).or_default().extend(pre_link_args_msvc.clone());
18     base.pre_link_args
19         .entry(LinkerFlavor::Lld(LldFlavor::Link))
20         .or_default()
21         .extend(pre_link_args_msvc);
22     // Workaround for #95429
23     base.has_thread_local = false;
24
25     Target {
26         llvm_target: "i686-pc-windows-msvc".into(),
27         pointer_width: 32,
28         data_layout: "e-m:x-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
29             i64:64-f80:128-n8:16:32-a:0:32-S32"
30             .into(),
31         arch: "x86".into(),
32         options: base,
33     }
34 }