[linker] align all the special sections on 8 byte boundaries, remove x86-64 hack

A bit overkill for 32bit machines, but aligning all the special data structures
on 8 byte boundaries removes any special case for 64bit machines.
This commit is contained in:
Travis Geiselbrecht
2015-10-26 17:01:34 -07:00
parent 0e1ce411ba
commit 114a350e55
8 changed files with 7 additions and 30 deletions

View File

@@ -1,6 +1,5 @@
SECTIONS {
.init ALIGN(8) : {
. = ALIGN(8);
.lk_init : ALIGN(8) {
__lk_init = .;
KEEP (*(.lk_init))
__lk_init_end = .;