From: Marek Behun <marek.behun@nic.cz>
To: u-boot@lists.denx.de
Subject: [PATCH u-boot 16/39] build: use thin archives instead of incremental linking
Date: Tue, 9 Mar 2021 11:36:54 +0100 [thread overview]
Message-ID: <20210309113654.583b9d0d@nic.cz> (raw)
In-Reply-To: <CAEUhbmX9qb1O+nfY_n0By8n2haQhG0yYHLPJOLXCuwBgiHiXSw@mail.gmail.com>
On Tue, 9 Mar 2021 11:42:08 +0800
Bin Meng <bmeng.cn@gmail.com> wrote:
> Hi Marek,
>
> On Tue, Mar 9, 2021 at 9:24 AM Bin Meng <bmeng.cn@gmail.com> wrote:
> >
> > Hi Marek,
> >
> > On Mon, Mar 8, 2021 at 11:22 PM Marek Beh?n <marek.behun@nic.cz> wrote:
> > >
> > > On Mon, 8 Mar 2021 22:30:17 +0800
> > > Bin Meng <bmeng.cn@gmail.com> wrote:
> > >
> > > > Hi Marek,
> > > >
> > > > On Mon, Mar 8, 2021 at 9:24 PM Marek Beh?n <marek.behun@nic.cz> wrote:
> > > > >
> > > > > On Mon, 8 Mar 2021 19:32:10 +0800
> > > > > Bin Meng <bmeng.cn@gmail.com> wrote:
> > > > >
> > > > > > On Mon, Mar 8, 2021 at 7:18 PM Marek Behun <marek.behun@nic.cz>
> > > > > > wrote:
> > > > > > >
> > > > > > > On Mon, 8 Mar 2021 18:44:58 +0800
> > > > > > > Bin Meng <bmeng.cn@gmail.com> wrote:
> > > > > > >
> > > > > > > > Could you investigate why?
> > > > > > >
> > > > > > > I could, but I don't understand why exactly I should
> > > > > > > - Linux is also using --whole-archive
> > > > > > > - it is working
> > > > > > > - I have other things I would like to work on
> > > > > > >
> > > > > > > Maybe you could look into this? :)
> > > > > >
> > > > > > Yes, I can look into this. I wonder if you already knew this which
> > > > > > could save some time as this is a normal review process, asking
> > > > > > for clarifications if something isn't clear.
> > > > >
> > > > > Bin, CI is failing without the --whole-archive option.
> > > > >
> > > > > What is interesting is that the binaries build successfully, but
> > > > > testing them fails :)
> > > > >
> > > > > You can try this (with and without the --whole-archive options)
> > > > > (note that this is without LTO)
> > > > > make qemu_arm_defconfig
> > > > > CROSS_COMPILE=arm-compiler- make -j8
> > > > > qemu-system-arm -M virt -nographic \
> > > > > -netdev user,id=net0,tftp=$(pwd) \
> > > > > -device e1000,netdev=net0 -device virtio-rng-pci \
> > > > > -bios u-boot.bin -serial mon:stdio
> > > > >
> > > > > With --whole-archive option this boots successfully into U-Boot,
> > > > > without --whole-archive it just hangs.
> > > >
> > > > Thanks for reporting. My initnial build testing on qemu_arm_defconfig
> > > > with this series succeeded but there are some warnings:
> > > >
> > > > /opt/armv7-linux/bin/arm-linux-ld.bfd:
> > > > lib/efi_selftest/efi_selftest_miniapp_exception.o: plugin needed to
> > > > handle lto object
> > > > /opt/armv7-linux/bin/arm-linux-ld.bfd:
> > > > examples/standalone/hello_world.o: plugin needed to handle lto object
> > > > /opt/armv7-linux/bin/arm-linux-ld.bfd: examples/standalone/libstubs.o:
> > > > plugin needed to handle lto object
> > > > /opt/armv7-linux/bin/arm-linux-ld.bfd: warning: cannot find entry
> > > > symbol hello_world; defaulting to 000000000c100000
> > > >
> > > > It looks we should update the make rules to remove "-flto" for these
> > > > targets.
> > > >
> > > > Applying the following diff to remove --whole-archive, I got a build
> > > > error:
> > > >
> > > > diff --git a/Makefile b/Makefile
> > > > index 0f538270d7..127630e060 100644
> > > > --- a/Makefile
> > > > +++ b/Makefile
> > > > @@ -1780,7 +1780,7 @@ quiet_cmd_u-boot__ ?= LTO $@
> > > > $(LTO_FINAL_CFLAGS) $(c_flags)
> > > > \
> > > > $(KBUILD_LDFLAGS:%=-Wl,%) $(LDFLAGS_u-boot:%=-Wl,%) -o
> > > > $@ \
> > > > -T u-boot.lds $(u-boot-init)
> > > > \
> > > > - -Wl,--start-group -Wl,--whole-archive
> > > > \
> > > > + -Wl,--start-group
> > > > \
> > > > $(u-boot-main)
> > > > \
> > > > $(PLATFORM_LIBS)
> > > > \
> > > > -Wl,--no-whole-archive -Wl,--end-group
> > > > \
> > > > @@ -1790,9 +1790,9 @@ else
> > > > quiet_cmd_u-boot__ ?= LD $@
> > > > cmd_u-boot__ ?= $(LD) $(KBUILD_LDFLAGS) $(LDFLAGS_u-boot) -o $@
> > > > \
> > > > -T u-boot.lds $(u-boot-init)
> > > > \
> > > > - --start-group --whole-archive
> > > > \
> > > > + --start-group
> > > > \
> > > > $(u-boot-main)
> > > > \
> > > > - --no-whole-archive --end-group
> > > > \
> > > > + --end-group
> > > > \
> > > > $(PLATFORM_LIBS) -Map u-boot.map;
> > > > \
> > > > $(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK)
> > > > $@, true) endif
> > > >
> > > > LTO u-boot
> > > > /opt/armv7-linux/bin/../lib/gcc/arm-buildroot-linux-gnueabihf/9.3.0/../../../../arm-buildroot-linux-gnueabihf/bin/ld:
> > > > arch/arm/lib/lib.a(lib1funcs.o): in function `Ldiv0':
> > > > arch/arm/lib/lib1funcs.S:360: undefined reference to `__div0'
> > > >
> > > > I am using a pre-built armv7 toolchain from
> > > > https://toolchains.bootlin.com/
> > >
> > > The
> > > plugin needed to handle lto object
> > > need another change in Makefiles, I will look into this.
> > >
> > > As for the __div0 availability, that happens when compiling with LTO
> > > and not using the --whole-archive flag.
> >
> > Yes, that's something we need to investigate. Using "--whole-archive"
> > just masks the issue.
>
> Please ignore this. I think "--whole-archive" is correct after
> experimenting with the compiler.
So do you agree with this patch? Can I consider having your
Reviewed-by tag? :)
next prev parent reply other threads:[~2021-03-09 10:36 UTC|newest]
Thread overview: 139+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-07 4:24 [PATCH u-boot 00/39] U-Boot LTO (Sandbox + Some ARM boards) Marek Behún
2021-03-07 4:25 ` [PATCH u-boot-marvell 01/39] ddr: marvell: axp: align signature of mv_xor_mem_init() with a38x Marek Behún
2021-03-08 6:50 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot-marvell 02/39] ddr: marvell: axp: fix array types have different bounds warning Marek Behún
2021-03-08 6:41 ` Stefan Roese
2021-03-08 6:45 ` Marek Behun
2021-03-08 6:50 ` Stefan Roese
2021-03-09 13:54 ` Tom Rini
2021-03-12 8:54 ` Stefan Roese
2021-03-08 6:46 ` Marek Behun
2021-03-08 6:58 ` Stefan Roese
2021-03-08 7:04 ` Marek Behun
2021-03-08 6:50 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot-dm 03/39] regmap: fix a serious pointer casting bug Marek Behún
2021-03-08 7:10 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 04/39] api: fix a potential serious bug caused by undef CONFIG_SYS_64BIT_LBA Marek Behún
2021-03-08 7:09 ` Bin Meng
2021-03-08 7:21 ` Marek Behun
2021-03-07 4:25 ` [PATCH u-boot 05/39] checkpatch: require quotes around section name in the __section() macro Marek Behún
2021-03-07 4:47 ` Marek Vasut
2021-03-07 4:55 ` Marek Behun
2021-03-07 4:25 ` [PATCH u-boot 06/39] treewide: Convert macro and uses of __section(foo) to __section("foo") Marek Behún
2021-03-08 7:27 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 07/39] compiler.h: align the __ADDRESSABLE macro with Linux' version Marek Behún
2021-03-08 7:27 ` Bin Meng
2021-03-08 9:23 ` Marek Behun
2021-03-08 10:29 ` Bin Meng
2021-03-08 11:04 ` Marek Behun
2021-03-07 4:25 ` [PATCH u-boot 08/39] linker_lists: prepare macros to avoid code repetition Marek Behún
2021-03-08 7:44 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 09/39] test/py: improve regular expression for ut subtest symbol matcher Marek Behún
2021-03-07 4:25 ` [PATCH u-boot 10/39] linker_lists: declare lists and entries as __ADDRESSABLE for LTO Marek Behún
2021-03-08 7:44 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 11/39] binman: declare symbols externally visible Marek Behún
2021-03-07 4:59 ` Marek Behun
2021-03-08 7:47 ` Bin Meng
2021-03-08 9:26 ` Marek Behun
2021-03-08 10:31 ` Bin Meng
2021-03-08 11:07 ` Marek Behun
2021-03-07 4:25 ` [PATCH u-boot 12/39] string: make memcpy() and memset() visible to fix LTO linking errors Marek Behún
2021-03-08 7:56 ` Bin Meng
2021-03-08 10:19 ` Marek Behun
2021-03-08 10:23 ` Pali Rohár
2021-03-08 10:40 ` Bin Meng
2021-03-08 10:55 ` Pali Rohár
2021-03-08 11:31 ` Marek Behun
2021-03-08 11:36 ` Marek Behun
2021-03-12 10:09 ` Marek Behun
2021-03-12 11:11 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 13/39] efi_loader: fix warning when linking with LTO Marek Behún
2021-03-08 7:56 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 14/39] lib: crc32: make the crc_table variable non-const Marek Behún
2021-03-07 4:46 ` Marek Vasut
2021-03-07 4:58 ` Marek Behun
2021-03-07 5:02 ` Marek Vasut
2021-03-07 12:26 ` Marek Behun
2021-03-07 12:31 ` Pali Rohár
2021-03-07 12:42 ` Marek Behun
2021-03-07 12:52 ` [PATCH u-boot 14/39] lib: crc32: put the crc_table variable into efi_runtime_rodata section Marek Behún
2021-03-07 13:04 ` Marek Behun
2021-03-07 20:49 ` Marek Behun
2021-03-08 7:01 ` [PATCH u-boot v1.1 14.1/39] efi_loader: add macro for const EFI runtime data Marek Behún
2021-03-08 7:36 ` Heinrich Schuchardt
2021-03-08 9:54 ` [PATCH u-boot v1.2 14.1/39] efi_loader: add Sphinx doc for __efi_runtime and __efi_runtime_data Marek Behún
2021-03-08 9:54 ` [PATCH u-boot v1.2 14.2/39] efi_loader: add macro for const EFI runtime data Marek Behún
2021-03-08 9:54 ` [PATCH u-boot v1.2 14.3/39] lib: crc32: put the crc_table variable into efi_runtime_rodata section Marek Behún
2021-03-08 7:01 ` [PATCH u-boot v1.1 14.2/39] " Marek Behún
2021-03-08 8:43 ` Marek Vasut
2021-03-07 4:25 ` [PATCH u-boot 15/39] Makefile, Makefile.spl: cosmetic change Marek Behún
2021-03-08 9:11 ` Bin Meng
2021-03-08 10:12 ` [PATCH u-boot v1.1 " Marek Behún
2021-03-08 10:42 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 16/39] build: use thin archives instead of incremental linking Marek Behún
2021-03-08 9:16 ` Bin Meng
2021-03-08 10:11 ` Marek Behun
2021-03-08 10:44 ` Bin Meng
2021-03-08 11:00 ` Pali Rohár
2021-03-08 11:41 ` Bin Meng
2021-03-08 11:18 ` Marek Behun
2021-03-08 11:32 ` Bin Meng
2021-03-08 11:52 ` Marek Behun
2021-03-08 13:24 ` Marek Behún
2021-03-08 14:30 ` Bin Meng
2021-03-08 15:22 ` Marek Behún
2021-03-09 1:24 ` Bin Meng
2021-03-09 3:42 ` Bin Meng
2021-03-09 10:36 ` Marek Behun [this message]
2021-03-09 13:00 ` Bin Meng
2021-03-11 12:42 ` Marek Behun
2021-03-07 4:25 ` [PATCH u-boot 17/39] build: support building with Link Time Optimizations Marek Behún
2021-03-09 13:30 ` Bin Meng
2021-03-11 12:45 ` Marek Behun
2021-03-07 4:25 ` [PATCH u-boot 18/39] build: LTO: move platform libs into --start-group list Marek Behún
2021-03-09 15:24 ` Bin Meng
2021-03-11 19:41 ` Marek Behun
2021-03-07 4:25 ` [PATCH u-boot 19/39] sandbox: errno: avoid conflict with libc's errno Marek Behún
2021-03-09 15:28 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 20/39] sandbox: use sections instead of symbols for getopt array boundaries Marek Behún
2021-03-07 4:25 ` [PATCH u-boot 21/39] sandbox: make LTO available Marek Behún
2021-03-10 5:36 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 22/39] sandbox: enable LTO by default Marek Behún
2021-03-10 5:33 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 23/39] ARM: global_data: make set_gd() work for armv5 and armv6 Marek Behún
2021-03-07 4:25 ` [PATCH u-boot 24/39] ARM: make gd a function call for LTO and set via set_gd() Marek Behún
2021-03-07 4:25 ` [PATCH u-boot 25/39] ARM: fix LTO build for some thumb-interwork cases Marek Behún
2021-03-07 4:25 ` [PATCH u-boot 26/39] ARM: fix LTO for imx28_xea Marek Behún
2021-03-10 5:31 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 27/39] ARM: fix LTO for apf27 Marek Behún
2021-03-07 4:25 ` [PATCH u-boot 28/39] ARM: fix LTO for keystone Marek Behún
2021-03-07 4:25 ` [PATCH u-boot 29/39] ARM: kona: fix clk_bsc_enable() type mismatch for LTO Marek Behún
2021-03-10 5:29 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 30/39] ARM: imx6m: fix imx_eqos_txclk_set_rate() " Marek Behún
2021-03-07 5:33 ` Sean Anderson
2021-03-07 12:13 ` Marek Behun
2021-03-10 5:27 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 31/39] ARM: fix LTO for seaboard Marek Behún
2021-03-07 4:25 ` [PATCH u-boot 32/39] ARM: fix LTO for rockchip and samsung Marek Behún
2021-03-10 5:25 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 33/39] ARM: omap3: fix LTO for DM3730 (and possibly other omap3 boards) Marek Behún
2021-03-07 10:40 ` Adam Ford
2021-03-07 4:25 ` [PATCH u-boot 34/39] armv8: SPL: discard relocation information Marek Behún
2021-03-07 4:25 ` [PATCH u-boot 35/39] ata: ahci: fix ahci_link_up() type mismatch for LTO Marek Behún
2021-03-10 5:23 ` Bin Meng
2021-03-07 4:25 ` [PATCH u-boot 36/39] ARM: make LTO available Marek Behún
2021-03-07 4:25 ` [PATCH u-boot 37/39] ARM: don't use -ffunction-sections/-fdata-sections with LTO build Marek Behún
2021-03-10 3:40 ` Bin Meng
2021-03-12 6:45 ` Marek Behun
2021-03-12 6:48 ` Bin Meng
2021-03-12 7:00 ` Marek Behun
2021-03-12 7:11 ` Marek Behun
2021-03-12 7:19 ` Bin Meng
2021-03-12 7:29 ` Marek Behun
2021-03-12 13:18 ` Tom Rini
2021-03-12 13:44 ` Marek Behun
2021-03-12 13:52 ` Tom Rini
2021-03-07 4:25 ` [PATCH u-boot 38/39] ARM: enable LTO for some boards Marek Behún
2021-03-07 16:14 ` Adam Ford
2021-03-07 20:49 ` Marek Behun
2021-03-07 4:25 ` [PATCH u-boot 39/39] DO NOT MERGE! ARM: enable LTO by default Marek Behún
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210309113654.583b9d0d@nic.cz \
--to=marek.behun@nic.cz \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox