From dd0c457ce2b2b492aebc92072535ce7becea8da6 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 20 Sep 2021 19:06:11 +0100 Subject: [PATCH] arm/fvp: don't inhibit default dependencies The FVPs are precompiled binaries so we can theoretically avoid the default dependencies (gcc and friends), but this means that packaging doesn't succeed for non-native builds as objcopy (from binutils-cross) is needed during do_package. Until oe-core is fixed to depend on binutils-cross, don't disable the default dependencies. Change-Id: I9ec292d21c4f9db4e02587b7f58f46852cbc2c3d Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- meta-arm/recipes-devtools/fvp/fvp-common.inc | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta-arm/recipes-devtools/fvp/fvp-common.inc b/meta-arm/recipes-devtools/fvp/fvp-common.inc index d6fbf871..82b82675 100644 --- a/meta-arm/recipes-devtools/fvp/fvp-common.inc +++ b/meta-arm/recipes-devtools/fvp/fvp-common.inc @@ -31,6 +31,4 @@ INSANE_SKIP:${PN} += "file-rdeps" # FVP brings its own standard library so don't let it be used as a shlib provider PRIVATE_LIBS = "libgcc_s.so.1 libstdc++.so.6" -INHIBIT_DEFAULT_DEPS = "1" - BBCLASSEXTEND = "native nativesdk"