From: Martin Hicks Date: Tue, 1 Feb 2011 17:13:01 +0000 (-0500) Subject: Enable ccache for u-boot compile X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e3fb2ce122055fd34df7e1712700e5d72bdb40e4;p=buildroot.git Enable ccache for u-boot compile Just needed to pass in ccache as a prefix to the CROSS_TARGET variable. Signed-off-by: Martin Hicks Signed-off-by: Peter Korsgaard --- diff --git a/boot/u-boot/u-boot.mk b/boot/u-boot/u-boot.mk index d520bb80e8..2f890fa33f 100644 --- a/boot/u-boot/u-boot.mk +++ b/boot/u-boot/u-boot.mk @@ -130,7 +130,7 @@ $(U_BOOT_DIR)/$(U_BOOT_BIN): $(U_BOOT_DIR)/.header_modified CFLAGS="$(TARGET_CFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" \ $(U_BOOT_CONFIGURE_OPTS) \ - $(MAKE) CROSS_COMPILE="$(TARGET_CROSS)" ARCH=$(U_BOOT_ARCH) \ + $(MAKE) CROSS_COMPILE="$(CCACHE) $(TARGET_CROSS)" ARCH=$(U_BOOT_ARCH) \ $(U_BOOT_MAKE_OPT) -C $(U_BOOT_DIR) # Copy the result to the images/ directory