This fixes a bug in x86-64 where it was trying to default align input sections on 16 byte boundaries, which was screwing up the padding between structures.
9 lines
143 B
Plaintext
9 lines
143 B
Plaintext
SECTIONS {
|
|
.commands : {
|
|
__commands_start = .;
|
|
KEEP (*(.commands))
|
|
__commands_end = .;
|
|
}
|
|
}
|
|
INSERT AFTER .data;
|