blob: ff805777431ce7c11a0ab2f1d00067cd0fbe8181 [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 \
Javier Martinez Canillasff2e6ef2021-05-26 23:52:28 +020043 LLVM_OBJCOPY="$(OBJCOPY)" $(PAHOLE) -J --btf_base vmlinux $@; \
Andrii Nakryikoe732b532020-11-20 23:08:28 -080044 else \
45 printf "Skipping BTF generation for %s due to unavailability of vmlinux\n" $@ 1>&2; \
46 fi;
Andrii Nakryiko5f9ae912020-11-09 17:19:30 -080047
48# Same as newer-prereqs, but allows to exclude specified extra dependencies
49newer_prereqs_except = $(filter-out $(PHONY) $(1),$?)
50
51# Same as if_changed, but allows to exclude specified extra dependencies
52if_changed_except = $(if $(call newer_prereqs_except,$(2))$(cmd-check), \
53 $(cmd); \
54 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:)
55
Sami Tolvanendc5723b2020-12-11 10:46:19 -080056
Andrii Nakryiko5f9ae912020-11-09 17:19:30 -080057# Re-generate module BTFs if either module's .ko or vmlinux changed
Sami Tolvanen850ded42021-08-16 11:05:19 -070058$(modules): %.ko: %$(mod-prelink-ext).o %.mod.o scripts/module.lds $(if $(KBUILD_BUILTIN),vmlinux) FORCE
Andrii Nakryiko5f9ae912020-11-09 17:19:30 -080059 +$(call if_changed_except,ld_ko_o,vmlinux)
60ifdef CONFIG_DEBUG_INFO_BTF_MODULES
61 +$(if $(newer-prereqs),$(call cmd,btf_ko))
62endif
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090063
64targets += $(modules) $(modules:.ko=.mod.o)
65
66# Add FORCE to the prequisites of a target to force it to be always rebuilt.
67# ---------------------------------------------------------------------------
68
69PHONY += FORCE
70FORCE:
71
72# Read all saved command lines and dependencies for the $(targets) we
73# may be building above, using $(if_changed{,_dep}). As an
74# optimization, we don't need to read them if the target does not
75# exist, we will rebuild anyway in that case.
76
77existing-targets := $(wildcard $(sort $(targets)))
78
79-include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
80
81.PHONY: $(PHONY)