A bit overkill for 32bit machines, but aligning all the special data structures on 8 byte boundaries removes any special case for 64bit machines.
9 lines
142 B
Plaintext
9 lines
142 B
Plaintext
SECTIONS {
|
|
.devices : ALIGN(8) {
|
|
__devices = .;
|
|
KEEP (*(.devices))
|
|
__devices_end = .;
|
|
}
|
|
}
|
|
INSERT AFTER .data;
|