mirror of https://github.com/acidanthera/audk.git
BaseTools IA32/X64: drop redundant alignment from linker script
There is no need to pad out the end of a section of the start of the following section is aligned to the same value. So drop the redundant ALIGN() statements. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> Tested-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18132 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
fa1d29d5cc
commit
cdeb268cb0
|
@ -7,7 +7,6 @@ SECTIONS
|
|||
{
|
||||
*(.text .stub .text.* .gnu.linkonce.t.*)
|
||||
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
||||
. = ALIGN(0x20);
|
||||
}
|
||||
.data : ALIGN(0x1000)
|
||||
{
|
||||
|
@ -16,7 +15,6 @@ SECTIONS
|
|||
.bss .bss.*
|
||||
*COM*
|
||||
)
|
||||
. = ALIGN(0x20);
|
||||
}
|
||||
.eh_frame : ALIGN(0x1000)
|
||||
{
|
||||
|
@ -25,7 +23,6 @@ SECTIONS
|
|||
.got : ALIGN(0x1000)
|
||||
{
|
||||
*(.got .got.*)
|
||||
. = ALIGN(0x20);
|
||||
}
|
||||
.rela : ALIGN(0x1000)
|
||||
{
|
||||
|
|
|
@ -7,7 +7,6 @@ SECTIONS
|
|||
{
|
||||
*(.text .stub .text.* .gnu.linkonce.t.*)
|
||||
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
||||
. = ALIGN(0x20);
|
||||
}
|
||||
.data ALIGN(0x20) :
|
||||
{
|
||||
|
@ -16,7 +15,6 @@ SECTIONS
|
|||
.bss .bss.*
|
||||
*COM*
|
||||
)
|
||||
. = ALIGN(0x20);
|
||||
}
|
||||
.eh_frame ALIGN(0x20) :
|
||||
{
|
||||
|
@ -25,7 +23,6 @@ SECTIONS
|
|||
.got ALIGN(0x20) :
|
||||
{
|
||||
*(.got .got.*)
|
||||
. = ALIGN(0x20);
|
||||
}
|
||||
.rela ALIGN(0x20) :
|
||||
{
|
||||
|
|
|
@ -7,7 +7,6 @@ SECTIONS
|
|||
{
|
||||
*(.text .stub .text.* .gnu.linkonce.t.*)
|
||||
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
||||
. = ALIGN(0x20);
|
||||
}
|
||||
.data ALIGN(0x40) :
|
||||
{
|
||||
|
@ -16,7 +15,6 @@ SECTIONS
|
|||
.bss .bss.*
|
||||
*COM*
|
||||
)
|
||||
. = ALIGN(0x20);
|
||||
}
|
||||
.eh_frame ALIGN(0x20) :
|
||||
{
|
||||
|
@ -25,7 +23,6 @@ SECTIONS
|
|||
.got ALIGN(0x20) :
|
||||
{
|
||||
*(.got .got.*)
|
||||
. = ALIGN(0x20);
|
||||
}
|
||||
.rela ALIGN(0x20) :
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue