Skip to content

Commit

Permalink
Fix LLVM target triple for x86_64-win7-windows-msvc
Browse files Browse the repository at this point in the history
The vendor field needs to be `pc` rather than `win7`.
  • Loading branch information
kleisauke committed Nov 20, 2024
1 parent 70e814b commit 57ed8e8
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 57ed8e8

Please sign in to comment.