Skip to content

Commit 978c025

Browse files
ANDROID: Makefile: LTO: gold-plugin func/data sections
LLVM's GOLD plugin changed default behavior in r336943 to create separate function and data sections when linking. This caused a significant boot time regression. r348389 made the behavior toggleable with: -plugin-opt=-function-sections -plugin-opt=-data-sections Add these to LD_FLAGS. Bug: 119467548 Bug: 120503084 Change-Id: I6301f72f872d0c1725bc72cce3e250abf9bb3555 Signed-off-by: Nick Desaulniers <[email protected]>
1 parent ab0632e commit 978c025

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -632,6 +632,8 @@ ifdef CONFIG_LTO_CLANG
632632
LDFINAL_vmlinux := $(LD)
633633
LD := $(LDGOLD)
634634
LDFLAGS += -plugin LLVMgold.so
635+
LDFLAGS += -plugin-opt=-function-sections
636+
LDFLAGS += -plugin-opt=-data-sections
635637
# use llvm-ar for building symbol tables from IR files, and llvm-dis instead
636638
# of objdump for processing symbol versions and exports
637639
LLVM_AR := llvm-ar

0 commit comments

Comments
 (0)