From: Khem Raj Date: Sat, 2 Dec 2023 00:09:42 +0000 (-0800) Subject: rust-common.bbclass: Define rust arch for x32 platforms X-Git-Tag: yocto-5.2~4436 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02d6c89ca2e72e95d093282f5626e607060da588;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git rust-common.bbclass: Define rust arch for x32 platforms Signed-off-by: Khem Raj Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/meta/classes-recipe/rust-common.bbclass b/meta/classes-recipe/rust-common.bbclass index 3d73a370ec8..ae96d9c5b1f 100644 --- a/meta/classes-recipe/rust-common.bbclass +++ b/meta/classes-recipe/rust-common.bbclass @@ -63,6 +63,8 @@ def rust_base_triple(d, thing): # This catches ARM targets and appends the necessary hard float bits if os == "linux-gnueabi" or os == "linux-musleabi": libc = bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'hf', '', d) + elif os == "linux-gnux32" or os == "linux-muslx32": + libc = "" elif "musl" in os: libc = "-musl" os = "linux"