xref: /linux/scripts/Makefile.gcc-plugins (revision b24413180f5600bcb3bb70fbed5cf186b60864bd)
1*b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
26b90bd4bSEmese Revfyifdef CONFIG_GCC_PLUGINS
36b90bd4bSEmese Revfy  __PLUGINCC := $(call cc-ifversion, -ge, 0408, $(HOSTCXX), $(HOSTCC))
46b90bd4bSEmese Revfy  PLUGINCC := $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-plugin.sh "$(__PLUGINCC)" "$(HOSTCXX)" "$(CC)")
56b90bd4bSEmese Revfy
6543c37cbSEmese Revfy  SANCOV_PLUGIN := -fplugin=$(objtree)/scripts/gcc-plugins/sancov_plugin.so
7543c37cbSEmese Revfy
80dae776cSEmese Revfy  gcc-plugin-$(CONFIG_GCC_PLUGIN_CYC_COMPLEXITY)	+= cyc_complexity_plugin.so
9543c37cbSEmese Revfy
1038addce8SEmese Revfy  gcc-plugin-$(CONFIG_GCC_PLUGIN_LATENT_ENTROPY)	+= latent_entropy_plugin.so
1138addce8SEmese Revfy  gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_LATENT_ENTROPY)	+= -DLATENT_ENTROPY_PLUGIN
127b4010edSAndrew Donnellan  ifdef CONFIG_GCC_PLUGIN_LATENT_ENTROPY
1338addce8SEmese Revfy    DISABLE_LATENT_ENTROPY_PLUGIN			+= -fplugin-arg-latent_entropy_plugin-disable
1438addce8SEmese Revfy  endif
1538addce8SEmese Revfy
16543c37cbSEmese Revfy  ifdef CONFIG_GCC_PLUGIN_SANCOV
17543c37cbSEmese Revfy    ifeq ($(CFLAGS_KCOV),)
18543c37cbSEmese Revfy      # It is needed because of the gcc-plugin.sh and gcc version checks.
19543c37cbSEmese Revfy      gcc-plugin-$(CONFIG_GCC_PLUGIN_SANCOV)           += sancov_plugin.so
20543c37cbSEmese Revfy
21543c37cbSEmese Revfy      ifneq ($(PLUGINCC),)
22543c37cbSEmese Revfy        CFLAGS_KCOV := $(SANCOV_PLUGIN)
23543c37cbSEmese Revfy      else
24543c37cbSEmese Revfy        $(warning warning: cannot use CONFIG_KCOV: -fsanitize-coverage=trace-pc is not supported by compiler)
25543c37cbSEmese Revfy      endif
26543c37cbSEmese Revfy    endif
27543c37cbSEmese Revfy  endif
28543c37cbSEmese Revfy
29c61f13eaSKees Cook  gcc-plugin-$(CONFIG_GCC_PLUGIN_STRUCTLEAK)	+= structleak_plugin.so
30c61f13eaSKees Cook  gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE)	+= -fplugin-arg-structleak_plugin-verbose
31f7dd2507SArd Biesheuvel  gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL)	+= -fplugin-arg-structleak_plugin-byref-all
32c61f13eaSKees Cook  gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK)	+= -DSTRUCTLEAK_PLUGIN
33c61f13eaSKees Cook
34313dd1b6SKees Cook  gcc-plugin-$(CONFIG_GCC_PLUGIN_RANDSTRUCT)	+= randomize_layout_plugin.so
35313dd1b6SKees Cook  gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_RANDSTRUCT)	+= -DRANDSTRUCT_PLUGIN
36313dd1b6SKees Cook  gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_RANDSTRUCT_PERFORMANCE)	+= -fplugin-arg-randomize_layout_plugin-performance-mode
37313dd1b6SKees Cook
3865d59ec8SEmese Revfy  GCC_PLUGINS_CFLAGS := $(strip $(addprefix -fplugin=$(objtree)/scripts/gcc-plugins/, $(gcc-plugin-y)) $(gcc-plugin-cflags-y))
396b90bd4bSEmese Revfy
4038addce8SEmese Revfy  export PLUGINCC GCC_PLUGINS_CFLAGS GCC_PLUGIN GCC_PLUGIN_SUBDIR
4138addce8SEmese Revfy  export SANCOV_PLUGIN DISABLE_LATENT_ENTROPY_PLUGIN
426b90bd4bSEmese Revfy
43ed58c0e9SKees Cook  ifneq ($(PLUGINCC),)
44543c37cbSEmese Revfy    # SANCOV_PLUGIN can be only in CFLAGS_KCOV because avoid duplication.
45543c37cbSEmese Revfy    GCC_PLUGINS_CFLAGS := $(filter-out $(SANCOV_PLUGIN), $(GCC_PLUGINS_CFLAGS))
466b90bd4bSEmese Revfy  endif
476b90bd4bSEmese Revfy
486b90bd4bSEmese Revfy  KBUILD_CFLAGS += $(GCC_PLUGINS_CFLAGS)
496b90bd4bSEmese Revfy  GCC_PLUGIN := $(gcc-plugin-y)
50caefd8c9SEmese Revfy  GCC_PLUGIN_SUBDIR := $(gcc-plugin-subdir-y)
516b90bd4bSEmese Revfyendif
52ed58c0e9SKees Cook
53ed58c0e9SKees Cook# If plugins aren't supported, abort the build before hard-to-read compiler
54ed58c0e9SKees Cook# errors start getting spewed by the main build.
55ed58c0e9SKees CookPHONY += gcc-plugins-check
56ed58c0e9SKees Cookgcc-plugins-check: FORCE
57ed58c0e9SKees Cookifdef CONFIG_GCC_PLUGINS
58ed58c0e9SKees Cook  ifeq ($(PLUGINCC),)
59ed58c0e9SKees Cook    ifneq ($(GCC_PLUGINS_CFLAGS),)
6065c059bcSAndrew Donnellan      # Various gccs between 4.5 and 5.1 have bugs on powerpc due to missing
6165c059bcSAndrew Donnellan      # header files. gcc <= 4.6 doesn't work at all, gccs from 4.8 to 5.1 have
6265c059bcSAndrew Donnellan      # issues with 64-bit targets.
6365c059bcSAndrew Donnellan      ifeq ($(ARCH),powerpc)
6465c059bcSAndrew Donnellan        ifeq ($(call cc-ifversion, -le, 0501, y), y)
6565c059bcSAndrew Donnellan	  @echo "Cannot use CONFIG_GCC_PLUGINS: plugin support on gcc <= 5.1 is buggy on powerpc, please upgrade to gcc 5.2 or newer" >&2 && exit 1
6665c059bcSAndrew Donnellan        endif
6765c059bcSAndrew Donnellan      endif
68ed58c0e9SKees Cook      ifeq ($(call cc-ifversion, -ge, 0405, y), y)
69ed58c0e9SKees Cook	$(Q)$(srctree)/scripts/gcc-plugin.sh --show-error "$(__PLUGINCC)" "$(HOSTCXX)" "$(CC)" || true
70ed58c0e9SKees Cook	@echo "Cannot use CONFIG_GCC_PLUGINS: your gcc installation does not support plugins, perhaps the necessary headers are missing?" >&2 && exit 1
71ed58c0e9SKees Cook      else
72ed58c0e9SKees Cook	@echo "Cannot use CONFIG_GCC_PLUGINS: your gcc version does not support plugins, you should upgrade it to at least gcc 4.5" >&2 && exit 1
73ed58c0e9SKees Cook      endif
74ed58c0e9SKees Cook    endif
75ed58c0e9SKees Cook  endif
76ed58c0e9SKees Cookendif
77ed58c0e9SKees Cook	@:
78ed58c0e9SKees Cook
79ed58c0e9SKees Cook# Actually do the build, if requested.
80ed58c0e9SKees CookPHONY += gcc-plugins
81ed58c0e9SKees Cookgcc-plugins: scripts_basic gcc-plugins-check
82ed58c0e9SKees Cookifdef CONFIG_GCC_PLUGINS
83ed58c0e9SKees Cook	$(Q)$(MAKE) $(build)=scripts/gcc-plugins
84ed58c0e9SKees Cookendif
85ed58c0e9SKees Cook	@:
86