diff options
author | 2013-08-02 09:33:54 +0200 | |
---|---|---|
committer | 2013-08-10 21:19:34 +0200 | |
commit | db443f263a6d51ce6da6557d825a453676f6c664 (patch) | |
tree | bb17f5e2f8224a93800ac82fe81ddd2274622bdc /support | |
parent | 2ba1014009b4b2b2db298e8a5615c8d8e92ef641 (diff) | |
download | buildroot-db443f263a6d51ce6da6557d825a453676f6c664.tar.gz buildroot-db443f263a6d51ce6da6557d825a453676f6c664.tar.bz2 |
host-ccache: turn into a proper dependency
This patch moves the host-ccache build target from BASE_TARGETS in Makefile
to an actual host prerequisite in support/dependencies. This causes
host-ccache to be built as part of the dependencies, before any real package
is built.
Since the dependencies are built without ccache anyway, there is no need to
set HOST_CCACHE_CONF_ENV anymore.
Suggested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Acked-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support')
-rw-r--r-- | support/dependencies/dependencies.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/support/dependencies/dependencies.mk b/support/dependencies/dependencies.mk index 934da40bba..4a220e0e02 100644 --- a/support/dependencies/dependencies.mk +++ b/support/dependencies/dependencies.mk @@ -20,6 +20,10 @@ ifeq ($(BR2_STRIP_sstrip),y) DEPENDENCIES_HOST_PREREQ+=host-sstrip endif +ifeq ($(BR2_CCACHE),y) +DEPENDENCIES_HOST_PREREQ += host-ccache +endif + core-dependencies: @HOSTCC="$(firstword $(HOSTCC))" MAKE="$(MAKE)" \ DL_TOOLS="$(sort $(DL_TOOLS_DEPENDENCIES))" \ |