* scripttempl/avr.sc: Set .data section's LMA to next available
address in text region.
This commit is contained in:
parent
ca092b61dc
commit
5ed365b417
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-11-22 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
|
||||
|
||||
* scripttempl/avr.sc: Set .data section's LMA to next available
|
||||
address in text region.
|
||||
|
||||
2013-11-21 Andrew Pinski <apinski@cavium.com>
|
||||
|
||||
* Makefile.am (ALL_64_EMULATION_SOURCES): Add eaarch64linux32.c
|
||||
|
|
|
@ -163,7 +163,7 @@ SECTIONS
|
|||
${RELOCATING+ _etext = . ; }
|
||||
} ${RELOCATING+ > text}
|
||||
|
||||
.data ${RELOCATING-0} : ${RELOCATING+AT (ADDR (.text) + SIZEOF (.text))}
|
||||
.data ${RELOCATING-0} :
|
||||
{
|
||||
${RELOCATING+ PROVIDE (__data_start = .) ; }
|
||||
/* --gc-sections will delete empty .data. This leads to wrong start
|
||||
|
@ -177,7 +177,7 @@ SECTIONS
|
|||
${RELOCATING+. = ALIGN(2);}
|
||||
${RELOCATING+ _edata = . ; }
|
||||
${RELOCATING+ PROVIDE (__data_end = .) ; }
|
||||
} ${RELOCATING+ > data}
|
||||
} ${RELOCATING+ > data ${RELOCATING+AT> text}}
|
||||
|
||||
.bss ${RELOCATING-0} :${RELOCATING+ AT (ADDR (.bss))}
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue