summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes-recipe/rust-common.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes-recipe/rust-common.bbclass b/meta/classes-recipe/rust-common.bbclass
index 3d73a370ec..ae96d9c5b1 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):
63 # This catches ARM targets and appends the necessary hard float bits 63 # This catches ARM targets and appends the necessary hard float bits
64 if os == "linux-gnueabi" or os == "linux-musleabi": 64 if os == "linux-gnueabi" or os == "linux-musleabi":
65 libc = bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'hf', '', d) 65 libc = bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'hf', '', d)
66 elif os == "linux-gnux32" or os == "linux-muslx32":
67 libc = ""
66 elif "musl" in os: 68 elif "musl" in os:
67 libc = "-musl" 69 libc = "-musl"
68 os = "linux" 70 os = "linux"