Author: nbd Date: 2015-07-19 16:59:26 +0200 (Sun, 19 Jul 2015) New Revision: 46424
Modified: trunk/tools/mkimage/Makefile Log: 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 <[email protected]> Modified: trunk/tools/mkimage/Makefile =================================================================== --- trunk/tools/mkimage/Makefile 2015-07-19 14:59:16 UTC (rev 46423) +++ trunk/tools/mkimage/Makefile 2015-07-19 14:59:26 UTC (rev 46424) @@ -31,8 +31,8 @@ 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 _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
