fixed an alignment problem on 64 bit archs

This commit is contained in:
Christian Kroll 2010-04-01 03:10:02 +00:00
parent 57b0bc6948
commit e733427e3b
1 changed files with 2 additions and 1 deletions

View File

@ -140,9 +140,10 @@ SECTIONS
.data : .data :
{ {
*(.data .data.* .gnu.linkonce.d.*) *(.data .data.* .gnu.linkonce.d.*)
. = ALIGN(16);
PROVIDE (_eeprom_start__ = .); PROVIDE (_eeprom_start__ = .);
*(.eeprom) *(.eeprom)
. = ALIGN(8) ; . = ALIGN(16);
PROVIDE (_game_descriptors_start__ = .); PROVIDE (_game_descriptors_start__ = .);
*(.game_descriptors) *(.game_descriptors)
PROVIDE (_game_descriptors_end__ = .); PROVIDE (_game_descriptors_end__ = .);