diff options
author | Ross Burton <ross@burtonini.com> | 2021-03-25 17:39:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-03-28 22:28:27 +0100 |
commit | a740ac1c07979e6ab008bb7632fb5e16e2821bd0 (patch) | |
tree | d8e270ba91a9efa17e9376f9d62d13398198869d /meta/conf/bitbake.conf | |
parent | bbd6098ef48c96141267c8e22d0694220a528067 (diff) | |
download | poky-a740ac1c07979e6ab008bb7632fb5e16e2821bd0.tar.gz |
bitbake.conf: ensure BUILD_* tools match target tools
Add a few more tools to the BUILD_* list, to match the target tool list.
(From OE-Core rev: 633393830aea0120c4a2a165917040223630c49d)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index fa88e7be4d..d87d7cafb6 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -541,7 +541,10 @@ export BUILD_AR = "${BUILD_PREFIX}ar" | |||
541 | export BUILD_AS = "${BUILD_PREFIX}as ${BUILD_AS_ARCH}" | 541 | export BUILD_AS = "${BUILD_PREFIX}as ${BUILD_AS_ARCH}" |
542 | export BUILD_RANLIB = "${BUILD_PREFIX}ranlib" | 542 | export BUILD_RANLIB = "${BUILD_PREFIX}ranlib" |
543 | export BUILD_STRIP = "${BUILD_PREFIX}strip" | 543 | export BUILD_STRIP = "${BUILD_PREFIX}strip" |
544 | BUILD_OBJCOPY = "${BUILD_PREFIX}objcopy" | ||
545 | BUILD_OBJDUMP = "${BUILD_PREFIX}objdump" | ||
544 | export BUILD_NM = "${BUILD_PREFIX}nm" | 546 | export BUILD_NM = "${BUILD_PREFIX}nm" |
547 | BUILD_READELF = "${BUILD_PREFIX}readelf" | ||
545 | 548 | ||
546 | export MAKE = "make" | 549 | export MAKE = "make" |
547 | EXTRA_OEMAKE = "" | 550 | EXTRA_OEMAKE = "" |