0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-21 13:49:34 +01:00

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`.
This commit is contained in:
Matthias Krüger 2024-11-20 15:48:28 +01:00 committed by GitHub
commit d3326564b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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