Fix: Properly set vendor in i686-win7-windows-msvc target

This commit is contained in:
roblabla 2024-01-03 14:01:35 +01:00
parent e836561465
commit d9d23fa68d

View File

@ -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),