summaryrefslogtreecommitdiff
path: root/scripts/Makefile.vmlinux_a
blob: 395e29998d7d5c0ae0e3df36b13f2d953f59cd5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# SPDX-License-Identifier: GPL-2.0-only

PHONY := __default
__default: vmlinux.a

include include/config/auto.conf
include $(srctree)/scripts/Kbuild.include
include $(srctree)/scripts/Makefile.lib

# Link of built-in-fixup.a
# ---------------------------------------------------------------------------

quiet_cmd_ar_builtin_fixup = AR      $@
      cmd_ar_builtin_fixup = \
	rm -f $@; \
	$(AR) cDPrST $@ $(KBUILD_VMLINUX_OBJS); \
	$(AR) mPi $$($(AR) t $@ | sed -n 1p) $@ $$($(AR) t $@ | grep -F -f $(srctree)/scripts/head-object-list.txt)

targets += built-in-fixup.a
built-in-fixup.a: $(KBUILD_VMLINUX_OBJS) scripts/head-object-list.txt FORCE
	$(call if_changed,ar_builtin_fixup)

ifdef CONFIG_LTO_CLANG_THIN_DIST

quiet_cmd_builtin.order = GEN     $@
      cmd_builtin.order = $(AR) t $< > $@

targets += builtin.order
builtin.order: built-in-fixup.a FORCE
	$(call if_changed,builtin.order)

quiet_cmd_ld_thinlto_index = LD      $@
      cmd_ld_thinlto_index = \
	$(LD) $(KBUILD_LDFLAGS) -r --thinlto-index-only=$@ @$<

targets += vmlinux.thinlto-index
vmlinux.thinlto-index: builtin.order FORCE
	$(call if_changed,ld_thinlto_index)

quiet_cmd_ar_vmlinux.a = GEN     $@
      cmd_ar_vmlinux.a =					\
	rm -f $@;						\
	while read -r obj; do					\
		if grep -Fqx $${obj} $(word 2, $^); then	\
			echo $${obj%.o}.thinlto-native.o;	\
		else						\
			echo $${obj};				\
		fi;						\
	done < $< | xargs $(AR) cDPrS --thin $@

targets += vmlinux.a
vmlinux.a: builtin.order vmlinux.thinlto-index FORCE
	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.thinlto
	$(call if_changed,ar_vmlinux.a)

else

# vmlinux.a
# ---------------------------------------------------------------------------

targets += vmlinux.a
vmlinux.a: built-in-fixup.a FORCE
	$(call if_changed,copy)

endif

# Add FORCE to the prerequisites of a target to force it to be always rebuilt.
# ---------------------------------------------------------------------------

PHONY += FORCE
FORCE:

# Read all saved command lines and dependencies for the $(targets) we
# may be building above, using $(if_changed{,_dep}). As an
# optimization, we don't need to read them if the target does not
# exist, we will rebuild anyway in that case.

existing-targets := $(wildcard $(sort $(targets)))

-include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)

.PHONY: $(PHONY)