From 1d4067329d0b84f94aaf2f63d282bb9c99ba5557 Mon Sep 17 00:00:00 2001 From: Deepesh Varatharajan Date: Mon, 27 Oct 2025 22:24:18 -0700 Subject: [PATCH] rust-target-config: Fix ABI override for powerpc64le target Ensure the powerpc64le check is exclusive by using `elif`, preventing the powerpc64 condition from overriding it. This keeps the ABI as elfv2 for PPC64LE and fixes related build failures. Signed-off-by: Deepesh Varatharajan Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- meta/classes-recipe/rust-target-config.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/rust-target-config.bbclass b/meta/classes-recipe/rust-target-config.bbclass index 0c7e3c0090..9ce57843cf 100644 --- a/meta/classes-recipe/rust-target-config.bbclass +++ b/meta/classes-recipe/rust-target-config.bbclass @@ -405,7 +405,7 @@ def rust_gen_target(d, thing, wd, arch): tspec['llvm-abiname'] = "lp64d" if "powerpc64le" in tspec['llvm-target']: tspec['llvm-abiname'] = "elfv2" - if "powerpc64" in tspec['llvm-target']: + elif "powerpc64" in tspec['llvm-target']: tspec['llvm-abiname'] = "elfv1" tspec['vendor'] = "unknown" tspec['target-family'] = "unix" -- 2.47.3