1
Fork 0

Fix armv7-sony-vita-newlibeabihf LLVM target triple

It was previously normalized by LLVM to `thumbv7a-vita-unknown-eabihf`,
which is probably wrong, as Vita is the OS.
This commit is contained in:
Mads Marquart 2025-03-12 09:47:11 +01:00
parent ebf0cf75d3
commit 65bd61d2fb

View file

@ -15,7 +15,7 @@ pub(crate) fn target() -> Target {
);
Target {
llvm_target: "thumbv7a-vita-eabihf".into(),
llvm_target: "thumbv7a-sony-vita-eabihf".into(),
metadata: TargetMetadata {
description: Some(
"Armv7-A Cortex-A9 Sony PlayStation Vita (requires VITASDK toolchain)".into(),