diff options
author | Jean-Philippe Brucker <jean-philippe@linaro.org> | 2020-11-10 19:43:05 +0300 |
---|---|---|
committer | Andrii Nakryiko <andrii@kernel.org> | 2020-11-11 23:18:22 +0300 |
commit | c8a950d0d3b926a02c7b2e713850d38217cec3d1 (patch) | |
tree | 92ccac74b4a9b1bd882a570f2a867908d2e66b50 /tools/build | |
parent | 7112d127984bd7b0c8ded7973b358829f16735f5 (diff) | |
download | linux-c8a950d0d3b926a02c7b2e713850d38217cec3d1.tar.xz |
tools: Factor HOSTCC, HOSTLD, HOSTAR definitions
Several Makefiles in tools/ need to define the host toolchain variables.
Move their definition to tools/scripts/Makefile.include
Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Link: https://lore.kernel.org/bpf/20201110164310.2600671-2-jean-philippe@linaro.org
Diffstat (limited to 'tools/build')
-rw-r--r-- | tools/build/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/build/Makefile b/tools/build/Makefile index 722f1700d96a..bae48e6fa995 100644 --- a/tools/build/Makefile +++ b/tools/build/Makefile @@ -15,10 +15,6 @@ 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) |