diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-12-05 15:27:20 +0100 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-12-12 04:20:35 -1000 |
commit | eadd5efcb3a7a78e9b89be935ac1649dc33cbad6 (patch) | |
tree | 5c4f92b08ac6a18ae54a4b295c118d00177cc735 | |
parent | e01044d629f226040dbb470c8f20d6433d7fbb33 (diff) | |
download | poky-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.bbclass | 2 |
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}" | |||
23 | TARGET_CXXFLAGS = "${BUILD_CXXFLAGS}" | 23 | TARGET_CXXFLAGS = "${BUILD_CXXFLAGS}" |
24 | TARGET_LDFLAGS = "${BUILD_LDFLAGS}" | 24 | TARGET_LDFLAGS = "${BUILD_LDFLAGS}" |
25 | TARGET_FPU = "" | 25 | TARGET_FPU = "" |
26 | TUNE_FEATURES = "" | ||
27 | ABIEXTENSION = "" | ||
26 | 28 | ||
27 | HOST_ARCH = "${BUILD_ARCH}" | 29 | HOST_ARCH = "${BUILD_ARCH}" |
28 | HOST_OS = "${BUILD_OS}" | 30 | HOST_OS = "${BUILD_OS}" |