diff options
author | 2021-09-24 11:31:11 -0400 | |
---|---|---|
committer | 2021-09-24 11:31:11 -0400 | |
commit | 45e8916dee3e3389822d47c340481ede140280c7 (patch) | |
tree | 467227308c813fb6a11fa91e1653bd560bf5051e | |
parent | 3bd6397a9acc2cd13228c09097d61c8d1aa3bbdf (diff) | |
parent | f41fc970044b45802142a00243c11626acf942fa (diff) | |
download | linux-yocto-v5.13/standard/tiny/base.tar.gz |
Merge branch 'v5.13/standard/base' into v5.13/standard/tiny/basev5.13/standard/tiny/base
-rw-r--r-- | scripts/gcc-plugins/Kconfig | 2 | ||||
-rw-r--r-- | scripts/gcc-plugins/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gcc-plugins/Kconfig b/scripts/gcc-plugins/Kconfig index ab9eb4cbe33a..5dad6d780138 100644 --- a/scripts/gcc-plugins/Kconfig +++ b/scripts/gcc-plugins/Kconfig @@ -9,7 +9,7 @@ menuconfig GCC_PLUGINS bool "GCC plugins" depends on HAVE_GCC_PLUGINS depends on CC_IS_GCC - depends on $(success,test -e $(shell,$(CC) -print-file-name=plugin)/include/plugin-version.h) + depends on $(success,test -e $(shell,$(HOSTCC) -print-file-name=plugin)/include/plugin-version.h) default y help GCC plugins are loadable modules that provide extra features to the diff --git a/scripts/gcc-plugins/Makefile b/scripts/gcc-plugins/Makefile index 1952d3bb80c6..6aac404344a6 100644 --- a/scripts/gcc-plugins/Makefile +++ b/scripts/gcc-plugins/Makefile @@ -19,7 +19,7 @@ targets += randomize_layout_seed.h randomize_layout_hash.h always-y += $(GCC_PLUGIN) -GCC_PLUGINS_DIR = $(shell $(CC) -print-file-name=plugin) +GCC_PLUGINS_DIR = $(shell $(HOSTCXX) -print-file-name=plugin) plugin_cxxflags = -Wp,-MMD,$(depfile) $(KBUILD_HOSTCXXFLAGS) -fPIC \ -include $(srctree)/include/linux/compiler-version.h \ |