* ldlang.c (lang_size_sections_1): Allow scripts to specify a

non-zero vma even when relocatable.
This commit is contained in:
Alan Modra 2009-09-29 02:24:56 +00:00
parent ca8b503212
commit cafed8af5a
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2009-09-29 Alan Modra <amodra@bigpond.net.au>
* ldlang.c (lang_size_sections_1): Allow scripts to specify a
non-zero vma even when relocatable.
2009-09-28 Alan Modra <amodra@bigpond.net.au>
* scripttempl/elf32cr16.sc: Emit empty script for ld -r and ld -Ur.
@ -85,7 +90,7 @@
2009-09-13 Alan Modra <amodra@bigpond.net.au>
PR ld/6766
PR ld/6766
* lexsup.c (parse_args <-e>): Revert 2009-03-18 change.
* ldemul.c (after_parse_default): Add entry symbol as undef.
* emultempl/alphaelf.em (alpha_after_parse): Call after_parse_default.
@ -385,7 +390,7 @@
2009-08-04 Alan Modra <amodra@bigpond.net.au>
PR 10474
PR 10474
* emultempl/ppc32elf.em (ppc_before_allocation): Test rawsize,
not size, after lang_reset_memory_regions.
@ -706,7 +711,7 @@
2009-04-25 Alan Modra <amodra@bigpond.net.au>
PR 10061
PR 10061
* genscripts.sh: Don't pass $EMULATION_NAME as $CUSTOMIZER_SCRIPT
param.

View File

@ -4665,7 +4665,7 @@ lang_size_sections_1
lang_memory_region_type *r;
os = &s->output_section_statement;
if (link_info.relocatable)
if (os->addr_tree == NULL && link_info.relocatable)
os->addr_tree = exp_intop (0);
if (os->addr_tree != NULL)
{