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