]> git.baikalelectronics.ru Git - uboot.git/commit
build: support building with Link Time Optimizations
authorMarek Behún <marek.behun@nic.cz>
Thu, 20 May 2021 11:24:03 +0000 (13:24 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 24 May 2021 18:21:30 +0000 (14:21 -0400)
commitc45c9e2232f6d861aaadf068ef559939e64c363e
tree5d2bbcee39b8adff66ac767d8bde1bcb6283dfe7
parent2fccc7f7fc543e05cbe75f6c12b83f32c4e254fe
build: support building with Link Time Optimizations

Add plumbing for building U-Boot with Link Time Optimizations.

When building with LTO, $(PLATFORM_LIBS) has to be in --whole-archive /
--no-whole-archive group, otherwise some functions declared in assembly
may not be resolved and linking may fail.

Note: clang may throw away linker list symbols it thinks are unused when
compiling with LTO. To force these symbols to be included, we refer to
them via the __ADDRESSABLE macro in a C file generated from compiled
built-in.o files before linking.

Signed-off-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Simon Glass <sjg@chromium.org>
Kbuild
Kconfig
Makefile
scripts/Makefile.lib
scripts/Makefile.spl
scripts/gen_ll_addressable_symbols.sh [new file with mode: 0755]