From: Felix Fietkau Date: Thu, 26 Nov 2015 10:39:41 +0000 (+0000) Subject: mkimage: cross compile fix: pass HOST_*FLAGS in to uboot's makefile X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=d3ca80daaebb60d12e00de83a5ba6a2478c0f635;p=openwrt%2Fsvn-archive%2Fopenwrt.git mkimage: cross compile fix: pass HOST_*FLAGS in to uboot's makefile The HOST_*FLAGS are for compiling programs which will run on the machine that is running the build. Setting these flags is frequently required for unusual cross-compiles. Signed-off-by: Lawrence D'Anna Backport of r46424 SVN-Revision: 47651 --- diff --git a/tools/mkimage/Makefile b/tools/mkimage/Makefile index a65eedfcc6..f73cc56318 100644 --- a/tools/mkimage/Makefile +++ b/tools/mkimage/Makefile @@ -31,8 +31,8 @@ define Host/Prepare endef define Host/Compile - $(MAKE) -C $(HOST_BUILD_DIR) defconfig - $(MAKE) -C $(HOST_BUILD_DIR) tools-only + $(MAKE) -C $(HOST_BUILD_DIR) defconfig HOSTCFLAGS="$(HOST_CPPFLAGS) $(HOST_CFLAGS)" HOSTLDFLAGS="$(HOST_LDFLAGS)" + $(MAKE) -C $(HOST_BUILD_DIR) tools-only HOSTCFLAGS="$(HOST_CPPFLAGS) $(HOST_CFLAGS)" HOSTLDFLAGS="$(HOST_LDFLAGS)" endef define Host/Install