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