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