Skip to content

Commit d332656

Browse files
authored
Rollup merge of #133239 - kleisauke:fix-llvm-triple-x86_64-win7-windows-msvc, r=ChrisDenton
Fix LLVM target triple for `x86_64-win7-windows-msvc` The vendor field needs to be `pc` rather than `win7`.
2 parents 2595118 + 57ed8e8 commit d332656

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/spec/targets/x86_64_win7_windows_msvc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub(crate) fn target() -> Target {
88
base.vendor = "win7".into();
99

1010
Target {
11-
llvm_target: "x86_64-win7-windows-msvc".into(),
11+
llvm_target: "x86_64-pc-windows-msvc".into(),
1212
metadata: crate::spec::TargetMetadata {
1313
description: Some("64-bit Windows 7 support".into()),
1414
tier: Some(3),

0 commit comments

Comments
 (0)