Bruce Leidl
be34ea65f3
- removed layers meta-rust and meta-clang - added new dependencies to Makefile - changed override syntax across all recipe files - updated conf files from hardknott to kirkstone - SRC_URI git URLS fixed to always include branch and protocol - LICENSE fields updated with new naming convention - updated citadel-tools dependencies - upgraded mozjs to mozjs-91 No longer needed because poky includes newer version (or new enough): - glib-2.0 - libgudev - xorgproto - libxfixes - libinput - wayland-protocols - vte
44 lines
1.2 KiB
Diff
44 lines
1.2 KiB
Diff
From 0133ddb86eb6e0741e02b0032c41468db6438530 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex@linutronix.de>
|
|
Date: Fri, 1 Oct 2021 13:01:10 +0200
|
|
Subject: [PATCH] moz.configure: do not look for llvm-objdump
|
|
|
|
This avoid dragging in a dependency that isn't even needed
|
|
for js builds.
|
|
|
|
Upstream-Status: Inappropriate [oe-core specific]
|
|
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
|
---
|
|
moz.configure | 18 +++++++++---------
|
|
1 file changed, 9 insertions(+), 9 deletions(-)
|
|
|
|
diff --git a/moz.configure b/moz.configure
|
|
index fc66b520d0..15de9a2ee0 100755
|
|
--- a/moz.configure
|
|
+++ b/moz.configure
|
|
@@ -994,15 +994,15 @@ def llvm_objdump(host_c_compiler, c_compiler, bindgen_config_paths):
|
|
return (llvm_objdump,)
|
|
|
|
|
|
-llvm_objdump = check_prog(
|
|
- "LLVM_OBJDUMP",
|
|
- llvm_objdump,
|
|
- what="llvm-objdump",
|
|
- when="--enable-compile-environment",
|
|
- paths=clang_search_path,
|
|
-)
|
|
-
|
|
-add_old_configure_assignment("LLVM_OBJDUMP", llvm_objdump)
|
|
+#llvm_objdump = check_prog(
|
|
+# "LLVM_OBJDUMP",
|
|
+# llvm_objdump,
|
|
+# what="llvm-objdump",
|
|
+# when="--enable-compile-environment",
|
|
+# paths=clang_search_path,
|
|
+#)
|
|
+
|
|
+#add_old_configure_assignment("LLVM_OBJDUMP", llvm_objdump)
|
|
|
|
|
|
option("--enable-dtrace", help="Build with dtrace support")
|