blob: 1952d3bb80c6979ab2ffdf2423589cacb4d25602 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Emese Revfy6b90bd42016-05-24 00:09:38 +02002
Masahiro Yamada42640b132020-07-29 12:15:36 +09003$(obj)/randomize_layout_plugin.so: $(objtree)/$(obj)/randomize_layout_seed.h
Kees Cook313dd1b62017-05-05 23:37:45 -07004quiet_cmd_create_randomize_layout_seed = GENSEED $@
5cmd_create_randomize_layout_seed = \
6 $(CONFIG_SHELL) $(srctree)/$(src)/gen-random-seed.sh $@ $(objtree)/include/generated/randomize_layout_hash.h
7$(objtree)/$(obj)/randomize_layout_seed.h: FORCE
8 $(call if_changed,create_randomize_layout_seed)
Masahiro Yamada42640b132020-07-29 12:15:36 +09009targets += randomize_layout_seed.h randomize_layout_hash.h
Kees Cook313dd1b62017-05-05 23:37:45 -070010
Masahiro Yamada42640b132020-07-29 12:15:36 +090011# Build rules for plugins
12#
13# No extra code is needed for single-file plugins.
14# For multi-file plugins, use *-objs syntax to list the objects.
15#
16# If the plugin foo.so is compiled from foo.c and foo2.c, you can do:
17#
18# foo-objs := foo.o foo2.o
Emese Revfy6b90bd42016-05-24 00:09:38 +020019
Masahiro Yamada42640b132020-07-29 12:15:36 +090020always-y += $(GCC_PLUGIN)
Emese Revfy543c37c2016-05-24 00:11:37 +020021
Masahiro Yamada42640b132020-07-29 12:15:36 +090022GCC_PLUGINS_DIR = $(shell $(CC) -print-file-name=plugin)
23
24plugin_cxxflags = -Wp,-MMD,$(depfile) $(KBUILD_HOSTCXXFLAGS) -fPIC \
Masahiro Yamadace6ed1c2021-03-04 20:37:08 +090025 -include $(srctree)/include/linux/compiler-version.h \
Valdis Klētnieks67a5a682020-12-26 13:21:58 -050026 -I $(GCC_PLUGINS_DIR)/include -I $(obj) -std=gnu++11 \
Masahiro Yamada42640b132020-07-29 12:15:36 +090027 -fno-rtti -fno-exceptions -fasynchronous-unwind-tables \
Valdis Klētnieks67a5a682020-12-26 13:21:58 -050028 -ggdb -Wno-narrowing -Wno-unused-variable \
Masahiro Yamada42640b132020-07-29 12:15:36 +090029 -Wno-format-diag
30
31plugin_ldflags = -shared
32
33plugin-single := $(foreach m, $(GCC_PLUGIN), $(if $($(m:%.so=%-objs)),,$(m)))
34plugin-multi := $(filter-out $(plugin-single), $(GCC_PLUGIN))
35plugin-objs := $(sort $(foreach m, $(plugin-multi), $($(m:%.so=%-objs))))
36
37targets += $(plugin-single) $(plugin-multi) $(plugin-objs)
Emese Revfy6b90bd42016-05-24 00:09:38 +020038clean-files += *.so
Masahiro Yamada42640b132020-07-29 12:15:36 +090039
40plugin-single := $(addprefix $(obj)/, $(plugin-single))
41plugin-multi := $(addprefix $(obj)/, $(plugin-multi))
42plugin-objs := $(addprefix $(obj)/, $(plugin-objs))
43
44quiet_cmd_plugin_cxx_so_c = HOSTCXX $@
45 cmd_plugin_cxx_so_c = $(HOSTCXX) $(plugin_cxxflags) $(plugin_ldflags) -o $@ $<
46
47$(plugin-single): $(obj)/%.so: $(src)/%.c FORCE
48 $(call if_changed_dep,plugin_cxx_so_c)
49
50quiet_cmd_plugin_ld_so_o = HOSTLD $@
51 cmd_plugin_ld_so_o = $(HOSTCXX) $(plugin_ldflags) -o $@ \
52 $(addprefix $(obj)/, $($(target-stem)-objs))
53
54$(plugin-multi): FORCE
55 $(call if_changed,plugin_ld_so_o)
56$(foreach m, $(notdir $(plugin-multi)), $(eval $(obj)/$m: $(addprefix $(obj)/, $($(m:%.so=%-objs)))))
57
58quiet_cmd_plugin_cxx_o_c = HOSTCXX $@
59 cmd_plugin_cxx_o_c = $(HOSTCXX) $(plugin_cxxflags) -c -o $@ $<
60
61$(plugin-objs): $(obj)/%.o: $(src)/%.c FORCE
62 $(call if_changed_dep,plugin_cxx_o_c)