blob: 7f39599e9faeddcd9a1363710c0feabb2cab10d3 [file] [log] [blame]
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +09001# SPDX-License-Identifier: GPL-2.0-only
2# ===========================================================================
3# Module final link
4# ===========================================================================
5
6PHONY := __modfinal
7__modfinal:
8
Andrii Nakryiko5f9ae912020-11-09 17:19:30 -08009include include/config/auto.conf
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090010include $(srctree)/scripts/Kbuild.include
11
Sami Tolvanen850ded42021-08-16 11:05:19 -070012# for c_flags and mod-prelink-ext
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090013include $(srctree)/scripts/Makefile.lib
14
15# find all modules listed in modules.order
16modules := $(sort $(shell cat $(MODORDER)))
17
18__modfinal: $(modules)
19 @:
20
Masahiro Yamadaeb27ea52019-08-19 17:58:43 +090021# modname and part-of-module are set to make c_flags define proper module flags
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090022modname = $(notdir $(@:.mod.o=))
Masahiro Yamadaeb27ea52019-08-19 17:58:43 +090023part-of-module = y
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090024
25quiet_cmd_cc_o_c = CC [M] $@
Sami Tolvanencf68fff2021-04-08 11:28:26 -070026 cmd_cc_o_c = $(CC) $(filter-out $(CC_FLAGS_CFI), $(c_flags)) -c -o $@ $<
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090027
28%.mod.o: %.mod.c FORCE
29 $(call if_changed_dep,cc_o_c)
30
31ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink)
32
33quiet_cmd_ld_ko_o = LD [M] $@
Sami Tolvanenb1a1a1a2020-04-13 16:10:13 -070034 cmd_ld_ko_o += \
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090035 $(LD) -r $(KBUILD_LDFLAGS) \
36 $(KBUILD_LDFLAGS_MODULE) $(LDFLAGS_MODULE) \
Masahiro Yamada596b0472020-09-08 13:27:08 +090037 -T scripts/module.lds -o $@ $(filter %.o, $^); \
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090038 $(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true)
39
Andrii Nakryiko5f9ae912020-11-09 17:19:30 -080040quiet_cmd_btf_ko = BTF [M] $@
Andrii Nakryikoe732b532020-11-20 23:08:28 -080041 cmd_btf_ko = \
42 if [ -f vmlinux ]; then \
Jiri Olsa9741e072021-10-29 14:57:29 +020043 LLVM_OBJCOPY="$(OBJCOPY)" $(PAHOLE) -J $(PAHOLE_FLAGS) --btf_base vmlinux $@; \
Kumar Kartikeya Dwivedi0e32dfc2021-10-02 06:47:53 +053044 $(RESOLVE_BTFIDS) -b vmlinux $@; \
Andrii Nakryikoe732b532020-11-20 23:08:28 -080045 else \
46 printf "Skipping BTF generation for %s due to unavailability of vmlinux\n" $@ 1>&2; \
47 fi;
Andrii Nakryiko5f9ae912020-11-09 17:19:30 -080048
49# Same as newer-prereqs, but allows to exclude specified extra dependencies
50newer_prereqs_except = $(filter-out $(PHONY) $(1),$?)
51
52# Same as if_changed, but allows to exclude specified extra dependencies
53if_changed_except = $(if $(call newer_prereqs_except,$(2))$(cmd-check), \
54 $(cmd); \
55 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:)
56
Sami Tolvanendc5723b2020-12-11 10:46:19 -080057
Andrii Nakryiko5f9ae912020-11-09 17:19:30 -080058# Re-generate module BTFs if either module's .ko or vmlinux changed
Sami Tolvanen850ded42021-08-16 11:05:19 -070059$(modules): %.ko: %$(mod-prelink-ext).o %.mod.o scripts/module.lds $(if $(KBUILD_BUILTIN),vmlinux) FORCE
Andrii Nakryiko5f9ae912020-11-09 17:19:30 -080060 +$(call if_changed_except,ld_ko_o,vmlinux)
61ifdef CONFIG_DEBUG_INFO_BTF_MODULES
62 +$(if $(newer-prereqs),$(call cmd,btf_ko))
63endif
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090064
65targets += $(modules) $(modules:.ko=.mod.o)
66
67# Add FORCE to the prequisites of a target to force it to be always rebuilt.
68# ---------------------------------------------------------------------------
69
70PHONY += FORCE
71FORCE:
72
73# Read all saved command lines and dependencies for the $(targets) we
74# may be building above, using $(if_changed{,_dep}). As an
75# optimization, we don't need to read them if the target does not
76# exist, we will rebuild anyway in that case.
77
78existing-targets := $(wildcard $(sort $(targets)))
79
80-include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
81
82.PHONY: $(PHONY)