Skip to content

Commit

Permalink
Rollup merge of #133239 - kleisauke:fix-llvm-triple-x86_64-win7-windo…
Browse files Browse the repository at this point in the history
…ws-msvc, r=ChrisDenton

Fix LLVM target triple for `x86_64-win7-windows-msvc`

The vendor field needs to be `pc` rather than `win7`.
  • Loading branch information
matthiaskrgr authored Nov 20, 2024
2 parents 2595118 + 57ed8e8 commit d332656
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit d332656

Please sign in to comment.