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/power/acpi | |
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/power/acpi')
-rw-r--r-- | tools/power/acpi/Makefile.config | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/power/acpi/Makefile.config b/tools/power/acpi/Makefile.config index 54a2857c2510..331f6d30f472 100644 --- a/tools/power/acpi/Makefile.config +++ b/tools/power/acpi/Makefile.config @@ -54,7 +54,6 @@ INSTALL_SCRIPT = ${INSTALL_PROGRAM} CROSS = #/usr/i386-linux-uclibc/usr/bin/i386-uclibc- CROSS_COMPILE ?= $(CROSS) LD = $(CC) -HOSTCC = gcc # check if compiler option is supported cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -x c /dev/null > /dev/null 2>&1; then echo "$(1)"; fi;} |