While executing ui testing observed failures due to below warning,
"'+v8' is not a recognized feature for this target (ignoring feature)"
Same got fixed by backporting below patch,
http://git.yoctoproject.org/cgit.cgi/poky-contrib/commit/?h=rmacleod/rust-wip-2021-02-16&id=f243e4bbd5414ce519336753a68c53ee60cbe89e
Signed-off-by: Vinay Kumar <redacted>
---
meta/recipes-devtools/rust/rust.inc | 3 ---
1 file changed, 3 deletions(-)
diff --git a/meta/recipes-devtools/rust/rust.inc b/meta/recipes-devtools/rust/rust.inc
index ee3176b559..fb20bbd0fb 100644
--- a/meta/recipes-devtools/rust/rust.inc
+++ b/meta/recipes-devtools/rust/rust.inc
@@ -64,9 +64,6 @@ def llvm_features_from_tune(d):
if 'neon' in feat:
f.append("+neon")
- if 'aarch64' in feat:
- f.append("+v8")
-
if 'mips32' in feat:
f.append("+mips32")
--
2.17.1