From: H.J. Lu Date: Mon, 8 Sep 2008 16:07:46 +0000 (+0000) Subject: 2008-09-08 H.J. Lu X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=25d650345cf4e8ba795eef7b944373967aeb95c8;p=binutils-gdb.git 2008-09-08 H.J. Lu 2008-09-07 Alan Modra * emultempl/beos.em (gld${EMULATION_NAME}_place_orphan): Updated. * emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): Likewise. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index df1510b83f4..e9ee029099c 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,10 @@ +2008-09-08 H.J. Lu + + 2008-09-07 Alan Modra + + * emultempl/beos.em (gld${EMULATION_NAME}_place_orphan): Updated. + * emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): Likewise. + 2008-09-08 Tristan Gingold * NEWS: Add a marker for the 2.19 features. diff --git a/ld/emultempl/beos.em b/ld/emultempl/beos.em index ac27c5a8974..fac0c893c67 100644 --- a/ld/emultempl/beos.em +++ b/ld/emultempl/beos.em @@ -697,7 +697,7 @@ gld${EMULATION_NAME}_place_orphan (asection *s) output_secname = xstrdup (secname); ps = strchr (output_secname + 1, '\$'); *ps = 0; - os = lang_output_section_statement_lookup (output_secname); + os = lang_output_section_statement_lookup (output_secname, 0, TRUE); /* Find the '\$' wild statement for this section. We currently require the linker script to explicitly mention "*(.foo\$)". diff --git a/ld/emultempl/sunos.em b/ld/emultempl/sunos.em index 6367c3c8034..bbd60751205 100644 --- a/ld/emultempl/sunos.em +++ b/ld/emultempl/sunos.em @@ -698,7 +698,7 @@ gld${EMULATION_NAME}_before_allocation (void) /* Set the .text section to start at 0x20, not 0x2020. FIXME: This is too magical. */ - os = lang_output_section_statement_lookup (".text"); + os = lang_output_section_statement_lookup (".text", 0, TRUE); if (os->addr_tree == NULL) os->addr_tree = exp_intop (0x20); }