From: Richard Purdie Date: Wed, 27 Jul 2022 10:19:27 +0000 (+0100) Subject: nativesdk: Clear TUNE_FEATURES X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~3431 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e5079e434504a3a22b609f7ddbb7f4c533c4cdb;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git nativesdk: Clear TUNE_FEATURES Similarly to what native.bbclass does, clear TUNE_FEATURES since these aren't appropriate to the nativesdk build. This saves us having to change down signature issues due to data in this variable. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/nativesdk.bbclass b/meta/classes/nativesdk.bbclass index f8e96075134..e46739e325b 100644 --- a/meta/classes/nativesdk.bbclass +++ b/meta/classes/nativesdk.bbclass @@ -55,6 +55,7 @@ TARGET_CXXFLAGS = "${BUILDSDK_CXXFLAGS}" TARGET_LDFLAGS = "${BUILDSDK_LDFLAGS}" TARGET_FPU = "" EXTRA_OECONF_GCC_FLOAT = "" +TUNE_FEATURES = "" CPPFLAGS = "${BUILDSDK_CPPFLAGS}" CFLAGS = "${BUILDSDK_CFLAGS}"