diff options
Diffstat (limited to 'tools/build/Makefile')
-rw-r--r-- | tools/build/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/build/Makefile b/tools/build/Makefile index 0d5a0e3a8fa9..653faee2a055 100644 --- a/tools/build/Makefile +++ b/tools/build/Makefile @@ -14,6 +14,12 @@ endef $(call allow-override,CC,$(CROSS_COMPILE)gcc) $(call allow-override,LD,$(CROSS_COMPILE)ld) +HOSTCC ?= gcc +HOSTLD ?= ld +HOSTAR ?= ar + +export HOSTCC HOSTLD HOSTAR + ifeq ($(V),1) Q = else |