]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
MFC r358643:
authorDimitry Andric <dim@FreeBSD.org>
Thu, 19 Mar 2020 22:33:24 +0000 (22:33 +0000)
committerDimitry Andric <dim@FreeBSD.org>
Thu, 19 Mar 2020 22:33:24 +0000 (22:33 +0000)
commit29b5aa1b8efcee2c420239594c8840a0e465e8dd
treef1656832c4f2179c01ce2f68616437ba42d26dce
parent9ce187bf83c0593d9639662417923f0e054c19d3
MFC r358643:

Link stand/i386 components using a linker script

LLD 10.0.0 changed the behavior of the -Ttext option, so that using
-Ttext=0x0 now causes linking of the loaders to fail with:

ld: error: output file too large: 18446744073707016908 bytes

I reported this in https://bugs.llvm.org/show_bug.cgi?id=44715, and
initially reverted the upstream change in r357259 to work around it.

However, after some discussion with Fangrui Song in the upstream ticket,
I think we can classify this as an unfortunate interaction between using
-Ttext=0 in combination with --no-rosegment.  (We added the latter
in r332090, because btxld does not correctly handle input with more
than 2 PT_LOAD segments.)

Fangrui suggested to use a linker script instead, and Warner was already
attempting this in r305353, but had to revert it due to "crypto-using
boot problems" (not sure what those were :).

This review updates the stand/i386/boot.ldscript to handle more
sections, inserts some symbols like _edata and such that we use in
libsa, and also discards any .interp section.

It uses ORG which is defined on the linker command line using
--defsym ORG=value to set the start of all the sections.

Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D23952
stand/i386/Makefile.inc
stand/i386/boot.ldscript
stand/i386/boot2/Makefile
stand/i386/gptboot/Makefile
stand/i386/gptzfsboot/Makefile
stand/i386/isoboot/Makefile
stand/i386/loader/Makefile
stand/i386/zfsboot/Makefile