diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-03-14 01:24:15 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-03-14 01:24:15 +0100 |
commit | 5378113a56ef2bda1b2b9f594d250574ca697615 (patch) | |
tree | 7ff549a10f30c0be29bb5fb7a26b08c7b719bb27 | |
parent | a16bc5e6d7d0dc5ac7772f039bc0e5be1630355d (diff) |
Stick to binutils ELF scripts
* i386/ldscript: Reformat to follow binutils version
-rw-r--r-- | i386/ldscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/i386/ldscript b/i386/ldscript index f2b90fa..bbf5698 100644 --- a/i386/ldscript +++ b/i386/ldscript @@ -69,7 +69,8 @@ SECTIONS .rodata1 : { *(.rodata1) } .eh_frame_hdr : { *(.eh_frame_hdr) } .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) } - .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) } + .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table + .gcc_except_table.*) } /* Adjust the address for the data segment. We want to adjust up to the same address within the page on the next page up. */ . = ALIGN (CONSTANT (MAXPAGESIZE)) - ((CONSTANT (MAXPAGESIZE) - .) & (CONSTANT (MAXPAGESIZE) - 1)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE)); |