blob: b3a6aa8fbe8cb4ea7665a0147c48a8c9c940a253 [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
Masahiro Yamadac25e1c52022-05-27 19:01:49 +090012# for c_flags
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090013include $(srctree)/scripts/Makefile.lib
14
15# find all modules listed in modules.order
Masahiro Yamada6768fa42022-12-11 11:54:47 +090016modules := $(call read-file, $(MODORDER))
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090017
Masahiro Yamadaf65a4862022-12-11 22:04:07 +090018__modfinal: $(modules:%.o=%.ko)
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090019 @:
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 Tolvanen25a21fb2023-06-23 00:11:43 +000026 cmd_cc_o_c = $(CC) $(filter-out $(CC_FLAGS_CFI) $(CFLAGS_GCOV), $(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 = \
Miguel Ojeda2f7ab122021-07-03 16:42:57 +020042 if [ ! -f vmlinux ]; then \
43 printf "Skipping BTF generation for %s due to unavailability of vmlinux\n" $@ 1>&2; \
Miguel Ojeda2f7ab122021-07-03 16:42:57 +020044 else \
Jiri Olsa9741e072021-10-29 14:57:29 +020045 LLVM_OBJCOPY="$(OBJCOPY)" $(PAHOLE) -J $(PAHOLE_FLAGS) --btf_base vmlinux $@; \
Kumar Kartikeya Dwivedi0e32dfc2021-10-02 06:47:53 +053046 $(RESOLVE_BTFIDS) -b vmlinux $@; \
Andrii Nakryikoe732b532020-11-20 23:08:28 -080047 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); \
Masahiro Yamada92215e72022-12-29 18:15:00 +090055 printf '%s\n' 'savedcmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:)
Andrii Nakryiko5f9ae912020-11-09 17:19:30 -080056
Andrii Nakryiko5f9ae912020-11-09 17:19:30 -080057# Re-generate module BTFs if either module's .ko or vmlinux changed
Masahiro Yamadaf65a4862022-12-11 22:04:07 +090058%.ko: %.o %.mod.o scripts/module.lds $(and $(CONFIG_DEBUG_INFO_BTF_MODULES),$(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
Masahiro Yamadaf65a4862022-12-11 22:04:07 +090064targets += $(modules:%.o=%.ko) $(modules:%.o=%.mod.o)
Masahiro Yamada9b9a3f22019-08-15 01:06:23 +090065
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)