summaryrefslogtreecommitdiffstats
path: root/meta/classes/native.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-07-25 11:59:19 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-07-28 11:07:33 +0100
commit5bb7d810f039812e9c963309ef81c4e6dc1c9e66 (patch)
tree13b63f9b933072a46a67abcb9972c03f2158d769 /meta/classes/native.bbclass
parente75e781a480d37898e8e38dc993dd8daf0dee8b3 (diff)
downloadpoky-5bb7d810f039812e9c963309ef81c4e6dc1c9e66.tar.gz
native: Clear TUNE_FEATURES/ABIEXTENSION
Some recipes reference these. Rather than continually trying to chase down the references and taskhash issues, clear the variables for an easier life and simpler code. These wouldn't convey anything useful in a native build. (From OE-Core rev: f8edeead263708889d31a7ff578ef8274cb678b4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/native.bbclass')
-rw-r--r--meta/classes/native.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass
index fc7422c5d7..5a273cdebb 100644
--- a/meta/classes/native.bbclass
+++ b/meta/classes/native.bbclass
@@ -23,6 +23,8 @@ TARGET_CFLAGS = "${BUILD_CFLAGS}"
23TARGET_CXXFLAGS = "${BUILD_CXXFLAGS}" 23TARGET_CXXFLAGS = "${BUILD_CXXFLAGS}"
24TARGET_LDFLAGS = "${BUILD_LDFLAGS}" 24TARGET_LDFLAGS = "${BUILD_LDFLAGS}"
25TARGET_FPU = "" 25TARGET_FPU = ""
26TUNE_FEATURES = ""
27ABIEXTENSION = ""
26 28
27HOST_ARCH = "${BUILD_ARCH}" 29HOST_ARCH = "${BUILD_ARCH}"
28HOST_OS = "${BUILD_OS}" 30HOST_OS = "${BUILD_OS}"