Fix LLVM target triple for x86_64-win7-windows-msvc
The vendor field needs to be `pc` rather than `win7`.
This commit is contained in:
parent
70e814bd9e
commit
57ed8e8436
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ pub(crate) fn target() -> Target {
|
|||
base.vendor = "win7".into();
|
||||
|
||||
Target {
|
||||
llvm_target: "x86_64-win7-windows-msvc".into(),
|
||||
llvm_target: "x86_64-pc-windows-msvc".into(),
|
||||
metadata: crate::spec::TargetMetadata {
|
||||
description: Some("64-bit Windows 7 support".into()),
|
||||
tier: Some(3),
|
||||
|
|
Loading…
Add table
Reference in a new issue