Mark 2.12 branch
[binutils.git] / ld / ChangeLog
blobe279022728cad8c20308c2ab6e51d9c946d3f0f2
1 2002-02-20  Nick Clifton  <nickc@cambridge.redhat.com>
3         * NEWS: Mark 2.12 branch.
5 2002-02-19  Martin Schwidefsky  <schwidefsky@de.ibm.com>
7         * emulparams/elf64_s390.sh (ARCH): Change to "s390:64-bit".
8         * emulparams/elf_s390.sh (ARCH): Change to "s390:31-bit".
10 2002-02-18  Tom Rix  <trix@redhat.com>
12         * emultempl/aix.em (gld*_parse_args): Add -brtl support.
13         (gld*_before_allocation): Same.
14         (gld*_create_output_section_statements): Generate 
15         __rtinit if run time linking.  Add librtl.a to the link.
16         (gld*_read_file): Clean.
18 2002-02-18  Alan Modra  <amodra@bigpond.net.au>
20         * emulparams/elf64ppc.sh (OTHER_TEXT_SECTIONS): Define.
22 2002-02-18  David O'Brien  <obrien@FreeBSD.org>
24         * Makefile.am: Add new files earmelf_fbsd, eelf32ppc_fbsd,
25         eelf_i386_fbsd, eelf64_ia64_fbsd, eelf_x86_64_fbsd, eelf64_sparc_fbsd,
26         and eelf64alpha_fbsd.
27         * Makefile.in: Regenerate.
28         * configure.tgt(sparc64-*-freebsd, ia64-*-freebsd, i[3456]86-*-freebsd,
29         x86_64-*-freebsd, arm-*-freebsd, alpha*-*-freebsd, powerpc-*-freebsd):
30         use a FreeBSD-specific emulation rather than the psABI one.
31         * emulparams/elf_fbsd.sh (ELF_INTERPRETER_NAME): Set appropriate value
32         for all FreeBSD ELF systems.
33         * emulparams/armelf_fbsd.sh: Bridge elf_fbsd.sh and the "native" psABI
34         emulation.
35         * emulparams/elf32ppc_fbsd.sh: Likewise.
36         * emulparams/elf64_ia64_fbsd.sh: Likewise.
37         * emulparams/elf64_sparc_fbsd.sh: Likewise.
38         * emulparams/elf64alpha_fbsd.sh: Likewise.
39         * emulparams/elf_i386_fbsd.sh: Likewise.
40         * emulparams/elf_x86_64_fbsd.sh: Likewise.
42 2002-02-18  Nick Clifton  <nickc@cambridge.redhat.com>
44         * po/tr.po: Updated version.
46 2002-02-18  Alan Modra  <amodra@bigpond.net.au>
48         * ld.texinfo (Output Section Fill): Fix amateur texinfo.
49         (FILL): Likewise.
51 2002-02-17  Hans-Peter Nilsson  <hp@bitrange.com>
53         * emultempl/mmo.em (mmo_after_open): Don't call
54         _bfd_mmix_check_all_relocs when producing ELF output.
56 2002-02-15  Richard Henderson  <rth@redhat.com>
58         * emulparams/elf64alpha.sh (NOP): Adjust for big-endian
59         definition.  Emit a unop+nop pair.
61 2002-02-15  Hans-Peter Nilsson  <hp@bitrange.com>
63         * emultempl/mmix-elfnmmo.em (mmix_after_allocation): Also check
64         for presence of .MMIX.reg_contents.linker_allocated before early
65         exit.
67         * NEWS: Mention support for MMIX.
69 2002-02-15  Alan Modra  <amodra@bigpond.net.au>
71         Support arbitrary length fill patterns.
72         * ld.texinfo (Output Section Fill): Describe fill expressions.
73         (FILL): Refer to the above.
74         * ldexp.h (etree_value_type): Add "str" field.
75         (union etree_union): Add "str" to "value" struct.
76         (exp_bigintop): Declare.
77         (exp_get_fill): Declare.
78         * ldexp.c: Include "safe-ctype.h".
79         (exp_intop): Set value.str to NULL.
80         (exp_bigintop): New function.
81         (new_rel): Pass in "str", and set new.str from it.
82         (new_rel_from_section): Set new.str to NULL.
83         (fold_name): Adjust calls to new_rel.
84         (exp_fold_tree): Likewise.
85         (exp_get_fill): New function.
86         * ldgram.y (struct big_int bigint, fill_type *fill): New.
87         (INT): Returns a "bigint".  Adjust all code handling INTs.
88         (fill_opt): Returns a "fill".
89         (fill_exp): Split out of fill_opt, use for FILL.
90         * ldlang.h (struct _fill_type): New.
91         (fill_type): Move typedef to ldexp.h.
92         (lang_output_section_statement_type): "fill" is now a pointer.
93         (lang_fill_statement_type): Likewise.
94         (lang_padding_statement_type): Likewise.
95         (lang_add_fill): Now takes a "fill_type *" param.
96         (lang_leave_output_section_statement): Likewise.
97         (lang_do_assignments): Likewise.
98         (lang_size_sections): Likewise.
99         (lang_leave_overlay_section): Likewise.
100         (lang_leave_overlay): Likewise.
101         * ldlang.c: Include ldgram.h after ldexp.h.
102         (lang_output_section_statement_lookup): Adjust for fill_type change.
103         (print_fill_statement): Likewise.
104         (print_padding_statement): Likewise.
105         (insert_pad): Now takes a "fill_type *" arg.
106         (size_input_section): Likewise.
107         (lang_size_sections_1): Likewise.
108         (lang_size_sections): Likewise.
109         (lang_do_assignments): Likewise.
110         (lang_add_fill): Likewise.
111         (lang_leave_output_section_statement): Likewise.
112         (lang_leave_overlay_section): Likewise.
113         (lang_leave_overlay): Likewise.
114         Adjust all callers of the above function.
115         * ldlex.l: Include ldgram.h after ldexp.h.  Allow hex numbers
116         starting with "0X" as well as "0x".  Return bigint.str for hex
117         numbers starting with "0x" or "0X", zero bigint.str otherwise.
118         Always use base 16 for numbers starting with "$".
119         * ldmain.c: Include ldgram.h after ldexp.h.
120         * ldwrite.c (build_link_order): Use bfd_data_link_order in place
121         of bfd_fill_link_order.
122         * pe-dll.c: Adjust lang_do_assignments calls.
123         * emultempl/elf32.em: Likewise.
124         * emultempl/hppaelf.em: Likewise.
125         * emultempl/ppc64elf.em: Likewise.
126         * emultempl/beos.em: Include ldgram.h after ldexp.h, adjust
127         lang_add_assignment call.
128         * emultempl/pe.em: Likewise.
130 2002-02-14  Phil Edwards  <pme@gcc.gnu.org>
132         * ld.texinfo (VERSION scripts):  Symbol names are globbing patterns.
133         * ldgram.y (lang_new_vers_regex):  Rename to lang_new_vers_pattern;
134         the pattern in question is not a regexp.
135         * ldlang.c:  Likewise.
136         * ldlang.h:  Likewise.
137         * ldlex.l (V_IDENTIFIER):  Allow '[', ']', '-', '!', and '^' also.
139 2002-02-12  Jakub Jelinek  <jakub@redhat.com>
141         * ldlex.l (DATA_SEGMENT_ALIGN, DATA_SEGMENT_END): New tokens.
142         * ldgram.y (DATA_SEGMENT_ALIGN, DATA_SEGMENT_END): New tokens.
143         (exp): Add DATA_SEGMENT_ALIGN (exp, exp) and DATA_SEGMENT_END (exp).
144         * ldexp.c (exp_data_seg): New variable.
145         (exp_print_token): Handle DATA_SEGMENT_ALIGN and DATA_SEGMENT_END.
146         (fold_binary): Handle DATA_SEGMENT_ALIGN.
147         (exp_fold_tree): Handle DATA_SEGMENT_END.
148         Pass allocation_done when recursing instead of hardcoding
149         lang_allocating_phase_enum.
150         * ldexp.h (exp_data_seg): New.
151         * ldlang.c (lang_size_sections_1): Renamed from lang_size_sections.
152         (lang_size_sections): New.
153         * ld.texinfo (DATA_SEGMENT_ALIGN, DATA_SEGMENT_END): Document.
154         * scripttempl/elf.sc: Use DATA_SEGMENT_ALIGN and DATA_SEGMENT_END
155         if COMMONPAGESIZE is defined.
156         * emulparams/elf_i386.sh (COMMONPAGESIZE): Set to 4K.
157         * emulparams/elf32_sparc.sh (COMMONPAGESIZE): Set to 8K.
158         * emulparams/elf64_sparc.sh (COMMONPAGESIZE): Set to 8K.
159         * emulparams/elf64alpha.sh (COMMONPAGESIZE): Set to 8K.
160         * emulparams/elf64_ia64.sh (COMMONPAGESIZE): Set to 16K for shared
161         libraries only.
163 2002-02-11  Alan Modra  <amodra@bigpond.net.au>
165         * Makefile.in: Regenerate.
167 2002-02-10  Daniel Jacobowitz  <drow@mvista.com>
169         * lexsup.c: Remove strtoul declaration.
171 2002-02-10  Daniel Jacobowitz  <drow@mvista.com>
173         * ldmain.c: Add prototype for main ().
174         * lexsup.c: Guard declaration of strtoul with HAVE_STDLIB_H.
175         * emultempl/lnk960.em (lnk960_choose_target): Function should
176         take two arguments.
178 2002-02-10  Alan Modra  <amodra@bigpond.net.au>
180         * ldlang.c (entry_section): New initialised variable.
181         (lang_finish): Use it.
182         * ldlang.h (entry_section): Declare.
183         * emultempl/ppc64elf.em (gld${EMULATION_NAME}_finish): Set
184         entry_section to ".opd".
186 2002-02-09  Chris Demetriou  <cgd@broadcom.com>
188         * ld.texinfo (Options): Add back in -nostdlib documentation,
189         which had been inadvertently removed.
191 2002-02-09  Hans-Peter Nilsson  <hp@bitrange.com>
193         * emultempl/mmix-elfnmmo.em (mmix_after_allocation): Adjust
194         register section vma to a sane value after emitting error.  Make
195         fatal conditions cause program exit when emitting message.
197 2002-02-08  Ivan Guzvinec <ivang@opencores.org>
199         * configure.tgt: Add or32-*-rtems target.
201 2002-02-08  Alexandre Oliva  <aoliva@redhat.com>
203         Contribute sh64-elf.
204         2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
205         * emulparams/shelf32.sh (STACK_ADDR): Define as formerly defined
206         in OTHER_RELOCATABLE_SECTIONS.
207         2002-01-18  Alexandre Oliva  <aoliva@redhat.com>
208         * emulparams/shelf32.sh (STACK_ADDR): Define.
209         (OTHER_RELOCATABLE_SECTIONS): Renamed to...
210         (OTHER_SECTIONS): this.  Removed stack settings.
211         * emulparams/shelf64.sh (OTHER_RELOCATABLE_SECTIONS): Do not set.
212         (OTHER_SECTIONS): Reset after sourcing shelf32.sh.
213         2001-03-12  DJ Delorie  <dj@redhat.com>
214         * emultempl/sh64elf.em (sh64_elf_$_before_allocation): Disable
215         relaxing if any shmedia or mixed sections are found.
216         2001-03-07  DJ Delorie  <dj@redhat.com>
217         * emultempl/sh64elf.em (sh64_elf_before_allocation): Pass f to
218         einfo.  Gracefully decline to output to non-elf formats.
219         2001-03-06  Hans-Peter Nilsson  <hpn@redhat.com>
220         * emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS) <.stack>:
221         Default to _end aligned to next multiple of 0x40000, plus 0x40000.
222         * emulparams/shelf32.sh: Ditto.
223         2001-01-14  Hans-Peter Nilsson  <hpn@cygnus.com>
224         * emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Tweak
225         comment.
226         2001-01-10  Ben Elliston  <bje@redhat.com>
227         * emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Avoid
228         non-portable shell constructs. From Hans-Peter Nilsson.
229         2001-01-09  Hans-Peter Nilsson  <hpn@cygnus.com>
230         * emulparams/shelf64.sh (EXTRA_EM_FILE): Define empty.
231         * Makefile.am (eshelf64.c, eshlelf64.c, eshlelf32.c): Adjust
232         dependencies to the shell script include chain.
233         * Makefile.in: Regenerate.
234         2001-01-06  Hans-Peter Nilsson  <hpn@cygnus.com>
235         * emultempl/sh64elf.em: Update and tweak comments.
236         (sh64_elf_${EMULATION_NAME}_after_allocation): Always allocate and
237         make a .cranges section SEC_IN_MEMORY.
238         2000-12-30  Hans-Peter Nilsson  <hpn@cygnus.com>
239         * emultempl/sh64elf.em
240         (sh64_elf_${EMULATION_NAME}_before_allocation): Don't stop when
241         .cranges section found to be necessary; continue and set stored
242         section contents flags for sections with non-mixed contents.
243         Use a struct sh64_section_data container and sh64_elf_section_data
244         to store contents-type flags.
245         Remove unused update of "isec".
246         (sh64_elf_${EMULATION_NAME}_after_allocation): Only process
247         sections marked SHF_SH5_ISA32_MIXED.  Use sh64_elf_section_data to
248         access contents-type flags.  Assert that the associated container
249         is initialized.  Use that container, not elf_gp_size, to hold size
250         of linker-generated cranges contents.
251         2000-12-18  Hans-Peter Nilsson  <hpn@cygnus.com>
252         * emultempl/sh64elf.em
253         (sh64_elf_${EMULATION_NAME}_before_allocation): Exit early if
254         there's already a .cranges section.  When section flag difference
255         is found, don't NULL-check cranges a second time.  Tweak comments.
256         (sh64_elf_${EMULATION_NAME}_after_allocation): Use size after
257         merging, not max size, as size of ld-generated .cranges contents.
258         Don't set ELF section flags in output section.  When checking for
259         needed .cranges descriptors, don't use a variable; compare
260         incoming ELF section flags directly to SHF_SH5_ISA32_MIXED.  Tweak
261         comments.
262         2000-12-18  Hans-Peter Nilsson  <hpn@cygnus.com>
263         * emultempl/sh64elf.em: New file.
264         * Makefile.am (eshelf32.c, eshlelf32.c): Adjust dependencies.
265         * Makefile.in: Regenerate.
266         * emulparams/shelf32.sh (OUTPUT_FORMAT): Only set if not set.
267         (OTHER_RELOCATING_SECTIONS): Ditto.
268         (EXTRA_EM_FILE): New, set to sh64elf if not set.
269         * emulparams/shlelf32.sh: Stub out all settings except
270         OUTPUT_FORMAT.  Source shelf32.sh.
271         * emulparams/shelf64.sh: Similar, but also keep ELF_SIZE and
272         OTHER_RELOCATING_SECTIONS.
273         (OTHER_RELOCATING_SECTIONS): Remove .cranges.
274         * emulparams/shlelf64.sh: Stub out all settings except
275         OUTPUT_FORMAT.  Source shelf64.sh.
276         2000-12-15  Hans-Peter Nilsson  <hpn@cygnus.com>
277         * emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS): Include
278         .cranges section.
279         (DATA_START_SYMBOLS): Define, provide ___data.
280         (OTHER_READONLY_SYMBOLS): Define, provide ___rodata and align to 8
281         for consecutive .data section.
282         (OTHER_GOT_SECTIONS): Define, align to 8 for consecutive .bss
283         section after .data section.
284         * emulparams/shlelf64.sh: Ditto.
285         * emulparams/shelf32.sh: Ditto.
286         (ALIGNMENT): Define to 8.
287         * emulparams/shelf32.sh: Ditto.
288         2000-12-12  Hans-Peter Nilsson  <hpn@cygnus.com>
289         * configure.tgt (sh64-*-elf*): Assign targ_extra_libpath to get
290         built-in linker scripts.
291         2000-11-30  Hans-Peter Nilsson  <hpn@cygnus.com>
292         * emulparams/shlelf64.sh: New.
293         * emulparams/shelf64.sh: New.
294         * configure.tgt (sh64-*-elf*): Add shelf64 and shlelf64 to
295         targ_extra_emuls.
296         * Makefile.am: Add support for shlelf64 and shelf64.
297         * Makefile.in: Regenerate.
298         2000-11-29  Hans-Peter Nilsson  <hpn@cygnus.com>
299         * configure.tgt (sh64-*-elf*): Add shelf as default.
300         Add shlelf to targ_extra_emuls.
301         2000-11-24  Hans-Peter Nilsson  <hpn@cygnus.com>
302         * emulparams/shelf32.sh: New file.
303         * emulparams/shlelf32.sh: New file.
304         * Makefile.am: Add support for shlelf32 and shelf32.
305         * configure.tgt: Map sh64-*-elf* to shlelf32 and shelf32.
306         * Makefile.in: Regenerate.
308 2002-02-05  Hans-Peter Nilsson  <hp@axis.com>
310         * ldlang.c (lang_reset_memory_regions): Rename from
311         reset_memory_regions.  Change all callers.  Make public.
312         * ldlang.h (lang_reset_memory_regions): Prototype.
313         * emultempl/elf32.em (gld${EMULATION_NAME}_finish): Call
314         lang_reset_memory_regions before lang_size_sections.
315         * emultempl/hppaelf.em (hppaelf_layout_sections_again): Likewise.
316         * emultempl/ppc64elf.em (gld${EMULATION_NAME}_finish): Likewise.
318 2002-02-04  Hans-Peter Nilsson  <hp@bitrange.com>
320         * emultempl/mmix-elfnmmo.em (mmix_after_allocation): Use signed
321         arithmetic when checking for too many global registers.
323 2002-02-02  Jason Thorpe  <thorpej@wasabisystems.com>
325         * Makefile.am (ALL_EMULATIONS): Add ehppanbsd.o.
326         (ehppanbsd.c): New rule.
327         * Makefile.in: Regenerate.
328         * configure.tgt (hppa*-*-netbsd*): New target.
329         * emulparams/hppalinux.sh: Add comment to check other files
330         that source this file it is modified, and list which
331         files that do.
332         * emulparams/hppanbsd.sh: New file.
334 2002-02-01  Geoffrey Keating  <geoffk@redhat.com>
336         * scripttempl/xstormy16.sc: Don't allocate extra space for the
337         stack.
339 2002-02-01  Hans-Peter Nilsson  <hp@bitrange.com>
341         Support on-demand global register allocation from
342         R_MMIX_BASE_PLUS_OFFSET relocs.
343         * emultempl/mmix-elfnmmo.em (mmix_after_allocation): Rename from
344         mmix_set_reg_section_vma.  Call
345         _bfd_mmix_finalize_linker_allocated_gregs.
346         (mmix_before_allocation): New function.
347         (LDEMUL_AFTER_ALLOCATION): Set to mmix_after_allocation.
348         (LDEMUL_BEFORE_ALLOCATION): Define to mmix_before_allocation.
349         * scripttempl/mmo.sc (.text): Mark .init, .fini as KEEP.
350         (.MMIX.reg_contents): Add .MMIX.reg_contents.linker_allocated
351         before .MMIX.reg_contents.
352         * emultempl/mmo.em (gldmmo_before_allocation): Define to default.
353         (mmo_after_open): New function.
354         (LDEMUL_AFTER_OPEN): Define to mmo_after_open.
355         * emulparams/elf64mmix.sh (OTHER_SECTIONS): Tweak formatting.  Add
356         .MMIX.reg_contents.linker_allocated before .MMIX.reg_contents.
358 2002-01-31  Ivan Guzvinec  <ivang@opencores.org>
360         * emulparams/or32.sh: New file.
361         * emulparams/or32elf.sh: New file.
362         * scripttempl/or32.sc: New file.
363         * configure.tgt : Add support for or32.
364         * configure: Regenerate
365         * Makefile.am: Add support for or32.
366         * Makefile.in: Regenerate.
367         * NEWS: Mention support for or32.
368         * po/ld.pot: Regenerate.
370 2002-01-29  Chris Demetriou  <cgd@broadcom.com>
371             Mitch Lichtenberg  <mpl@broadcom.com>
373         * emulparams/elf32bmip.sh (EXTRA_EM_FILE): Define to be mipself.
374         * emultempl/mipself.em: New file to handle MIPS ELF embedded
375         reloc creation (ld --embedded-relocs).
377 2002-01-27  Daniel Jacobowitz  <drow@mvista.com>
379         * configure: Regenerated.
381 2002-01-26  Hans-Peter Nilsson  <hp@bitrange.com>
383         * Makefile.am (install): Depend on install-info.
384         * Makefile.in: Regenerate.
386 2002-01-26  Christian Rose  <menthos@menthos.com>
388         * ldmain.c (main): Use full sentences to ease translation.
390 2002-01-26  Nick Clifton  <nickc@cambridge.redhat.com>
392         * po/fr.po: Updated version.
394 2002-01-25  Nick Clifton  <nickc@cambridge.redhat.com>
396         * po/es.po: Updated version.
398 2002-01-25  Andreas Jaeger  <aj@suse.de>
400         * ldlex.l (yy_input): Correct error check.
402 2002-01-25  Alan Modra  <amodra@bigpond.net.au>
404         * ldmisc.c (demangle): Put back dots when string not demangled.
406 2002-01-22  Richard Henderson  <rth@redhat.com>
408         * emulparams/elf64alpha.sh (NOP): Use unop.
410 2002-01-21  Andreas Jaeger  <aj@suse.de>
412         * ldlex.l: Use fread instead of read.
414 2002-01-21  Jason Thorpe  <thorpej@wasabisystems.com>
416         * configure.tgt (ia64-*-netbsd*): New target.
418 2002-01-21  H.J. Lu <hjl@gnu.org>
420         * emulparams/elf32btsmip.sh (SHLIB_TEXT_START_ADDR): Change to
421         0.
422         * emulparams/elf64btsmip.sh (SHLIB_TEXT_START_ADDR): Likewise.
424 2002-01-18  Andreas Jaeger  <aj@suse.de>
426         * ldver.c (ldversion): Update year.
428 2002-01-17  Nick Clifton  <nickc@cambridge.redhat.com>
430         * po/ld.pot: Regenerate.
432 2002-01-16  Alan Modra  <amodra@bigpond.net.au>
434         * Makefile.am (eelf64ppc.c, eelf64lppc.c): Depend on ppc64elf.em.
435         * Makefile.in: Regenerate.
436         * emulparams/elf64ppc.sh (EXTRA_EM_FILE): Define.
437         * emultempl/ppc64elf.em: New file.
439 2002-01-15  DJ Delorie  <dj@redhat.com>
441         * scripttempl/pe.sc: Add support for constructor priorities.
443 2002-01-07  Marek Michalkiewicz  <marekm@amelek.gda.pl>
445         * emulparams/avr1200.sh (DATA_START): Define as 0x60.
446         * emulparams/avr23xx.sh: Likewise.
447         * emulparams/avr4433.sh: Likewise.
448         * emulparams/avr44x4.sh: Likewise.
449         * emulparams/avr85xx.sh: Likewise.
450         * emulparams/avrmega103.sh: Likewise.
451         * emulparams/avrmega161.sh: Likewise.
452         * emulparams/avrmega603.sh: Likewise.
453         * scripttempl/elf32avr.sc: Use DATA_START instead of 0x60.
455 2002-01-08  Alexandre Oliva  <aoliva@redhat.com>
457         * ldlang.c (walk_wild_section): Exclude object file if enclosing
458         archive is excluded.
460 2002-01-07  Jason Thorpe  <thorpej@wasabisystems.com>
462         * Makefile.am (ALL_EMULATIONS): Add eshelf_nbsd.o and eshlelf_nbsd.o.
463         (eshelf_nbsd.c): New rule.
464         (eshlelf_nbsd.c): New rule.
465         * Makefile.in: Regenerate.
466         * configure.tgt (sh*le-*-netbsdelf*): New target.
467         (sh*-*-netbsdelf*): New target.
468         * emulparams/shelf.sh: Document that shelf_nbsd.sh sources this file.
469         * ld/emulparams/shelf_nbsd.sh: New emulation.
470         * ld/emulparams/shlelf_nbsd.sh: New emulation.
472 2002-01-07  Nick Clifton  <nickc@cambridge.redhat.com>
474         * po/es.po: New file: Spanish translation.
475         * configure.in (ALL_LINGUAS): Add es.
476         * configure: Regenerate.
478 2002-01-06  John Marshall  <jmarshall@acm.org>
480         * ld.texinfo: Note that --emit-relocs is currently only
481         implemented for ELF.
483 2002-01-05  Alan Modra  <amodra@bigpond.net.au>
485         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Make use
486         of bfd_section_list_remove and bfd_section_list_insert macros.
487         * emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
488         * emultempl/mmo.em (mmo_place_orphan): Likewise.
490 2002-01-04  Jason Thorpe  <thorpej@wasabisystems.com>
492         * configure.tgt (x86_64-*-netbsd*): New target.
494 2001-12-21  Tom Rix  <trix@redhat.com>
496         (gld*_create_output_section_statements): New function.
497         For -binitfini support.
498         * emultempl/aix.em (gld*_before_parse): Fix comment.
499         * emultempl/aix.em (gld*_parse_args): Fix comment.
501 2001-12-20  Jason Thorpe  <thorpej@wasabisystems.com>
503         * configure.tgt (mips*-dec-netbsd*): Delete alias for
504         mips*el-*-netbsd*.
505         (sparc64-*-netbsd*): Add elf32_sparc to targ_extra_emuls.
507         * configure.tgt (arm-*-netbsdelf*): Add target.
508         (arm-*-netbsd*): Add armelf and armelf_nbsd to targ_extra_emuls.
509         * emulparams/armelf_nbsd.sh: Added.
510         * Makefile.am: Add rules for earmelf_nbsd.
511         * Makefile.in: Regenerate.
513 2001-12-19  Andreas Jaeger  <aj@suse.de>,
514             Susanne Oberhauser <froh@suse.de>
516         * configure.host: Add rules for x86_64-*linux-gnu.  Change
517         s390x-linux entry to use gcc to report configuration, replace gcc
518         with $CC in s390-linux
520 2001-12-19  Andreas Jaeger  <aj@suse.de>
522         * ld.texinfo (VERSION): Fix markup.
524 2001-12-18  matthew green  <mrg@eterna.com.au>
526         * Makefile.am (ALL_EMULATIONS): Add m68kelfnbsd.o.
527         (m68kelfnbsd.c): New rule.
528         * Makefile.in: Regenerate.
529         * configure.tgt (m68*-hp-netbsd*): Renamed to ..
530         (m68*-*-netbsd*4k*): .. this.
531         (m68*-*-netbsdelf*): New target.
532         (m68*-*-netbsd*): Also include ELF support.
533         (m68*-*-netbsdaout*): New alias for m68*-*-netbsd*.
534         * emulparams/m68kelfnbsd.sh: New emulation.
536 2001-12-18  Jakub Jelinek  <jakub@redhat.com>
538         * ldgram.y (vers_node): Support anonymous version tags.
539         * ldlang.c (lang_register_vers_node): Ensure anonymous version
540         tag is not defined together with non-anonymous versions.
541         * ld.texinfo: Document it.
543 2001-12-18  Nick Clifton  <nickc@cambridge.redhat.com>
545         * po/tr.po: New file: Turkish translation.
546         * configure.in (ALL_LINGUAS): Add tr.
547         * configure: Regenerate.
549 2001-12-17  Jason Thorpe  <thorpej@wasabisystems.com>
551         * Makefile.am: Add rules for eelf64alpha_nbsd.
552         * Makefile.in: Regenerate.
553         * configure.tgt (alpha*-*-netbsd*): Set
554         targ_emul to elf64alpha_nbsd.
555         * emulparams/elf64alpha_nbsd.sh: Added.
557 2001-12-17  Alan Modra  <amodra@bigpond.net.au>
559         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Adjust
560         section_tail when fiddling with section list.
561         (gld${EMULATION_NAME}_list_options): Ensure sentences aren't
562         broken into separate strings to make translation easier.
563         * emultempl/mmo.em (mmo_place_orphan): Adjust section_tail when
564         fiddling with section list.
565         * emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
567 2001-12-16  Hans-Peter Nilsson  <hp@bitrange.com>
569         * scripttempl/mmo.sc: Add .debug_ranges to listed sections.
571 2001-12-15  Alan Modra  <amodra@bigpond.net.au>
573         * ldmain.c (main): Initialise link_info.eh_frame_hdr.
575 2001-12-13  Jakub Jelinek  <jakub@redhat.com>
577         * emultempl/elf32.em (finish): Supply output_bfd
578         to bfd_elf*_discard_info.
579         (OPTION_EH_FRAME_HDR): Define.
580         (longopts): Add --eh-frame-hdr.
581         (parse_args): Handle it.
582         (list_options): Add --eh-frame-hdr to help.
583         * emultempl/hppaelf.em (finish): Supply output_bfd
584         to bfd_elf*_discard_info.
585         * scripttempl/elf.sc (.eh_frame_hdr): Add.
587 2001-12-13  Alan Modra  <amodra@bigpond.net.au>
589         * lexsup.c (parse_args): Don't pass shortopts to second call to
590         getopt functions.  Restore optind rather than decrementing before
591         second call.  Remove errind as it now duplicates last_optind.
593 2001-12-11  Christopher Faylor  <cgf@redhat.com>
595         * emultempl/pe.em (gld_${EMULATION_NAME}_list_options): Fix typo.
597 2001-12-07  Geoffrey Keating  <geoffk@redhat.com>
598             Richard Henderson  <rth@redhat.com>
600         * Makefile.am: Add support for xstormy16.
601         * configure.tgt: Add support for xstormy16.
602         * Makefile.in: Regenerate.
603         * emulparams/elf32xstormy16.sh: New file.
604         * scripttempl/xstormy16.sc: New file.
606 2001-10-01  Christopher Faylor <cgf@cygnus.com>
608         * Makefile.in (LIB_PATH): Make configurable.
609         (GENSCRIPTS): Set LIB_PATH in environment.
610         * configure.in: Substitute LIB_PATH.
611         * configure: Regenerate.
612         * configure.tgt (*cygwin): Set LIB_PATH for cross build.
613         * configure.host (*cygwin): Add /usr/lib/w32api to NATIVE_LIB_DIRS.
615 2001-12-07  Nick Clifton  <nickc@cambridge.redhat.com>
617         * lexsup.c (ld_options): Insert 'PROGRAM' into the text string
618         describing the -N option so that it is easier to translate into
619         foreign languages.
621 2001-12-05  Nick Clifton  <nickc@cambridge.redhat.com>
623         * emultempl/pe.em (..._list_options): Replace multiple fprintf
624         statements describing a single option with a single, newline
625         escaped fprintf.  This allows better translation into other
626         languages.
628         * ldmain.c (add_archive_element): Combine multiple strings
629         into a single string to permit better translation into other
630         languages.
632 2001-12-05  Tom Rix  <trix@redhat.com>
634         * Makefile.am: Remove eaixppc64.
635         * Makefile.in: Regenerate.
637 2001-12-04  Tom Rix  <trix@redhat.com>
639         * emultempl/aix.em (choose_target): Change default target to
640         OUTPUT_FORMAT for ppcmacos.  Add braces to remove compiler
641         warning.
642         (gld*_read_file):  Fix typo.
643         (change_symbol_mode): Add prototype.
644         (is_syscall): Same.
646         * emulparams/aixppc.sh (SYSCALL_MASK, SYMBOL_MODE_MASK): Delete.
647         * emulparams/aixrs6.sh : Same.
648         * emulparams/ppcmacos.sh : Same.
649         * emulparams/aixppc64.sh : Delete file.
650         * emultempl/aix.em : Formatting changes.
652 2001-12-04  Hans-Peter Nilsson  <hp@axis.com>
654         * emulparams/criself.sh (NO_SMALL_DATA): Set, to yes.
655         (OTHER_BSS_END_SYMBOLS): Don't refer to .sbss when setting
656         __Sbss.
657         (OTHER_END_SYMBOLS): Fix formatting.
658         * emulparams/crislinux.sh (NO_SMALL_DATA): Set, to yes.
659         (OTHER_END_SYMBOLS): Fix formatting.
661 2001-12-04  Alan Modra  <amodra@bigpond.net.au>
663         * ldexp.c (exp_print_token): Correct "table" entry for RSHIFT.
665 2001-12-02  Tom Rix  <trix@redhat.com>
667         * configure.tgt : Remove eaixppc64 emulations.
668         * Makefile.in : Remove eaixppc64.c
669         * ldemul.c (ldemul_choose_target): New parameters argc, argv.
670         (ldemul_default_target): Same.
671         * emultempl/gld960.em (gld960_choose_target):  Same.
672         * emultempl/gld960c.em (gld960_choose_target):  Same.
673         * scripttempl/aix.sc: Remove OUTPUT_FORMAT.
674         * emultempl/aix.em (is_syscall): syscall_mask now a variable.
675         * emultempl/aix.em (gld*_read_file): symbol_mode_mask now a variable.
676         * emultempl/aix.em (gld*_parse_args): Handle -b32 -b64 emulation.
677         * emultempl/aix.em (choose_target): New function.  Handle emulation of
678         -b32 and -b64.
680 2001-11-27  H.J. Lu <hjl@gnu.org>
682         * emulparams/elf_i386.sh (NO_SMALL_DATA): Set to yes.
683         * emulparams/elf_i386_be.sh (NO_SMALL_DATA): Likewise.
684         * emulparams/elf_i386_chaos.sh (NO_SMALL_DATA): Likewise.
685         * emulparams/elf_i386_ldso.sh (NO_SMALL_DATA): Likewise.
686         * emulparams/elf_x86_64.sh (NO_SMALL_DATA): Likewise.
687         * emulparams/m68kelf.sh (NO_SMALL_DATA): Likewise.
688         * emulparams/elf32_sparc.sh (NO_SMALL_DATA): Likewise.
689         * emulparams/elf64_sparc.sh (NO_SMALL_DATA): Likewise.
691         * scripttempl/elf.sc (SBSS): New. Define if ${NO_SMALL_DATA}
692         is not empty.
693         (SDATA): Likewise.
694         (REL_SDATA): Likewise.
695         (REL_SBSS): Likewise.
696         (REL_SDATA2): Likewise.
697         (REL_SBSS2): Likewise.
698         (SBSS2): Define if ${NO_SMALL_DATA} is not empty.
699         (SDATA2): Likewise.
701 2001-11-25  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
703         * scripttempl/elfm68hc11.sc (CTOR, DTOR): Put constructor and
704         destructor in rom.
705         * scripttempl/elfm68hc12.sc (CTOR, DTOR): Likewise.
707 2001-11-22  H.J. Lu  <hjl@gnu.org>
709         * Makefile.in: Regenerated with automake based on automake
710         1.4-8 in RedHat 7.1.
712 2001-11-22  Alan Modra  <amodra@bigpond.net.au>
714         * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
715         (config.status): Delete rule.
716         Add extra dependencies to cover sourced emulparams files.
717         * Makefile.in: Regenerate.
719         * scripttempl/elf.sc: Order <section>, <section>.* and
720         corresponding linkonce sections as seen in input files.
721         Formatting fixes.  Zero vma of all sections if not relocating.
722         (STACK): Define and insert if STACK_ADDR defined.
723         (OTHER_RELOCATING_SECTIONS): Delete.
724         (OTHER_END_SYMBOLS): Define.
725         (OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
726         (OTHER_READWRITE_SECTIONS): Likewise.
727         (OTHER_GOT_SECTIONS): Likewise.
728         (OTHER_SDATA_SECTIONS): Likewise.
729         (OTHER_BSS_SECTIONS): Likewise.
730         * scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
731         (OTHER_READWRITE_SECTIONS): Likewise.
732         * scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
733         (OTHER_READWRITE_SECTIONS): Likewise
735         * emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
736         (STACK_ADDR): Define.
737         * emulparams/armelf_oabi.sh: As for armelf.sh.
738         * emulparams/elf32mcore.sh: As for armelf.sh.
739         * emulparams/h8300elf.sh: As for armelf.sh.
740         * emulparams/mn10200.sh: As for armelf.sh.
741         * emulparams/shelf.sh: As for armelf.sh.
743         * emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
744         (OTHER_END_SYMBOLS): Define.
745         * emulparams/m32relf.sh: As for elf32fr30.sh.
746         * emulparams/h8300helf.sh: As for elf32fr30.sh.
747         * emulparams/h8300self.sh: As for elf32fr30.sh.
749         * emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
750         defines with RELOCATING test.
751         (OTHER_SDATA_SECTIONS): Likewise.
752         (OTHER_RELOCATING_SECTIONS): Delete, replacing with..
753         (OTHER_END_SYMBOLS): ..this.
754         * emulparams/crislinux.sh: As for criself.sh.
756         * emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
757         if not relocating.
758         (OTHER_RELOCATING_SECTIONS): Delete, replacing with..
759         (OTHER_SECTIONS): ..this.  Zero vma if not relocating.  Order
760         normal and linkonce sections as seen in input files.
761         * emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
762         (TEXT_DYNAMIC): Likewise.
763         (INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
764         (OTHER_SDATA_SECTIONS): Likewise.
765         * emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
766         * emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
767         * emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
768         * emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
769         * emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
770         (OTHER_PLT_RELOC_SECTIONS): Likewise.
771         (OTHER_READONLY_SECTIONS): Likewise.  Order normal and linkonce
772         sections as seen in input files.
773         * emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
774         * emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
775         if not relocating.
776         (OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
777         (OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
778         * emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
779         (OTHER_SECTIONS): Instead, use this..
780         (OTHER_END_SYMBOLS): ..and this.
782         * emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
783         * emulparams/elf32bsmip.sh: Likewise.
784         * emulparams/elf32btsmip.sh: Likewise.
785         * emulparams/elf32ebmip.sh: Likewise.
786         * emulparams/elf32lmip.sh: Likewise.
787         * emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
788         * emulparams/elf32lsmip.sh: Likewise.
789         * emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
790         * emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
791         * emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
792         * emulparams/elf64btsmip.sh: Likewise.
793         * emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
794         * emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
795         * emulparams/elf32ppclinux.sh: Likewise.
796         * emulparams/elf32ppcsim.sh: Likewise.
797         * emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
798         * emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
799         * emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
800         * emulparams/h8300self.sh: Likewise.
801         * emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
802         * emulparams/sh.sh: Comment.
803         * emulparams/shl.sh: Source sh.sh, remove duplicates.
804         * emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
805         * emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
807 2001-11-21  David Heine <dlheine@tensilica.com>
808             Alan Modra  <amodra@bigpond.net.au>
810         * ldlang.c (map_input_to_output_sections): Replace "break"
811         accidentally removed with 2001-08-03 change.
812         (lang_gc_sections_1): Likewise.
814 2001-11-21  Alan Modra  <amodra@bigpond.net.au>
816         * ldlang.c (walk_wild_section): Move sec == NULL case out of loop.
818 2001-11-20  Angela Marie Thomas <angela@redhat.com>
820         * emultempl/elf32.em (gld${EMULATION_NAME}_finish): Use NULL instead
821         of false when calling lang_size_sections.
822         * emultempl/hppaelf.em (hppaelf_layout_sections_again): Likewise.
824 2001-11-15  Alan Modra  <amodra@bigpond.net.au>
826         * emultempl/elf32.em (gld${EMULATION_NAME}_finish): Only emit this
827         function when LDEMUL_FINISH isn't set to the same name.  Don't
828         call ${LDEMUL_FINISH}.
829         (ld_${EMULATION_NAME}_emulation): Call $LDEMUL_FINISH if defined.
830         * emultempl/armelf.em (arm_elf_finish): Call
831         gld${EMULATION_NAME}_finish.
832         * emultempl/hppaelf.em (hppaelf_finish): Rename to
833         gld${EMULATION_NAME}_finish.  Call bfd_elf32_discard_info and
834         hppaelf_layout_sections_again if necessary.
835         (need_laying_out): New var.
836         (hppaelf_layaout_sections_again): Rename to
837         hppaelf_layout_sections_again.  Clear need_laying_out.
838         (PARSE_AND_LIST_OPTIONS): Format text.
840 2001-11-14  H.J. Lu  <hjl@gnu.org>
842         * emultempl/armelf.em (arm_elf_finish): Renamed from
843         gld${EMULATION_NAME}_finish.
844         (LDEMUL_FINISH): Set to arm_elf_finish.
846 2001-11-14  Daniel Jacobowitz  <drow@mvista.com>
848         * emultempl/elf32.em (gld${EMULATION_NAME}_finish): New.
849         (struct ld_emulation_xfer_struct): Use it.
851 2001-11-13  Ross Alexander <ross.alexander@uk.neceur.com>
853         * emulparams/elf64hppa.sh (OTHER_BSS_END_SYMBOLS): Add
854         additional symbols referenced by newer crt0.o files from HP.
856 2001-11-12  Anthony Green  <green@redhat.com>
858         * emulparams/armelf.sh (DATA_START_SYMBOLS): New symbol.
860 2001-11-12  Alfred M. Szmidt  <ams@kemisten.nu>
862         * Makefile.am (GENSCRIPTS): Quote ${exec_prefix}.
863         * Makefile.in: Regenerate.
865 2001-11-02  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
867         * ld.texinfo: Use @command for commands, @option for options.
868         * Makefile.am (POD2MAN): Use 'GNU Development Tools' for
869         the page man title.
870         * Makefile.in: Rebuild.
872 2001-11-04  Chris Demetriou  <cgd@broadcom.com>
874         * configure.tgt (mips*el-*-netbsd*, mips*-*-netbsd*):
875         Add support for targets.
877 2001-11-02  Nick Clifton  <nickc@cambridge.redhat.com>
879         * configure.in (ALL_LINGUAS): Add "fr" and "sv"
880         * configure: Regernate.
881         * po/fr.po: New file.
882         * po/sv.po: New file.
884 2001-11-01  NIIBE Yutaka  <gniibe@m17n.org>
886         * configure.tgt (sh-*-linux): Set targ_emul, targ_extra_emuls
887         as little endian default and to support big endian.
889 2001-11-01  Chris Demetriou  <cgd@broadcom.com>
891         * ld.texinfo (Options): Document new option, -nostdlib.
892         * lexsup.c (OPTION_NOSTDLIB): New definition.
893         (ld_options): Add entry for "nostdlib".
894         (parse_args): Handle OPTIONS_NOSTDLIB.
895         * ldfile.c (ldfile_add_library_path): Don't add directories
896         to the search path if they weren't specified on the command line
897         and -nostdlib was specified.
898         * ld.h (ld_config_type): New member only_cmd_line_lib_dirs.
900 2001-10-31  Nick Clifton  <nickc@cambridge.redhat.com>
902         * lexsup.c (parse_args): Prevent infinite parsing loop when
903         "-rpath.a" is specified on the command line.
904         Replace calls to fprintf with calls to einfo.
906 2001-10-31  John Marshall  <jmarshall@acm.org>
908         * ld.texinfo: A historical requirement that MEMORY and SECTIONS
909         appear only once across all the linker scripts involved in a link
910         invocation no longer applies.  Make the documentation reflect
911         that.
913 2001-10-31  NIIBE Yutaka  <gniibe@m17n.org>
915         * configure.tgt: Supports sh3/sh4/sh3eb/sh4eb-unknown-linux-gnu
916         targets.
917         (sh-*-linux*): Added targ_extra_libpath.
919 2001-10-31  David Heine  <dlheine@tensilica.com>
921         * ldlang.c (lang_size_sections): Keep a valid output_offset field
922         for padding statements.
924 2001-10-30  Hans-Peter Nilsson  <hp@bitrange.com>
926         * configure.tgt (mmix-*-*): New target.
927         * Makefile.am (ALL_EMULATIONS): Add eelf64mmix.o and emmo.o.
928         Add dependencies to match.
929         * emulparams/mmo.sh, emulparams/elf64mmix.sh, emultempl/mmo.em,
930         emultempl/mmix-elfnmmo.em, emultempl/mmixelf.em,
931         scripttempl/mmo.sc: New files.
932         * gen-doc.texi: @set MMIX.
933         * ld.texinfo: Ditto.
934         [MMIX] Add MMIX node.
935         * Makefile.in: Regenerate.
937 2001-10-29  Kazu Hirata  <kazu@hxi.com>
939         * ldlang.c: Fix a comment typo.
941 2001-10-23  Alan Modra  <amodra@bigpond.net.au>
943         * configure.host: Move alpha*-*-linux-gnu* entry to generic
944         entries, and match *-*-linux*.
946 2001-10-20  Alan Modra  <amodra@bigpond.net.au>
948         * ldgram.y (mri_script_command): Surround processing of INCLUDE
949         with ldlex_script, ldlex_popstate.
950         (ifile_p1): Likewise.
951         * ldlex.l (EOF): Don't BEGIN(SCRIPT).  Restore lineno from the
952         correct slot.
953         (lex_push_file): Save current lineno to lineno_stack.  Set lineno
954         to 1.  Don't BEGIN(SCRIPT).
955         (lex_redirect): Similarly.
956         * ldmain.c (main): Set yydebug non-zero if YYDEBUG.
958 2001-10-20  Nick Clifton  <nickc@cambridge.redhat.com>
960         * scripttempl/armcoff.sc: Define __EH_FRAME_BEGIN__ and
961         __EH_FRAME_END__ and accept eh frames into data section.
962         Add ctor and dtor sections.
964 2001-10-19  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
966         * pe-dll.c (autofilter_objectlist): Add gcrt0.o.
967         (auto-export): Fix indentation.
969 2001-10-18  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
971         * pe-dll.c (autofilter_objectlist):  Add startup objects
972         for profiling.
973         (auto-export): Constify char * p.
974         Extract file basename and use strcmp rather than ststr
975         for object lookup.
977 2001-10-18  Chris Demetriou  <cgd@broadcom.com>
979         * ldmain.c (get_emulation): Improve comment about the handling
980         of -mipsN options.
982 2001-10-17  Alan Modra  <amodra@bigpond.net.au>
984         * po/POTFILES.in: Regenerate.
986 2001-10-16  Vassili Karpov  <malc@pulsesoft.com>
988         * emultempl/elf32.em (gld*_list_options): Remove extra '\t' from
989         -z nocopyreloc and -z nocombreloc usage strings.
991 2001-10-12  Vassili Karpov  <malc@pulsesoft.com>
993         * emultempl/elf32.em (gld*_list_options): Include -z nocopyreloc
994         in usage.
996 2001-10-11  Aleksey Romanov <aromanov@ennovatenetworks.com>
998         * scripttempl/armaout.sc: Place .bss section after end of aligned
999         data section to match behaviour of aout code in constructrion of
1000         header.
1002 2001-10-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
1004         * pe-dll.c (autofilter_entry_type autofilter_liblist: Add
1005         startup files for mingw32 dlls to list.
1007 2001-10-10  Chris Demetriou  <cgd@broadcom.com>
1009         * emultempl/elf32.em: Fix shell 'if' usage for portability.
1011 2001-10-08  Aldy Hernandez  <aldyh@redhat.com>
1013         * configure.tgt (targ): Add arm9e-*-elf.
1015 2001-10-05  H.J. Lu  <hjl@gnu.org>
1017         * genscripts.sh: Fix a typo in the last change.
1019 2001-10-05  Jakub Jelinek  <jakub@redhat.com>
1021         * emultempl/elf32.em (gld_*_list_options): Include -z combreloc and
1022         -z nocombreloc in usage.
1024 2001-10-03  Jim Blandy  <jimb@redhat.com>
1026         * genscripts.sh: Include a comment at the top of each generated
1027         script, explaining its purpose.
1029 2001-10-03  Vassili Karpov  <malc@pulsesoft.com>
1031         * emultempl/elf32.em (parse_args): Handle -z nocopyreloc.
1032         * NEWS: Mention -z nocopyreloc.
1033         * ld.texinfo (Options): Describe nocopyreloc.
1035 2001-10-03  Alan Modra  <amodra@bigpond.net.au>
1037         * configure: Regenerate.
1039 2001-10-02  Alan Modra  <amodra@bigpond.net.au>
1041         * ldver.h (ld_program_version): Remove declaration.
1042         * lexsup.c (parse_args): Move printing of copyright message..
1043         * ldver.c (ldversion): .. to here.
1044         Use BFD_VERSION_STRING in place of BFD_VERSION.
1045         (ld_program_version): Remove.
1046         * Makefile.am (Makefile): Depend on bfd/configure.in.
1047         Run "make dep-am".
1048         * Makefile.in: Regenerate.
1050 2001-09-30  Hans-Peter Nilsson  <hp@bitrange.com>
1052         * Makefile.am: Update dependencies with "make dep-am".
1053         * Makefile.in: Regenerate.
1055 2001-09-29  John Reiser  <jreiser@BitWagon.com>
1057         * ldlang.c (lang_common): Conditionally inhibit Common allocation.
1058         * lexsup.c: Add --no-define-common commandline option.
1059         * ldgram.y: Add INHIBIT_COMMON_ALLOCATION script command.
1060         * ldlex.l: Likewise.
1061         * ld.h: Add command_line.inhibit_common_definition.
1062         * ldmain.c (main): Initialize.
1063         * ld.texinfo: Document.
1065 2001-09-26  Alan Modra  <amodra@bigpond.net.au>
1067         * ldmisc.c (USE_STDARG): Remove.
1068         (info_msg): Define using VPARAMS, VA_OPEN, VA_FIXEDARG, VA_CLOSE.
1069         (einfo): Likewise.
1070         (minfo): Likewise.
1071         (lfinfo): Likewise.
1073         * ldmisc.h: Remove #ifdef ANSI_PROTOTYPES and non-ansi
1074         declarations.  Update copyright.
1076 2001-09-24  Charles Wilson  <cwilson@ece.gatech.edu>
1078         * pe-dll.c: Remove obsoleted declaration of
1079         pe_get_data_import_dll_name.
1080         (pe_create_import_fixup): Fix thinko.
1082         * ld.texinfo(enable-auto-import): Clarify the explanation.
1084 2001-09-24  Nick Clifton  <nickc@cambridge.redhat.com>
1086         * pe-dll.c (pe_create_import_fixup): Revert previous patch.
1087         * emultemp/pe.em (pe_data_import_dll): Move definition outside of
1088         DLL_SUPPORT controlled code.
1090 2001-09-24  Charles Wilson  <cwilson@ece.gatech.edu>
1092         * emultempl/pe.em(pe_data_import_dll): Make static.
1093         (pe_get_data_import_dll_name): New accessor function.
1094         * pe-dll.c(pe_create_import_fixup): call
1095         pe_get_data_import_dll_name() from pe.em, instead of
1096         directly accessing pe_data_import_dll variable from pe.em.
1098 2001-09-18  Bruno Haible  <haible@clisp.cons.org>
1100         * deffilep.y: Include "safe-ctype.h" instead of <ctype.h>.
1101         (def_file_add_directive): Use ISSPACE instead of isspace.
1102         (def_lex): Use ISDIGIT/ISXDIGIT/ISALPHA/ISALNUM instead of
1103         isdigit/isxdigit/isalpha/isalnum.
1104         * emultempl/aix.em: Include "safe-ctype.h" instead of <ctype.h>.
1105         (gld${EMULATION_NAME}_read_file): Use ISSPACE instead of isspace.
1106         * emultempl/elf32.em: Include "safe-ctype.h" instead of <ctype.h>.
1107         (gld${EMULATION_NAME}_place_orphan): Use ISALNUM instead of
1108         isalnum.
1109         * emultempl/gld960c.em: Include "safe-ctype.h" instead of <ctype.h>.
1110         (gld960_set_output_arch): Use ISUPPER/TOLOWER instead of
1111         isupper/tolower.
1112         * emultempl/sunos.em: Include "safe-ctype.h" instead of <ctype.h>.
1113         (gld${EMULATION_NAME}_search_dir): Use ISDIGIT instead of isdigit.
1114         * ldctor.c: Include "safe-ctype.h" instead of <ctype.h>.
1115         (ctor_prio): Use ISDIGIT instead of isdigit.
1116         * ldfile.c: Include "safe-ctype.h" instead of <ctype.h>.
1117         (ldfile_open_file_search): Use ISALPHA instead of isalpha.
1118         (ldfile_add_arch): Use ISUPPER/TOLOWER instead of
1119         isupper/tolower.
1120         * ldlang.c: Include "safe-ctype.h" instead of <ctype.h>.
1121         (stricpy): Use TOLOWER instead of isupper/tolower.
1122         (lang_leave_overlay_section): Use ISALNUM instead of isalnum.
1123         * ldlex.l: Include "safe-ctype.h" instead of <ctype.h>.
1124         (lex_warn_invalid): Use ISPRINT instead of isprint.
1125         * ldmain.c: Include "safe-ctype.h" instead of <ctype.h>.
1126         (main): For gettext, also set the LC_CTYPE locate facet.
1127         (add_keepsyms_file): Use ISSPACE instead of isspace.
1128         * lexsup.c: Include "safe-ctype.h" instead of <ctype.h>.
1129         (is_num, parse_args): Use ISDIGIT instead of isdigit.
1130         * mpw-elfmips.c: Include "safe-ctype.h" instead of <ctype.h>.
1131         (gldelf32ebmip_place_orphan): Use ISALNUM instead of isalnum.
1132         * mpw-eppcmac.c: Include "safe-ctype.h" instead of <ctype.h>.
1133         (gldppcmacos_read_file): Use ISSPACE instead of isspace.
1134         * pe-dll.c: Include "safe-ctype.h" instead of <ctype.h>.
1135         (quoteput): Use ISSPACE instead of isspace.
1136         (pe_dll_generate_implib, pe_process_import_defs): Use ISALNUM
1137         instead of isalnum.
1139 2001-09-18  Alan Modra  <amodra@bigpond.net.au>
1141         * deffilep.y (def_stash_module): Constify "name" param.
1143         * pe-dll.c: Replace CONST with const throughout.
1144         (quick_symbol): Constify "n1", "n2", "n3" params.
1145         (make_singleton_name_thunk): Constify "import" param.  Make
1146         "buffer_len" a size_t.
1147         (make_import_fixup_entry): Constify "name", "fixup_name",
1148         "dll_symname" params.
1149         (pe_get16): Cast args of bfd_seek.  Replace bfd_read with bfd_bread.
1150         (pe_get32): Likewise.
1151         (pe_implied_import_dll): Likewise.
1153         * emultempl/beos.em (sort_by_file_name): Constify "ra", "rb".
1154         (sort_by_section_name): Likewise.
1156         * emultempl/pe.em: Move defines for arm_epoc_pe before bfd.h included.
1157         (make_import_fixup): Cast printf arg, rel->address to long rather
1158         than int.
1159         (gld_${EMULATION_NAME}_after_open): Don't compare NULL against int.
1161 2001-09-15  Alan Modra  <amodra@bigpond.net.au>
1163         * ldmain.c (main): Rename BufferSize to ld_bufsz because HPUX
1164         defines BufferSize.  Increase buffer size by one.
1166 2001-09-14  Ralf Habacker <Ralf.Habacker@freenet.de>
1168         * pe-dll.c (pe_walk_relocs_of_symbol): Fix memory leak.
1170 2001-09-14  Kevin Lo <kevlo@openbsd.org>
1172         * configure.tgt: Add arm-openbsd target.
1174 2001-09-12  H.J. Lu  <hjl@gnu.org>
1176         * Makefile.am (ALL_EMULATIONS): Move eelf64ppc.o and
1177         eelf64lppc.o to ...
1178         (ALL_64_EMULATIONS): Here.
1179         * Makefile.in: Regenerated.
1181 2001-09-12  Paul Sokolovsky  <Paul.Sokolovsky@technologist.com>
1183         * emultempl/pe.em(make_import_fixup): change signature to
1184         take asection as well as arelec; we need this for proper
1185         error reporting.  Only call pe_create_import_fixup() if
1186         there is no attempt to add a constant addend to the reloc;
1187         otherwise, report error condition.
1188         * pe-dll.c(pe_walk_relocs_of_symbol): change signature,
1189         since final argument is a pointer to make_import_fixup().
1190         Change call to cb() to match make_import_fixup() signature.
1191         (make_import_fixup_mark): make buffer_len unsigned.
1192         * pe-dll.h: change signature of pe_walk_relocs_of_symbol.
1194 2001-09-12  Charles Wilson  <cwilson@ece.gatech.edu>
1196         * ld.texinfo: add verbose documentation for auto-import
1197         direct-addressing workaround, to compliment the terse
1198         error message.
1200 2001-09-12  Andrew MacLeod  <amacleod@redhat.com>
1202         * scripttempl/v850.sc: Add gcc_except_table sections.
1204 2001-09-11  Jeffrey A Law  (law@cygnus.com)
1206         * emulparams/h8300helf.sh: Move stack to a much higher memory address.
1207         * emulparams/h8300self.sh: Similarly.
1209 2001-09-05 Danny Smith <dannysmith@users.souceforge.net>
1211         * ld.texinfo (Options, --stack): Correct default value for stack
1212         reserve.
1214 2001-09-05  Tom Rix <trix@redhat.com>
1216         * emultempl/aix.em : Handle import file XMC_XO and syscall symbols.
1218 2001-09-03  Andreas Jaeger  <aj@suse.de>
1220         * emultempl/beos.em: Declare prototypes for comparions functions,
1221         adjust definitions.
1223 2001-09-02  Andreas Jaeger  <aj@suse.de>
1225         * emultempl/aix.em: Add missing prototype.
1226         * emultempl/lnk960.em: Likewise.
1227         * emultempl/vanilla.em: Likewise.
1228         * emultempl/armcoff.em: Likewise.
1229         * emultempl/armelf_oabi.em: Likewise.
1230         * emultempl/beos.em: Likewise.
1231         * emultempl/gld960c.em: Likewise.
1232         * emultempl/gld960.em: Likewise.
1234         * emulparams/elf64alpha.sh (PARSE_AND_LIST_PROLOGUE): Add parameter
1235         for prototype declaration.
1237 2001-08-31  Eric Christopher  <echristo@redhat.com>
1238             Jason Eckhardt  <jle@redhat.com>
1240         * ldmain.c (get_emulation): Add support for -mips32 and -mips64.
1242 2001-08-31  Andreas Jaeger  <aj@suse.de>
1244         * emultempl/pe.em: Add missing prototypes.
1245         (gld_${EMULATION_NAME}_after_open): Remove extra args to
1246         pe_find_data_imports.
1247         (pr_sym): Add unused attribute.
1249 2001-08-29  Joel Sherrill <joel@OARcorp.com>
1251         * configure.tgt (i[3456]86-*-rtems*, m68*-*-rtems*): Change
1252         default from coff to elf.
1254 2001-08-29  Jeff Law <law@redhat.com>
1256         * emulparams/h8300helf.sh: Resync with h8300elf.sh.  Update
1257         ARCH specification.
1258         * emulparams/h8300self.sh: Similarly.
1260 2001-08-28  J"orn Rennecke <amylaar@redhat.com>
1262         * Makefile.am (ALL_EMULATIONS): Add eh8300elf.o, eh8300elf.o and
1263         eh8300self.o .
1264         (eh8300elf.c, eh8300helf.c, eh8300self.c): New targets.
1265         * configure.tgt (h8300-*-elf*): New case.
1266         * emulparams/h8300elf.sh, emulparams/h8300helf.sh: New files.
1267         * emulparams/h8300self.sh: New file.
1268         * Makefile.in: Regenerated.
1270 2001-08-28  Nick Clifton  <nickc@cambridge.redhat.com>
1272         * ldmain.c (main): Rename BSIZE to BufferSize to avoid collision
1273         with macro name.
1275 2001-08-27  Linus Nordberg  <linus@swox.com>
1276             Alan Modra  <amodra@bigpond.net.au>
1278         * Makefile.am (ALL_EMULATIONS): Add eelf64ppc.o and eelf64lppc.o.
1279         (eelf64ppc.c, eelf64lppc.c): Add make targets.
1280         Run "make dep-am"
1281         * Makefile.in: Regenerate.
1282         * configure.tgt: Add powerpc64 support.  Move pdp11, pjl, pj
1283         entries to correct alphabetical position.
1284         * emulparams/elf64ppc.sh: New.
1285         * emulparams/elf64lppc.sh: New.
1287 2001-08-27  Nick Clifton  <nickc@cambridge.redhat.com>
1289         * ldmain.c (main): Declare BSIZE as static.
1291 2001-08-23  Jakub Jelinek  <jakub@redhat.com>
1293         * emultempl/elf32.em (place_orphan): Place orphan .rel* sections
1294         into .rel.dyn resp. .rela.dyn if combreloc.
1295         (get_script): If .x linker script is equal to .xn, only put it
1296         once into the binary.
1297         Add .xc and .xsc scripts.
1298         (parse_args): Handle -z combreloc and -z nocombreloc.
1299         * scripttempl/elf.sc (.rela.sbss): Fix a typo.
1300         For .xc and .xsc scripts put all .rel* or .rela* input sections
1301         but .rel*.plt and PLT-like sections into .rel.dyn resp. .rela.dyn.
1302         * genscripts.sh (GENERATE_COMBRELOC_SCRIPT): Set if SCRIPT_NAME
1303         is elf.
1304         Strip trailing whitespace from script.
1305         Generate .xc and .xsc scripts if requested.
1306         * ldmain.c (main): Initialize link_info.combreloc and
1307         link_info.spare_dynamic_tags.
1308         * lexsup.c (OPTION_SPARE_DYNAMIC_TAGS): Define.
1309         (ld_options): Add --spare-dynamic-tags option.
1310         (parse_args): Likewise.
1311         * ld.texinfo: Document -z combreloc and -z nocombreloc.
1312         * ldint.texinfo: Document .xc and .xsc linker scripts.
1313         * NEWS: Add notes about -z combreloc and SHF_MERGE.
1315 2001-08-22  H.J. Lu  <hjl@gnu.org>
1317         * emulparams/elf32fr30.sh: Add a newline.
1319 2001-08-21  Andreas Jaeger  <aj@suse.de>
1321         * deffilep.y: Add missing prototypes.
1322         * pe-dll.c: Likewise.
1324 2001-08-20  Alan Modra  <amodra@bigpond.net.au>
1326         * ldlang.c (insert_pad): Fix typos in last patch.
1328         * ldlang.c: When traversing lang_statement_union_type lists,
1329         consistently use "header.next" rather than "next".
1330         * mpw-eppcmac.c: Likewise.
1331         * emultempl/beos.em: Likewise.
1332         * emultempl/hppaelf.em: Likewise.
1333         * emultempl/pe.em: Likewise.
1334         * ldlang.h (union lang_statement_union): Remove "next" field.
1336         * ldlang.c (insert_pad): Use offsetof macro.
1337         (lang_size_sections): Always neuter padding statements.
1338         * emultempl/hppaelf.em (hppaelf_delete_padding_statements): Delete.
1340         * pe-dll.c (pe_dll_fill_sections): Correct type of "relax" param
1341         passed to lang_size_sections.
1342         (pe_exe_fill_sections): Likewise.
1343         * emultempl/pe.em (output_prev_sec_find): Copied from elf32.em.
1344         (gld_${EMULATION_NAME}_place_orphan): Merge from elf32.em.
1346 2001-08-18  Alan Modra  <amodra@bigpond.net.au>
1348         * emultempl/aix.em: Formatting fixes.
1350 2001-08-18  Alan Modra  <amodra@bigpond.net.au>
1352         * ldlang.c (insert_pad): Make use of an existing pad statement if
1353         available.  Move code calculating alignment, adjusting section
1354         alignment power, and adjusting dot to ..
1355         (size_input_section): .. here.  Remove unused relax param.
1356         (lang_size_sections): Change boolean `relax' param to boolean *.
1357         Adjust call to size_input_section.  Make use of insert_pad to
1358         place pad after the assignment statement.  If relaxing, zap
1359         padding statements.
1360         (reset_memory_regions): Reset output_bfd section sizes too.
1361         (relax_again): Move to..
1362         (lang_process): ..here.  Adjust call to lang_size_sections, and
1363         remove duplicated code.
1364         * ldlang.h (lang_size_sections): Change `relax' param to boolean *.
1366 2001-08-17  Alan Modra  <amodra@bigpond.net.au>
1368         * ld.texinfo: Document that fill values now use the four least
1369         significant bytes.
1370         * emulparams/elf32fr30.sh (NOP): Update.
1371         * emulparams/elf32mcore.sh: Likewise.
1372         * emulparams/elf64_s390.sh: Likewise.
1373         * emulparams/elf_i386.sh: Likewise.
1374         * emulparams/elf_i386_be.sh: Likewise.
1375         * emulparams/elf_i386_chaos.sh: Likewise.
1376         * emulparams/elf_i386_ldso.sh: Likewise.
1377         * emulparams/elf_s390.sh: Likewise.
1378         * emulparams/elf_x86_64.sh: Likewise.
1379         * emulparams/i386moss.sh: Likewise.
1380         * emulparams/i386nw.sh: Likewise.
1381         * emulparams/m68kelf.sh: Likewise.
1382         * scripttempl/elf.sc: Update NOP comment.
1383         * scripttempl/elfi370.sc: Likewise.
1384         * scripttempl/elfm68hc11.sc: Likewise.
1385         * scripttempl/elfm68hc12.sc: Likewise.
1386         * scripttempl/nw.sc: Likewise.
1388 2001-08-15  Tom Rix <trix@redhat.com>
1390         * ldgram.y (saved_script_handle): Initialize to NULL.
1391         * ldmain.c (main): Change check on saved_script_handle.
1393 2001-08-14  Alan Modra  <amodra@bigpond.net.au>
1395         * emultempl/elf32.em: Formatting fixes.
1396         (output_prev_sec_find): Test for bfd_ind_section too;  do so by
1397         looking at sec->owner.
1398         (output_rel_find): Move function inside LDEMUL_PLACE_ORPHAN test.
1399         (gld${EMULATION_NAME}_place_orphan): Add a few comments.  Remove
1400         unused code, and reorganize orphan section placement code.
1402         * ldlang.c (wild_doit): Rename to lang_add_section.
1403         * ldlang.h: Here too.
1404         * mpw-elfmips.c: And here.
1405         * emultempl/beos.em: And here.
1406         * emultempl/elf32.em: And here.
1407         * emultempl/hppaelf.em: And here.
1408         * emultempl/pe.em: And here.
1410 2001-08-13  Richard Henderson  <rth@redhat.com>
1412         * emultempl/needrelax.em: New file.
1413         * emulparams/elf64_ia64.sh (EXTRA_EM_FILE): Reference it.
1414         * Makefile.am (eelf64_ia64.c): Depend on it.
1415         * Makefile.in: Rebuild.
1417 2001-08-13  Alan Modra  <amodra@bigpond.net.au>
1419         * emultempl/elf32.em: For SEC_EXCLUDE sections, ensure that
1420         output_section is set non-NULL.
1422         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Return
1423         `true' for SEC_EXCLUDE sections so that the generic code doesn't
1424         needlessly create an output_section_statement.  Treat a correctly
1425         named output_section_statement with NULL bfd_section as compatible.
1427 2001-08-13  Hans-Peter Nilsson  <hp@bitrange.com>
1429         * emultempl/generic.em: Support EXTRA_EM_FILE.
1430         (ld_${EMULATION_NAME}_emulation): Support emulation parameters
1431         LDEMUL_BEFORE_PARSE, LDEMUL_SYSLIB, LDEMUL_HLL,
1432         LDEMUL_AFTER_PARSE, LDEMUL_AFTER_OPEN, LDEMUL_AFTER_ALLOCATION,
1433         LDEMUL_SET_OUTPUT_ARCH, LDEMUL_CHOOSE_TARGET,
1434         LDEMUL_BEFORE_ALLOCATION, LDEMUL_GET_SCRIPT, LDEMUL_FINISH,
1435         LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS,
1436         LDEMUL_OPEN_DYNAMIC_ARCHIVE, LDEMUL_PLACE_ORPHAN,
1437         LDEMUL_SET_SYMBOLS, LDEMUL_PARSE_ARGS, LDEMUL_UNRECOGNIZED_FILE,
1438         LDEMUL_LIST_OPTIONS, LDEMUL_RECOGNIZED_FILE,
1439         LDEMUL_FIND_POTENTIAL_LIBRARIES.
1441 2001-08-12  Richard Henderson  <rth@redhat.com>
1443         * scripttempl/elf.sc, scripttempl/elfd30v.sc,
1444         scripttempl/elfm68hc11.sc, scripttempl/elfm68hc12.sc,
1445         scripttempl/v850.sc: Keep .jcr data.
1447 2001-08-12  H.J. Lu  <hjl@gnu.org>
1448             Andrew Haley  <aph@cambridge.redhat.com>
1449             Nick Clifton  <nickc@redhat.com>
1451         * ldgram.y (had_script): Change name to saved_script_handle.
1452         Change type to file handle.
1453         * ld.h (had_script): Rename and retype.
1454         * ldfile.c (ldfile_open_command_file): Save the file handle
1455         used in saved_script_handle.
1456         * lexsup.c (parse_args): Do not allow -c option to alter
1457         saved_script_handle.
1458         * ldmain.c (main): Print out the linker script used if
1459         --verbose is given.  Check saved_script_handle to obtain the
1460         external linker script used, or if NULL, dump the builtin
1461         script.
1462         * ld.texinfo: Document that --verbose now dumps the linker
1463         script used, regardless of whether it was an internal or an
1464         external script.
1466 2001-08-10  Andreas Jaeger  <aj@suse.de>
1468         * configure.in: Add -Wstrict-prototypes and -Wmissing-prototypes
1469         to build warnings.
1470         * configure: Regenerate.
1472 2001-08-09  Alan Modra  <amodra@bigpond.net.au>
1474         * emultempl/elf32.em (output_prev_sec_find): Add missing prototype.
1476         * scripttempl/elf.sc: Move non-text .dynamic section before
1477         .plt/.got/.sdata* group.
1478         (OTHER_GOT_SECTIONS): Move to immediately after .got.
1479         (OTHER_SDATA_SECTIONS): Add.
1480         * emulparams/criself.sh: Use OTHER_SDATA_SECTIONS rather than
1481         OTHER_GOT_SECTIONS.
1482         * emulparams/crislinux.sh: Likewise.
1483         * emulparams/elf32b4300.sh: Likewise.
1484         * emulparams/elf32bmip.sh: Likewise.
1485         * emulparams/elf32bmipn32.sh: Likewise.
1486         * emulparams/elf32bsmip.sh: Likewise.
1487         * emulparams/elf32btsmip.sh: Likewise.
1488         * emulparams/elf32ebmip.sh: Likewise.
1489         * emulparams/elf32elmip.sh: Likewise.
1490         * emulparams/elf32l4300.sh: Likewise.
1491         * emulparams/elf32lmip.sh: Likewise.
1492         * emulparams/elf32lsmip.sh: Likewise.
1493         * emulparams/elf32ltsmip.sh: Likewise.
1494         * emulparams/elf64bmip.sh: Likewise.
1495         * emulparams/elf64btsmip.sh: Likewise.
1496         * emulparams/elf64ltsmip.sh: Likewise.
1498 2001-08-08  Alan Modra  <amodra@bigpond.net.au>
1500         * genscripts.sh: Source the emulparams script before each output
1501         script is generated so that variables like `RELOCATING' may affect
1502         variables defined in the emulparams script.
1504 2001-08-04  Alan Modra  <amodra@bigpond.net.au>
1506         * emultempl/aix.em: ldexp.h,ldlang.h,ldfile.h,ldemul.h go in this
1507         order.
1509         * emultempl/beos.em (sort_sections): Modify for 2001-08-03 change,
1510         ie. iterate over wild_statement.section_list.
1511         (gld${EMULATION_NAME}_place_orphan): Likewise.
1513 2001-08-03  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
1515         * scripttempl/elfm68hc12.sc (FINISH_CODE, FINISH_RELOC): New to handle
1516         .fini[0-4] sections used by _exit
1517         (CTOR, DTOR): Export ctor/dtor symbols; move them to ROM.
1518         (*.text,*.data,*.bss): Take into account .text.*, .data.*, .bss.*.
1519         * scripttempl/elfm68hc11.sc: Likewise.
1521 2001-08-03  H.J. Lu  <hjl@gnu.org>
1523         * emultempl/beos.em (init): Add the missing initialization.
1525 2001-08-03  Alan Modra  <amodra@bigpond.net.au>
1527         * ld.texinfo (Input Section Basics): Clarify ordering of output
1528         sections.
1529         * ldlang.c (callback_t): Add wildcard_list param.
1530         (walk_wild_section): Remove "section" param.  Rewrite for
1531         lang_wild_statement_type change.  Remove unique_section_p test.
1532         (walk_wild_file): Remove "section" param.
1533         (walk_wild): Remove "section" and "file" params.
1534         (lang_gc_wild): Likewise.
1535         (wild): Likewise.  Modify for lang_wild_statement_type change.
1536         (wild_sort): Likewise.  Add "sec" param.
1537         (gc_section_callback): Likewise.
1538         (output_section_callback): Likewise.  Do unique_section_p test.
1539         (map_input_to_output_sections): Modify call to wild.
1540         (lang_gc_sections_1): Likewise.
1541         (print_wild_statement): Modify for lang_wild_statement_type
1542         change.
1543         (lang_add_wild): Replace filename, filenames_sorted param with
1544         filespec.  Replace section_name, sections_sorted,
1545         exclude_filename_list with section_list.
1546         * ldlang.h (lang_add_wild): Here too.
1547         (lang_wild_statement_type): Replace section_name, sections_sorted,
1548         and exclude_filename_list with section_list.
1549         * ldgram.y (current_file): Delete.
1550         (%union): Add wildcard_list.
1551         (file_NAME_list): Set type to wildcard_list.  Build a linked list
1552         rather than calling lang_add_wild for each entry.
1553         (input_section_spec_no_keep): Call lang_add_wild here instead.
1554         * ld.h (struct wildcard_list): Declare.
1555         * mri.c (mri_draw_tree): Modify to suit new lang_add_wild.
1557 2001-08-02  Charles Wilson  <cwilson@ece.gatech.edu>
1559         * ldmain.c (main): initialize link_info.pei386_auto_import
1560         * pe-dll.c: new tables for auto-export filtering
1561         (auto_export): change API, pass abfd for contextual filtering.
1562         Loop thru tables of excluded symbols instead of comparing
1563         "by hand".
1565 2001-08-02  Paul Sokolovsky  <paul.sokolovsky@technologist.com>
1567         * pe-dll.c: new variable pe_dll_enable_extra_debug. New
1568         static variable current_sec (static struct sec *). Add
1569         forward declaration for add_bfd_to_link.
1570         (process_def_file): Don't export undefined symbols. Do not
1571         export symbols starting with  "_imp__".  Call auto_export()
1572         with new API.
1573         (pe_walk_relocs_of_symbol): New function.
1574         (generate_reloc): add optional extra debugging
1575         (pe_dll_generate_def_file): eliminate extraneous initial blank
1576         line in output
1577         (make_one): enlarge symtab to make room for __nm__ symbols
1578         (DATA auto-import support).
1579         (make_singleton_name_thunk): New function.
1580         (make_import_fixup_mark): New function.
1581         (make_import_fixup_entry): New function.
1582         (pe_create_import_fixup): New function.
1583         (add_bfd_to_link): Specify that 'name' argument is a CONST
1584         char *.
1585         * pe-dll.h: declare new variable pe_dll_extra_pe_debug;
1586         declare new functions pe_walk_relocs_of_symbol and
1587         pe_create_import_fixup.
1588         * emultempl/pe.em: add new options --enable-auto-import,
1589         --disable-auto-import, and --enable-extra-pe-debug.
1590         (make_import_fixup): New function.
1591         (pe_find_data_imports): New function.
1592         (pr_sym): New function.
1593         (gld_${EMULATION_NAME}_after_open): Add optional extra pe
1594         debugging. Call pe_find_data_imports.  Mark .idata as DATA, not
1595         CODE.
1597 2001-08-02  Charles Wilson  <cwilson@ece.gatech.edu>
1599         * ld.texinfo: add additional documentation for
1600         --export-all-symbols.  Document --out-implib,
1601         --enable-auto-image-base, --disable-auto-image-base,
1602         --dll-search-prefix, --enable-auto-import, and
1603         --disable-auto-import.
1604         * ldint.texinfo: Add detailed documentation on auto-import
1605         implementation.
1607 2001-07-30  Nick Clifton  <nickc@cambridge.redhat.com>
1609         * ld.texinfo (Simple Assignments): Fix computation in SECTIONS
1610         example.
1612 2001-07-24  Alan Modra  <amodra@bigpond.net.au>
1614         * Makefile.am: Update dependencies with "make dep-am".
1615         * Makefile.in: Regenerate
1617 2001-07-23  Alan Modra  <amodra@bigpond.net.au>
1619         * ldcref.c (check_section_sym_xref): New function.
1620         (check_nocrossrefs): Call it.
1621         (check_nocrossref): Interate over h->refs here instead of..
1622         (check_refs): ..here.  Pass in the symbol name, section, and bfd
1623         rather than hash_entry pointers.
1624         (struct check_refs_info): Keep symbol name rather than hash entry.
1625         Remove "same".
1626         (check_reloc_refs): Tweak for above changes in check_refs_info.
1627         Only report references to section syms when symname is NULL to
1628         prevent duplicate messages for the same reloc.
1630 2001-07-19  Nick Clifton  <nickc@cambridge.redhat.com>
1632         * ldexp.c (exp_print_tree): Use stderr if config.map_file is not
1633         available.  Do not print NULL trees.
1634         (exp_print_token): Print unknown tokens with values > 126 as
1635         decimal values not ASCII characters.
1637         * ldlang.c (lang_leave_overlay): If a region is specified assign
1638         it to all sections inside the overlay unless they have been
1639         assigned to the own, non-default, memory region.
1641         * README: Add header for consistency with other README files.
1643 2001-07-14  H.J. Lu  <hjl@gnu.org>
1645         * emultempl/elf32.em (output_prev_sec_find): Never return
1646         bfd_abs_section_ptr, bfd_com_section_ptr nor
1647         bfd_und_section_ptr.
1649 2001-07-14  Nick Clifton  <nickc@cambridge.redhat.com>
1651         * Makefile.am (em32relf.c): Change dependency from generic.em to
1652         elf32.em.
1653         * Makefile.in: Regenerate.
1655 2001-07-14  matthew green  <mrg@eterna.com.au>
1657         * configure.tgt (i386-*-netbsdelf*): New target.
1658         (i386-*-netbsd*): Set targ_extra_emuls to `elf_i386'
1660 2001-07-13  Jakub Jelinek  <jakub@redhat.com>
1662         * emultempl/elf32.em (output_prev_sec_find): New.
1663         (place_orphan): Use it.
1665 2001-07-11  H.J. Lu  <hjl@gnu.org>
1667         * ldmain.c (main): Fix typos in the last change.
1669 2001-07-11  Jakub Jelinek  <jakub@redhat.com>
1671         * ldmain.c (main): Disallow -F and -f without -shared.
1673 2001-07-11  Nick Clifton  <nickc@cambridge.redhat.com>
1675         * emultempl/pe.em (after_open): Check for the output_bfd not
1676         having any coff_data structure allocated to it.
1678 2001-07-09  David O'Brien  <obrien@FreeBSD.org>
1680         * emultempl/elf32.em: Do not assuming that contents of the buffer
1681         returned from basename function will remain unchanged accross other
1682         function calls.
1684 2001-07-03  H.J. Lu  <hjl@gnu.org>
1686         * scripttempl/elf.sc (DYNAMIC_PAD): Revert the change made on
1687         2001-07-03. It creates dynamic entries even for static binaries.
1689 2001-07-03  Jakub Jelinek  <jakub@redhat.com>
1691         * scripttempl/elf.sc (DYNAMIC_PAD): New variable.
1692         (DYNAMIC): Use it to reserve few dynamic entries for
1693         post-linking tools.
1695 2001-06-27  Alan Modra  <amodra@bigpond.net.au>
1697         * emulparams/hppa64linux.sh: New file.
1698         * configure.tgt: hppa*64*-*-linux* uses hppa64linux.sh
1699         * Makefile.am (ALL_64_EMULATIONS): Add ehppa64linux.o
1700         (ehppa64linux.c): Add rule to make it.
1701         Run "make dep-am".
1702         * Makefile.in: Regenerate.
1704 2001-06-21  Hans-Peter Nilsson  <hp@axis.com>
1706         * ld.texinfo (Options, -r): Mention restrictions when using
1707         different object formats.
1709 2001-06-19  Hans-Peter Nilsson  <hp@axis.com>
1711         * ldlang.c (lang_check): Emit fatal error if relocatable link
1712         between different object flavours with relocations in input.
1714 2001-06-19  H.J. Lu  <hjl@gnu.org>
1716         * ld.texinfo (-E, --export-dynamic): Mention --version-script.
1717         (--version-script): Mention the language support.
1719 2001-06-19  H.J. Lu <hjl@gnu.org>
1721         * ldlang.c (lang_check): Revert the change mode on 2001-06-15.
1723 2001-06-18  H.J. Lu <hjl@gnu.org>
1725         * Makefile.am (ld.1): Remove the prefix `$(srcdir)/'.
1726         (diststuff): Add $(MANS).
1727         * Makefile.in: Regenerated.
1729         * ld.1: Removed.
1731 2001-06-18  Hans-Peter Nilsson  <hp@axis.com>
1733         * emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation):
1734         Update for API change in bfd_elf${ELFSIZE}_size_dynamic_sections.
1735         * mpw-elfmips.c (gldelf32ebmip_before_allocation): Ditto.
1736         * ld.h (args_type): Remove member export_dynamic.  All users
1737         changed to use struct bfd_link_info member.
1739         * Makefile.am (ecriself.c, ed10velf.c, ei386moss.c): Depend on
1740         $(srcdir)/emultempl/elf32.em, not $(srcdir)/emultempl/generic.em.
1741         * Makefile.in: Regenerate.
1743 2001-06-18  H.J. Lu  <hjl@gnu.org>
1745         * ldlang.c (init_os): Add the newline to the einfo call.
1746         (lang_check): Likewise.
1747         (lang_do_version_exports_section): Likewise.
1749 2001-06-15  H.J. Lu  <hjl@gnu.org>
1751         * lexsup.c (parse_args); Save optind to report unrecognized
1752         option.
1754 2001-06-15  Hans-Peter Nilsson  <hp@axis.com>
1756         * ldlang.c (lang_check): Emit fatal error if relocatable link
1757         between different object flavours.
1759         * lexsup.c (parse_args) <case OPTION_EXPORT_DYNAMIC, case 'E'>:
1760         Set new link_info member export_dynamic.
1761         * ldmain.c (main): Initialize new link_info member export_dynamic.
1763 2001-06-12  Nick Clifton  <nickc@cambridge.redhat.com>
1765         * ldlang.c (walk_wild): Only call walk_wild_file if
1766         lookup_name returns something.
1767         (lookup_name): If load_symbols fails, return NULL.
1768         (load_symbols): Change to a boolean function.
1769         (open_input_bfds): If load_symbols fails then do not make the
1770         executable.
1772 2001-06-08  Alan Modra  <amodra@bigpond.net.au>
1774         * ldlang.c (record_bfd_errors): Remove.
1776         * emultempl/aix.em: Fix copyright dates.
1778 2001-06-07  Andreas Jaeger  <aj@suse.de>
1780         * elf_x86_64.sh (NONPAGED_TEXT_START_ADDR): Increase.
1781         (TEXT_START_ADDR): Likewise.
1783 2001-06-06  Martin Schwidefsky <schwidefsky@de.ibm.com>
1785         * configure.host: Set HOSTING_CRT0/HOSTING_LIBS correctly for s/390.
1787 2001-06-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
1789         * emultempl/pe.em (init): Reduce default stack reserve to 0x200000.
1791 2001-05-31  H.J. Lu  <hjl@gnu.org>
1793         * ldlang.c (open_input_bfds): Don't change the bfd error
1794         handler whilst loading symbols.
1796 2001-05-28  Nick Clifton  <nickc@cambridge.redhat.com>
1798         * configure.tgt: Remove i370-mvs architecture, it is not currently
1799         supported.
1801 2001-05-25  H.J. Lu  <hjl@gnu.org>
1803         * emulparams/ppcmacos.sh: Add SYSCALL_MASK and SYMBOL_MODE_MASK
1804         like emulparams/aixppc.sh.
1806 2001-05-25  H.J. Lu  <hjl@gnu.org>
1808         * emultempl/beos.em (gld${EMULATION_NAME}_before_parse): Move
1809         setting of output_filename after bfd_scan_arch.
1810         * emultempl/pe.em: Likewise.
1812 2001-05-25  H.J. Lu  <hjl@gnu.org>
1814         * emulparams/aixrs6.sh: Add SYSCALL_MASK and SYMBOL_MODE_MASK
1815         like emulparams/aixppc.sh.
1817         * emultempl/aix.em (sc): Use ${srcdir}/emultempl/ostring.sed
1818         instead of ${srcdir}/emultempl/stringify.sed.
1820 2001-05-25  Timothy Wall  <twall@oculustech.com>
1822         * emulparams/elf64_aix.sh: Change settings to match IBM linker
1823         output.
1825 2001-05-25  Alan Modra  <amodra@one.net.au>
1827         * configure.host: Replace linuxoldld with linux*oldld.
1828         * configure.tgt: Likewise.
1830 2001-05-24  H.J. Lu  <hjl@gnu.org>
1832         * emultempl/stringify.sed: Removed again.
1834 2001-05-24  H.J. Lu  <hjl@gnu.org>
1836         * emultempl/aix.em (OUTPUT_ARCH): Defined.
1837         (gld${EMULATION_NAME}_before_parse): Initialize
1838         ldfile_output_architecture, ldfile_output_machine and
1839         ldfile_output_machine_name from ${OUTPUT_ARCH} if possible.
1840         * emultempl/beos.em: Likewise.
1841         * emultempl/elf32.em: Likewise.
1842         * emultempl/linux.em: Likewise.
1843         * emultempl/mipsecoff.em: Likewise.
1844         * emultempl/pe.em: Likewise.
1845         * emultempl/sunos.em: Likewise.
1847 2001-05-24 Tom Rix <trix@redhat.com>
1849         * emultempl/aix.em : (gld${EMULATION_NAME}_read_file)
1850         udate import file format.
1851         (change_symbol_mode) New, same
1852         (is_syscall) New, same
1853         * emulparams/aixppc.sh : add SYSCALL_MASK and SYMBOL_MODE_MASK
1854         * emulparams/aixppc64.sh : same
1855         * emulparams/aixrs6.sh : same
1856         * emulparams/ppcmacos.sh : same
1857         * emultempl/aix.em : use strtoull to parse options
1858         * Makefile.am : add eaixppc64 emulation for xcoff64
1859         * Makefile.in : same
1860         * configure.tgt : same
1862         * scripttempl/aix.sc : default text section offset to 0x10000000
1863         default data section offset to 0x20000000
1864         add .sv3264 and .sv64 pseudo sections
1865         loader and debug sections use the currect section offset.
1867         * emultempl/aix.em : Add xcoff64 support
1868         Add -binitfini support
1869         (gld${EMULATION_NAME}_before_parse) -binitfini
1870         (gld${EMULATION_NAME}_parse_args) same
1871         (gld${EMULATION_NAME}_before_allocation) format change for special
1872         sections
1874         * emulparams/aixppc64.sh : New file for xcoff64 support
1876 2001-05-23  Alexandre Oliva  <aoliva@redhat.com>
1878         * emultempl/elf32.em (ELF_INTERPRETER_SET_DEFAULT): Use this new
1879         variable to avoid non-portable shell construct.
1881 2001-05-23  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
1883         * ldmain.c (get_emulation): Add -mips5 command line argument.
1885 2001-05-22  Alexandre Oliva  <aoliva@redhat.com>
1887         * emulparams/elf_i386_ldso.sh: New, copied from elf_i386.sh.
1888         (ELF_INTERPRETER_NAME): Define it.
1889         * emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation): Use
1890         it.
1891         * configure.tgt (targ_emul, targ_extra_emuls)
1892         [i[3456]86-*-solaris2*, i[3456]86-*-solaris*]: Use elf_i386_ldso
1893         as primary, elf_i386 as extra.
1894         * Makefile.am (ALL_EMULATIONS): Added eelf_i386_ldso.o.
1895         (eelf_i386_ldso.c): New rule.
1896         * Makefile.in: Rebuilt.
1898 2001-05-22  Nick Clifton  <nickc@redhat.com>
1900         * lexsup.c (ld_options):  Allow -I to be an alias for
1901         --dynamic-linker.  This is for Solaris compatability.
1902         * ld.texinfo: Document that -I can be used.
1903         * ld.1: Regenerate.
1905 2001-05-16  Alan Modra  <amodra@one.net.au>
1907         * ldlang.c (wild_doit): Use linker_has_input to reliably determine
1908         whether an input section is the first one assigned to an output
1909         section.
1910         Assorted formatting fixes.
1912 2001-05-14  DJ Delorie  <dj@delorie.com>
1914         * Makefile.am (ld.dvi): Search bfd/doc for texinfo files.
1915         * Makefile.in: Ditto.
1917 2001-05-11  Jakub Jelinek  <jakub@redhat.com>
1919         * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Put
1920         .gnu.linkonce.ia64unw{,i} sections into corresponding .IA_64.unwind*
1921         output sections.
1922         * emulparams/elf64_aix.sh (OTHER_READONLY_SECTIONS): Likewise.
1924 2001-05-11  Jakub Jelinek  <jakub@redhat.com>
1926         * ldlang.c (lang_process): Call bfd_merge_sections.
1928 2001-05-07  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
1930         * ldgram.y: Fix typo.
1932 2001-05-03  H.J. Lu  <hjl@gnu.org>
1934         * emultempl/elf32.em: Include "libiberty.h".
1935         (gld${EMULATION_NAME}_vercheck): Call basename () to get the
1936         basename of the bfd filename.
1937         (gld${EMULATION_NAME}_stat_needed): Likewise.
1938         (gld${EMULATION_NAME}_try_needed): Likewise.
1939         (gld${EMULATION_NAME}_open_dynamic_archive): Likewise.
1941 2001-05-02  H.J. Lu  <hjl@gnu.org>
1943         * emultempl/pe.em: Include <ctype.h>.
1945 2001-05-02  Johan Rydberg  <jrydberg@opencores.org>
1947         * emulparams/elf32openrisc.sh: New file.
1949         * Makefile.am: Add OpenRISC target.
1950         * Makefile.in: Regenerated.
1952         * configure.tgt: Add openrisc-*-* mapping.
1954 2001-05-02  Nick Clifton  <nickc@redhat.com>
1956         * emultempl/aix.em: Replace buystring with xstrdup.
1957         * emultempl/beos.em: Replace buystring with xstrdup.
1959 2001-05-02  H.J. Lu  <hjl@gnu.org>
1961         * ldfile.c: Include "libiberty.h".
1962         * ldlex.l: Likewise.
1964         * ldmisc.c (buystring): Removed.
1965         * ldmisc.h: Likewise.
1967         * ldfile.c: Replace buystring with xstrdup.
1968         * ldlang.c: Likewise.
1969         * ldlex.l: Likewise.
1970         * ldmain.c: Likewise.
1971         * ldmisc.c: Likewise.
1972         * lexsup.c: Likewise.
1973         * mpw-eppcmac.c: Likewise.
1975 2001-04-30  Andreas Jaeger  <aj@suse.de>
1977         * emulparms/elf_x86_64.sh (MAXPAGESIZE): Fix value.
1979 2001-04-28  Paul Sokolovsky  <Paul.Sokolovsky@technologist.com>
1981         * ldlang.c (load_symbols): Give emulation a chance
1982         to process unrecognized file before fatal error is
1983         reported, not after.
1985 2001-04-27  Sean McNeil <sean@mcneil.com>
1987         * configure.tgt: Add arm-vxworks target.
1988         * scripttempl/armcoff.sc: Support .text or .data as a section name
1989         prefix.
1990         Define _etext.
1992 2001-04-13  J.T. Conklin  <jtc@redback.com>
1994         * ld.texinfo: Document --fatal-warnings.
1995         * ld.1: Regenerate.
1997         * ldmisc.c (vfinfo): Set flag to inhibit making executable if
1998         warnings have been turned into errors.
1999         * lexsup.c (OPTION_WARN_FATAL): Define.
2000         (ld_options): Entry for --fatal-warnings.
2001         (parse_args): Handle OPTION_WARN_FATAL.
2002         * ld.h (ld_config_type): Add fatal_warnings field.
2004 2001-04-13  Jakub Jelinek  <jakub@redhat.com>
2006         * ldmain.c (main): Default to discard_sec_merge.
2007         * lexsup.c (OPTION_DISCARD_NONE): Define.
2008         (ld_options): Add --discard-none.
2009         (parse_args): Handle OPTION_DISCARD_NONE.
2010         * ldlang.c (wild_doit): SEC_MERGE should be set in the output
2011         section only if SEC_MERGE and SEC_STRINGS flags and entsize of
2012         all its input sections match.
2014 2001-04-05  Steven J. Hill  <sjhill@cotw.com>
2016         * Makefile.am (ALL_EMULATIONS): Add eelf32ltsmip.o.
2017         (ALL_64_EMULATIONS): Add eelf64btsmip.o and eelf64ltsmip.o.
2018         (eelf32ltsmip.c): New target.
2019         (eelf64btsmip.c): Likewise.
2020         (eelf64ltsmip.c): Likewise.
2021         * Makefile.in: Regenerated.
2023         * configure.tgt (mips*el-*-linux-gnu): Uses traditional MIPS
2024         target.
2025         (mips*-*-linux-gnu*): Likewise.
2027         * emulparams/elf32ltsmip.sh: New. Traditional little endian
2028         MIPS taget.
2029         * emulparams/elf64btsmip.sh: New. Traditional 64bit big endian
2030         target.
2031         * emulparams/elf64ltsmip.sh: New. Traditional 64bit little
2032         endian target.
2034 2001-04-05  Hans-Peter Nilsson  <hp@axis.com>
2036         * emulparams/criself.sh (EXECUTABLE_SYMBOLS): Cannot provide
2037         correct value of __Stext here.
2038         (TEXT_START_SYMBOLS): Define; always define __Stext, to start of
2039         .startup section.
2041         * emulparams/crislinux.sh: Remove FIXME.
2043 2001-04-02  Alan Modra  <alan@linuxcare.com.au>
2045         * emulparams/hppalinux.sh (MAXPAGESIZE): Set to 64k.
2046         (TEXT_START_ADDR, TARGET_PAGE_SIZE): Likewise.
2048 2001-03-27  Hans-Peter Nilsson  <hp@axis.com>
2050         * configure.tgt (cris-*-*): Change default emulation to criself.
2051         (cris-*-*aout*): New rule.
2053 2001-03-27  Matthew Wilcox  <willy@ldl.fc.hp.com>
2055         * emulparams/hppalinux.sh (MAXPAGESIZE): Set to 0x4000.
2056         (TEXT_START_ADDR, TARGET_PAGE_SIZE): Ditto.
2058 2001-03-26  Andreas Jaeger  <aj@suse.de>
2060         * ld.texinfo (Overview): Fix syntax in texi code.
2062 2001-03-25  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
2064         * ld.texinfo: Put @c man indications to generate the ld man page.
2065         When generating man, define all the variables.  Define SEEALSO
2066         and SYNOPSIS.  Re-organize some lines to avoid the cross references.
2067         * Makefile.am (MANCONF, TEXI2POD, POD2MAN): New variables.
2068         (ld.1): Generate from ld.texinfo.
2069         * Makefile.in: Regenerate.
2071 2001-03-23  Mark Elbrecht <snowball3@bigfoot.com>
2073         * scripttempl/i386go32.sc: Support the GCC flags '-ffunction-sections'
2074         and '-fdata-sections'. Set the VMA of STABS sections to zero.
2076 2001-03-17  Ulrich Drepper  <drepper@redhat.com>
2078         * emultmpl/elf32.em (gld${EMULATION_NAME}_search_needed): If NAME
2079         is an absolute path look only for this file and not along the path.
2081 2001-03-17  Ulrich Drepper  <drepper@redhat.com>
2083         * emultempl/elf32.em (OPTION_GROUP): New macro.
2084         Add new option Bgroup to longopts.
2085         (gld*_parse_args): Handle GROUP_OPTION and recognize -z defs.
2086         (gld*_list_options): Add -Bgroup and -z defs.
2087         * ld.1: Document -Bgroup and -z defs.
2088         * ld.texinfo: Likewise.
2090 2001-03-07  Michael Meissner  <meissner@redhat.com>
2092         * scripttempl/elfd10v.sc (.rodata,.rodata1,.data1,.sdata): Deal
2093         with sections created by -fdata-sections.
2094         (.dynbss,.bss): Ditto.
2096 2001-03-05  Alan Modra  <alan@linuxcare.com.au>
2098         * emultempl/m68kelf.em (m68k_elf_after_allocation): Call
2099         after_allocation_default, not gld..._before_allocation.
2101 2001-02-27  Alan Modra  <alan@linuxcare.com.au>
2103         * configure.in (BFD_VERSION): New.
2104         (AM_INIT_AUTOMAKE): Use $BFD_VERSION.
2105         * configure: Regenerate.
2106         * Makefile.am: Run "make dep-am"
2107         * Makefile.in: Regenerate.
2109 2001-02-26  Timothy Wall  <twall@cygnus.com>
2111         * emulparams/elf64_aix.sh: Add additional read-only sections;
2112         uncomment lines which are now required.
2114 2001-02-26  H.J. Lu  <hjl@gnu.org>
2116         * ldlang.c (open_input_bfds): Set the bfd error handler so
2117         that problems can be caught whilst loading symbols.
2118         (record_bfd_errors): New function: Report BFD errors and mark
2119         the executable output as being invalid.
2121 2001-02-22  Timothy Wall  <twall@cygnus.com>
2123         * configure.host: Add configuration for ia64-*-aix*.
2124         * Makefile.am (ALL_64_EMULATIONS): Add emulation for ia64-*-aix*.
2125         Add dependencies for eelf64_aix.c.
2126         * Makefile.in: Regenerate.
2127         * configure.tgt: Add ia64-*-aix* mapping.
2128         * emulparams/elf64_aix.sh: Add settings for elf64 on aix5.
2129         * testsuite/ld-bootstrap/bootstrap.exp: Exclude ia64 flavor from
2130         AIX-specific test.
2132 2001-02-20  H.J. Lu  <hjl@gnu.org>
2134         * ldfile.c (ldfile_open_file): Set entry->search_dirs_flag to
2135         false if we found the file.
2137 2001-02-18  David O'Brien  <obrien@FreeBSD.org>
2139         * configure.tgt: Add FreeBSD/Alpha, FreeBSD/x86-64, FreeBSD/ia64,
2140         FreeBSD/PowerPC, FreeBSD/arm, and FreeBSD/sparc64 entries.
2142 2001-02-18  lars brinkhoff  <lars@nocrew.org>
2144         * Makefile.am: Add PDP-11 target.
2145         * configure.tgt: Likewise.
2146         * emulparams/pdp11.sh: New file.
2148 2001-02-17  David O'Brien  <obrien@FreeBSD.org>
2150         * configure.host: Add a generic FreeBSD configuration entry such that
2151         all [modern] FreeBSD systems on all platforms will look the same.
2153 2001-02-14  H.J. Lu  <hjl@gnu.org>
2155         * configure.tgt: Remove mention of earmelf_linux26.
2157 2001-02-13  Richard Henderson  <rth@redhat.com>
2159         * emulparams/elf64_ia64.sh (OTHER_GOT_SYMBOLS): Remove.
2161 2001-02-13  H.J. Lu  <hjl@gnu.org>
2163         * ldexp.h (node_type): Add etree_provided.
2164         * ldexp.c (exp_fold_tree): Handle etree_provided. Set the node
2165         type to etree_provided if defined by PROVIDE. Allow updating
2166         for etree_provided.
2167         (exp_print_tree): Handle etree_provided.
2168         * mpw-elfmips.c (gldelf32ebmip_find_exp_assignment): Handle
2169         etree_provided.
2171 2001-02-09  David Mosberger  <davidm@hpl.hp.com>
2173         * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Add
2174         .IA_64.unwind.* pattern to unwind table section and
2175         .IA_64.unwind_info* pattern to unwind info section.
2177 2001-02-09  Martin Schwidefsky  <schwidefsky@de.ibm.com>
2179         * Makefile.am: Add linux target for S/390.
2180         * Makefile.in: Likewise.
2181         * configure.host: Likewise.
2182         * configure.tgt: Likewise.
2183         * emulparams/elf64_s390.sh: New file.
2184         * emulparams/elf_s390.sh: New file.
2186 2001-02-09  Jakub Jelinek  <jakub@redhat.com>
2188         * configure.tgt (sparc64-*-linux-gnu*): Add elf32_sparc into
2189         targ_extra_libpath.
2190         (sparc-*-linux-gnu*): Add elf64_sparc into targ_extra_libpath.
2192 2001-02-06  Philip Blundell  <philb@gnu.org>
2194         * Makefile.am: Remove mention of earmelf_linux26.
2195         * Makefile.in: Regenerate.
2197 2001-02-04  Philip Blundell  <philb@gnu.org>
2199         * emulparams/armelf_linux.sh (TEXT_START_ADDR): Set to 0x8000.
2200         * emulparams/armelf_linux26.sh: Delete.
2201         * configure.tgt: Remove mention of armelf_linux26 emulation.
2203 2001-02-01  Nick Clifton  <nickc@redhat.com>
2205         * ld.1: Replace occurances of -oformat with --oformat.
2207 2001-01-25  Jim Driftmyer <jdrift@stny.rr.com>
2209         * ldlang.c (lang_leave_overlay): Don't set lma_region when
2210         load_base is specified.
2212 2001-01-24  Hans-Peter Nilsson  <hp@axis.com>
2214         * emultempl/elf32.em: Correct spelling in comments and listed
2215         options.
2217 2001-01-23  Alan Modra  <alan@linuxcare.com.au>
2219         * ldlang.c (lang_leave_overlay): Only set lma_region from the
2220         default for the first section of a group of overlay sections.
2222 2001-01-22  Alan Modra  <alan@linuxcare.com.au>
2224         * Makefile.am (GENSCRIPTS): Pass exec_prefix.
2225         * Makefile.in: Regenerate.
2226         * genscripts.sh: Use exec_prefix parameter to specify tool lib.
2227         Check for null tool_dir.
2229 2001-01-16  Jim Wilson  <wilson@redhat.com>
2231         * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Add IA_64.unwind
2232         and IA_64.unwind.info.
2234 2001-01-16  H.J. Lu  <hjl@gnu.org>
2236         * ldlang.c (lang_check): Merge the private data only if the
2237         input file has contents.
2239 2001-01-14  Alan Modra  <alan@linuxcare.com.au>
2241         * emulparams/hppalinux.sh (OUTPUT_FORMAT): Set to elf32-hppa-linux.
2243         * emultempl/hppaelf.em (hppaelf_after_parse): New function,
2244         enabling search for libmilli.  On a relocatable link, make .text
2245         sections unique.
2246         (LDEMUL_AFTER_PARSE): Define.
2247         (hppaelf_finish): Correct spelling of relocatable in comments.
2249         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
2250         rummage through the script for sections on the unique list.
2251         Correct length of strncmp for ".note".
2252         (gld${EMULATION_NAME}_check_needed): Rearrange function.
2254         * ldlang.c (unique_section_list): New var.
2255         (unique_section_p): New function.
2256         (walk_wild_section): Don't match sections on unique_section_list.
2257         (lang_add_unique): New function.
2258         Correct spelling of relocatable in comments.
2260         * ldlang.h (struct unique_sections): Declare.
2261         (unique_section_list): Declare.
2262         (unique_section_p): Declare.
2263         (lang_add_unique): Declare.
2265         * lexsup.c (ld_options): Allow --unique to take an optional arg.
2266         (parse_args [OPTION_UNIQUE]): Call lang_add_unique.
2268         * ld.texinfo (--unique): Update.
2270 2001-01-13  Nick Clifton  <nickc@redhat.com>
2272         * lexsup.c (parse_args): Remove spurious white space.
2274 2001-01-12  Nick Clifton  <nickc@redhat.com>
2276         * lexsup.c (parse_args): Update copyright date.
2278 2001-01-12  Philip Blundell  <pb@futuretv.com>
2280         * configure.host: Set HOSTING_LIBS appropriately for ix86-cygwin.
2282 2001-01-10  Kazu Hirata  <kazu@hxi.com>
2284         * scripttempl/h8300.sc: Fix formatting.  Fix a comment typo.
2285         * scripttempl/h8300h.sc: Fix formatting.
2286         * scripttempl/h8300s.sc: Likewise.
2287         * scripttempl/h8500.sc: Likewise.
2288         * scripttempl/h8500b.sc: Likewise.
2289         * scripttempl/h8500c.sc: Likewise.
2290         * scripttempl/h8500m.sc: Likewise.
2291         * scripttempl/h8500s.sc: Likewise.
2293 2000-01-07  David O'Brien  <obrien@BSDi.com>
2295         * emultempl/elf32.em: Only perform Linux ld hints processing when
2296         targeting Linux.
2298 2001-01-07  Philip Blundell  <philb@gnu.org>
2300         * ld.texinfo (Bug Reporting): Update email address for reports.
2302 2000-12-31  Nick Clifton  <nickc@redhat.com>
2304         * lexsup.c (parse_args): Set opterr to 0 and detect unparsed long
2305         options by checking for a return value of '?' not -1.
2307 2000-12-28  Nick Clifton  <nickc@redhat.com>
2309         * lexsup.c (struct ld_option): Add new enum value:
2310         EXACTLY_TWO_DASHES.
2311         (ld_options[]): Change -omagic, -output and -oformat options
2312         to be EXACTLY_TWO_DASHES.
2313         (OUTPUT_COUNT): Use ARRAY_SIZE.
2314         (parse_args): Change parameter 'argc' to unsigned.
2315         Place EXACTLY_TWO_DASHES options into new really_longopts
2316         array.
2317         If getopt_long_only fails, try calling getopt_long using the
2318         really_longopts array.
2319         (help): Print a double dash for both EXACTLY_TWO_DASHES and
2320         TWO_DASHES options.
2322         * ldlex.h: Fix prototype of parse_args.
2324         * ld.texinfo: Document that long options starting with 'o'
2325         must be preceeded by two dashes.  Change example of a single
2326         dashed long option from -oformat to -trace-symbol.
2328 2000-12-26  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
2330         * emultempl/pe.em (OPTION_NO_DEFAULT_EXCLUDES): Define.
2331         (longopts[]): New --no-default-excludes option.
2332         (gld_${EMULATION_NAME}_list_options): Document.
2333         (gld_${EMULATION_NAME}_parse_args): Handle.
2335 2000-12-13  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
2337         * ldlang.c (new_stat): Revert the last beautification with "innocent"
2338         whitespace, it breaks the K&R C preprocessor.
2340 2000-12-11  DJ Delorie  <dj@redhat.com>
2342         * ld.texinfo: Add notes about --whole-archive and gcc.
2344 2000-11-18  Fred Fish  <fnf@be.com>
2346         * lexsup.c (OPTION_ALLOW_SHLIB_UNDEFINED): Define.
2347         (ld_options): Entry for --allow-shlib-undefined.
2348         (parse_args): Handle OPTION_ALLOW_SHLIB_UNDEFINED.
2349         * ldmain.c (main): Initialize link_info.allow_shlib_undefined
2350         to false.
2351         * ld.texinfo: Document new command line switch.
2353 2000-12-12  Geoffrey Keating  <geoffk@redhat.com>
2355         * emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS):
2356         .fixup is actually read/write.
2357         * emulparams/elf32lppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
2358         * emulparams/elf32ppcsim.sh (OTHER_READWRITE_SECTIONS): Likewise.
2359         * emulparams/elf32lppcsim.sh (OTHER_READWRITE_SECTIONS): Likewise.
2361 2000-12-11  Jan Hubicka  <jh@suse.cz>
2363         * NEWS: Add note about x86_64 architecture.
2365 2000-12-06  Mark Elbrecht  <snowball3@bigfoot.com>
2367         * scripttempl/i386go32.sc: Use PROVIDE with _etext, _edata, _end.
2368         Set DWARF2 sections to a VMA of zero.
2370 2000-12-01      Joel Sherrill <joel@OARcorp.com>
2372         * configure.tgt (arm-*-rtems*, a29k-*rtems*, h8300-*-rtems*):
2373         New targets.
2374         (sparc*-*-rtemself*, sparc*-*-rtemsaout*): New targets.
2375         (sparc*-*-rtems*): Switched from a.out to ELF.
2377 2000-11-30  Jan Hubicka  <jh@suse.cz>
2379         * Makefile.am (ALL_EMULATIONS): Add eelf_x86_64.o
2380         (eelf_x86_64.c): New.
2381         * Makefile.in: Regenerate.
2382         * configure.tgt: Add support for x86_64-*-linux-gnu*.
2383         * emulparams/elf_x86_64.sh: New.
2385 2000-11-30  Hans-Peter Nilsson  <hp@axis.com>
2387         * emulparams/crislinux.sh (ENTRY): Change back to _start.
2388         (TEXT_START_SYMBOLS): Remove conditional setting of __start.
2390         * scripttempl/crisaout.sc: Change all RELOCATING not related to
2391         merging non-a.out sections into CONSTRUCTING.
2393 2000-11-28  Nick Clifton  <nickc@redhat.com>
2395         * ld.1 (COPYING): Mention that the GNU Free Documentation
2396         License is present in the sources, but not the output, and
2397         also available from the GNU website.
2398         (GNU Free Documentation License): Comment out this section.
2400 2000-11-28  David O'Brien  <obrien@dragon.nuxi.com>
2402         * emulparams/elf64alpha.sh (ENTRY): Remove leading underscore as ELF
2403         does not use them.
2405 2000-11-25  David O'Brien  <obrien@FreeBSD.org>
2407         * ld.1: Remove old date so it does not give the impression the manpage
2408         is way out of date.
2410 2000-11-24  Nick Clifton  <nickc@redhat.com>
2412         * configure.tgt (xscale-coff): Add target.
2413         (xscale-elf): Add target.
2415 2000-11-24  Fred Fish  <fnf@be.com>
2417         * ldmain.c (main): Remove redundant init of config.make_executable
2418         to true.
2420 2000-11-15  Richard Henderson  <rth@redhat.com>
2422         * emulparams/elf64alpha.sh (MAXPAGESIZE): Typo -- 64k, not 1M.
2424 2000-11-14  Kazu Hirata  <kazu@hxi.com>
2426         * scripttempl/h8300.sc: Fix formatting.
2427         * scripttempl/h8300h.sc: Likewise.
2428         * scripttempl/h8300s.sc: Likewise.
2430 2000-11-14  Denis Chertykov  <denisc@overta.ru>
2432         * scripttempl/elf32avr.sc: Fix bug in .eeprom segment.
2434 2000-11-09  Philip Blundell  <pb@futuretv.com>
2436         * emultempl/pe.em: Define ___start_SECNAME and ___stop_SECNAME
2437         around orphan sections whose names can be represented in C.
2439 2000-11-07  Jim Wilson  <wilson@redhat.com>
2441         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): New local
2442         hold_sdata.  If SEC_SMALL_DATA set, set place to hold_sdata.
2444 2000-11-06  Nick Clifton  <nickc@redhat.com>
2446         * ld.texinfo: Add GNU Free Documentation License.
2447         * ldint.texinfo: Add GNU Free Documentation License.
2448         * ld.1: Add GNU Free Documentation License.
2450 2000-11-05  Alan Modra  <alan@linuxcare.com.au>
2452         * ldlex.l (yy_create_string_buffer): Init yy_is_our_buffer,
2453         yy_is_interactive, yy_at_bol, and yy_fill_buffer.
2455         * Makefile.am (DISTCLEANFILES): Add stringify.sed.
2456         Move 2000-11-02 Makefile.in changes to this file.
2457         * Makefile.in: Regenerate.
2459 2000-11-03  Nick Clifton  <nickc@redhat.com>
2461         * scripttempl/h8300.sc: Use ${CONSTRUCTING...} to enclose
2462         constructors and destructors.
2463         * scripttempl/h8300h.sc: Ditto.
2464         * scripttempl/h8300s.sc: Ditto.
2465         * scripttempl/h8500.sc: Ditto.
2466         * scripttempl/h8500b.sc: Ditto.
2467         * scripttempl/h8500c.sc: Ditto.
2468         * scripttempl/h8500m.sc: Ditto.
2469         * scripttempl/h8500s.sc: Ditto.
2470         * scripttempl/v850.sc: Ditto.
2471         * scripttempl/w65.sc: Ditto.
2472         * scripttempl/z8000.sc: Ditto.
2474 2000-11-02  Per Lundberg  <plundis@chaosdev.org>
2476         * Makefile.in (e_i386_chaos.c): New rule.
2477         (ALL_EMULATIONS): Added e_i386_chaos.o.
2478         * emulparams/elf_i386_chaos.sh: New file.
2479         * configure.tgt: Recognise i[3456]86-chaosdev-storm-chaos.
2481 2000-10-20  Jakub Jelinek  <jakub@redhat.com>
2483         * emulparams/elf64_sparc.sh (TEXT_START_ADDR,
2484         NONPAGED_TEXT_START_ADDR): Set to 4GB for Solaris targets.
2485         Fix sed invocation, so that it coped with '/' in Solaris 64bit
2486         library path suffix.
2487         Based on patch by Andrew Macleod <amacleod@cygnus.com>.
2489 2000-10-18  Hans-Peter Nilsson  <hp@axis.com>
2491         * scripttempl/crisaout.sc (.text, .data): Pad, with ALIGN (32),
2492         for consecutive sections.
2494 2000-10-17  Chandrakala Chavva  <cchavva@redhat.com>
2496         * lexsup.c: New option OPTION_TARGET_HELP. Prints all target specific
2497         options.
2498         * ld.texinfo: Added notes about this new option.
2500 2000-10-16  Nick Clifton  <nickc@redhat.com>
2502         * emultempl/pe.em (_after_open): Add tests of return values from
2503         bfd functions.  Emit appropriate error messages if necessary.
2505 2000-10-13  Nick Clifton  <nickc@redhat.com>
2507         * emultempl/pe.em (_after_open): Delete 'is2' and 'nsyms'
2508         local variables - they are not used, but leave in the call to
2509         bfd_canonicalize_symtab.
2510         (_open_dynamic_archive): Add #ifdef DLL_SUPPORT around use of
2511         pe_dll_search_prefix.
2513 2000-10-12  Charles Wilson  <cwilson@ece.gatech.edu>
2515         * emultempl/pe.em (pe_dll_search_prefix): New variable,
2516         (longopts): New --dll-search-prefix option.
2517         (gld_${EMULATION_NAME}_list_options): Document.
2518         (gld_${EMULATION_NAME}_parse_args): Handle.
2519         (gld_${EMULATION_NAME}_open_dynamic_archive): When linking
2520         dynamically, search for a dll named '<prefix><basename>.dll'
2521         in preference to 'lib<basename>.dll' if --dll-search-prefix
2522         is specified.
2524 2000-10-12  Alan Modra  <alan@linuxcare.com.au>
2526         * ldlang.c (section_already_linked): Set kept_section instead of
2527         sec->comdat->sec.
2529 2000-10-10  Kazu Hirata  <kazu@hxi.com>
2531         * deffile.h: Fix formatting.
2532         * lexsup.c: Likewise.
2533         * mri.c: Likewise.
2535 2000-10-09  Paul Sokolovsky  <Paul.Sokolovsky@technologist.com>
2537         * pe-dll.c (make_one): Do not generate code thunk for DATA
2538         exports.
2539         (process_def_file): deduce DATA flag for auto-export sumbols.
2541 2000-10-09  Kazu Hirata  <kazu@hxi.com>
2543         * ld.h: Fix formatting.
2544         * ldcref.c: Likewise.
2545         * ldctor.h: Likewise.
2546         * ldemul.c: Likewise.
2547         * ldemul.h: Likewise.
2548         * ldexp.c: Likewise.
2549         * ldexp.h: Likewise.
2550         * ldfile.c: Likewise.
2551         * ldfile.h: Likewise.
2552         * ldlang.c: Likewise.
2553         * ldlang.h: Likewise.
2554         * ldmain.c: Likewise.
2555         * pe-dll.c: Likewise.
2557         * pe-dll.c: Revert some formatting fixes.
2559 2000-10-08  Kazu Hirata  <kazu@hxi.com>
2561         * pe-dll.c: Fix formatting.
2563 2000-10-05  Kazu Hirata  <kazu@hxi.com>
2565         * ldlang.c: Fix formatting.
2567 2000-10-03  DJ Delorie  <dj@redhat.com>
2569         * pe-dll.c (fill_edata): initialize entire block
2570         (make_one): fill in correct section.
2572 2000-10-03  Kazu Hirata  <kazu@hxi.com>
2574         * ldexp.c: Fix formatting.
2576 2000-10-02  DJ Delorie  <dj@redhat.com>
2578         * emultempl/pe.em (gld_*_after_open): detect case where there two
2579         import libraries for same dll; rename one to ensure proper link
2580         order.
2582         * pe-dll.c (process_def_file): compare ordinals to -1, not 0; fix
2583         typo
2584         (generate_edata): fix typo
2586 2000-09-29  Hans-Peter Nilsson  <hp@axis.com>
2588         * scripttempl/crisaout.sc (ENTRY): Now __start.
2589         (.text): Add default setting for __start.
2590         Remove CONSTRUCTORS handling.
2591         (/DISCARD/): Add .gnu.warning.*.
2592         * emulparams/crislinux.sh (ENTRY): Now __start.
2593         (TEXT_START_SYMBOLS): New; provide __Stext and __start default.
2594         * emulparams/criself.sh (OUTPUT_FORMAT): Now elf32-us-cris.
2595         (ENTRY): Now __start.
2596         (INITIAL_READONLY_SECTIONS): Add KEEP for .startup.
2597         (EXECUTABLE_SYMBOLS): Add default setting for __start.
2599 2000-09-29  Kazu Hirata  <kazu@hxi.com>
2601         * deffile.h: Fix formatting.
2602         * ld.h: Likewise.
2603         * ldcref.c: Likewise.
2604         * ldctor.c: Likewise.
2605         * ldctor.h: Likewise.
2606         * ldemul.c: Likewise.
2607         * ldemul.h: Likewise.
2608         * ldexp.c: Likewise.
2609         * ldexp.h: Likewise.
2610         * ldfile.c: Likewise.
2611         * ldfile.h: Likewise.
2612         * ldlang.c: Likewise.
2613         * ldlang.h: Likewise.
2614         * lexsup.c: Likewise.
2615         * mri.c: Likewise.
2616         * pe-dll.c: Likewise.
2618 2000-09-28  Paul Sokolovsky  <Paul.Sokolovsky@technologist.com>
2620         * pe-dll.c (process_def_file): Uninitialized data wasn't
2621         exported with --export-all-symbols switch.
2623 2000-09-28  DJ Delorie  <dj@redhat.com>
2625         * pe-dll.c (fill_edata): rearrange the data so that ordinals and
2626         noname work properly.
2628 2000-09-28  Alan Modra  <alan@linuxcare.com.au>
2630         * ld.texinfo (HPPA ELF32): New section.
2632         * emultempl/hppaelf.em (group_size): New.
2633         (hppaelf_finish): Pass group_size to elf32_hppa_size_stubs.
2634         (PARSE_AND_LIST_PROLOGUE): Add OPTION_STUBGROUP_SIZE.
2635         (PARSE_AND_LIST_LONGOPTS): Add --stub-group-size.  Duplicate
2636         options to prevent abbreviations matching.
2637         (PARSE_AND_LIST_OPTIONS): Describe the above.  Reformat.
2638         (PARSE_AND_LIST_ARGS_CASES): Handle it.
2640 2000-09-21  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
2642         * emultempl/m68kelf.em: Conditionalise the embedded relocs feature
2643         on the m68*-*-elf target.  Make it support COFF input objects.
2645 2000-09-21  Kazu Hirata  <kazu@hxi.com>
2647         * ldmain.c: Fix formatting.
2648         * ldmisc.c: Likewise.
2649         * ldver.c: Likewise.
2650         * ldwrite.c: Likewise.
2652 2000-09-21  Alan Modra  <alan@linuxcare.com.au>
2654         * ldwrite.c (clone_section): Silence gcc warnings.
2656 2000-09-20  Alan Modra  <alan@linuxcare.com.au>
2658         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Handle
2659         out of memory failure.
2661         * ldwrite.c (ldwrite): Remove unnecessary einfo arg.
2662         (clone_section): Handle out of memory failures.  Rename var to
2663         avoid c++ reserved word.
2665 2000-09-18  Alan Modra  <alan@linuxcare.com.au>
2667         * emultempl/hppaelf.em (hppaelf_add_stub_section): Rename
2668         stub_name param to stub_sec_name.
2669         (hppaelf_finish): Modify call to elf32_hppa_size_stubs.
2671 2000-09-10  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
2673         * emultempl/m68kelf.em: New file.
2674         * emulparams/m68kelf.sh (EXTRA_EM_FILE): Use it.
2675         * Makefile.am (em68kelf.c): Add dependency on m68kelf.em.
2676         * Makefile.in: Regenerate.
2678 2000-09-15  Alan Modra  <alan@linuxcare.com.au>
2680         * emulparams/hppalinux.sh (DATA_START_SYMBOLS): Provide $global$
2681         only as needed.
2683 2000-09-13  Nick Clifton  <nickc@redhat.com>
2685         * ldmain.c (multiple_definition): Disable relaxation if
2686         multiple symbol definitions are encountered - otherwise the
2687         linker could abort with an assertion failure.
2689 2000-09-10  Nick Clifton  <nickc@redhat.com>
2691         * mri.c: Fix formatting.
2693 2000-09-07  H.J. Lu  <hjl@gnu.org>
2695         * configure.in (AC_ISC_POSIX): Put after AC_CANONICAL_SYSTEM.
2696         * configure: Rebuild.
2698 2000-09-07  H.J. Lu  <hjl@gnu.org>
2700         * Makefile.am (lexsup.o): Also depend on $(INCDIR)/demangle.h.
2701         * Makefile.in: Rebuild.
2703 2000-09-07  Alan Modra  <alan@linuxcare.com.au>
2705         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Fix
2706         broken list handling.  Create __start_SECNAME and __stop_SECNAME
2707         when no place-holder.  Add some comments.  Test both SEC_CODE and
2708         SEC_READONLY for hold_text to prevent .rodata orphan poisoning.
2709         Handle case where no output section statement created.
2711 2000-09-07  Niibe Yutaka  <gniibe@m17n.org>, Kaz Kojima  <kkojima@rr.iij4u.or.jp>, Alexandre Oliva  <aoliva@redhat.com>
2713         * configure.tgt (sh-*-linux*): Added.
2714         * Makefile.am: Added eshelf_linux and eshlelf_linux.
2715         * Makefile.in: Rebuilt.
2716         * emulparams/shelf_linux.sh: New file.
2717         * emulparams/shlelf_linux.sh: New file.
2719 2000-09-06  Alan Modra  <alan@linuxcare.com.au>
2721         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
2722         try shuffling sections when the orphan happens to be the place
2723         holder.  Keep count of unique section names generated so we speed
2724         the search for a new name.
2726 2000-09-06  Alexandre Oliva  <aoliva@redhat.com>
2728         * configure: Rebuilt with new libtool.m4.
2730 2000-09-05  Nick Clifton  <nickc@redhat.com>
2732         * Makefile.in: Regenerate.
2733         * aclocal.m4: Regenerate.
2734         * configure: Regenerate.
2735         * config.in: Regenerate.
2736         * po/ld.pot: Regenerate.
2738         * ldint.texinfo: Remove CVS revision marker - it foils local
2739         comparisons.
2741         * emultempl/ticoff.em: Remove extraneous comma.
2743 2000-09-05  Alan Modra  <alan@linuxcare.com.au>
2745         * emultempl/hppaelf.em (hppaelf_add_stub_section): Add SEC_RELOC
2746         to stub section flags.
2747         (hppa_for_each_input_file_wrapper): New.
2748         (hppa_lang_for_each_input_file): New.
2749         (lang_for_each_input_file): Define to call above.
2750         (multi_subspace): New.
2751         (hppaelf_finish): Pass multi_subspace to elf32_hppa_size_stubs.
2752         (PARSE_AND_LIST_PROLOGUE): Define.
2753         (PARSE_AND_LIST_LONGOPTS): Define.
2754         (PARSE_AND_LIST_OPTIONS): Define.
2755         (PARSE_AND_LIST_ARGS_CASES): Define.
2756         (hppaelf_finish): Call elf32_hppa_set_gp.
2757         (hppaelf_set_output_arch): Remove.
2758         (LDEMUL_SET_OUTPUT_ARCH): Remove.
2760         * emulparams/hppalinux.sh (ELFSIZE): Define.
2761         (MACHINE): Define.
2762         (OTHER_READONLY_SECTIONS): Define.
2763         (DATA_PLT): Define.
2764         (GENERATE_SHLIB_SCRIPT): Define.
2766         * ldlang.c: Add missing prototypes, and tidy others.  Change CONST
2767         to const throughout.  Change `void *' to `PTR' throughout.
2768         (lang_memory_default): Function is local to file, add `static'.
2770         * Makefile.am (ehppaelf.c): Depend on emultempl/elf32.em.
2771         (ehppalinux.c): Likewise.
2772         (earmelf.c): Likewise.
2773         (earmelf_linux.c): Likewise.
2774         (earmelf_linux26.c): Likewise.
2775         * Makefile.in: Regenerate.
2777         * ld.h (ld_config_type): Add unique_orphan_sections.
2778         * lexsup.c (OPTION_UNIQUE): Define.
2779         (ld_options): Add "--unique".
2780         (parse_args): Handle it.
2781         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
2782         search for an existing output section if unique_orphan_sections is
2783         set.  Make use of bfd_get_unique_section_name rather than
2784         duplicating code here.
2785         * ld.texinfo: Describe --unique.
2787         * lexsup.c (ld_options): Make split-by-reloc arg optional. Add
2788         optional arg to split-by-file.
2789         (parse_args): Handle them.
2790         * ld.texinfo: Update description of these options.
2791         * ldwrite.c (clone_section): Pass in the section name.  Replace
2792         local code with bfd_get_unique_section_name.
2793         (split_sections): Tidy code and comments.  Use a list traversal
2794         more appropriate to the list construction.  Handle cooked section
2795         sizes.  Split when split_by_reloc reached rather than exceeded.
2796         Track section size and split when split_by_file reached.  Fix
2797         link_order_tail (even though it's not used).
2798         (ldwrite): Modify condition for calling split_sections to suit
2799         changed split_by_reloc and split_by_file.
2800         * ldmain.c (main): Init config.split_by_reloc and
2801         config.split_by_file to -1.
2802         * ld.h (ld_config_type): Change split_by_reloc to unsigned.
2803         Change split_by_file to bfd_size_type.
2805 2000-09-02  Nick Clifton  <nickc@redhat.com>
2807         * configure.in: Increase version number to 2.10.91.
2808         * NEWS: Mention new ability to support removal of duplicate DWARF2
2809         debug information.
2810         * configure: Regenerate.
2811         * aclocal.m4: Regenerate.
2812         * config.in: Regenerate.
2814 2000-09-02  Daniel Berlin <dberlin@redhat.com>
2816         * scripttempl/elf.sc: Add .gnu.linkonce.wi.* to .debug_info
2817         sections.
2818         * scripttempl/elf32avr.sc: Ditto.
2819         * scripttempl/elfd10v.sc: Ditto.
2820         * scripttempl/elfd30v.sc: Ditto.
2821         * scripttempl/elfi370.sc: Ditto.
2822         * scripttempl/elfm68hc11.sc: Ditto.
2823         * scripttempl/elfm68hc12.sc: Ditto.
2824         * scripttempl/elfi386beos.sc: Ditto.
2825         * scripttempl/v850.sc: Ditto.
2827 2000-08-31  Alexandre Oliva  <aoliva@redhat.com>
2829         * acinclude.m4: Include libtool and gettext macros from the
2830         top level.
2831         * aclocal.m4, configure: Rebuilt.
2833 2000-08-25  Nick Clifton  <nickc@redhat.com>
2835         * ldlang.c (open_output): When choosing the target for a
2836         particular endianness, do nothing if the target is not
2837         supported.
2839 2000-08-25  H.J. Lu  <hjl@gnu.org>
2841         * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Don't
2842         check -rpath nor LD_RUN_PATH for cross link.
2843         * ld.texinfo: Document the change.
2845 2000-08-24  Hans-Peter Nilsson  <hp@axis.com>
2847         * NEWS: Mention support for CRIS.
2849 2000-08-23  H.J. Lu  <hjl@gnu.org>
2851         * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Get
2852         the current runpath list from bfd_elf_get_runpath_list ()
2853         before search.
2855 2000-08-22  H.J. Lu  <hjl@gnu.org>
2857         * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Search
2858         the DT_RPATH/DT_RUNPATH entries for DT_NEEDED after
2859         LD_LIBRARY_PATH for native linker. Display the needed DSO if
2860         trace_file_tries is non-zero.
2861         (gld${EMULATION_NAME}_try_needed): Report the needed DSO found
2862         if trace_file_tries is non-zero.
2864         * ld.texinfo: Document the usage of DT_RPATH/DT_RUNPATH.
2865         * NEWS: Mention it.
2867 2000-08-14  Jason Eckhardt  <jle@cygnus.com>
2869         * NEWS: Mention i860 support.
2871 2000-08-14  Andreas Schwab  <schwab@suse.de>
2873         * scripttempl/elf.sc: Fix last change to use correct comment
2874         syntax.
2876 2000-08-10  Geoff Keating  <geoffk@cygnus.com>
2878         * scripttempl/elf.sc: Add a comment giving the correspondence
2879         between sections, per-datum sections, and linkonce sections.  Make
2880         the comment true even for .bss, .sdata, .sdata2, .sbss, and
2881         .sbss2.
2883 2000-08-10  Jason Eckhardt  <jle@cygnus.com>
2885         * emulparams/elf32_i860.sh: New file.
2886         * configure.tgt: Recognize new target i860-stardent-{sysv4*|elf*}.
2887         * Makefile.am (ALL_EMULATIONS): Add eelf32_i860.o.
2888         (eelf32_i860.c): New rule.
2889         * Makefile.in: Regenerate.
2891 2000-08-10  Nick Clifton  <nickc@cygnus.com>
2893         * emulparams/mipspe.sh (ENTRY): Add definition.
2895 2000-08-08  Peter Jeremy  <peter.jeremy@alcatel.com.au>
2897         * emultempl/elf32.em (_after_close): Refer to -rpath not --rpath
2898         in error message.
2900 2000-08-08  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
2902         * scripttempl/elfm68hc11.sc: Define __bss_size symbol to indicate
2903         the final size of .bss section.
2904         * scripttempl/elfm68hc12.sc: Likewise.
2906 2000-08-04  Alan Modra  <alan@linuxcare.com.au>
2908         * emultempl/elf32.em (gld_${EMULATION_NAME}_parse_args): Rename to
2909         gld${EMULATION_NAME}_parse_args for consistency.  Combine
2910         lastoptind and prevoptind vars, and keep track of last optind.
2911         (gld_${EMULATION_NAME}_list_options): Rename to
2912         gld${EMULATION_NAME}_list_options.
2914 2000-08-03  Rodney Brown  <RodneyBrown@pmsc.com>
2916         * configure.tgt: Select targ_emul=elf_i386 for Unixware 7
2917         (i586-sco-sysv5uw7.1.0).
2919 2000-07-27  H.J. Lu  <hjl@gnu.org>
2921         * emulparams/elf64alpha.sh (PARSE_AND_LIST_ARGS): Removed.
2922         (PARSE_AND_LIST_PROLOGUE): New.
2923         (PARSE_AND_LIST_LONGOPTS): Likewise.
2924         (PARSE_AND_LIST_OPTIONS): Likewise.
2925         (PARSE_AND_LIST_ARGS_CASES): Likewise.
2926         (PARSE_AND_LIST_EPILOGUE): Likewise.
2928 2000-07-28  Alan Modra  <alan@linuxcare.com.au>
2930         * emultempl/armelf.em: Elide functions common to elf32.em,
2931         ie. most of the file.
2932         (arm_elf_after_open): New.  Do arm specific things then call
2933         gld${EMULATION_NAME}_after_open.
2934         (arm_elf_before_allocation): New.  Call
2935         gld${EMULATION_NAME}_before_allocation then do arm specifics.
2936         (PARSE_AND_LIST_PROLOGUE): Define.
2937         (PARSE_AND_LIST_SHORTOPTS): Define.
2938         (PARSE_AND_LIST_LONGOPTS): Define.
2939         (PARSE_AND_LIST_OPTIONS): Define.
2940         (PARSE_AND_LIST_ARGS_CASES): Define.
2941         (LDEMUL_AFTER_OPEN): Define.
2942         (LDEMUL_BEFORE_ALLOCATION): Define.
2943         (LDEMUL_BEFORE_PARSE): Define.
2944         (LDEMUL_FINISH): Define.
2946         * emultempl/hppaelf.em: Similarly zap most of this file.
2947         (hppaelf_add_stub_section): Prototype.
2948         (hppaelf_layaout_sections_again): Prototype.
2949         (hook_in_stub): Prototype.
2950         (LDEMUL_SET_OUTPUT_ARCH): Define.
2951         (LDEMUL_FINISH): Define.
2952         (LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS): Define.
2954         * emulparams/armelf.sh (TEMPLATE_NAME): Use elf32.
2955         (EXTRA_EM_FILE): New.
2956         * emulparams/armelf_linux.sh: Likewise.
2957         * emulparams/armelf_linux26.sh: Likewise.
2958         * emulparams/hppalinux.sh: Likewise.
2959         * emulparams/hppaelf.sh: Likewise.
2960         (NOP): Define.
2962         * emultempl/elf32.em: Fix formatting.
2963         (EXTRA_EM_FILE): Source it.
2964         (LDEMUL_BEFORE_PARSE, LDEMUL_SYSLIB, LDEMUL_HLL,
2965         LDEMUL_AFTER_PARSE, LDEMUL_AFTER_OPEN, LDEMUL_AFTER_ALLOCATION,
2966         LDEMUL_SET_OUTPUT_ARCH, LDEMUL_CHOOSE_TARGET,
2967         LDEMUL_BEFORE_ALLOCATION, LDEMUL_GET_SCRIPT, LDEMUL_FINISH,
2968         LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS,
2969         LDEMUL_OPEN_DYNAMIC_ARCHIVE, LDEMUL_PLACE_ORPHAN,
2970         LDEMUL_SET_SYMBOLS, LDEMUL_PARSE_ARGS, LDEMUL_UNRECOGNIZED_FILE,
2971         LDEMUL_LIST_OPTIONS, LDEMUL_RECOGNIZED_FILE,
2972         LDEMUL_FIND_POTENTIAL_LIBRARIES): New shell vars.  Add code to
2973         allow functions in this file to be overridden.
2974         (PARSE_AND_LIST_SHORTOPTS): Handle it.
2976         * emultempl/m68kcoff.em: Include ldfile.h before ldemul.h.
2978         * emultempl/elf32.em: Reorganize file.
2980 2000-07-27  Ivan Kokshaysky  <ink@jurassic.park.msu.ru>
2982         * emulparams/elf64alpha.sh: Implement "-taso" emulation
2983         specific option to fit 64-bit executable in the lower
2984         31-bit address range.  This is done by changing start
2985         address of .interp (the very first section of executable)
2986         and then setting EF_ALPHA_32BIT elf header flag.
2988 2000-07-21  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
2990         * emultempl/m68kcoff.em: New file.
2991         * emulparams/m68kcoff.sh (TEMPLATE_NAME): Use m68kcoff template.
2992         * Makefile.am (em68kcoff.c): Depend on m68kcoff.em rather than
2993         generic.em.
2994         * Makefile.in: Regenerate.
2996 2000-07-20  H.J. Lu  <hjl@gnu.org>
2998         * emultempl/elf32.em (longopts): Duplicate "disable-new-dtags"
2999         and "disable-new-dtags" to stop getopt from treating -d/-e as
3000         abbreviations for these options.
3002 2000-07-20  H.J. Lu  <hjl@gnu.org>
3004         * ld.texinfo: Add documentation for --disable-new-dtags and
3005         --enable-new-dtags.
3007         * ldmain.c (main): Initialize link_info.new_dtags to false.
3009         * emultempl/elf32.em (gld_${EMULATION_NAME}_parse_args): Add
3010         --disable-new-dtags and --enable-new-dtags.
3011         (gld_${EMULATION_NAME}_list_options): Likewise.
3013 2000-07-05  Kenneth Block  <krblock@computer.org>
3015         * lexsup.c: Add optional style to demangle switch
3016         * ld.texinfo: Document optional style to demangle switch.
3018 2000-07-20  Hans-Peter Nilsson  <hp@axis.com>
3020         * Makefile.am (ALL_EMULATIONS): Add ecrisaout.o, ecriself.o,
3021         ecrislinux.o.
3022         (ecrisaout.c, ecriself.c, ecrislinux.c): New rules.
3023         Regenerate dependencies.
3024         * Makefile.in: Rebuild.
3025         * configure.tgt (cris-*-*): New target.
3026         * emulparams/crisaout.sh, emulparams/criself.sh,
3027         emulparams/crislinux.sh, scripttempl/crisaout.sc: New files.
3028         * po/POTFILES.in, po/ld.pot: Regenerate.
3030 2000-07-20  H.J. Lu  <hjl@gnu.org>
3032         * emultempl/elf32.em (gld_${EMULATION_NAME}_list_options):
3033         Print out ignored -z options.
3035 2000-07-19  H.J. Lu  <hjl@gnu.org>
3037         * emulparams/elf32mcore.sh (PARSE_AND_LIST_ARGS): Removed.
3038         (PARSE_AND_LIST_PROLOGUE): New.
3039         (PARSE_AND_LIST_LONGOPTS): Likewise.
3040         (PARSE_AND_LIST_OPTIONS): Likewise.
3041         (PARSE_AND_LIST_ARGS_CASES): Likewise.
3043         * ldmain.c (main): Clear link_info.flags and link_info.flags_1.
3045         * lexsup.c (ld_options): Comment out 'z'.
3046         (parse_args): Likewise.
3048         * emultempl/elf32.em: Include "elf/common.h".
3049         (gld_${EMULATION_NAME}_parse_args): Defined. Handle some -z
3050         options.
3051         (gld_${EMULATION_NAME}_list_options): Likewise.
3053         * ld.texinfo: Add documentation for the recognized -z options.
3055 2000-07-19  H.J. Lu  <hjl@gnu.org>
3057         * emultempl/elf32.em (gld${EMULATION_NAME}_try_needed): Call
3058         bfd_elf_set_dt_needed_soname ().
3060 2000-07-18  DJ Delorie  <dj@cygnus.com>
3062         * pe-dll.c (pe_dll_id_target): check object target name also
3064 2000-07-18  Hans-Peter Nilsson  <hp@axis.com>
3066         * scripttempl/elf.sc (.init): Only do ${INIT_START} and
3067         ${INIT_END} if relocating.
3068         (.fini): Likewise ${FINI_START} and ${FINI_END}.
3070 2000-07-16  Charles Wilson  <cwilson@ece.gatech.edu>
3072         * emultempl/pe.em (gld_*_open_dynamic_archive): New search
3073         order for dynamic library '-lfoo' on pei386: libfoo.dll.a,
3074         foo.dll.a, libfoo.a, libfoo.dll, foo.dll. This fixes compatibility
3075         errors introduced by the old dynamic lib search order.
3077 2000-07-17  DJ Delorie  <dj@cygnus.com>
3079         * pe-dll.c (process_def_file): auto-export data items also
3080         (pe_process_import_defs): also see if _imp_ form needed
3082 2000-07-12  Charles Wilson  <cwilson@ece.gatech.edu>
3084         * pe-dll.c (make_one): fix a typo in the __imp_ name decoration
3085         for dll import libraries
3087 2000-07-12  Mark Elbrecht  <snowball3@bigfoot.com>
3089         * scripttempl/i386go32.sc: Support the g++ attribute init_priority in
3090         gcc 2.95.2 and later.
3092 2000-07-11  Kazu Hirata  <kazu@hxi.com>
3094         * ldfile.c (ldfile_try_open_bfd): Output '\n' after an error
3095         message.
3097 2000-07-10  Alan Modra  <alan@linuxcare.com.au>
3099         * ldemul.h (struct lang_input_statement_struct): Remove forward
3100         declaration.
3101         (struct search_dirs): Likewise.
3102         * ldfile.h (struct lang_input_statement_struct): Likewise.
3103         Protect file from multiple inclusion.
3104         * ldlang.h (LANG_FOR_EACH_INPUT_STATEMENT): Move file_chain
3105         declaration from macro to file scope.
3107         * ldemul.c: ldexp.h,ldlang.h,ldfile.h,ldemul.h go in this order.
3108         * ldgram.y: Likewise here.
3109         * ldlang.c: And here.
3110         * ldmain.c: And here.
3111         * mpw-elfmips.c: And here.
3112         * mpw-eppcmac.c: And here.
3113         * emultempl/aix.em: And here.
3114         * emultempl/armcoff.em: And here.
3115         * emultempl/armelf.em: And here.
3116         * emultempl/armelf_oabi.em: And here.
3117         * emultempl/beos.em: And here.
3118         * emultempl/elf32.em: And here.
3119         * emultempl/hppaelf.em: And here.
3120         * emultempl/linux.em: And here.
3121         * emultempl/lnk960.em: And here.
3122         * emultempl/pe.em: And here.
3123         * emultempl/sunos.em: And here.
3124         * mpw-esh.c: And here. Include ldexp.h and ldlang.h too.
3125         * mpw-idtmips.c: Ditto.
3126         * emultempl/generic.em: Ditto.
3127         * emultempl/gld960.em: Ditto.
3128         * emultempl/gld960c.em: Ditto.
3129         * emultempl/mipsecoff.em: Ditto.
3130         * emultempl/ticoff.em: Ditto.
3131         * emultempl/vanilla.em: Ditto.
3133         * pe-dll.c: Include ldfile.h
3134         * ldver.c: Include ldexp.h, ldlang.h, ldfile.h
3136         * mpw-elfmips.c: (gldelf32ebmip_before_allocation): Add missing
3137         arguments to bfd_elf32_size_dynamic_sections call.
3138         (gldelf32ebmip_place_orphan): Add missing arguments to
3139         lang_leave_output_section_statement call.
3141 2000-07-10  H.J. Lu  <hjl@gnu.org>
3143         * emultempl/pe.em (pe_enable_stdcall_fixup): Protect with
3144         DLL_SUPPORT.
3145         (strhash): Likewise.
3146         (compute_dll_image_base): Likewise.
3147         (pe_undef_found_sym): Likewise.
3148         (pe_undef_cdecl_match): Likewise.
3149         (gld_${EMULATION_NAME}_open_dynamic_archive): Mark the
3150         argument "arch" with ATTRIBUTE_UNUSED.
3152 2000-07-10  Alan Modra  <alan@linuxcare.com.au>
3154         * configure.tgt: Remove extraneous hppa*-*-linux-gnu*.
3156         From  Ryan Bradetich  <rbradetich@uswest.net>
3157         * ldwrite.c (SSIZE): Remove to cure macro redefinition warning.
3159 2000-07-09  Alan Modra  <alan@linuxcare.com.au>
3161         Changes to create multiple linker stubs, positioned immediately
3162         before the section where they are required.
3163         * emultempl/hppaelf.em: Include elf32-hppa.h.
3164         (stub_sec, file_chain): Delete.
3165         (hppaelf_create_output_section_statements): Don't make a stub
3166         section here.
3167         (hook_stub_info): New struct.
3168         (hook_in_stub): New function.
3169         (hppaelf_add_stub_section): New function.
3170         (hppaelf_finish): Do nothing for relocateable links.  Modify the
3171         call to elf32_hppa_size_stubs.  Move code for updating section
3172         layout from here...
3173         (hppaelf_layaout_sections_again): ..to here, a new function.
3175         * emultempl/hppaelf.em (hppaelf_delete_padding_statements): Fix
3176         broken list handling.  Pass in a pointer to the list.
3177         (hppaelf_finish): Update call to hppaelf_delete_padding_statements
3178         for above changes.
3179         (hppaelf_before_parse): Prototype.
3180         (hppaelf_set_output_arch): Prototype.
3181         (hppaelf_create_output_section_statements): Prototype.
3182         (hppaelf_delete_padding_statements): Prototype.
3183         (hppaelf_finish): Prototype.
3185         Merge from elf32.em
3186         * emultempl/hppaelf.em: Include ctype.h.
3187         (struct orphan_save): New.
3188         (gld${EMULATION_NAME}_place_orphan): New.
3189         (output_rel_find): New.
3190         (hppaelf_get_script): Update from elf32.em.
3191         (ld_hppaelf_emulation): Rename to ld_${EMULATION_NAME}_emulation.
3192         Change emulation_name field to "${EMULATION_NAME}".  Add
3193         gld${EMULATION_NAME}_place_orphan.
3195         * Makefile.am (ALL_EMULATIONS): Reinstate ehppaelf.o,  add
3196         ehppalinux.o, sort it.  Regenerate dependencies.
3197         (ehppalinux.c): Depend on hppaelf.em
3198         * Makefile.in: Regenerate.
3200         * configure.tgt: targ_emul=hppalinux for hppa*linux
3202         * emulparams/hppalinux.sh: New.
3203         * emulparams/hppaelf.sh (TARGET_PAGE_SIZE): Write in hex.
3205 2000-07-08  Alan Modra  <alan@linuxcare.com.au>
3207         * lexsup.c (parse_args): Copy section name.
3209 2000-07-07  Charles Wilson  <cwilson@ece.gatech.edu>
3211         * emultempl/pe.em: institute the following search order for
3212         dynamic libraries on pei386: libfoo.dll.a, foo.dll.a (import
3213         libs), libfoo.dll, foo.dll (link direct to dll).  Fall back to
3214         static lib (libfoo.a) if none of the above are found.
3216 2000-07-07  Mumit Khan  <khan@xraylith.wisc.edu>
3218         * emultempl/pe.em (pe_enable_auto_image_base): New variable.
3219         (longopts): New --{enable,disable}-auto-image-base options.
3220         (gld_${EMULATION_NAME}_list_options): Document.
3221         (gld_${EMULATION_NAME}_parse): Handle.
3222         (strhash): New static function.
3223         (compute_dll_image_base): New static function.
3224         (gld_${EMULATION_NAME}_set_symbols): Use.
3226 2000-07-05  DJ Delorie  <dj@redhat.com>
3228         * MAINTAINERS: new
3230 2000-07-01  Koundinya K  <kk@ddeorg.soft.net>
3232         * configure.tgt: Add traditional mips (mips*-*-sysv4*) target.
3233         * emulparams/elf32btsmip.sh: New file.
3234         * Makefile.am: Add traditional mips target.
3235         * Makefile.in: Rebuild.
3237 2000-07-01  H.J. Lu  <hjl@gnu.org>
3239         * Makefile.am (EXTRA_ld_new_SOURCES): Set to deffilep.y for
3240         automake to use YLWRAP.
3241         * Makefile.in: Rebuild.
3243 2000-07-01  Alan Modra  <alan@linuxcare.com.au>
3245         * Makefile.am (DEP): Fix 2000-06-22.  grep after running dep.sed
3246         (CLEANFILES): Add DEPA.
3247         * Makefile.in: Regenerate.
3249 2000-06-30  Timothy Wall  <twall@ppc>
3251         * scripttempl/tic54xcoff.sc: PAGE N is not implemented, so encode
3252         the page in the upper octet of the address.
3254 2000-06-26  Marek Michalkiewicz  <marekm@linux.org.pl>
3256         * emulparams/avrmega161.sh (ARCH): Change to avr:5.
3258 2000-06-24  Alan Modra  <alan@linuxcare.com.au>
3260         * NEWS: arm-elf does --gc-sections too.
3262 2000-06-22  Alan Modra  <alan@linuxcare.com.au>
3264         * Makefile.am (DEP): grep for leading `/' in DEP1, and fail if we
3265         find one.
3266         * Makefile.in: Regenerate.
3268 2000-06-21  H.J. Lu  <hjl@gnu.org>
3270         * Makefile.am: Rebuild dependency.
3271         * Makefile.in: Rebuild.
3273 2000-06-20  H.J. Lu  <hjl@gnu.org>
3275         * Makefile.am: Rebuild dependency.
3276         * Makefile.in: Rebuild.
3278 2000-06-20  Timothy Wall  <twall@cygnus.com>
3280         * scripttempl/tic54xcoff.sc: New.
3281         * ldlang.c (wild_doit): Propagate SEC_BLOCK flag.
3282         * gen-doc.texi: Add flag for TI COFF.
3283         * ld.texinfo: Add documentation for TI COFF handling switches.
3284         * emultempl/ticoff.em: New. TI COFF handling.
3285         * configure.tgt: Add tic54x target.
3286         * Makefile.am: Add tic54x target.
3287         * Makefile.in: Ditto.
3289 2000-06-20  Alan Modra  <alan@linuxcare.com.au>
3291         * ldmain.c (set_scripts_dir): Correct pointer comparison when
3292         checking for backslashes.
3294 2000-06-19  Alan Modra  <alan@linuxcare.com.au>
3296         * NEWS: Move entries not in 2.10 above "Changes in version 2.10".
3298 2000-06-18  Alan Modra  <alan@linuxcare.com.au>
3300         * NEWS: Update list of targets supporting --gc-sections.
3302         * scripttempl/elf.sc: KEEP .eh_frame contents.
3303         * scripttempl/elfd30v.sc: Same here.
3305 2000-06-18  Stephane Carrez  <stcarrez@worldnet.fr>
3307         * Makefile.am (ALL_EMULATIONS): Added new emulation for m68hc12
3308         and m68hc11 (elf).
3309         * Makefile.in: Rebuild.
3310         * configure.tgt: Recognize m68hc12 and m68hc11.
3311         * scripttempl/elfm68hc12.sc: New file.
3312         * emulparams/m68hc12elfb: New emulation.
3313         * emulparams/m68hc12elf: New emulation.
3314         * emulparams/m68hc11elfb.sh: New file.  User configurable emulation
3315         (includes a memory.x script to define the ROM and RAM banks).
3316         * scripttempl/elfm68hc11.sc, emulparams/m68hc11elf.sh:
3317         New configuration files for support of Motorola 68hc11
3319 2000-06-15  Alan Modra  <alan@linuxcare.com.au>
3321         * ldmain.c (main): Only change SEC_READONLY for final link.
3323 2000-06-13  H.J. Lu  <hjl@gnu.org>
3325         * configure: Regenerate.
3327 2000-06-08  David O'Brien  <obrien@FreeBSD.org>
3329         * configure.in (VERSION): Update to show this is the CVS mainline.
3331 2000-06-07  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
3333         * emultempl/mipsecoff.em (gld{EMULATION_NAME}_after_open): Require all
3334         input objects to be ECOFF.
3335         (check_sections): einfo takes %B, not %P, to print a BFD name.
3337 2000-06-05  Michael Matz <matz@ifh.de>
3339         * ldgram.y (vers_defns): Handle 'extern "C++" { ... }' in
3340         version scripts.
3342         * ldlex.l (V_IDENTIFIER): Accept `::' in symbols.
3344 2000-05-23  Marek Michalkiewicz  <marekm@linux.org.pl>
3346         * emulparams/avr1200.sh (STACK): Define as 0.
3347         * emulparams/avr23xx.sh (STACK): Define as last internal SRAM address.
3348         * emulparams/avr4433.sh (STACK): Likewise.
3349         * emulparams/avr44x4.sh (STACK): Likewise.
3350         * emulparams/avr85xx.sh (STACK): Likewise.
3351         * emulparams/avrmega103.sh (STACK): Likewise.
3352         * emulparams/avrmega161.sh (STACK): Likewise.
3353         * emulparams/avrmega603.sh (STACK): Likewise.
3354         * scripttempl/elf32avr.sc (__data_start): Define for gcrt1.
3355         (__stack): Define from ${STACK} for main().
3357 2000-05-26  Alan Modra  <alan@linuxcare.com.au>
3359         * Makefile.am: Update dependencies with "make dep-am"
3360         * Makefile.in: Regenerate.
3362 2000-05-26  Eli Zaretskii  <eliz@is.elta.co.il>
3364         * ldmain.c: Include filenames.h.
3365         (set_scripts_dir): Support backslashes in program name.
3367 2000-05-22  Igor Shevlyakov  <igor@windriver.com>
3369         * ldmain.c (main): When deciding if ".text" section should be
3370         read-only, don't forget to reset SEC_READONLY because it
3371         could be already set.
3373 2000-05-22  Thomas de Lellis  <tdel@windriver.com>
3375         * ld.1: Add documentation for new command line option:
3376                 --section-start <sectionname>=<sectionorg>
3377         This is a generic version of -Ttext etc. which accepts
3378         any section name as a parameter instead of just text/data/
3379         bss.
3380         * ld.texinfo: More docs.
3381         * NEWS: More docs.
3382         * lexsup.c: (parse_args): Recognize new command line option.
3383         (ld_options): Add new option.
3385 2000-05-18  H.J. Lu  <hjl@gnu.org>
3387         * lexsup.c (parse_args): `i' == `r', not `q'.
3389 2000-05-18  Jeffrey A Law  (law@cygnus.com)
3391         * configure.tgt (hppa*64*-*-*): Enable PA64 target.
3393 2000-05-17 S. Bharadwaj Yadavalli  <sby@scrugs.lkg.dec.com>
3394               Rick Gorton          <gorton@scrugs.lkg.dec.com>
3396         Add support for '-q' == '--emit-relocs' switch.
3397         * ldmain.c (main): Default to false.
3398         * lexsup.c (parse_args): Turn on emitrelocations flag if set.
3399         * NEWS: Describe the emitrelocations switch.
3400         * ld.texinfo: Describe the emitrelocations switch.
3402 2000-05-16  Charles Wilson <cwilson@ece.gatech.edu>
3404         * emultempl/pe.em (_open_dynamic_archive): New function: Search
3405         the library path for "foo.dll" and "libfoo.dll" dynamic libraries
3406         before searching for 'libfoo.a' in response to a '-Bdynamic -lfoo'
3407         link options.
3409 2000-05-15  David O'Brien  <obrien@FreeBSD.org>
3411         * lexsup.c (parse_args): Update the year in the copyright notice.
3413 2000-05-13  Alan Modra  <alan@linuxcare.com.au>
3415         * ld.h (gettext, dgettext, dcgettext, textdomain, bindtextdomain):
3416         Replace defines with those from intl/libgettext.h to quieten gcc
3417         warnings.
3419 2000-05-10  H.J. Lu  <hjl@gnu.org>
3421         * ldlang.c (open_input_bfds): Don't load the same file within
3422         a group again if the whole archive has been loaded already.
3424 2000-05-03  Alan Modra  <alan@linuxcare.com.au>
3426         From Ulf Carlsson <ulfc@engr.sgi.com> and Andreas Jaeger <aj@suse.de>
3427         * lexsup.c (set_section_start): Use bfd_scan_vma rather than
3428         strtoul.
3430 2000-05-01  Jim Wilson  <wilson@cygnus.com>
3432         * configure.host (ia64-*-linux-gnu*): Change gcc to ${CC}.
3434         * configure.host: Added HOSTING_CRT0, HOSTING_LIBS for
3435         host "ia64-*-linux-gnu*".
3437 2000-04-29  Andreas Jaeger  <aj@suse.de>
3439         * ld.h: Correctly check GCC version.
3441 2000-04-25  Jeffrey A Law  (law@cygnus.com)
3443         * Makefile.am: Add PA64 support.  Add missing dependencies for
3444         PA32 elf support.
3445         * Makefile.in: Rebuilt.
3446         * configure.tgt: Add PA64 support (currently disabled).
3448 2000-04-25  Alan Modra  <alan@linuxcare.com.au>
3450         * emultempl/elf32.em (gld${EMULATION_NAME}_place_section): Delete.
3451         (output_rel_find): New function.
3452         (hold_section, hold_use): Delete.
3453         (hold_text, hold_rodata, hold_data, hold_bss, hold_rel,
3454         hold_interp): Make local to place_orphan.
3455         (gld${EMULATION_NAME}_place_orphan): Use lang_output_section_find
3456         rather than place_section to find possible previous use of orphan.
3457         Similarly find the place-holder output sections.  Use returned
3458         value from lang_enter_output_section_statement rather than calling
3459         lang_output_section_statement_lookup.
3460         * emultempl/armelf.em: Same here.
3461         * emultempl/pe.em: Similar to above, but no need for output_rel_find.
3463         * ldlang.c (lang_enter_output_section_statement): Return output
3464         section statement.
3465         * ldlang.h (lang_enter_output_section_statement): Change
3466         declaration too.
3468         * ldlang.h (lang_output_section_statement): Export it.
3469         * ldlang.c (lang_output_section_statement): Ditto.
3471 2000-04-24  Nick Clifton  <nickc@cygnus.com>
3473         * ld.texinfo (Output Section Data): Add note that section data
3474         commands cannot appear outside of section directives.
3476 2000-04-2  Matthew Green  <mrg@cygnus.com>
3478         * configure.tgt: Add NetBSD/sparc ELF, and NetBSD/sparc64 support.
3480 2000-04-21  Richard Henderson  <rth@cygnus.com>
3481             David Mosberger  <davidm@hpl.hp.com>
3483         * Makefile.am (ALL_64_EMULATIONS): Add eelf64_ia64.o.
3484         (eelf64_ia64.c): New rule.
3485         * Makefile.in: Rebuild.
3486         * configure.tgt (ia64-*-elf*, ia64-*-linux*): New targets.
3487         * emulparams/elf64_ia64.sh: New file.
3489 2000-04-21  Richard Henderson  <rth@cygnus.com>
3491         * scripttempl/elfd30v.sc: Place .gcc_except_table.
3493 2000-04-19  Alan Modra  <alan@linuxcare.com.au>
3495         * dep-in.sed: Match space at start of file name, not at end.
3497 2000-04-18  H.J. Lu  <hjl@gnu.org>
3499         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Call
3500         lang_leave_output_section_statement () after calling
3501         lang_enter_output_section_statement ().
3502         * emultempl/armelf.em: Likewise.
3504 2000-04-18  Alan Modra  <alan@linuxcare.com.au>
3506         * emultempl/elf32.em (struct orphan_save): Add section field.
3507         (gld${EMULATION_NAME}_place_orphan): Use above to keep sections in
3508         better order, and place first orphan section as we did before the
3509         2000-04-12 patch.  Ignore ~SEC_ALLOC sections when choosing place.
3510         Don't call make_bfd_section here, let wild_doit do the job for us.
3511         Don't build a statement list when we'll only throw it away.
3512         * emultempl/armelf.em: Ditto.
3513         * emultempl/pe.em: Similarly.
3515 2000-04-14  Geoff Keating  <geoffk@cygnus.com>
3517         * scripttempl/elfppc.sc: Remove.
3518         * emulparams/elf32ppc.sh: Use elf.sc.
3519         * emulparams/elf32lppc.sh: Use elf.sc.
3520         * emulparams/elf32ppclinux.sh: Use elf.sc.
3521         * emulparams/elf32ppcsim.sh: New file.
3522         * emulparams/elf32lppcsim.sh: New file.
3523         * Makefile.am: Update dependencies.  Add elf32ppcsim ad elf32lppcsim.
3524         (ALL_EMULATIONS): Add elf32ppcsim ad elf32lppcsim.
3525         * Makefile.in: Regenerate.
3526         * configure.tgt (powerpc-*): Add elf32ppcsim and elf32lppcsim.
3528 2000-04-14  Alan Modra  <alan@linuxcare.com.au>
3530         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Process
3531         ~SEC_ALLOC sections too.  Init start address of debug sections.
3532         * emultempl/armelf.em (gld${EMULATION_NAME}_place_orphan): Ditto.
3533         * emultempl/pe.em (gld${EMULATION_NAME}_place_orphan): Ditto.
3534         Also set all relocateable section start addresses.
3536 2000-04-13  Geoff Keating  <geoffk@cygnus.com>
3538         * scripttempl/elf.sc: Add support for .sbss2 and .sdata2 sections.
3539         Add new BSS_PLT variable for when .plt need not be contained in
3540         the file.  Move _etext so that it is also after .fini, and provide
3541         both etext and _etext with a leading underscore.  Mark the start
3542         and end of .sbss.
3544 2000-04-12  Alan Modra  <alan@linuxcare.com.au>
3546         * emultempl/elf32.em (struct orphan_save): New.
3547         (hold_text, hold_rodata, hold_data, hold_bss, hold_rel,
3548         hold_interp): Make them struct orphan_save.
3549         (gld${EMULATION_NAME}_place_section): Modify for new hold_*.
3550         (gld${EMULATION_NAME}_place_orphan): Add new orphan sections to
3551         the end of the relevant section list.  Also add associated section
3552         statements to the end of any previous orphan statements.
3553         * emultempl/armelf.em: Similarly.
3554         * emultempl/pe.em: Similarly.
3556 2000-04-11  Alan Modra  <alan@linuxcare.com.au>
3558         * ld.texinfo (Simple Example): Remove extraneous paragraph.
3560 2000-04-07  Andrew Cagney  <cagney@b1.cygnus.com>
3562         * configure.in (WARN_CFLAGS): Set to -W -Wall by default.  Add
3563         --enable-build-warnings option.
3564         * Makefile.am (AM_CFLAGS, WARN_CFLAGS): Add definitions.
3565         * Makefile.in, configure: Re-generate.
3567 2000-04-04  Alan Modra  <alan@linuxcare.com.au>
3569         * po/ld.pot: Regenerate.
3571         * lexsup.c (help): Restore translated part of bug string.
3573         * Makefile.am (MKDEP): Use gcc -MM rather than mkdep.
3574         (DEP): Quote when passing vars to sub-make.  Add warning message
3575         to end.
3576         (DEP1): Rewrite for "gcc -MM".
3577         (CLEANFILES): Add DEP2.
3578         Update dependencies.
3579         * Makefile.in: Regenerate.
3581 2000-04-03  Alan Modra  <alan@linuxcare.com.au>
3583         * ld.h: #include "bin-bugs.h"
3584         * lexsup.c (help): Use REPORT_BUGS_TO.
3586 2000-03-27  Denis Chertykov  <denisc@overta.ru>
3588         * configure.tgt (avr-*-*): New target support.
3589         * Makefile.am: Likewise.
3590         * scripttempl/elf32avr.sc: New script file.
3591         * emulparams/avr1200.sh: New file.
3592         * emulparams/avr23xx.sh: New file.
3593         * emulparams/avr4433.sh New file.
3594         * emulparams/avr44x4.sh New file.
3595         * emulparams/avr85xx.sh New file.
3596         * emulparams/avrmega103.sh New file.
3597         * emulparams/avrmega161.sh New file.
3598         * emulparams/avrmega603.sh New file.
3599         * Makefile.in: Regenerate.
3601 2000-03-09  Andreas Jaeger  <aj@suse.de>
3603         * Makefile.am (check-DEJAGNU): Also unset LANG.
3604         * Makefile.in: Rebuild.
3606 2000-03-06  Ian Lance Taylor  <ian@zembu.com>
3608         * ldfile.c (ldfile_try_open_bfd): Don't crash if we see an empty
3609         archive.
3611 2000-03-02  H.J. Lu  <hjl@gnu.org>
3613         * emulparams/elf32mcore.sh: Include "getopt.h".
3615 2000-03-01  Ian Lance Taylor  <ian@zembu.com>
3617         * configure.tgt: Remove *-*-aout, *-*-coff, and *-*-netware.
3619 2000-03-01  H.J. Lu  <hjl@gnu.org>
3621         * emulparams/mipspe.sh: Add SUBSYSTEM and INITIAL_SYMBOL_CHAR.
3622         * emulparams/shpe.sh: Likewise.
3624 2000-03-01  Nick Clifton  <nickc@cygnus.com>
3626         * pe-dll.c: Remove unused variables and add ATTRIBUTE_UNUSED
3627         to unused parameters.
3629         * emultempl/pe.em: Add "#ifdef DLL_SUPPORT" around static
3630         functions only used by DLL code.
3631         (_place_orphan): Initialise 'dollar'.
3633 2000-03-01  H.J. Lu  <hjl@gnu.org>
3635         * ldmain.c (undefined_symbol): Take one more arg, fatal, to
3636         indicate if the undefined symbol is a fatal error or not.
3637         Don't delete the output file if "fatal" is false.
3639 2000-02-29  H.J. Lu  <hjl@gnu.org>
3641         * Makefile.am (check-DEJAGNU): Also pass LIBS="$(LIBS)".
3642         Set LC_COLLATE and LC_ALL to null and export them. It is for
3643         sort which expects the C locale.
3644         Add $(LIBS) to all $(HOSTING_LIBS).
3645         * Makefile.in: Rebuild.
3647 2000-02-29  Alan Modra  <alan@spri.levels.unisa.edu.au>
3649         * emultempl/{aix.em, armcoff.em, armelf.em, armelf_oabi.em,
3650         beos.em, elf32.em, generic.em, gld960.em, gld960c.em, hppaelf.em,
3651         linux.em, lnk960.em, mipsecoff.em, sunos.em, vanilla.em}
3652         (ld_emulation_xfer_struct): Add missing NULL initialiser for
3653         find_potential_libraries.
3655 2000-02-28  Jim Blandy  <jimb@redhat.com>
3657         * ldgram.y (exclude_name_list): Don't require a comma to separate
3658         list entries; the lexer considers commas to be valid part of a
3659         filename, so in something like `foo, bar' the comma is considered
3660         part of the first filename, `foo,'.
3661         * ld.texinfo: Update section on EXCLUDE_FILE lists.
3663 2000-02-27  Loren J. Rittle  <ljrittle@acm.org>
3665         * configure.host: Added HOSTING_CRT0, HOSTING_LIBS for
3666         host "i[3456]86-*-freebsdelf*".
3668 2000-02-27  Mark Elbrecht  <snowball3@bigfoot.com>
3670         * scripttempl/i386go32.sc: Move misplaced semicolons.
3672 2000-02-25  Ian Lance Taylor  <ian@zembu.com>
3674         * Makefile.am (ALL_EMULATIONS): Remove ehppaelf.o.
3675         (ALL_64_EMULATIONS): Remove eelf64hppa.o.
3676         (eelf64hppa.c, ehppaelf.c): Remove targets.
3677         * Makefile.in: Rebuild.
3679 2000-02-25  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
3681         * configure.tgt (targ_extra_ofiles): Enable elf64_sparc on
3682         GNU/Linux/sparc, but keep the default as 32.
3684         * configure.tgt: Enable elf64_sparc on Solaris7+/sparc.  And make
3685         it default if sparcv9 or sparc64.
3687 2000-02-24  Nick Clifton  <nickc@cygnus.com>
3689         * Makefile.am: Add rules to build emipspe.o and earmpe.o.
3690         * Makefile.in: Regenerate.
3691         * configure.tgt: Add targets for arm-wince, sh-pe and mips-pe.
3693         * ldemul.h (ld_emulation_xfer_struct): Add new field:
3694         find_potential_libraries.
3695         * ldemul.c (ldemul_find_potential_libraries): New function.
3697         * ldfile.c (ldfile_open_file_search): Allow function to be
3698         exported.
3699         (ldfile_open_file): Call ldemul_find_potential_libraries.
3700         * ldfile.h: Add prototype for ldfile_open_file_search.
3702         * pe-dll.c: Add support for ARM, MIPS and SH targets.
3704         * emulparams/mipspe.sh: New file.  Parameters for mips-pe target.
3705         * emulparams/shpe.sh: New file.  Parameters for sh-pe target.
3707         * emultempl/pe.em: Add support for ARM, MIPS and SH DLLs.
3708         (gld_X_find_potential_libraries): New function.  Search for
3709         libraries called "*.lib".
3711         * scripttempl/pe.sc: Add .pdata section.
3713 2000-02-23  Richard Henderson  <rth@cygnus.com>
3715         * scripttempl/elfd10v.sc: Remove dynamic linking hooks.
3716         Add and use memory regions.
3718 2000-02-23  Linas Vepstas (linas@linas.org)
3720         * emulparams/elf32i370.sh, scripttempl/elfi370.sc: New.
3722         * Makefile.am: Add support for Linux/IBM 370.
3723         * configure.tgt: Likewise.
3725         * Makefile.in: Regenerate.
3727 2000-02-21  Alan Modra  <alan@spri.levels.unisa.edu.au>
3729         * ldlang.c (print_input_section, print_data_statement,
3730         print_reloc_statement, print_padding_statement, insert_pad,
3731         size_input_section, lang_check_section_addresses,
3732         lang_size_sections, lang_do_assignments, lang_set_startof,
3733         lang_one_common): Change `opb' to unsigned.
3734         (lang_do_assignments): Also change `size' to unsigned.
3736 2000-02-16  Richard Henderson  <rth@cygnus.com>
3738         * scripttempl/elf.sc: Place OTHER_PLT_RELOC_SECTION.
3740 2000-02-16  Timothy Wall  <twall@cygnus.com>
3742         * mri.c (mri_draw_tree): Add default LMA region argument to call
3743         to lang_leave_output_section_statement.
3744         * ldlang.h: Update prototypes with LMA region arguments.
3745         * ldlang.c (lang_size_sections): Encapsulate region bounds
3746         checking in os_check_region call.
3747         (os_check_region): New function.
3748         (lang_output_section_statement_lookup): Initialize lma_region.
3749         (lang_leave_output_section_statement): Add LMA region argument.
3750         (lang_leave_overlay): Ditto.
3751         * ldgram.y: Handle LMA region syntax.
3752         * ld.texinfo (Output Section Description): Describe LMA region usage.
3753         * emultempl/armelf.em (gld$place_orphan): Add default value for
3754         lma region in call to lang_leave_output_section_statement.
3755         * emultempl/elf32.em (gld$place_orphan): Add default value for
3756         lma region in call to lang_leave_output_section_statement.
3757         * emultempl/pe.em (gld$place_orphan): Add default value for
3758         lma region in call to lang_leave_output_section_statement.
3761 2000-02-04  Timothy Wall  <twall@redhat.com>
3763         * ldlang.c (lang_check_section_addresses): Use bytes instead of
3764         octets when calculating section end addresses.
3766 2000-02-04  Timothy Wall  <twall@redhat.com>
3768         * ldlang.c (lang_size_sections): Fix typo in ALIGN_N invocation.
3770 2000-02-03  Timothy Wall <twall@redhat.com>
3772         * ldexp.c (fold_name): Make SIZEOF operator return byte count, not
3773         octet count.
3774         * ldlang.c (print_input_section, print_data_statement,
3775         print_reloc_statement, print_padding_statement): Print target
3776         address values and section sizes as bytes, not octets.
3777         (insert_pad) Calculate padding size in octets, and adjust "dot"
3778         by bytes.
3779         (size_input_section) Always adjust "dot" by bytes, not octets.
3780         (lang_check_section_addresses, lang_do_assignments) Adjust
3781         "dot" by bytes, not octets.  Use the larger of the directive size
3782         or octets_per_byte for the number of octets actually allocated in
3783         the output section.
3784         (lang_set_startof) Make sure STARTOF returns a target address.
3785         (lang_one_common) Record size changes in octets.
3786         (lang_abs_symbol_at_end_of) Section end symbol's value is
3787         recorded in target bytes.
3788         * ld.texinfo:   Updated description of BYTE, SHORT, LONG, etc.
3789         to be clear about behavior when an octet is smaller than one byte.
3791 2000-01-27  Alan Modra  <alan@spri.levels.unisa.edu.au>
3793         * ldcref.c (output_cref): Don't pass message strings to printf
3794         as format arg.
3795         Update copyright.
3797         * ldmisc.c (vfinfo): Same here.
3798         Update copyright.
3800 2000-01-23  Alan Modra  <alan@spri.levels.unisa.edu.au>
3802         * emultempl/{armcoff.em,armelf.em,armelf_oabi.em,beos.em,
3803         generic.em,gld960.em,gld960c.em,hppaelf.em,linux.em,lnk960.em,
3804         mipsecoff.em,sunos.em,vanilla.em} (ld_emulation_xfer_struct):
3805         Add missing NULL initialisers, and comments.
3807         * testsuite/ld-srec/sr3.cc (__rethrow): New.
3809 2000-01-21  Nick Clifton  <nickc@cygnus.com>
3811         * ldlang.c (lang_size_sections): Fix typo in comment.
3813 2000-01-18  H.J. Lu  <hjl@gnu.org>
3815         * ldlang.c (lang_size_sections): Also update the current
3816         address of a region if the SEC_NEVER_LOAD bit is not set.
3818 2000-01-10  Philip Blundell  <pb@futuretv.com>
3820         * configure.tgt (arm*-*-conix*): New target.
3822 2000-01-07  Nick Clifton  <nickc@cygnus.com>
3824         * ld.texinfo (Options): Remind users to preceed linker command
3825         line switches with -Wl, (or whatever is appropriate) if it is
3826         being invoked by a comnpiler driver program.
3827         Fix description of the behaviour of the -n command line switch.
3829 2000-01-05  Catherine Moore  <clm@cygnus.com>
3831         * ld.h (wildcard_spec):  Change exclude_name to exclude_name_list.
3832         (name_list): New.
3833         * ld.texinfo (EXCLUDE_FILE): Update documentation.
3834         * ldgram.y (wildcard_spec): Support a list of excluded_files.
3835         (exclude_name_list): New.
3836         ldlang.c (walk_wild_section): Support list of excluded files.
3837         (print_wild_statement): Likewise.
3838         (lang_add_wild): Likewise.
3839         * ldlang.h (lang_wild_statement_type): Likewise.
3840         * scripttempl/elf.sc (OTHER_EXCLUDE_FILES): Support.
3842 2000-01-04  Mumit Khan  <khan@xraylith.wisc.edu>
3844         * pe-dll.c (pe_dll_warn_dup_exports): New variable.
3845         (process_def_file): Use.
3846         (pe_dll_compat_implib): New variable.
3847         (make_one): Use.
3849         * pe-dll.h: Add exports of pe_dll_warn_dup_exports and
3850         pe_dll_compat_implib.
3852         * emultempl/pe.em (longopts): Add warn-duplicate-exports and
3853         compat-implib options.
3854         (gld_${EMULATION_NAME}_list_options): List new options.
3855         (gld_${EMULATION_NAME}_parse_args): Handle.
3857         * pe-dll.c (pe_dll_generate_implib): Use the correct name for output
3858         dll.
3860         * deffilep.y (opt_name): Allow "." in name.
3862 For older changes see ChangeLog-9899
3864 Local Variables:
3865 mode: change-log
3866 left-margin: 8
3867 fill-column: 74
3868 version-control: never
3869 End: