Missing piece of 2009-01-26 commit
* ldlang.c (lang_process): Don't consider relocatable flag when checking for overlap.
This commit is contained in:
parent
3209bffac6
commit
662ef24b70
@ -1,3 +1,9 @@
|
|||||||
|
2009-02-09 Nathan Sidwell <nathan@codesourcery.com>
|
||||||
|
|
||||||
|
Missing piece of 2009-01-26 commit
|
||||||
|
* ldlang.c (lang_process): Don't consider relocatable flag when
|
||||||
|
checking for overlap.
|
||||||
|
|
||||||
2009-02-05 Joseph Myers <joseph@codesourcery.com>
|
2009-02-05 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* emulparams/m68kelf.sh: Add newline at end of file.
|
* emulparams/m68kelf.sh: Add newline at end of file.
|
||||||
@ -45,8 +51,6 @@
|
|||||||
|
|
||||||
* lexsup.c (parse_args): Set check_section_addresses to 1 or 0.
|
* lexsup.c (parse_args): Set check_section_addresses to 1 or 0.
|
||||||
* ld.h (args_type): Make check_section_addresses a char.
|
* ld.h (args_type): Make check_section_addresses a char.
|
||||||
ldlang.c (lang_process): Don't consider relocatable flag when
|
|
||||||
checking for overlap.
|
|
||||||
* ldmain.c (main): Default check_section_addresses to -1. Check it
|
* ldmain.c (main): Default check_section_addresses to -1. Check it
|
||||||
for relocatable links.
|
for relocatable links.
|
||||||
* ld.texinfo (--check-sections): Update documentation.
|
* ld.texinfo (--check-sections): Update documentation.
|
||||||
|
@ -6225,8 +6225,7 @@ lang_process (void)
|
|||||||
ldemul_finish ();
|
ldemul_finish ();
|
||||||
|
|
||||||
/* Make sure that the section addresses make sense. */
|
/* Make sure that the section addresses make sense. */
|
||||||
if (! link_info.relocatable
|
if (command_line.check_section_addresses)
|
||||||
&& command_line.check_section_addresses)
|
|
||||||
lang_check_section_addresses ();
|
lang_check_section_addresses ();
|
||||||
|
|
||||||
lang_end ();
|
lang_end ();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user