summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-05 15:27:20 +0100
committerSteve Sakoman <steve@sakoman.com>2023-12-12 04:20:35 -1000
commiteadd5efcb3a7a78e9b89be935ac1649dc33cbad6 (patch)
tree5c4f92b08ac6a18ae54a4b295c118d00177cc735
parente01044d629f226040dbb470c8f20d6433d7fbb33 (diff)
downloadpoky-eadd5efcb3a7a78e9b89be935ac1649dc33cbad6.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: 09ecafaf0e128c4dea062d359de37cbef461aed2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit f8edeead263708889d31a7ff578ef8274cb678b4) Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
-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 4de96cd59b..56726301bd 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}"