summaryrefslogtreecommitdiff
path: root/BaseTools
diff options
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2015-07-01 01:04:28 +0000
committeryingke <yingke@Edk2>2015-07-01 01:04:28 +0000
commit203beadc12dbc5665d4de1003246fc13c94763fc (patch)
treec3905363dae93e0b4346471d9006c13516b736ba /BaseTools
parent6956ecfe1e70f241f2a861520568bd1c6639ba54 (diff)
downloadedk2-platforms-203beadc12dbc5665d4de1003246fc13c94763fc.tar.xz
There needs to be a space between the output section name and the colon, i.e.,
.text : ALIGN(0x1000) ^ Fix this for all output sections Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17748 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools')
-rw-r--r--BaseTools/Scripts/gcc-4K-align-ld-script10
1 files changed, 5 insertions, 5 deletions
diff --git a/BaseTools/Scripts/gcc-4K-align-ld-script b/BaseTools/Scripts/gcc-4K-align-ld-script
index 1f23079023..16cf623a33 100644
--- a/BaseTools/Scripts/gcc-4K-align-ld-script
+++ b/BaseTools/Scripts/gcc-4K-align-ld-script
@@ -3,12 +3,12 @@ SECTIONS
{
/* . = 0 + SIZEOF_HEADERS; */
. = 0x280;
- .text: ALIGN(0x1000)
+ .text : ALIGN(0x1000)
{
*(.text .stub .text.* .gnu.linkonce.t.*)
. = ALIGN(0x20);
}
- .data: ALIGN(0x1000)
+ .data : ALIGN(0x1000)
{
*(
.rodata .rodata.* .gnu.linkonce.r.*
@@ -18,16 +18,16 @@ SECTIONS
)
. = ALIGN(0x20);
}
- .eh_frame: ALIGN(0x1000)
+ .eh_frame : ALIGN(0x1000)
{
KEEP (*(.eh_frame))
}
- .got: ALIGN(0x1000)
+ .got : ALIGN(0x1000)
{
*(.got .got.*)
. = ALIGN(0x20);
}
- .rela: ALIGN(0x1000)
+ .rela : ALIGN(0x1000)
{
*(.rela .rela.*)
}