diff options
| author | roblabla <unfiltered@roblab.la> | 2024-01-03 14:01:35 +0100 |
|---|---|---|
| committer | roblabla <unfiltered@roblab.la> | 2024-01-03 14:09:31 +0100 |
| commit | d9d23fa68d9b6349c01ff1f06e34f9ca384cdc97 (patch) | |
| tree | eda11c981e5fca0cf7bcb98902d1089330371d04 /compiler | |
| parent | e836561465da9977780626fd1a91f15bdf247985 (diff) | |
| download | rust-d9d23fa68d9b6349c01ff1f06e34f9ca384cdc97.tar.gz rust-d9d23fa68d9b6349c01ff1f06e34f9ca384cdc97.zip | |
Fix: Properly set vendor in i686-win7-windows-msvc target
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/rustc_target/src/spec/targets/i686_win7_windows_msvc.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_target/src/spec/targets/i686_win7_windows_msvc.rs b/compiler/rustc_target/src/spec/targets/i686_win7_windows_msvc.rs index ba80c23196e..5b91682e168 100644 --- a/compiler/rustc_target/src/spec/targets/i686_win7_windows_msvc.rs +++ b/compiler/rustc_target/src/spec/targets/i686_win7_windows_msvc.rs @@ -4,6 +4,7 @@ pub fn target() -> Target { let mut base = base::windows_msvc::opts(); base.cpu = "pentium4".into(); base.max_atomic_width = Some(64); + base.vendor = "win7".into(); base.add_pre_link_args( LinkerFlavor::Msvc(Lld::No), |
