* [Buildroot] [PATCH] ccache: allow for BR2_CCACHE_DIR environment override
@ 2015-10-15 13:24 gustavo.zacarias at free-electrons.com
2015-10-15 21:36 ` Arnout Vandecappelle
2015-10-17 14:32 ` Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: gustavo.zacarias at free-electrons.com @ 2015-10-15 13:24 UTC (permalink / raw)
To: buildroot
From: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
Allow the BR2_CCACHE_DIR .config option to be overriden by the
BR2_CCACHE_DIR env variable.
This is useful for big projects where in some cases the developers home
directory might be a NFS mount (slow) and real production builds aren't.
Update documentation accordingly as well.
Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
---
Makefile | 6 ++++--
docs/manual/common-usage.txt | 3 +++
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 181d446..5bf1538 100644
--- a/Makefile
+++ b/Makefile
@@ -183,7 +183,9 @@ endif
ifneq ($(BR2_DL_DIR),)
DL_DIR := $(BR2_DL_DIR)
endif
-
+ifneq ($(BR2_CCACHE_DIR),)
+BR_CACHE_DIR := $(BR2_CCACHE_DIR)
+endif
# Need that early, before we scan packages
# Avoids doing the $(or...) everytime
@@ -371,7 +373,7 @@ TARGET_DIR_WARNING_FILE = $(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
ifeq ($(BR2_CCACHE),y)
CCACHE := $(HOST_DIR)/usr/bin/ccache
-BR_CACHE_DIR = $(call qstrip,$(BR2_CCACHE_DIR))
+BR_CACHE_DIR ?= $(call qstrip,$(BR2_CCACHE_DIR))
export BR_CACHE_DIR
HOSTCC := $(CCACHE) $(HOSTCC)
HOSTCXX := $(CCACHE) $(HOSTCXX)
diff --git a/docs/manual/common-usage.txt b/docs/manual/common-usage.txt
index 5b27b1f..51b6a3e 100644
--- a/docs/manual/common-usage.txt
+++ b/docs/manual/common-usage.txt
@@ -84,6 +84,9 @@ to +make+ or set in the environment:
configuration interface, so through the Buildroot +.config+ file; this
is the recommended way of setting it.
+
+* +BR2_CCACHE_DIR+ to override the directory where
+ Buildroot stores the cached files when using ccache.
+ +
* +BR2_DL_DIR+ to override the directory in which
Buildroot stores/retrieves downloaded files
+
--
2.4.9
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] ccache: allow for BR2_CCACHE_DIR environment override
2015-10-15 13:24 [Buildroot] [PATCH] ccache: allow for BR2_CCACHE_DIR environment override gustavo.zacarias at free-electrons.com
@ 2015-10-15 21:36 ` Arnout Vandecappelle
2015-10-17 14:32 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2015-10-15 21:36 UTC (permalink / raw)
To: buildroot
On 15-10-15 15:24, gustavo.zacarias at free-electrons.com wrote:
> From: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
>
> Allow the BR2_CCACHE_DIR .config option to be overriden by the
> BR2_CCACHE_DIR env variable.
> This is useful for big projects where in some cases the developers home
> directory might be a NFS mount (slow) and real production builds aren't.
>
> Update documentation accordingly as well.
>
> Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
I initially thought: why not set the default in the .config file based on the
environment. However, this approach is really a lot simpler, so:
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
One more remark below.
> ---
> Makefile | 6 ++++--
> docs/manual/common-usage.txt | 3 +++
> 2 files changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index 181d446..5bf1538 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -183,7 +183,9 @@ endif
> ifneq ($(BR2_DL_DIR),)
> DL_DIR := $(BR2_DL_DIR)
> endif
> -
> +ifneq ($(BR2_CCACHE_DIR),)
> +BR_CACHE_DIR := $(BR2_CCACHE_DIR)
> +endif
>
> # Need that early, before we scan packages
> # Avoids doing the $(or...) everytime
> @@ -371,7 +373,7 @@ TARGET_DIR_WARNING_FILE = $(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
>
> ifeq ($(BR2_CCACHE),y)
> CCACHE := $(HOST_DIR)/usr/bin/ccache
> -BR_CACHE_DIR = $(call qstrip,$(BR2_CCACHE_DIR))
> +BR_CACHE_DIR ?= $(call qstrip,$(BR2_CCACHE_DIR))
> export BR_CACHE_DIR
> HOSTCC := $(CCACHE) $(HOSTCC)
> HOSTCXX := $(CCACHE) $(HOSTCXX)
> diff --git a/docs/manual/common-usage.txt b/docs/manual/common-usage.txt
> index 5b27b1f..51b6a3e 100644
> --- a/docs/manual/common-usage.txt
> +++ b/docs/manual/common-usage.txt
> @@ -84,6 +84,9 @@ to +make+ or set in the environment:
> configuration interface, so through the Buildroot +.config+ file; this
> is the recommended way of setting it.
> +
> +* +BR2_CCACHE_DIR+ to override the directory where
> + Buildroot stores the cached files when using ccache.
> + +
It could be useful to add this to ccache-support.txt as well.
Regards,
Arnout
> * +BR2_DL_DIR+ to override the directory in which
> Buildroot stores/retrieves downloaded files
> +
>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] ccache: allow for BR2_CCACHE_DIR environment override
2015-10-15 13:24 [Buildroot] [PATCH] ccache: allow for BR2_CCACHE_DIR environment override gustavo.zacarias at free-electrons.com
2015-10-15 21:36 ` Arnout Vandecappelle
@ 2015-10-17 14:32 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-10-17 14:32 UTC (permalink / raw)
To: buildroot
Dear gustavo.zacarias at free-electrons.com,
On Thu, 15 Oct 2015 10:24:39 -0300, gustavo.zacarias at free-electrons.com
wrote:
> From: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
>
> Allow the BR2_CCACHE_DIR .config option to be overriden by the
> BR2_CCACHE_DIR env variable.
> This is useful for big projects where in some cases the developers home
> directory might be a NFS mount (slow) and real production builds aren't.
>
> Update documentation accordingly as well.
>
> Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
> ---
> Makefile | 6 ++++--
> docs/manual/common-usage.txt | 3 +++
> 2 files changed, 7 insertions(+), 2 deletions(-)
Applied, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-10-17 14:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-15 13:24 [Buildroot] [PATCH] ccache: allow for BR2_CCACHE_DIR environment override gustavo.zacarias at free-electrons.com
2015-10-15 21:36 ` Arnout Vandecappelle
2015-10-17 14:32 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox