]> git.proxmox.com Git - mirror_edk2.git/commit
BaseTools: AArch64: use explicit linker scripts
authorArd Biesheuvel <ard.biesheuvel@linaro.org>
Thu, 2 Jul 2015 06:36:00 +0000 (06:36 +0000)
committerabiesheuvel <abiesheuvel@Edk2>
Thu, 2 Jul 2015 06:36:00 +0000 (06:36 +0000)
commitf0dbe9fa0a437fe27210718c2f1d575b99e26583
treefc0547c335024339a80e6edd0e81db2caa745a75
parentd77cc2063de7be8a1b28ef2efb5770df4578975a
BaseTools: AArch64: use explicit linker scripts

Instead of relying on the builtin linker script of GNU ld, which
may vary based on binutils version (which is not tightly coupled to
the GCC version) and linker command line options, introduce a linker
script for AArch64 to be used by all GCC/binutils versions.

The script is laid out such that two ELF sections .text and .data are
created that map onto the PE/COFF with the same names. By aligning
.data to the minimum alignment of .text, and by not adding any
additional padding -which is what LD's builtin linker script does- the
relative offset between .text and .data is retained after the PE/COFF
conversion. This should prevent problems with debuggers and other
tooling that are ELF based.

Also provided is an overlay linker script that increases the alignment
of .text and .data to 64 KB. This is intended for DXE_RUNTIME_DRIVER
modules, to make them compatible with the newly introduced
Properties Table feature.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17802 6f19259b-4bc3-4df7-8a09-765794883524
BaseTools/Conf/tools_def.template
BaseTools/Scripts/gcc-aarch64-64K-align-ld-script [new file with mode: 0644]
BaseTools/Scripts/gcc-aarch64-ld-script [new file with mode: 0644]