diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-15 23:11:03 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-17 22:37:51 +0900 |
commit | c04d1e46fcd6090f2ae04e285e9d3adcf376f5b1 (patch) | |
tree | 6f8a15db3130262c74a68dfad536f8fcfb01afa2 /scripts/Kbuild.include | |
parent | 46457133ac9d55272ce410f5e701e23e4d68bcdb (diff) | |
download | linux-stable-c04d1e46fcd6090f2ae04e285e9d3adcf376f5b1.tar.gz linux-stable-c04d1e46fcd6090f2ae04e285e9d3adcf376f5b1.tar.bz2 linux-stable-c04d1e46fcd6090f2ae04e285e9d3adcf376f5b1.zip |
kbuild: remove unused hostcc-option
We can re-add this whenever it is needed. At this moment, it is unused.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/Kbuild.include')
-rw-r--r-- | scripts/Kbuild.include | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 73e80b917f12..77c742fa4fb1 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -125,11 +125,6 @@ CC_OPTION_CFLAGS = $(filter-out $(GCC_PLUGINS_CFLAGS),$(KBUILD_CFLAGS)) cc-option = $(call __cc-option, $(CC),\ $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS),$(1),$(2)) -# hostcc-option -# Usage: cflags-y += $(call hostcc-option,-march=winchip-c6,-march=i586) -hostcc-option = $(call __cc-option, $(HOSTCC),\ - $(KBUILD_HOSTCFLAGS) $(HOST_EXTRACFLAGS),$(1),$(2)) - # cc-option-yn # Usage: flag := $(call cc-option-yn,-march=winchip-c6) cc-option-yn = $(call try-run,\ |