mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
bitbake.conf: Fix missing NM definition
The definition of NM was missing, causing certain configure calls to revert to using the host system's version of NM. This can cause problems on some MIPS based targets, but is theoretically wrong everywhere. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
This commit is contained in:
@@ -403,6 +403,7 @@ export RANLIB = "${HOST_PREFIX}ranlib"
|
||||
export STRIP = "${HOST_PREFIX}strip"
|
||||
export OBJCOPY = "${HOST_PREFIX}objcopy"
|
||||
export OBJDUMP = "${HOST_PREFIX}objdump"
|
||||
export NM = "${HOST_PREFIX}nm"
|
||||
PYTHON = "${@sys.executable}"
|
||||
|
||||
export BUILD_CC = "${CCACHE}${BUILD_PREFIX}gcc ${BUILD_CC_ARCH}"
|
||||
@@ -414,6 +415,7 @@ export BUILD_CCLD = "${BUILD_PREFIX}gcc"
|
||||
export BUILD_AR = "${BUILD_PREFIX}ar"
|
||||
export BUILD_RANLIB = "${BUILD_PREFIX}ranlib"
|
||||
export BUILD_STRIP = "${BUILD_PREFIX}strip"
|
||||
export BUILD_NM = "${BUILD_PREFIX}nm"
|
||||
|
||||
export MAKE = "make"
|
||||
EXTRA_OEMAKE = "-e MAKEFLAGS="
|
||||
|
||||
Reference in New Issue
Block a user