Add iWMMXt support
[binutils.git] / ld / ChangeLog
blob5a547ffbc143ca6f19e3f20df453a0cf7b037d24
1 2003-03-25  Stan Cox   <scox@redhat.com>
2             Nick Clifton  <nickc@redhat.com>
3             
4         Contribute support for Intel's iWMMXt chip - an ARM variant:
6         * emulparams/armelf.sh (OTHER_READONLY_SECTIONS): Define.
7         * emulparams/armelf_linux.sh (OTHER_READONLY_SECTIONS): Define.
8         * scripttempl/armcoff.sc (.data): Ensure 8 byte alignment.
9         (.bss): Likewise.
11 2003-03-25  Alexandre Oliva  <aoliva@redhat.com>
13         * ldmain.h (ld_canon_sysroot, ld_canon_sysroot_len): Declare.
14         * ldmain.c (ld_canon_sysroot, ld_canon_sysroot_len): Define.
15         (main): Initialize them.
16         * ldfile.c: Include pathnames.h.
17         (is_sysrooted_pathname): New.
18         (ldfile_add_library_path): Use it.
19         (ldfile_open_file_search): Likewise.  Use IS_ABSOLUTE_PATH.  Don't
20         search_dirs if given an absolute pathname.
21         (ldfile_open_file): Issue error message for sysrooted
22         absolute pathnames.
23         * Makefile.am: Updated dependencies.
24         * Makefile.in: Rebuild.
26 2003-03-24  Daniel NĂ©ri  <dne@mayonnaise.net>
28         * ld.texinfo: Rename all occurances of C54X to TIC54X.
30 2003-03-19  Andreas Schwab  <schwab@suse.de>
32         * ldfile.c (ldfile_try_open_bfd): Pop lexer start condition after
33         eof.
35 2003-03-18  Danny Smith  <dannysmith@users.sourceforge,net>
37         * defilep.y (opt_base): If no number given, set to default
38         (-1), not 0.
40 2003-03-13  Danny Smith  <dannysmith@users.sourceforge,net> 
42         * deffilep.y (def_import):  Use default extension of "dll"
43         if no extension provided in parsed IMPORT definition.
45         * deffilep.y (def_lex): Revert 2003-03-12 change.
46         (dot_name): New id type and rule.
47         (expline): Use instead of ID.
48         (opt_equal_name): Likewise.
50 2003-03-12  Danny Smith  <dannysmith@users.sourceforge.net>
52         * deffilep.y (def_lex): Accept '.' as valid non-lead char.
54 2003-03-07  Christopher Faylor  <cgf@redhat.com>
56         * configure.tgt: Add NATIVE_LIB_DIRS for cygwin target back after
57         apparent accidental removal on 2003-01-06.
59 2003-03-04  Dmitry Diky  <diwil@mail.ru>
61         * Makefile.am: Add new devices x1122 x1132 emulation
62         * configure.tgt: Likewise.
63         * Makefile.in: Regenerate.
64         * emulparams/msp430x1122.sh: New file.
65         * emulparams/msp430x1132.sh: New file.
67 2003-03-03  Alexandre Oliva  <aoliva@redhat.com>
69         * ldmain.c (set_scripts_dir): Look for relative to TOOLBINDIR as
70         well.
72         * ldfile.h (struct search_dirs): Added sysrooted field.
73         * ldlang.h (struct lang_input_statement_struct): Likewise.
74         * ldfile.c (ldfile_add_library_path): Mark sysrooted paths.
75         (ldfile_open_file_search): Look for sysrooted filename starting
76         with / in ld_sysroot instead of in the current directory.  Clear
77         sysrooted flag if it's found in the current directory.  Set it
78         from the search directory's sysrooted flag where it is found
79         otherwise.
80         * ldlang.c (ldlang_sysrooted_script): New static variable.
81         (new_afile): Mark search_file_enums as sysrooted if
82         ldlang_sysrooted_script.
83         (load_symbols): Set ldlang_sysrooted_script according to the
84         script's sysrooted field while processing it.
85         * ld.texinfo: Document INPUT behavior in sysroot.
87 2003-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
89         * scripttempl/pe.sc: Use PROVIDE with etext, end, _end,
91 2003-03-03  Alan Modra  <amodra@bigpond.net.au>
93         * emulparams/elf64alpha.sh (EXTRA_EM_FILE): Define.
94         (PARSE_AND_LIST_PROLOGUE, PARSE_AND_LIST_LONGOPTS,
95         PARSE_AND_LIST_OPTIONS, PARSE_AND_LIST_ARGS_CASES,
96         PARSE_AND_LIST_EPILOGUE): Don't define.
97         * emultempl/alphaelf.em: New file.
99 2003-03-01  Alan Modra  <amodra@bigpond.net.au>
101         * ldemul.c: Include getopt.h.
102         * emultempl/elf32.em: Include getopt.h earlier.
103         * emultempl/ticoff.em: Likewise.
105 2003-02-28  Alan Modra  <amodra@bigpond.net.au>
107         * emultempl/elf32.em (gld${EMULATION_NAME}_get_script): Add combreloc
108         support when scripts read from files.
110 2003-02-28  Alan Modra  <amodra@bigpond.net.au>
112         * ldemul.c (ldemul_parse_args): Return FALSE by default.
113         * ldemul.h (struct ld_emulation_xfer_struct): Update parse_args
114         comment.
116         * ldemul.c (ldemul_add_options, ldemul_handle_option): New functions.
117         (ldemul_parse_args): Return bfd_boolean.  Formatting.
118         * ldemul.h (ldemul_add_options, ldemul_handle_option): Declare.
119         (ldemul_parse_args): Adjust.
120         (struct ld_emulation_xfer_struct): Add add_options and handle_option.
121         Return bfd_boolean from parse_args.
122         * lexsup.c (parse_args): Malloc shortopts, longopts and
123         really_longopts.  Call ldemul_add_options and ldemul_handle_option.
124         * emultempl/aix.em (gld${EMULATION_NAME}_add_options): Split out from
125         gld${EMULATION_NAME}_parse_args.
126         (gld${EMULATION_NAME}_handle_option): Likewise.
127         (ld_${EMULATION_NAME}_emulation): Adjust initializer.
128         * emultempl/armcoff.em: As for aix.em, but remove parse_args.
129         * emultempl/beos.em: Likewise.
130         * emultempl/pe.em: Likewise.
131         * emultempl/ticoff.em: Likewise.
132         * emultempl/elf32.em: Likewise.  Don't duplicate long options either.
133         (gld${EMULATION_NAME}_add_sysroot): Prototype.  
134         * emultempl/armelf.em (PARSE_AND_LIST_LONGOPTS): Don't duplicate
135         options.
136         * emultempl/hppaelf.em (PARSE_AND_LIST_LONGOPTS): Likewise.
137         * emultempl/ppc32elf.em (PARSE_AND_LIST_LONGOPTS): Likewise.
138         * emultempl/ppc64elf.em (PARSE_AND_LIST_LONGOPTS): Likewise.
139         * emultempl/armelf_oabi.em (ld_${EMULATION_NAME}_emulation): Adjust
140         initializer.
141         * emultempl/generic.em: Likewise.
142         * emultempl/gld960.em: Likewise.
143         * emultempl/gld960c.em: Likewise.
144         * emultempl/linux.em: Likewise.
145         * emultempl/lnk960.em: Likewise.
146         * emultempl/m68kcoff.em: Likewise.
147         * emultempl/mipsecoff.em: Likewise.
148         * emultempl/sunos.em: Likewise.
149         * emultempl/vanilla.em: Likewise.
150         * emultempl/netbsd.em (gldnetbsd_before_parse): Prototype.
152 2003-02-25  Alexandre Oliva  <aoliva@redhat.com>
154         * emultempl/elf32.em (gld${EMULATION_NAME}_add_sysroot): Fix
155         memory allocation error.
157         * Makefile.am (ldmain.o): Define TOOLBINDIR.
158         * Makefile.in: Rebuilt.
159         * ldmain.c (ld_sysroot): Try to set from TOOLBINDIR too.
161 2003-02-21  Bob Wilson  <bob.wilson@acm.org>
163         * ldlang.c (lang_size_sections_1): Add CHECK_REGIONS argument and only
164         call os_region_check when it is set.
165         (lang_size_sections): Add CHECK_REGIONS argument and pass it through to
166         lang_size_sections_1.
167         (lang_process): Change lang_size_sections calls to set CHECK_REGIONS
168         only for the last call, not on every relaxation iteration.
169         * ldlang.h (lang_size_sections): Update prototype.
170         * pe-dll.c (pe_dll_fill_sections): Set CHECK_REGIONS argument in calls
171         to lang_size_sections.
172         (pe_exe_fill_sections): Likewise.
173         * emultempl/elf32.em (gld${EMULATION_NAME}_finish): Likewise.
174         * emultempl/hppaelf.em (hppaelf_layout_sections_again): Likewise.
175         * emultempl/ppc64elf.em (ppc_before_allocation): Likewise.
176         (ppc_layout_sections_again): Likewise.
178 2003-02-21  Bob Wilson  <bob.wilson@acm.org>
180         * gen-doc.texi: Set ARM and HPPA variables.
181         * ld.texinfo: Fix typos and obvious texinfo mistakes.  Make section
182         title capitalization more consistent.  Add missing menu entries for
183         machine-specific sections and conditionalize them consistently. 
184         Conditionalize text that is irrelevant when SingleFormat is set.
185         Add @group divisions to improve page breaks in long examples.
186         Use @iftex/@ifnottex instead of @iftex/@ifinfo so that HTML output
187         is correct.  Remove "FIXME" comment about not using
188         @raisesections/@lowersections.  Use @raisesections/@lowersections
189         consistently for machine-specific sections.  Change to be more polite
190         about poor bug reports.  Replace FDL appendix with include of fdl.texi.
191         Move WIN32 node to match its order in the menus.
192         * fdl.texi: New file.
194 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
196         * configure.in (TARGET_SYSTEM_ROOT): Set default to
197         ${exec_prefix}/${target_alias}/sys-root.  Match explicit
198         '${exec_prefix}' (in addition to the expansion thereof) as
199         relocatable.
200         * configure: Rebuilt.
202 2003-02-20  Phil Edwards  <pme@gcc.gnu.org>
204         * ldgram.y (vers_defns): Also recurse with 'EXTERN NAME' patterns.
206 2003-02-20  Harri Porten  <porten@kde.org>
208         * ldgram.y (vers_defns): Allow optional trailing semicolon in
209         EXTERN NAME block;
211 2003-02-18  Alan Modra  <amodra@bigpond.net.au>
213         * emultempl/ppc32elf.em: New file.
214         * emulparams/elf32ppc.sh (EXTRA_EM_FILE): Define.
215         * Makefile.am (eelf32lppc.c): Depend on emultempl/ppc32elf.em.
216         (eelf32lppcnto.c): Likewise.
217         (eelf32lppcsim.c): Likewise.
218         (eelf32ppcnto.c): Likewise.
219         (eelf32ppc.c): Likewise.
220         (eelf32ppc_fbsd.c): Likewise.
221         (eelf32ppcsim.c): Likewise.
222         (eelf32ppclinux.c): Likewise.
223         * Makefile.in: Regenerate.
225 2003-02-18  Alan Modra  <amodra@bigpond.net.au>
227         * ld.texinfo: Remove spaces between @samp and opening brace.
229 2003-02-18  Alan Modra  <amodra@bigpond.net.au>
231         * emultempl/ppc64elf.em (ppc_create_output_section_statements): Check
232         hash creator.
233         (ppc_before_allocation): Don't do optimizations if wrong hash table.
234         (gld${EMULATION_NAME}_finish): Ditto.
236 2003-02-17  Nick Clifton  <nickc@redhat.com>
238         * ldmain.c (main) Default allow_shlib_undefined to true.
239         * lexsup.c (ld_options): Add --no-allow-shlib-undefined.
240         (parse_args): Parse the new switch.
241         * ld.texinfo: Document new switch and default behaviour of
242         allowing undefined symbols in shared libraries.
244 2003-02-11 Dmitry Diky  <diwil@mail.ru>
246         * scripttempl/elf32msp430.sc: Add new data anchors definitions.
247         * scripttempl/elf32msp430_3.sc: Likewise.
249 2003-02-11  Uwe Stieber  <uwe@wwws.de>
251         * configure.tgt: Add support for kaOS as cross build target
252         system.
254 2003-02-10  John Daivid Anglin  <dave.anglin@nrc-cnrc.gc.ca>
256         * hppaelf.em (group_size): Change default back to 1.
258 2003-02-09  Alan Modra  <amodra@bigpond.net.au>
260         * emultempl/ppc64elf.em: Add "no-tls-optimize" option and support code.
262 2003-02-07  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
264         * hppaelf.em (group_size): Change default to -1.
266 2003-02-07  Nick Clifton  <nickc@redhat.com>
268         * emultempl/armelf.em (PARSE_AND_LIST_SHORTOPTS): Remove 'n' short
269         opt.
270         (PARSE_AND_LIST_LONGOPTS): Add duplicate entry for
271         no-pipeline-knowledge.  This will prevent the getopt package from
272         thinking that there are any shorter abbreviations for
273         --no-pipeline-knowledge.
275 2003-02-07  Jakub Jelinek  <jakub@redhat.com>
277         * genscripts.sh (LIB_PATH): Don't append LIBPATH_SUFFIX to paths
278         which already have it.  Avoid duplicates.
280 2003-02-06  Jakub Jelinek  <jakub@redhat.com>
282         * emulparams/elf64_s390.sh (LIBPATH_SUFFIX): Set to 64.
283         * emulparams/elf_x86_64.sh (LIBPATH_SUFFIX): Likewise.
284         * emulparams/elf64_sparc.sh (LIBPATH_SUFFIX): Set instead of suffix.
286 2003-02-05  Alan Modra  <amodra@bigpond.net.au>
288         * emultempl/ppc64elf.em (ppc_before_allocation): Size sections then
289         call ppc64_elf_tls_optimize.
291 2003-02-03  Daniel Jacobowitz  <drow@mvista.com>
293         * emultempl/elf32.em: Move gld${EMULATION_NAME}_add_sysroot
294         outside of GNU/Linux conditional.
296 2003-01-28  Ralf Habacker  <ralf.habacker@freenet.de>
298         * deffilep.y (def_get_module): New function: locate an already
299         added module.
300         * deffile.h (def_get_module): New prototype.
301         * pe-dll.c (pe_implied_import_dll): Add code to prevent importing
302         a dll multiple times.
304 2003-01-23  Alan Modra  <amodra@bigpond.net.au>
306         * emultempl/sh64elf.em: Include elf32-sh64.h.
307         (sh64_elf_${EMULATION_NAME}_before_allocation): Adjust for changed
308         sh64_elf_section_data.
309         (sh64_elf_${EMULATION_NAME}_after_allocation): Likewise.
311 2003-01-23  Wu Yongwei  <adah@netstd.com>
313         * ld.texinfo: Remove an extra "i" in --dll-search-prefix.
314         * emultempl/pe.em (gld_${EMULATION_NAME}_list_options): Move a
315         cross-80th-column-margin "an" to the next line.
317 2003-01-21  Nick Clifton  <nickc@redhat.com>
319         * emulparams/tic3xcoff-onchip.sh: Rename to ...z
320         * emulparams/tic3xcoff_onchip.sh: ...this.
321         * Makefile.am (etic3xcoff_onchip.c): Fix name of generated C file.
322         * Makefile.in: Regenerate.
324 2003-01-21  Fabio Alemagna  <falemagn@aros.org>
326         * configure.tgt: Handle i[3456]86-*-aros*
328 2003-01-19  Svein E. Seldal  <Svein.Seldal@solidas.com>
330         * Makefile.am: Added etic3xcoff.o and etic4xcoff_onchip.o
331         * Makefile.in: Regenerate
332         * configure.tgt: Added extra target emulations
333         * emulparams/tic3xcoff.sh: Remove old settings
334         * emulparams/tic4xcoff.sh: Ditto
335         * emulparams/tic3xcoff-onchip.sh: Added new
336         * scripttempl/tic4xcoff.sc: Revise and combine both c3x and c4x
337         * scripttempl/tic3xcoff.sc: Remove
339 2003-01-17  Andreas Jaeger  <aj@suse.de>
341         * emultempl/elf32.em (gld${EMULATION_NAME}_add_sysroot): Do not
342         skip ':'.
344 2003-01-16  Alan Modra  <amodra@bigpond.net.au>
346         * Makefile.in: Regenerate.
348 2002-01-14  Charles Wilson  <cwilson@ece.gatech.edu>
350         * ld/ld.texinfo (node WIN32): Some clarifications
351         and formatting fixups.
353 2003-01-09  Chris Demetriou  <cgd@broadcom.com>
355         * ldmain.c (get_emulation): Sort -mipsNN checks in the usual
356         order, and handle (ignore) -mips32r2.
358 2003-01-09  Daniel Jacobowitz  <drow@mvista.com>
360         * ldmain.c (main): Make sure ld_sysroot is initialized.
362 2003-01-06  Daniel Jacobowitz  <drow@mvista.com>
364         * Makefile.am (eelf32iq10.c): Fix tab/whitespace mixup.
366         * Makefile.am (ldmain.o): Add @TARGET_SYSTEM_ROOT_DEFINE@.
367         (GENSCRIPTS): Add @use_sysroot@.
368         * Makefile.in: Regenerated.
369         * configure.host: Move setting of NATIVE_LIB_DIRS to...
370         * configure.tgt: ... here.  Use ${target} instead of ${host}
371         for NATIVE_LIB_DIRS.
372         * configure.in: Add --with-sysroot.
373         * configure: Regenerated.
374         * genscripts.sh: Accept use_sysroot option.  Set new variables
375         NATIVE and USE_LIBPATH.  Prepend "=" to directory names if
376         $use_sysroot.  Don't search $tool_lib if $use_sysroot.
377         * ldfile.c (ldfile_add_library_path): Handle leading '='.
378         * ldmain.c (TARGET_SYSTEM_ROOT): Define if not defined.
379         (ld_sysroot): New variable.
380         (main): Initialize ld_sysroot.
381         * ldmain.h (ld_sysroot): New extern.
382         * emultempl/elf32.em: Use NATIVE and USE_LIBPATH instead of
383         searching $EMULATION_LIBPATH.
384         (gld${EMULATION_NAME}_add_sysroot): New function.
385         (gld${EMULATION_NAME}_check_ld_so_conf): Use it.  Honor ld_sysroot.
386         (gld${EMULATION_NAME}_after_open): Likewise.  Only search
387         environment variables if $NATIVE.
388         * ld.texinfo (Options): Mention "=" prefix in the description of -L.
389         * NEWS: Mention --with-sysroot.
391         * emulparams/elf32bmipn32-defs.sh: Set NATIVE and LIBPATH_SUFFIX
392         instead of setting LIB_PATH.
393         * emulparams/elf32ppc.sh: Likewise.
394         * emulparams/elf64_s390.sh: Likewise.
395         * emulparams/elf64_sparc.sh: Likewise.
396         * emulparams/elf64ppc.sh: Likewise.
397         * emulparams/elf_x86_64.sh: Likewise.
399         * emulparams/elf64_aix.sh: Add "=" prefixes to LIB_PATH.
400         * emulparams/elf64hppa.sh: Add "=" prefixes to LIB_PATH.
402 2003-01-03  Charles Wilson  <cwilson@ece.gatech.edu>
404         * ld/pe-dll.c (autofilter_symbollist): Add cygwin_crt0.
406 2003-01-04  Daniel Jacobowitz  <drow@mvista.com>
408         * Makefile.am (ldmain.o): Pass BINDIR.
409         * Makefile.in: Regenerated.
410         * ldmain.c (set_scripts_dir): Use make_relative_prefix for the first
411         search path.
413 2003-01-02  Ben Elliston  <bje@redhat.com>
415         * Makefile.am (ALL_EMULATIONS): Add eelf32iq2000.o.
416         (eelf32iq2000.c): New target.
417         * Makefile.in: Regenerate.
418         * configure.tgt: Handle iq2000-*-elf.
419         * emulparams/elf32iq10.sh: New file.
420         * emulparams/elf32iq2000.sh: New file.
421         * scripttempl/iq2000.sc: New file.
423 2003-01-02 Charles Wilson <cwilson@ece.gatech.edu>
425         * pe-dll.c (autofilter_symbollist): Add do_pseudo_reloc
426         and _pei386_runtime_relocator to the exclude list.
428 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
430         * ldfile.c: Fix comment typos.
431         * ldlang.c: Likewise.
432         * mri.c: Likewise.
433         * pe-dll.c: Likewise.
435 2003-01-01  Daniel Jacobowitz  <drow@mvista.com>
437         Suggested by Manfred Hollstein <manfred.h@gmx.net>:
438         * Makefile.am (ld.1): Depend on configdoc.texi
439         and ldver.texi.
440         * Makefile.in: Regenerated.
442 2002-12-24  Dmitry Diky  <diwil@mail.ru>
444         * Makefile.am: Add msp430 target.
445         * configure.tgt: Likewise.
446         * Makefile.in: Regenerate.
447         * emulparams/msp430x???.sh: New files.  Linker script parameters
448         for various msp430 configurations.
449         * gen-doc.texi: Enable msp430 documenation.
450         * ld.texinfo: Document msp430 sections.
451         * scripttempl/elf32msp430.sc: New file.  Linker script for msp430.
452         * scripttempl/elf32msp430_3.sc: New file.  Linker script for msp430.
454 2002-12-30  Ralf Habacker  <Ralf.Habacker@freenet.de>
455             Charles Wilson  <cwilson@ece.gatech.edu>
457         * ld/config.in (HAVE_REALPATH): New entry.
458         (HAVE_SYS_STAT_H, HAVE_SYS_TYPES_H): Removed: obsolete.
460 2002-12-30  Ralf Habacker  <ralf.habacker@freenet.de>
462         * ld.texinfo: New win32 topics: 'symbol aliasing' and 'export dll
463         symbols'.
465 2002-12-23  Alan Modra  <amodra@bigpond.net.au>
467         * ldmain.c (main): Init "strip_discarded".
468         * lexsup.c (OPTION_STRIP_DISCARDED): Define.
469         (OPTION_NO_STRIP_DISCARDED): Define.
470         (ld_options): Add "strip-discarded" and "no-strip-discarded".
471         (parse_args): Handle them.
473 2002-12-23  Nick Clifton  <nickc@redhat.com>
475         * ld.h (struct args_type): Add new field
476         'accept_unknown_input_architecture'.
477         * ldmain.c (main): Initialise 'accept_unknown_input_architecture'
478         to false.
479         * ldlang.c (lang_check): Pass accept_unknown_input_architecture to
480         bfd_arch_get_compatible.
481         * ldfile.c (ldfile_try_open_bfd): Likewise.
482         * lexsup.c (ld_options): Add new command line switch
483         --accept-unknown-input-architecture and its inverse.
484         (parse_args): Handle --accept-unknown-input-architecture.
485         * ld.texinfo: Document new linker option.
486         * NEWS: Mention new linker option.
488 2002-12-20  Alan Modra  <amodra@bigpond.net.au>
490         * ldmain.c (main): Re-order link_info initialization.  Init all
491         fields.
493 2002-12-19  Charles Wilson  <cwilson@ece.gatech.edu>
495         * ld.texinfo: Clarify and extend the documentation
496         in the Machine Dependent, WIN32 section.
498 2002-12-18  Ralf Habacker  <ralf.habacker@freenet.de>
500         * ld.texinfo: Add win32 machine depending section.
501         * gen-doc.texi: Enable win32 machine depending section.
503         * configure.host: Add win32 library search path.
505 2002-12-17  Ralf Habacker  <ralf.habacker@freenet.de>
507         * ld/emultempl/pe.em (pe_find_data_imports): Don't search for data
508         import when auto-import is disabled.
510 2002-12-17  Danny Smith  <dannysmith@users.sourceforge.net>
512         * emultempl/pe.em (..._recognized_file): Use LD_PATHMAX+1 to
513         account for trailing '\0'.
515 2002-12-17  Nick Clifton  <nickc@redhat.com>
517         * emultempl/pe.em (longopts): Duplicate entry for --compact-implib
518         so that it is not confused with -c.
520 2002-12-13  Ralf Habacker  <Ralf.Habacker@freenet.de>
521             Charles Wilson  <cwilson@ece.gatech.edu>
523         * configure.in: Add check for realpath function.
524         * configure: Regenerate.
525         * config.in: Regenerate.
526         * aclocal.m4: Regenerate.
527         * deffile.h: Add .data field to def_file_import
528         structure.
529         * pe-dll.c (pe_proces_import_defs): Use .data field of
530         def_file_import structure to initialize flag_data field of
531         def_file_export structure.
532         (pe_implied_import_dll): New variables exp_funcbase and
533         [data|bss]_[start|end].  Use DLL's internal name to set dll_name,
534         not filename (which may be a symlink).  Scan the sections and
535         initialize [data|bss]_[start|end].  When scanning the export
536         table, skip _nm_ symbols, and mark any symbols whose rva indicates
537         that it is in the .bss or .data sections as data.
538         * sysdep.h: Include limits.h and sys/param.h, and define
539         LD_PATHMAX as appropriate.  Also define REALPATH as realpath if it
540         exists, NULL otherwise.
541         * emultempl/pe.em (gld_${EMULATION_NAME}_after_open): Call
542         pe_process_import_defs before pe_find_data_imports, so that
543         auto-import will check the virtual implib as well as "real"
544         implibs.
545         (gld_${EMULATION_NAME}_recognized_file): Use REALPATH to follow
546         symlinks to their target; check that the target's extension is
547         .dll before calling pe_implied_import_dll(), not the filename
548         itself (which may be a symlink).
550 2002-12-10  Alan Modra  <amodra@bigpond.net.au>
552         * emultempl/elf32.em (struct orphan_save): Add os_tail field.
553         (gld${EMULATION_NAME}_place_orphan): Re-order output_section_statement
554         list too.
556 2002-12-08  Alan Modra  <amodra@bigpond.net.au>
558         * ldlang.h: Formatting.
560 2002-12-07  Alan Modra  <amodra@bigpond.net.au>
562         * ldlang.c (init_os): Ensure sections mentioned in load_base
563         are initialized.
565 2002-12-05  Alan Modra  <amodra@bigpond.net.au>
567         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Set
568         load_base for orphans that follow a section with load_base set.
570 2002-12-01  H.J. Lu <hjl@gnu.org>
572         * ld.texinfo: Remove the extra `;' in sample version script.
574 2002-11-30  Alan Modra  <amodra@bigpond.net.au>
576         * configure.host: Correct dynamic-linker for powerpc64 hosts.
578         * Makefile.am (eelf32ppcwindiss.c): Correct dependencies.
579         * Makefile.in: Regenerate.
581         * ld.h, ldcref.c, ldctor.c, ldctor.h, ldemul.c, ldemul.h, ldexp.c,
582         ldexp.h, ldfile.c, ldfile.h, ldgram.y, ldlang.c, ldlang.h, ldmain.c,
583         ldmain.h, ldmisc.c, ldwrite.c, lexsup.c, mri.c, pe-dll.c, pe-dll.h,
584         emulparams/elf32b4300.sh, emultempl/aix.em, emultempl/armcoff.em,
585         emultempl/armelf.em, emultempl/armelf_oabi.em, emultempl/beos.em,
586         emultempl/elf32.em, emultempl/generic.em, emultempl/gld960.em,
587         emultempl/gld960c.em, emultempl/hppaelf.em, emultempl/linux.em,
588         emultempl/lnk960.em, emultempl/m68kcoff.em, emultempl/mipsecoff.em,
589         emultempl/mmix-elfnmmo.em, emultempl/mmixelf.em, emultempl/mmo.em,
590         emultempl/needrelax.em, emultempl/pe.em, emultempl/ppc64elf.em,
591         emultempl/sh64elf.em, emultempl/sunos.em, emultempl/ticoff.em: Replace
592         boolean with bfd_boolean, true with TRUE, false with FALSE.  Simplify
593         comparisons of bfd_boolean vars with TRUE/FALSE.  Formatting.
595 2002-11-27  David O'Brien  <obrien@FreeBSD.org>
597         * configure.host: Fix generic FreeBSD configuration entry.
599 2002-11-27  H.J. Lu <hjl@gnu.org>
601         * ld.texinfo: Add the missing `;' to sample version scripts.
603 2002-11-20  Alan Modra  <amodra@bigpond.net.au>
605         * emulparams/elf64ppc.sh (SEGMENT_SIZE): Don't define.
607 2002-11-14  Egor Duda  <deo@logos-m.ru>
609         * ldmain.c (main): Make runtime relocs disabled by default. Remove
610         assignment which has no effect.
611         * pe-dll.h (pe_create_import_fixup): Change prototype.
612         * pe-dll.c (make_runtime_pseudo_reloc): New function.
613         (pe_create_runtime_relocator_reference): Ditto.
614         (pe_create_import_fixup): Handle relocations with non-zero addends.
615         * emultempl/pe.em: Add options --enable-runtime-pseudo-reloc and
616         --disable-runtime-pseudo-reloc.
617         (make_import_fixup): Handle relocations with non-zero addends. Create
618         an external reference to _pei386_runtime_relocator symbol if at least
619         one pseudo reloc was created.
620         * ld.texinfo: Document --enable-runtime-pseudo-reloc and
621         --disable-runtime-pseudo-reloc options.
623 2002-11-12  Earl Chew <earl_chew@agilent.com>
625         * ldlang.c (lang_add_section): Discard debugging sections that have
626         been marked SEC_EXCLUDE.
628 2002-11-12  Nick Clifton  <nickc@redhat.com>
630         * configure.in (ALL_LINGUAS): Add da.
631         * configure: Regenerate.
632         * po/da.po: New Danish translation.
634 2002-11-12  Alan Modra  <amodra@bigpond.net.au>
636         * emultempl/ppc64elf.em (ppc_before_allocation): New function.
637         (LDEMUL_BEFORE_ALLOCATION): Define.
638         (gld${EMULATION_NAME}_finish): Run discard_info for relocatable
639         linking.
640         * emultemp/hppaelf.em ((gld${EMULATION_NAME}_finish): Likewise.
642 2002-11-11  Christopher Faylor  <cgf@redhat.com>
644         * configure.tgt (LIB_PATH): Default to searching w32api directory under
645         cygwin.
647 2002-11-11  Charles Wilson  <cwilson@ece.gatech.edu>
649         * pe-dll.c (autofilter_liblist): add libmingwex and libgcj to the list
650         of restricted auto-export libs.
652 2002-11-11  Charles Wilson  <cwilson@ece.gatech.edu>
654         * pe-dll.c (autofilter_liblist): Generalize library names to catch more
655         creative library naming instances like, e.g., libstdc++-2.a.
657 2002-11-06  Alexandre Oliva  <aoliva@redhat.com>
659         * emulparams/elf32btsmipn32.sh (TEXT_DYNAMIC): Define.
660         * emulparams/elf64btsmip.sh (TEXT_DYNAMIC): Likewise.
662 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
664         * deffilep.y (def_lex): Handle '@' as first character of an ID.
665         * pe-dll.c (auto-export): Filter on "_imp_" prefix, not "_imp__".
666         (make_one): Don't prefix decorated fastcall symbols with '_'.
667         (pe_process_import_defs): Likewise.
668         * emultempl/pe.em (pe_fixup_stdcalls): Don't fixup fastcall
669         symbols to cdecl names or vise-versa.
671 2002-10-13  Eric Kohl  <ekohl@rz-online.de>
673         * pe-dll.c (process_def_file): Handle fastcall symbols when
674         generating undecorated aliases.  Don't prefix decorated fastcall
675         symbols with '_'.
676         (fill_exported_offsets): Don't prefix decorated fastcall symbols
677         with '_'.
679 2002-10-29  Daniel Jacobowitz  <drow@mvista.com>
681         * emultempl/aix.em: Use include <> for generated headers.
682         * emultempl/beos.em: Likewise.
683         * emultempl/elf32.em: Likewise.
684         * emultempl/pe.em: Likewise.
685         * ldctor.c: Likewise.
686         * ldexp.c: Likewise.
687         * ldfile.c: Likewise.
688         * ldlang.c: Likewise.
689         * ldlex.c: Likewise.
690         * ldlex.l: Likewise.
691         * ldmain.c: Likewise.
692         * ldmisc.c: Likewise.
693         * ldwrite.c: Likewise.
694         * lexsup.c: Likewise.
695         * mri.c: Likewise.
696         * pe-dll.c: Likewise.
698 2002-10-23  Jakub Jelinek  <jakub@redhat.com>
700         * emultempl/elf32.em (place_orphan): Don't put non-allocated .rel*
701         sections into .rel{,a}.dyn.
703 2002-10-23  Nick Clifton  <nickc@redhat.com>
705         * lexsup.c (OPTION_NO_OMAGIC): Define.
706         (ld_options): Add "no-omagic" option.
707         (parse_args): Parse --no-omagic.
708         * ld.texinfo: Document --no-omagic.
709         * NEWS: Mention new option.
711 2002-10-21  Danny Smith  <dannysmith@users.sourceforeg.net>
713         * scripttempl/pe.sc (__RUNTIME_PSEUDO_RELOC_LIST__,
714         __RUNTIME_PSEUDO_RELOC_LIST_END__): Add only when relocating.
716 2002-10-22  Alexandre Oliva  <aoliva@redhat.com>
718         * emulparams/elf32bmipn32-defs.sh: Set ELFSIZE according to
719         emulation name.  Set LIB_PATH only for native tools, and
720         search the ABI-specific versions of NATIVE_LIB_DIRS before the
721         .../lib variants, not instead of them.  Mostly copied from...
722         * emulparams/elf32ppc.sh: ... here.  Fixed typo.
723         * emulparams/elf64bmip-defs.sh: Backed out.
724         * emulparams/elf64bmip.sh: Import elf32bmipn32-defs.sh again.
725         * emulparams/elf64btsmip.sh: Likewise.
726         (DATA_ADDR, NONPAGED_TEXT_START_ADDR, SHLIB_TEXT_START_ADDR,
727         TEXT_DYNAMIC): Removed.
729 2002-10-17  Alexandre Oliva  <aoliva@redhat.com>
731         * emulparams/elf32bmipn32-defs.sh (LIB_PATH): Set to /usr/lib32.
732         (GENERATE_SHLIB_SCRIPT): Set to yes.
733         (EXECUTABLE_SYMBOLS, WRITABLE_RODATA): Moved to...
734         * emulparams/elf32bmipn32.sh: here.
735         (GENERATE_SHLIB_SCRIPT): Deleted as redundant.
736         * emulparams/elf32btsmipn32.sh: Delete redundant unsets.
737         * emulparams/elf64bmip-defs.sh: New file.  Extend
738         elf32bmipn32-defs.sh by overiding ELFSIZE and LIB_PATH.
739         * emulparams/elf64bmip.sh: Bring in definitions from
740         elf64bmip-defs.sh.
741         (ELFSIZE, GENERATE_SHLIB_SCRIPT, LIB_PATH): Delete redundant
742         settings.
743         (WRITABLE_RODATA): Moved from elf32bmipn32-defs.sh.
744         * emulparams/elf64btsmip.sh: Bring in definitions from
745         elf64bmip-defs.sh.
746         (ELFSIZE, GENERATE_SHLIB_SCRIPT): Delete, redundant.
747         (EXECUTABLE_SYMBOLS, WRITABLE_RODATA): Delete redundant unsets.
749 2002-10-16  Jakub Jelinek  <jakub@redhat.com>
751         * configure.tgt (s390x-*-linux*): Add elf_s390 emulation.
752         (s390-*-linux*): Add elf64_s390 emulation if want64.
753         * emulparams/elf64_sparc.sh (LIB_PATH): Update to match 2002-05-22
754         genscript.sh changes.
755         * emulparams/elf_x86_64.sh (LIB_PATH): Likewise.
756         * emulparams/elf64_s390.sh (LIB_PATH): Set up native 64 bit dirs.
758 2002-10-15  Alan Modra  <amodra@bigpond.net.au>
760         * ldlang.c (load_symbols): Revert last change.
762 2002-10-14  Alan Modra  <amodra@bigpond.net.au>
764         * ldlang.c (load_symbols): Don't call bfd_link_add_symbols when
765         just_syms_flag.
766         (lang_reasonable_defaults): Don't compare against false.
767         (size_input_section): Likewise.
768         (lang_size_sections_1): Likewise.
769         (lang_do_assignments): Likewise.
770         (lang_add_output): Likewise.
772         * Makefile.am: Run "make dep-am".
773         * Makefile.in: Regenerate.
774         * ldver.c: #include "bfdver.h".
776 2002-10-13  Stephane Carrez  <stcarrez@nerim.fr>
778         * scripttempl/elfm68hc11.sc: Use KEEP for .vectors, .installN,
779         .finiN section.
780         * scripttempl/elfm68hc12.sc: Likewise.
782 2002-10-11  Alan Modra  <amodra@bigpond.net.au>
784         * pe-dll.c (make_import_fixup_mark): Avoid type-punned pointer.
786         * ldgram.y (memory_spec): Provide empty action.
787         (section <NAME>): Likewise.
789 2002-10-10  Jakub Jelinek  <jakub@redhat.com>
791         * ldfile.c (ldfile_try_open_bfd): When searching skip linker scripts if
792         they have OUTPUT_FORMAT not matching actual output format.
793         * ldlang.c (lang_get_output_target): New function.
794         (open_output): Use it.
795         * ldlang.h (lang_get_output_target): New prototype.
797 2002-10-10  Alan Modra  <amodra@bigpond.net.au>
799         * emultempl/elf32.em (output_rel_find): Prefer .rel script sections
800         when orphan is .rel, .rela when orphan is .rela.
801         (gld${EMULATION_NAME}_place_orphan): Handle combreloc .rel* case
802         first.  Remove outsecname var.
804 2002-10-09  Richard Shann <richard.shann@superh.com>
805             Stephen Clarke <stephen.clarke@superh.com>
807         * Makefile.am: Add eshelf32_linux.o and
808         eshlelf32_linux.o, new emulations for sh64 Linux.
809         * Makefile.in: Regenerate.
810         * configure.tgt: Add sh64eb-*-linux* and sh64-*-linux* emulations.
811         * emulparams/shelf32_linux.sh: New file.
812         * emulparams/shlelf32_linux.sh: New file.
814 2002-10-08  H.J. Lu <hjl@gnu.org>
816         * ldlang.c (lang_file_exist): Removed.
817         (new_afile): Revert the last change.
818         * ldlang.h (lang_file_exist): Removed.
819         * lexsup.c (parse_args): Revert the last change.
821 2002-10-07  Ralf Habacker  <Ralf.Habacker@freenet.de>
823         * pe-dll.cc (autofilter_symbolprefixlist): Don't re-export
824         auto-import symbols.
825         (make_one): Create _nm_<symbol> for data only.
827 2002-10-05  Elias Athanasopoulos  <eathan@otenet.gr>
829         * ldlang.c (lang_file_exist): New function.
830         (new_afile): Abort if the filename to be added matches the linker
831         output filename.
832         * ldlang.h: Add prototype for lang_file_exist.
833         * lexsup.c (parse_args): Abort if the output filename matches
834         one of the input filenames.
836 2002-10-02  Alan Modra  <amodra@bigpond.net.au>
838         * emulparams/elf64ppc.sh (MAXPAGESIZE): Set to 0x10000.
840 2002-09-30  Alan Modra  <amodra@bigpond.net.au>
842         * scripttempl/elfd30v.sc: Order reloc sections placing .plt last.
843         * scripttempl/elfm68hc11.sc: Likewise.
844         * scripttempl/elfm68hc12.sc: Likewise.
846         * emultempl/elf32.em (output_rel_find): Always place orphan loadable
847         reloc sections just before .rel.plt/.rela.plt.
848         (gld${EMULATION_NAME}_place_orphan <.rel>): Remove combreloc code.
849         Only put loadable reloc sections in hold_rel.
851 2002-09-29  H.J. Lu <hjl@gnu.org>
853         * emulparams/elf32ppc.sh (OTHER_GOT_RELOC_SECTIONS): New.
855 2002-09-25  Daniel Jacobowitz  <drow@mvista.com>
857         From "Anita Kulkarni" <AnitaK@kpit.com>
858         * scripttempl/sh.sc: Handle .eh_frame* and .gcc_exc*
859         sections.
861 2002-09-25  Alan Modra  <amodra@bigpond.net.au>
863         * genscripts.sh (SEGMENT_SIZE): Use MAXPAGESIZE before
864         TARGET_PAGE_SIZE.
865         * scripttempl/elf.sc (DATA_SEGMENT_ALIGN): Incorporate
866         SEGMENT_SIZE alignment.
867         * emulparams/elf64ppc.sh (DATA_ADDR): Delete.
868         (SEGMENT_SIZE): Define.
870         * ldexp.c (fold_unary): New.  Split out from exp_fold_tree.
871         (fold_binary): Correct abs - non-abs case.
872         (fold_trinary): New.  Split out from exp_fold_tree.
874 2002-09-24  Alan Modra  <amodra@bigpond.net.au>
876         * emulparams/elf64ppc.sh (DATA_ADDR): Define.
877         * emulparams/elf64_aix.sh (DATA_ADDR): Don't use a fixed address
878         for start of .data, instead align up to 256M boundary.
879         * scripttempl/aix.sc: Likewise.
881 2002-09-22  Mark Elbrecht  <snowball3@softhome.net>
883         * scripttempl/i386go32.sc: Handle bss unique sections.
885 2002-09-21  Alan Modra  <amodra@bigpond.net.au>
887         * ldmisc.c (vfinfo <%C,%D,%G>): Always output bfd, section and offset.
889 2002-09-17  Stan Cox  <scox@redhat.com>
891         * emulparams/elf32bmipn32-defs.sh: New file.
892         * emulparams/elf32bmipn32.sh: Use elf32bmipn32-defs.sh.
893         * emulparams/elf32btsmipn32.sh: Likewise.
894         * emulparams/elf64bmip.sh: Likewise.
895         * emulparams/elf64btsmip.sh: Likewise.
897 2002-09-16  Bruno Haible  <bruno@clisp.org>
899         * emulparams/elf_i386_fbsd.sh: Set OUTPUT_FORMAT to
900         elf32-i386-freebsd.
901         * emulparams/elf64alpha_fbsd.sh: Set OUTPUT_FORMAT to
902         elf64-alpha-freebsd.
904 2002-09-11  Nick Clifton  <nickc@redhat.com>
906         * NEWS: New TI port supports both C4x and C3x series of DSPs.
908         * po/tr.po: Updated Turkish translation.
910 2002-09-06  Jeffrey A Law  (law@redhat.com)
912         * configure.tgt (h8300-*-hms*, h8500-*-hms*): Restore.
914 2002-09-02  Nick Clifton  <nickc@redhat.com>
916         * scripttempl/v850.sc: Add EXTERN references to __ctbpm __gp and
917         __ep.
918         * emulparams/v850.sh (TEMPLATE_NAME): Define.
920 2002-08-30  Nick Clifton  <nickc@redhat.com>
922         * scripttempl/elfd10v.sc (MEMORY): Remove UNIFIED, it is not
923         used.  Change INSN to start at 0x01000000 and extend for
924         256K (ignoring holes).  Start the STACK on a word aligned
925         boundary.
926         (.rodata): Start it at the READONLY_START_ADDR.
928 2002-08-30  Alan Modra  <amodra@bigpond.net.au>
930         * emulparams/elf32ppc.sh (ARCH): Set to "powerpc:common".
932 2002-08-28  Svein E. Seldal  <Svein.Seldal@solidas.com>
934         * Makefile.am: Add etic4xcoff.o in ALL_EMULATIONS list and
935         added makefile targets for this file.
936         * Makefile.in: Regenerate.
937         * configure.tgt: Added tic4x-coff and c4x-coff emulations.
938         * NEWS: Mention new port.
940 2002-08-28  Michael Hayes <m.hayes@elec.canterbury.ac.nz>
942         * emulparams/tic3xcoff.sh: New file.
943         * emulparams/tic4xcoff.sh: New file.
944         * scripttempl/tic3xcoff.sc: New file.
945         * scripttempl/tic4xcoff.sc: New file.
947 2002-08-28  Alan Modra  <amodra@bigpond.net.au>
949         * emultempl/aix.em (gld${EMULATION_NAME}_parse_args): Replace strtoll,
950         strtoul and strtoull with bfd_scan_vma.
951         (gld${EMULATION_NAME}_read_file): Likewise.
953 2002-08-28  Alan Modra  <amodra@bigpond.net.au>
955         * configure.tgt: Remove h8[35]00-*-hms*.  Add h8500-*-rtems*.
957 2002-08-27  Egor Duda  <deo@logos-m.ru>
959         * scripttempl/pe.sc: Handle .rdata_runtime_pseudo_reloc sections.
960         Add symbols for application to access them.
962 2002-08-27  Nick Clifton  <nickc@redhat.com>
964         * emultempl/armelf.em:  Revert this patch, it is not needed.
966         2002-08-22  Adam Nemet  <anemet@lnxw.com>
968 2002-08-20 Dan Kegel <dank@kegel.com>
970         * configure.in: added --with-lib-path argument to ld's configure
971         to set LIB_PATH.
972         * ld/NEWS: Document new switch.
973         * ld/README: Mention new switch.
974         * configure: Regenerate.
975         * Makefile.in: Regenerate.
977         Based on this patch:
978         2001-04-25  Christopher Faylor <cgf@cygnus.com>
980         * Makefile.in (LIB_PATH): Make configurable.
981         (GENSCRIPTS): Set LIB_PATH in environment.
982         * configure.in: Substitute LIB_PATH.
984 2002-08-22  Adam Nemet  <anemet@lnxw.com>
986         * emultempl/armelf.em: Include elf-bfd.h and elf/arm.h.
987         (arm_elf_finish): Set the last bit of DT_INIT and DT_FINI
988         depending on the type of the function.
989         (arm_elf_convert_thumb_symbol_to_address): New function.
991 2002-08-22  Graeme Peterson  <gp@qnx.com>
993         * Makefile.am: Add esh{l}elf_nto.o files.
994         * Makefile.in: Regenerate.
995         * configure.tgt: Add support for sh-**-nto* targets.
996         * emulparams/shelf_nto.sh: New file.
997         * emulparams/shlelf_nto.sh: New file.
999 2002-08-21  John David Anglin  <dave@hiauly1.hia.nrc.ca>
1001         * ldlang.c (offsetof): Define if not defined.
1003 2002-08-14  H.J. Lu <hjl@gnu.org>
1005         * configure.tgt: Always enable 64bit emulations for 32bit
1006         Linux/mips.
1008 2002-08-13  Alan Modra  <amodra@bigpond.net.au>
1010         * emulparams/elf32_dlx.sh (TARGET_PAGE_SIZE): Set to 1.
1011         (MAXPAGESIZE): Set to 1.
1013         * ld.h (ALIGN_N): Delete.
1014         * ldexp.h (align_n): Declare.
1015         * ldexp.c (align_n): New function.
1016         (fold_binary): Use align_n instead of ALIGN_N.
1017         (exp_fold_tree): Likewise.
1018         * ldlang.c (lang_size_sections_1): Likewise.
1019         (lang_one_common): Likewise.
1020         * ld.texinfo (ALIGN): Remove power of 2 restriction.
1022 2002-07-31  Graeme Peterson  <gp@qnx.com>
1024         * configure.tgt: Add support for powerpc{le}-*-nto* targets.
1025         * Makefile.am: Add eelf32{l}ppcnto.o files.
1026         * Makefile.in: Regenerate.
1027         * emulparams/elf32lppcnto.sh: New file.
1028         * emulparams/elf32ppcnto.sh: New file.
1030 2002-08-07  H.J. Lu <hjl@gnu.org>
1032         * ld.texinfo: Document --no-undefined-version.
1034         * ldlang.c (lang_new_vers_pattern): Set the `symver' and
1035         `script.' fields to 0.
1037         * ldmain.c (main): Initialize the allow_undefined_version to
1038         true.
1040         * lexsup.c (OPTION_NO_UNDEFINED_VERSION): New.
1041         (ld_options): Add --no-undefined-version.
1042         (parse_args): Support OPTION_NO_UNDEFINED_VERSION.
1044 2002-08-07  Nick Clifton  <nickc@redhat.com>
1046         * emultempl/armelf.em (arm_elf_before_allocation): Only search for
1047         an interworking bfd if there are input bfds. (107501)
1049 2002-08-06  Alan Modra  <amodra@bigpond.net.au>
1051         * emultempl/aix.em (gld*_before_parse): Set default arch.  Reverts
1052         2002-05-10 change.
1054 2002-08-01  Nick Clifton  <nickc@redhat.com>
1056         * emulparams/armelf.sh: Revert previous delta.
1057         * scripttempl/elf.sc: Revert previous delta.
1059 2002-07-31  H.J. Lu <hjl@gnu.org>
1061         * configure.tgt (powerpc*-*-linux*): Enable elf64ppc for
1062         --enable-64-bit-bfd.
1064 2002-07-31  H.J. Lu <hjl@gnu.org>
1066         * configure.tgt: Enable x86-64 emulation for Linux/i386 if
1067         64bit BFD is selected.
1069 2002-07-31  H.J. Lu <hjl@gnu.org>
1071         * configure.tgt: Enable 64bit emulations for 32bit Linux/mips
1072         if 64bit BFD is selected.
1074 2002-07-31  Ian Dall  <ian@sibyl.beware.dropbear.id.au>
1076         * emultempl/netbsd.em (LDEMUL_BEFORE_PARSE): New file to custom set
1077         link_info.common_skip_ar_aymbols.
1078         * emulparams/ns32knbsd.sh (EXTRA_EM_FILE): Refer to extra file.
1080         * ldmain.c (main): Initialize new field
1081         link_info.common_skip_ar_aymbols.
1083 2002-07-31  Adam Nemet  <anemet@lnxw.com>
1085         * emulparams/armelf.sh (OTHER_PLT_SECTIONS): New variable.  Set it
1086         to .plt.thumb.
1087         * scripttempl/elf.sc: Comment it.  Use the same way as ${PLT} is
1088         used.
1090 2002-07-31  Nick Clifton  <nickc@redhat.com>
1092         * NEWS: Retroactively add entry for Lars Brinkhoff's contribution
1093         of the PDP-11 and 2.11BSD a.out support.
1095 2002-07-31  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
1097         * Makefile.am (eelf32btsmipn32.o, eelf32ltsmipn32.o): New emulations
1098         for n32 ABI support.
1099         * Makefile.in: Regenerate.
1100         * configure.tgt (mips64*el-*-linux-gnu*,mips64*-*-linux-gnu*): Add
1101         n32 ABI emulations for these 64 bit targets.
1102         * emulparams/elf32bmipn32.sh: Expand comment.
1103         * emulparams/elf32btsmipn32.sh: New file, for traditional big endian
1104         n32 ABI.
1105         * emulparams/elf32ltsmipn32.sh: Likewise for little endian.
1107 2002-07-30  Graeme Peterson  <gp@qnx.com>
1109         * configure.tgt: Add support for arm-*-nto target.
1110         * Makefile.am: Add earmnto.o file.
1111         * Makefile.in: Regenerate.
1112         * NEWS: Mention port of ARM support to QNX.
1113         * emulparams/armnto.sh: New file.
1115 2002-07-30  Jakub Jelinek  <jakub@redhat.com>
1117         * ldlang.c (lang_add_section): Don't turn .tbss into normal sections
1118         for relocatable link.
1119         (lang_size_sections_1): Don't make .tbss zero size for relocatable
1120         link.
1122 2002-07-26  Bernd Schmidt  <bernds@redhat.com>
1124         * emulparams/elf32frv.sh (OTHER_RELOCATING_SECTIONS): Delete.
1125         (STACK_ADDR): New.
1127 2002-07-25  Nick Clifton  <nickc@redhat.com>
1129         * po/sv.po: Updated Swedish translation.
1130         * po/es.po: Updated Spanish translation.
1131         * po/fr.po: Updated French translation.
1133 2002-07-24  Nick Clifton  <nickc@redhat.com>
1135         * po/sv.po: Updated Swedish translation.
1136         * po/es.po: Updated Spanish translation.
1138 2002-07-23  Nick Clifton  <nickc@redhat.com>
1140         * po/fr.po: Updated French translation.
1142 2002-07-20  Alan Modra  <amodra@bigpond.net.au>
1144         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
1145         bomb on /DISCARD/ input section.
1146         * emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
1147         * emultempl/mmo.em (mmo_place_orphan): Likewise.
1149 2002-07-19  Hans-Peter Nilsson  <hp@bitrange.com>
1151         * emultempl/mmo.em (mmo_place_orphan): Handle case of no .text
1152         output section.
1154 2002-07-16  Denis Chertykov  <denisc@overta.ru>
1155             Nick Clifton  <nickc@redhat.com>
1156             Frank Ch. Eigler  <fche@redhat.com>
1157             John Healy  <jhealy@redhat.com>
1159         * configure.tgt: Add support for ip2k-elf.
1160         * Makefile.am: Add support for ip2k-elf.
1161         * Makefile.in: Regenerate.
1162         * emulparams/elf32ip2k.sh: New file.
1163         * scripttempl/ip2k.sc: New file
1164         * NEWS: Mention support for new port.
1166 2002-07-16  Nick Clifton  <nickc@cambridge.redhat.com>
1168         * NEWS: Add 'Changes in 2.13'.
1170 2002-07-14  H.J. Lu <hjl@gnu.org>
1172         * ld.texinfo: Document a .symver takes precedence over a
1173         version script.
1175 2002-07-12  Alan Modra  <amodra@bigpond.net.au>
1177         * emulparams/elf64ppc.sh (ARCH): Set to powerpc:common64.
1178         (COMMONPAGESIZE): Define.
1180 2002-07-09  Alan Modra  <amodra@bigpond.net.au>
1182         * emulparams/hppanbsd.sh: Remark that hppaobsd.sh references this file.
1184 2002-07-09  Federico G. Schwindt <fgsch@olimpo.com.br>
1186         * configure.tgt: Add support for alpha-*-openbsd*, hppa-*-openbsd*,
1187         powerpc-*-openbsd* and sparc64-*-openbsd*.
1188         * Makefile.am (ALL_EMULATIONS): Add ehppaobsd.o.
1189         * Makefile.in: Regenerate.
1190         * emulparams/hppaobsd.sh: New file.
1192 2002-07-05  Alan Modra  <amodra@bigpond.net.au>
1194         * ldlang.c (print_wild_statement): Fix output formatting.
1196 2002-07-04  Alan Modra  <amodra@bigpond.net.au>
1198         * ldlang.c: (strip_excluded_output_sections): New function.
1199         (lang_process): Call it.
1200         (lang_size_sections_1): Revert 2002-06-10 change.
1202 2002-07-03  Alan Modra  <amodra@bigpond.net.au>
1204         * Makefile.am (check-DEJAGNU): Revert 2002-06-25 change.
1205         Run "make dep-am".
1206         * Makefile.in: Regenerate.
1208 2002-07-02  Alan Modra  <amodra@bigpond.net.au>
1210         * ldfile.c (ldfile_try_open_bfd): Formatting.
1212         * ldmisc.c (demangle): Move so that it doesn't intrude between
1213         vfinfo comment and body.  Add comment.
1215 2002-07-01  John David Anglin  <dave@hiauly1.hia.nrc.ca>
1217         * emulparams/vax.sh (OUTPUT_FORMAT): Use a.out-vax-bsd format.
1219 2002-07-01  Alan Modra  <amodra@bigpond.net.au>
1221         * ldlang.h (entry_sym): Make it a struct bfd_sym_chain.
1222         * ldlang.c (entry_sym): Likewise.
1223         (ldlang_undef_chain_list_type): Likewise.
1224         (lang_finish): Adjust references to entry_symbol.
1225         (lang_add_entry): Likewise.
1226         (lang_gc_sections): Use link_info.gc_sym_list.
1227         (lang_process): Set link_info.gc_sym_list.
1228         * ldlex.l: Include bfdlink.h.
1229         * ldmain.c (main): Init link_info.gc_sym_list.
1230         * emultempl/aix.em: Adjust references to entry_symbol.
1231         * emultempl/armcoff.em: Likewise.
1232         * emultempl/armelf.em: Likewise.
1233         * emultempl/pe.em: Likewise.
1234         * emultempl/ppc64elf.em (ppc_after_open): New function.
1235         (LDEMUL_AFTER_OPEN): Define.
1236         * emulparams/elf64ppc.sh: KEEP .opd sections.
1238 2002-06-29  Stephane Carrez  <stcarrez@nerim.fr>
1240         * emulparams/m68hc12elfb.sh (EEPROM_MEMORY): Define.
1241         * emulparams/m68hc11elfb.sh (EEPROM_MEMORY): Define.
1242         * emulparams/m68hc11elf.sh (EEPROM_SIZE): Define.
1243         (EEPROM_START_ADDR): Define.
1244         (EEPROM_MEMORY): Define.
1245         * emulparams/m68hc12elf.sh: Likewise.
1246         * scripttempl/elfm68hc11.sc: Handle .eeprom section; handle .softregs
1247         section to put soft registers in .page0.
1248         * scripttempl/elfm68hc12.sc: Likewise but put soft registers in bss.
1250 2002-06-26  John David Anglin  <dave@hiauly1.hia.nrc.ca>
1252         * emulparams/hppa64linux.sh (OTHER_GOT_RELOC_SECTIONS): Add rela.opd
1253         section.  Add ${RELOCATING-0}.
1255 2002-06-26  J"orn Rennecke <joern.rennecke@superh.com>
1257         * emulparams/shelf.sh (STACK_ADDR): Don't define.
1258         (OTHER_SECTIONS): Define.
1259         * emulparams/shelf_nbsd.sh ((STACK_ADDR): Don't undef.
1260         (OTHER_SECTIONS): Undef.
1262 2002-06-26  Alan Modra  <amodra@bigpond.net.au>
1264         * ldmisc.c (demangle): Restore dots stripped from sym name.
1266 2002-06-25  H.J. Lu <hjl@gnu.org>
1268         * Makefile.am (check-DEJAGNU): Set LC_ALL=C and export it.
1269         * Makefile.in: Regenerated.
1271 2002-06-20  Nick Clifton  <nickc@cambridge.redhat.com>
1273         * ld.texinfo (Bug Reporting): Update text to suggest a limit on
1274         the size of attached object files, to allow make the object files
1275         available via FTP or HTTP and to mention that the mail will be
1276         sent to a mailing list.
1278 2002-06-20  Nathanael Nerode  <neroden@twcny.rr.com>
1280         * ld/configure.host (romp): Drop support.
1282 2002-06-18  Chris Demetriou  <cgd@broadcom.com>
1284         * emultempl/mipself.em (mips_elf${ELFSIZE}_check_sections): Check
1285         section flags for SEC_DATA, rather than for SEC_CODE being unset.
1287 2002-06-18  Chris Demetriou  <cgd@broadcom.com>
1289         * emultempl/mipself.em (mips_elf${ELFSIZE}_check_sections): Fix
1290         format specifier used to print BFD name.
1292 2002-06-18  Dave Brolley  <brolley@redhat.com>
1294         From Catherine Moore, Michael Meissner, Jim Blandy:
1295         * emulparams/elf32frv.sh: New file.
1296         * configure.tgt: Support frv-*-*.
1297         * Makefile.am (ALL_EMULATIONS): Add eelf32frv.o.
1298         (eelf32frv.c): New target.
1300 2002-06-17  Tom Rix  <trix@redhat.com>
1302         * emultempl/elf32.em: gld*_get_script:  Check for
1303         GENERATE_COMBRELOC_SCRIPT.
1304         * scripttempl/elfd10v.sc : Fix STACK and INSN.
1305         * emulparams/d10velf.sh : Fix TEXT_START_ADDR.
1307 2002-06-13  J"orn Rennecke <joern.rennecke@superh.com>
1309         * configure.tgt: Add support for sh[1234]*le*-*-elf, sh[1234]*-*-elf.
1311 2002-06-12  H.J. Lu <hjl@gnu.org>
1313         * emultempl/elf32.em (gld${EMULATION_NAME}_try_needed): Return
1314         false if xvec doesn't match.
1316 2002-06-10  Richard Sandiford  <rsandifo@redhat.com>
1318         * ldlang.c (lang_size_sections_1): Skip removed output sections.
1320 2002-06-08  Alan Modra  <amodra@bigpond.net.au>
1322         * ldexp.c: Replace CONST with const.
1323         * ldfile.c: Likewise.
1324         * ldfile.h: Likewise.
1325         * ldlex.l: Likewise.
1326         * mri.c: Likewise.
1327         * pe-dll.h: Likewise.
1329 2002-06-07  Alan Modra  <amodra@bigpond.net.au>
1331         * emultempl/ppc64elf.em (new_vers_pattern): Warning fix.
1333 2002-06-07  Charles Wilson  <cwilson@ece.gatech.edu>
1335         * ld/ldmain.c (main): initialize link_info.pei386_auto_import
1336         to -1 == implicit enable.
1337         * ld/emultempl/pe.em (gld_${EMULATION_NAME}_before_parse):
1338         initialize link_info.pei386_auto_import to -1 == implicit
1339         enable.
1340         (gld_${EMULATION_NAME}_parse_args): When processing
1341         --enable-auto-import and --disable-auto-import options, use
1342         '1' and '0' instead of 'true' and 'false'.
1343         (pe_find_data_imports): Only issue message about auto-import
1344         when the feature is implicitly enabled.  Downgrade message to
1345         informational instead of warning.
1347 2002-06-07  Alan Modra  <amodra@bigpond.net.au>
1349         * scripttempl/elf.sc (.tbss): Fix mismatched parentheses/braces.
1351 2002-06-06  John David Anglin  <dave@hiauly1.hia.nrc.ca>
1353         * configure.host (hppa*64*-*-hpux11*): Define NATIVE_LIB_DIRS,
1354         HOSTING_CRT0 and HOSTING_LIBS.
1356 2002-06-05  J"orn Rennecke <joern.rennecke@superh.com>
1358         * configure.tgt (shle*-*-elf*, sh64le-*-elf*): New configurations.
1360 2002-06-05  Jason Thorpe  <thorpej@wasabisystems.com>
1362         * emulparams/ns32knbsd.sh (EXECUTABLE_SYMBOLS): Set _DYNAMIC to 0.
1363         (NONPAGED_TEXT_START_ADDR): Set to 0x1000.
1365 2002-06-05  Alan Modra  <amodra@bigpond.net.au>
1367         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Place
1368         SEC_EXCLUDE sections when doing a relocatable link.
1370 2002-06-04  Jason Thorpe  <thorpej@wasabisystems.com>
1372         * Makefile.am (ALL_EMULATIONS): Add eshelf32_nbsd.o,
1373         eshlelf32_nbsd.o, eshelf64_nbsd.o, and eshlelf64_nbsd.o.
1374         (eshelf32_nbsd.c, eshelf64_nbsd.c, eshlelf32_nbsd.c)
1375         (eshlelf64_nbsd.c): New rules.
1376         * Makefile.in: Regenerate.
1377         * configure.tgt (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
1378         (sh64-*-netbsd*): New targets.
1379         * emulparams/shelf32_nbsd.sh: New file.
1380         * emulparams/shelf64_nbsd.sh: New file.
1381         * emulparams/shlelf32_nbsd.sh: New file.
1382         * emulparams/shlelf64_nbsd.sh: New file.
1384 2002-06-04  Alan Modra  <amodra@bigpond.net.au>
1386         * ldlang.c (section_already_linked): Call bfd_discard_group.  Typo fix.
1388 2002-06-02  Marek Michalkiewicz  <marekm@amelek.gda.pl>
1390         * scripttempl/avr.sc: Changes to support current GCC and avr-libc,
1391         C++ constructors/destructors, loosely based on the m68hc11 port.
1393 2002-05-31  Alan Modra  <amodra@bigpond.net.au>
1395         * Makefile.in: Regenerate.
1396         * aclocal.m4: Regenerate.
1397         * config.in: Regenerate.
1398         * configure: Regenerate.
1400 2002-05-31  Graeme Peterson  <gp@qnx.com>
1402         * Makefile.am (ALL_EMULATIONS): Add ei386nto.o.
1403         (ei386nto.c): Add rule.
1404         * Makefile.in: Regenerate.
1405         * configure.tgt: Add i[3456]86-*-nto-qnx*.
1406         * emulparams/i386nto.sh: New file.
1408 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
1410         * NEWS: Add entry for VAX ELF support.
1412 2002-05-29  Matt Thomas  <matt@3am-software.com>
1413             Jason Thorpe  <thorpej@wasabisystems.com>
1415         * Makefile.am (ALL_EMULATIONS): Add eelf32vax.o and evaxnbsd.o.
1416         (eelf32vax.c)
1417         (evaxnbsd.c): New rules.
1418         * Makefile.in: Regenerate.
1419         * configure.tgt (vax-*-netbsdelf*)
1420         (vax-*-netbsdaout*)
1421         (vax-*-netbsd*): New targets.
1422         * emulparams/elf32vax.sh: New file.
1423         * emulparams/vaxnbsd.sh: New file.
1425 2002-05-29  Adam Nemet  <anemet@lnxw.com>
1427         * emultempl/armelf.em (arm_elf_after_open): Don't determine
1428         bfd_for_interwork, instead add glue sections to each input bfd.
1429         (bfd_for_interwork): New global.
1430         (arm_elf_set_bfd_for_interworking): New function.
1431         (arm_elf_before_allocation): Use it.
1433 2002-05-28  Kuang Hwa Lin <kuang@sbcglobal.net>
1435         * Makefile.am: Add DLX make target.
1436         * configure.tgt: Add DLX configuration.
1437         * Makefile.in: Regenerate.
1438         * emulparams/elf32_dlx.sh: New file
1439         * scripttempl/dlx.sc: New file
1441 2002-05-27  Per Lundberg  <per@caleb.dnsalias.org>
1443         * Makefile.am (eelf_i386_chaos): Use elf_chaos.sc script.
1444         * Makefile.in: Regenerate.
1445         * emulparams/elf_chaos.sh: Use elf_chaos script.
1446         * scripttempl/elf_chaos.sc: New file.
1448 2002-05-27  Richard Sandiford  <rsandifo@redhat.com>
1450         * ldlang.c (lang_size_sections_1): Move check for conflicting load
1451         addresses and regions from here...
1452         (lang_get_regions): ...to this new function.
1453         (lang_leave_output_section_statement): Use lang_get_regions.
1454         (lang_leave_overlay): Likewise.
1455         * mri.c (mri_draw_tree): Pass null as last argument to
1456         lang_leave_output_section_statement.
1457         * emultempl/elf32.em (gld*_place_orphan): Likewise.
1458         * emultempl/mmo.em (mmo_place_orphan): Likewise.
1459         * emultempl/pe.em (gld*_place_orphan): Likewise.
1461 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
1463         * configure.tgt: Use ns32k-*-netbsd* instead of ns32k-pc532-netbsd*.
1465 2002-05-25  Kazu Hirata  <kazu@cs.umass.edu>
1467         * ldemul.c: Fix formatting.
1468         * ldfile.c: Likewise.
1469         * pe-dll.c: Likewise.
1470         * pe-dll.h: Likewise.
1472 2002-05-25  Alan Modra  <amodra@bigpond.net.au>
1474         * ldlang.c (lang_process): Formatting, grammar.
1476         * ldlex.l: Use #include "" instead of <> for local header files.
1478 2002-05-24  TAMURA Kent <kent@netbsd.org>
1480         * configure.tgt: Add a target for i386-netbsdpe.
1482 2002-05-23  Jakub Jelinek  <jakub@redhat.com>
1484         * scripttempl/elf.sc: Add .rel{,a}.t{bss,data}, .tdata and .tbss.
1485         * ldlang.c (lang_add_section): Set SEC_THREAD_LOCAL for
1486         output section if necessary.  Handle .tbss.
1487         (lang_size_sections): Clear _raw_size for .tbss section
1488         (it allocates space in PT_TLS segment only).
1489         * ldwrite.c (build_link_order): Build link order for .tbss too.
1491 2002-05-23  Alan Modra  <amodra@bigpond.net.au>
1493         * configure.in: Correct spelling of AC_PREREQ.
1495 2002-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
1497         * pe-dll.c (autofilter_liblist): Add more system libs excluded by
1498         default.
1499         (autofilter_objlist): Add crtbegin.o, crtend.o.
1501 2002-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
1503         * emultempl/pe.em (OPTION_EXCLUDE_LIBS): Add new define.
1504         (longopts): Add new option --exclude-libs.
1505         (gld_${EMULATION_NAME}_list_options): Give quick help about it.
1506         (gld_${EMULATION_NAME}_parse_args): Use it.
1507         * pe-dll.h (pe_dll_add_excludes): Add second param to prototype.
1508         * pe-dll.c (exclude_list_struct): Add field type to distinguish symbols
1509         from whole archives.
1510         (pe_dll_add_excludes): Set excludes->type.
1511         (auto_export): Add new variable libname and set to archive basename if
1512         abfd.  Use it when filtering default and user-specified libarary
1513         excludes.  Let string "ALL" mean all libs when filtering user-specified
1514         libs.
1515         * ld.texinfo: Document --exclude-libs.
1517 2002-05-22  Alan Modra  <amodra@bigpond.net.au>
1519         * ldemul.c (ldemul_new_vers_pattern): New function.
1520         * ldemul.h (ldemul_new_vers_pattern): Declare.
1521         (struct ld_emulation_xfer_struct): Add new_vers_pattern.
1522         * ldlang.c (lang_new_vers_pattern): Call ldemul_new_vers_pattern.
1523         * emultempl/ppc64elf.em (dotsyms): New static var.
1524         (gld${EMULATION_NAME}_new_vers_pattern): New function.
1525         (LDEMUL_NEW_VERS_PATTERN): Define.
1526         (PARSE_AND_LIST_PROLOGUE): Add OPTION_DOTSYMS, OPTION_NO_DOTSYMS.
1527         (PARSE_AND_LIST_LONGOPTS): Likewise.
1528         (PARSE_AND_LIST_ARGS_CASES): Handle them.
1529         * emultempl/aix.em (ld_${EMULATION_NAME}_emulation): Update
1530         initialiser.
1531         * emultempl/armcoff.em: Likewise.
1532         * emultempl/armelf_oabi.em: Likewise.
1533         * emultempl/beos.em: Likewise.
1534         * emultempl/elf32.em: Likewise.
1535         * emultempl/generic.em: Likewise.
1536         * emultempl/gld960.em: Likewise.
1537         * emultempl/gld960c.em: Likewise.
1538         * emultempl/linux.em: Likewise.
1539         * emultempl/lnk960.em: Likewise.
1540         * emultempl/m68kcoff.em: Likewise.
1541         * emultempl/mipsecoff.em: Likewise.
1542         * emultempl/pe.em: Likewise.
1543         * emultempl/sunos.em: Likewise.
1544         * emultempl/ticoff.em: Likewise.
1545         * emultempl/vanilla.em: Likewise.
1547 2002-05-22  Alan Modra  <amodra@bigpond.net.au>
1549         * genscripts.sh (LIB_PATH): For native targets, concatenate $libdir
1550         and $NATIVE_LIB_DIRS.  Add $tool_lib before other libs.
1551         (LIB_SEARCH_DIRS): No need to use "tr".
1552         (COMPILE_IN): Only set for native targets.
1553         * configure.host (NATIVE_LIB_DIRS): Specify all native search dirs
1554         here, rather than adding lib:/usr/lib:/usr/local/lib in genscripts.sh.
1555         * configure.tgt (powerpc*): Set tdir_*.
1556         (powerpcle*): Correct targ_extra_emuls.
1557         * emulparams/elf32ppc.sh (LIB_PATH): Set up native 64 bit dirs.
1558         * emulparams/elf64ppc.sh (LIB_PATH): Likewise.
1560 2002-05-22  Alan Modra  <amodra@bigpond.net.au>
1562         * emultempl/pe.em (set_pe_subsystem): Don't set "cmdline" when
1563         calling lang_add_entry.
1565 2002-05-21  H.J. Lu  (hjl@gnu.org)
1567         * emultempl/elf32.em (gld${EMULATION_NAME}_parse_args): Handle
1568         "-z muldefs".
1569         (gld${EMULATION_NAME}_list_options): Add "-z muldefs".
1571         * ld.texinfo: Updated for --allow-multiple-definition and
1572         "-z muldefs".
1574         * ldmain.c (main): Initialize the allow_multiple_definition
1575         field to false.
1577         * lexsup.c (OPTION_ALLOW_MULTIPLE_DEFINITION): New.
1578         (ld_options): Add --allow-multiple-definition.
1579         (parse_args): Support OPTION_ALLOW_MULTIPLE_DEFINITION.
1581 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
1583         * Makefile.am (ALL_EMULATIONS): Add earmelfb_nbsd.o.
1584         (earmelfb_nbsd.c): New rule.
1585         * Makefile.in: Regenerate.
1586         * configure.tgt (armeb-*-netbsdelf*): New target.
1587         (arm-*-netbsdelf*): Add armelfb_nbsd to targ_extra_emuls.
1588         (arm-*-netbsd*): Likewise.
1589         * emulparams/armelfb_nbsd.sh: New file.
1591 2002-05-18  Tom Rix  <trix@redhat.com>
1593         * emultempl/aix.em (gld*_parse_args): Add -bnortl and -bnortllib
1594         support.
1596 2002-05-17  Marek Michalkiewicz  <marekm@amelek.gda.pl>
1598         * Makefile.am: Add new emulations avr1, avr2, avr3, avr4, avr5.
1599         * Makefile.in: Regenerate.
1600         * configure.tgt (avr-*-*): Add avr[1-5] to targ_extra_emuls.
1602 2002-05-16  Marek Michalkiewicz  <marekm@amelek.gda.pl>
1604         * emulparams/avr1.sh: New file.
1605         * emulparams/avr2.sh: New file.
1606         * emulparams/avr3.sh: New file.
1607         * emulparams/avr4.sh: New file.
1608         * emulparams/avr5.sh: New file.
1609         * scripttempl/avr.sc: New file.
1611 2002-05-15  Alan Modra  <amodra@bigpond.net.au>
1613         * ldlang.c (section_already_linked): Call bfd_link_just_syms.
1614         (lang_place_orphans): Abort if just_syms_flag.
1616 2002-05-10  Tom Rix  <trix@redhat.com>
1618         * emultempl/aix.em: (gld*_set_output_arch): New function. Use
1619         architecture and machine information in the output bfd.
1620         (gld*_before_parse): Remove old arch and machine code.
1621         (choose_target): Rename to gld*_choose_target.
1622         (rtld): Change type to int.
1623         * ldfile.c (ldfile_try_open_bfd): Disable compatiblity check for
1624         objects in XCOFF archives.
1625         * ldfile.h: Update copyright date.
1627 2002-05-10  Jakub Jelinek  <jakub@redhat.com>
1629         * ldmain.c (main): Enable -z combreloc by default.
1631 2002-05-07  Federico G. Schwindt <fgsch@olimpo.com.br>
1633         * Makefile.am: Honour DESTDIR.
1634         * Makefile.in: Regenerate.
1636 2002-05-07  Richard Sandiford  <rsandifo@redhat.com>
1638         * ldlang.h (lang_output_section_statement_type): Add update_dot_tree.
1639         (lang_enter_overlay): Remove the last two parameters.
1640         (lang_leave_overlay): Take them here instead.
1641         * ldgram.y (memspec_at_opt): Set $$ to null if no region is given.
1642         (section): Pass LMA and crossref flag to lang_leave_overlay rather
1643         than lang_enter_overlay.
1644         * ldlang.c (lang_memory_region_lookup): Return null for null names.
1645         (lang_output_section_statement_lookup): Initialize update_dot_tree.
1646         (lang_size_sections_1): Evaluate it.
1647         (lang_leave_output_section_statement): Rework LMA lookup.
1648         (overlay_lma, overlay_nocrossrefs): Remove.
1649         (lang_enter_overlay): Remove LMA and crossref arguments.
1650         (lang_enter_overlay_section): Don't set the LMA here.
1651         (lang_leave_overlay): Take LMA and crossref arguments.  Move the '.'
1652         assignment to the last section's update_dot_tree.  Unconditionally
1653         use the load and run-time regions specified in the OVERLAY statement.
1654         Likewise the first section's LMA.  Only set the other sections' LMAs
1655         when no load region is given.
1657 2002-05-06  Nick Clifton <nickc@redhat.com>
1659         * po/sv.po: New translation.
1661 2002-05-04  Alan Modra  <amodra@bigpond.net.au>
1663         * emultempl/hppaelf.em (build_section_lists): New function.
1664         (gld${EMULATION_NAME}_finish): Call elf32_hppa_setup_section_lists
1665         and build_section_lists.
1667 2002-05-03  Kazu Hirata  <kazu@cs.umass.edu>
1669         * ld.h: Fix formatting.
1670         * ldexp.c: Likewise.
1671         * ldfile.c: Likewise.
1672         * ldlang.c: Likewise.
1673         * ldmain.c: Likewise.
1674         * lexsup.c: Likewise.
1675         * pe-dll.c: Likewise.
1677 2002-05-02  Alan Modra  <amodra@bigpond.net.au>
1679         * emultempl/ppc64elf.em (gld${EMULATION_NAME}_after_allocation):
1680         Adjust for ppc64_elf_set_toc change.  #include libbfd.h.
1681         (build_section_lists): Do output_section tests here.
1683 2002-04-30  Tom Rix  <trix@redhat.com>
1685         * emultempl/aix.em : (gld*_parse_arge): Formatting changes.
1687 2002-05-01  Alan Modra  <amodra@bigpond.net.au>
1689         Long branch stubs, multiple stub sections.
1690         * emultempl/ppc64elf.em: Include ldctor.h.
1691         (stub_file): New var.
1692         (group_size): New var.
1693         (ppc_create_output_section_statements): New function.
1694         (struct hook_stub_info): New.
1695         (hook_in_stub): New function.
1696         (ppc_add_stub_section): New function.
1697         (ppc_layout_sections_again): New function.
1698         (build_section_lists): New function.
1699         (gld${EMULATION_NAME}_finish): Rewrite.
1700         (real_func): New var.
1701         (ppc_for_each_input_file_wrapper): New function.
1702         (ppc_lang_for_each_input_file): New function.
1703         (lang_for_each_input_file): Define.
1704         (PARSE_AND_LIST_PROLOGUE): Define.
1705         (PARSE_AND_LIST_LONGOPTS): Define.
1706         (PARSE_AND_LIST_OPTIONS): Define.
1707         (PARSE_AND_LIST_ARGS_CASES): Define.
1708         (LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS): Define.
1710 2002-04-30  Tom Rix  <trix@redhat.com>
1712         * emultempl/aix.em (gld*_parse_arge, gld*_before_allocation): Add
1713         -blibpath, -bnolibpath support.
1715 2002-04-30  Mark Mitchell  <mark@codesourcery.com>
1717         * Makefile.am (ALL_EMULATIONS): Add elf32ppcwindiss.o.
1718         (eelf32ppcwindiss.c): New target.
1719         * Makefile.in: Regenerated.
1720         * configure.tgt: Add support for powerpc-*-windiss.
1721         * emulparams/elf32ppcwindiss.sh: New file.
1723 2002-04-30  Richard Sandiford  <rsandifo@redhat.com>
1725         * ldlang.c (print_assignment): Update print_dot for assignments to ".".
1726         * ldexp.c (exp_print_token): Add "infix_p" argument.
1727         (exp_print_tree): Update accordingly.
1729 2002-04-28  Alan Modra  <amodra@bigpond.net.au>
1731         * Makefile.am (mpw): New maintainer mode rule to make mpw-*.c files.
1732         * Makefile.in: Regenerate.
1733         * mpw-elfmips.c: Delete.
1734         * mpw-eppcmac.c: Delete.
1735         * mpw-esh.c: Delete.
1736         * mpw-idtmips.c: Delete.
1738 2002-04-17  J"orn Rennecke <joern.rennecke@superh.com>
1740         * emulparams/shelf32.sh (MACHINE): Now sh5.
1742 2002-04-17  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
1744         * ldgram.y: Fix syntax warning.
1746 2002-04-11  Nick Clifton  <nickc@cambridge.redhat.com>
1748         * emultempl/armelf.em (PARSE_AND_LIST_SHORTOPTS): Add 'n' in order
1749         to prevent "-n" from being taken as an abbreviation for
1750         "--no-pipeline-knowledge".
1752 2002-04-08  Alan Modra  <amodra@bigpond.net.au>
1754         * ldlang.c (lang_size_sections_1): Don't complain about
1755         SEC_NEVER_LOAD sections having no memory region specified.
1757         * ld.texinfo (Format Commands <OUTPUT_FORMAT>): Typo fix.
1759 2002-04-07  matthew green  <mrg@redhat.com>
1761         * ld/configure.host (*-*-netbsd*): Add support for NetBSD/ELF.
1763 2002-04-04  Alan Modra  <amodra@bigpond.net.au>
1765         * dep-in.sed: Cope with absolute paths.
1766         * Makefile.am (dep.sed): Subst TOPDIR and BFDDIR.
1767         Run "make dep-am".
1768         * Makefile.in: Regenerate.
1770 2002-04-04  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
1772         * emulparams/elf64btsmip.sh: n64 replaces .reginfo with .MIPS.options.
1774 2002-04-03  Jakub Jelinek  <jakub@redhat.com>
1776         * ldexp.c (fold_binary) [DATA_SEGMENT_ALIGN]: If common page size
1777         is smaller than maximum, round dot up to common page boundary.
1779 2002-03-28  Alan Modra  <amodra@bigpond.net.au>
1781         * configure.host: Set up for generic hosts first, then tweak as
1782         necessary in more specific targets.
1783         (HOSTING_LIBS): Include libgcc_eh.a if found.
1785 2002-03-23  Andreas Jaeger  <aj@suse.de>
1787         * emulparams/elf_x86_64.sh (COMMONPAGESIZE): Set it.
1789 2002-03-21  Alan Modra  <amodra@bigpond.net.au>
1791         * Makefile.am: Run "make dep-am".
1792         * Makefile.in: Regenerate.
1794 2002-03-21  Albert Chin-A-Young  <china@thewrittenword.com>
1796         * genscripts.sh (LIB_SEARCH_DIRS): Quote path.
1798 2002-03-20  Alan Modra  <amodra@bigpond.net.au>
1800         * ldlang.c (ldlang_add_undef): If the output bfd has been opened,
1801         add the symbol to the linker hash table immediately.
1802         (lang_place_undefineds): Split symbol creation out..
1803         (insert_undefined): ..to here.
1805 2002-03-18  David O'Brien  <obrien@FreeBSD.org>
1807         * emultempl/elf32.em: Use lbasename vs. basename to fix problem where
1808         the contents of the buffer returned from basename function will are
1809         getting overwritten while still being used.
1811 2002-03-18  Jan Hubicka  <jh@suse.cz>
1812             Andreas Jaeger  <aj@suse.de>
1813             Andreas Schwab  <schwab@suse.de>
1815         * configure.tgt (x86_64-*-linux-gnu*): Configure i386 as native.
1816         * elf_x86_64.sh (ARCH): Set to i386:x86-64
1817         set libraries to default to lib64 paths.
1819 2002-03-18  Tom Rix  <trix@redhat.com>
1821         * Makefile.am : Add eaix5ppc and eaix5rs6, AIX 5 support.
1822         * configure.tgt : Same.
1823         * emulparms/aix5ppc.sh : New file. For eaix5ppc.
1824         * emulparms/aix5rs6.sh : New file. For eaix5rs6.
1825         * emulparms/aixppc.sh : OUPUT_FORMAT_32BIT and OUTPUT_FORMAT_64BIT
1826         emulation parameters for better -b32, -b64 support.
1827         * emulparms/aixrs6.sh : Same.
1828         * emulparms/ppcmacos.sh : Same.
1829         * emultempl/aix.em (choose_target) : Use new emulation parameters
1830         OUTPUT_FORMAT_32BIT and OUTPUT_FORMAT_64BIT.
1831         * Makefile.in : Regenerate.
1833 2002-03-18  Nick Clifton  <nickc@cambridge.redhat.com>
1835         * po/fr.po: Updated version.
1837 2002-03-18  Alan Modra  <amodra@bigpond.net.au>
1839         * ldmain.c (main): Move .text readonly flag fudges from here..
1840         * ldlang.c (lang_process): ..to here.
1842 2002-03-14  Alan Modra  <amodra@bigpond.net.au>
1844         * ldlang.c (lang_check): Remove the word size check added in last
1845         change.  Treat emitrelocations case as for relocatable links.
1847 2002-03-13  Nick Clifton  <nickc@cambridge.redhat.com>
1849         * po/fr.po: Updated version.
1851 2002-03-13  Alan Modra  <amodra@bigpond.net.au>
1853         * ldlang.c (lang_check): Do relocatable link checks first, so that
1854         warn_mismatch can't override.  Check compatible and word size too.
1856 2002-03-07  Daniel Jacobowitz  <drow@mvista.com>
1858         * ld.texinfo: Wrap @menu in @ifnottex, not @ifinfo.
1860 2002-03-05  Jakub Jelinek  <jakub@redhat.com>
1862         * scripttempl/elf.sc: Only use DATA_SEGMENT_END() together with
1863         DATA_SEGMENT_ALIGN.
1865 2002-03-04  H.J. Lu <hjl@gnu.org>
1867         * scripttempl/elf.sc: Put .preinit_array, .init_array and
1868         .fini_array in the data segment.
1870 2002-03-04  Alan Modra  <amodra@bigpond.net.au>
1872         * scripttempl/elf.sc: Correct syntax errors in 2002-03-01 commit.
1874 2002-03-01  David Mosberger  <davidm@hpl.hp.com>
1876         * scripttempl/elf.sc (SECTIONS): Add entries for .preinit_array,
1877         .init_array, and .fini_array.
1879 2002-02-20  Andreas Schwab  <schwab@suse.de>
1881         * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Don't fold
1882         .IA64_unwind* in a relocatable link.
1884 2002-02-20  Nick Clifton  <nickc@cambridge.redhat.com>
1886         * NEWS: Mark 2.12 branch.
1888 2002-02-19  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1890         * emulparams/elf64_s390.sh (ARCH): Change to "s390:64-bit".
1891         * emulparams/elf_s390.sh (ARCH): Change to "s390:31-bit".
1893 2002-02-18  Tom Rix  <trix@redhat.com>
1895         * emultempl/aix.em (gld*_parse_args): Add -brtl support.
1896         (gld*_before_allocation): Same.
1897         (gld*_create_output_section_statements): Generate
1898         __rtinit if run time linking.  Add librtl.a to the link.
1899         (gld*_read_file): Clean.
1901 2002-02-18  Alan Modra  <amodra@bigpond.net.au>
1903         * emulparams/elf64ppc.sh (OTHER_TEXT_SECTIONS): Define.
1905 2002-02-18  David O'Brien  <obrien@FreeBSD.org>
1907         * Makefile.am: Add new files earmelf_fbsd, eelf32ppc_fbsd,
1908         eelf_i386_fbsd, eelf64_ia64_fbsd, eelf_x86_64_fbsd, eelf64_sparc_fbsd,
1909         and eelf64alpha_fbsd.
1910         * Makefile.in: Regenerate.
1911         * configure.tgt(sparc64-*-freebsd, ia64-*-freebsd, i[3456]86-*-freebsd,
1912         x86_64-*-freebsd, arm-*-freebsd, alpha*-*-freebsd, powerpc-*-freebsd):
1913         use a FreeBSD-specific emulation rather than the psABI one.
1914         * emulparams/elf_fbsd.sh (ELF_INTERPRETER_NAME): Set appropriate value
1915         for all FreeBSD ELF systems.
1916         * emulparams/armelf_fbsd.sh: Bridge elf_fbsd.sh and the "native" psABI
1917         emulation.
1918         * emulparams/elf32ppc_fbsd.sh: Likewise.
1919         * emulparams/elf64_ia64_fbsd.sh: Likewise.
1920         * emulparams/elf64_sparc_fbsd.sh: Likewise.
1921         * emulparams/elf64alpha_fbsd.sh: Likewise.
1922         * emulparams/elf_i386_fbsd.sh: Likewise.
1923         * emulparams/elf_x86_64_fbsd.sh: Likewise.
1925 2002-02-18  Nick Clifton  <nickc@cambridge.redhat.com>
1927         * po/tr.po: Updated version.
1929 2002-02-18  Alan Modra  <amodra@bigpond.net.au>
1931         * ld.texinfo (Output Section Fill): Fix amateur texinfo.
1932         (FILL): Likewise.
1934 2002-02-17  Hans-Peter Nilsson  <hp@bitrange.com>
1936         * emultempl/mmo.em (mmo_after_open): Don't call
1937         _bfd_mmix_check_all_relocs when producing ELF output.
1939 2002-02-15  Richard Henderson  <rth@redhat.com>
1941         * emulparams/elf64alpha.sh (NOP): Adjust for big-endian
1942         definition.  Emit a unop+nop pair.
1944 2002-02-15  Hans-Peter Nilsson  <hp@bitrange.com>
1946         * emultempl/mmix-elfnmmo.em (mmix_after_allocation): Also check
1947         for presence of .MMIX.reg_contents.linker_allocated before early
1948         exit.
1950         * NEWS: Mention support for MMIX.
1952 2002-02-15  Alan Modra  <amodra@bigpond.net.au>
1954         Support arbitrary length fill patterns.
1955         * ld.texinfo (Output Section Fill): Describe fill expressions.
1956         (FILL): Refer to the above.
1957         * ldexp.h (etree_value_type): Add "str" field.
1958         (union etree_union): Add "str" to "value" struct.
1959         (exp_bigintop): Declare.
1960         (exp_get_fill): Declare.
1961         * ldexp.c: Include "safe-ctype.h".
1962         (exp_intop): Set value.str to NULL.
1963         (exp_bigintop): New function.
1964         (new_rel): Pass in "str", and set new.str from it.
1965         (new_rel_from_section): Set new.str to NULL.
1966         (fold_name): Adjust calls to new_rel.
1967         (exp_fold_tree): Likewise.
1968         (exp_get_fill): New function.
1969         * ldgram.y (struct big_int bigint, fill_type *fill): New.
1970         (INT): Returns a "bigint".  Adjust all code handling INTs.
1971         (fill_opt): Returns a "fill".
1972         (fill_exp): Split out of fill_opt, use for FILL.
1973         * ldlang.h (struct _fill_type): New.
1974         (fill_type): Move typedef to ldexp.h.
1975         (lang_output_section_statement_type): "fill" is now a pointer.
1976         (lang_fill_statement_type): Likewise.
1977         (lang_padding_statement_type): Likewise.
1978         (lang_add_fill): Now takes a "fill_type *" param.
1979         (lang_leave_output_section_statement): Likewise.
1980         (lang_do_assignments): Likewise.
1981         (lang_size_sections): Likewise.
1982         (lang_leave_overlay_section): Likewise.
1983         (lang_leave_overlay): Likewise.
1984         * ldlang.c: Include ldgram.h after ldexp.h.
1985         (lang_output_section_statement_lookup): Adjust for fill_type change.
1986         (print_fill_statement): Likewise.
1987         (print_padding_statement): Likewise.
1988         (insert_pad): Now takes a "fill_type *" arg.
1989         (size_input_section): Likewise.
1990         (lang_size_sections_1): Likewise.
1991         (lang_size_sections): Likewise.
1992         (lang_do_assignments): Likewise.
1993         (lang_add_fill): Likewise.
1994         (lang_leave_output_section_statement): Likewise.
1995         (lang_leave_overlay_section): Likewise.
1996         (lang_leave_overlay): Likewise.
1997         Adjust all callers of the above function.
1998         * ldlex.l: Include ldgram.h after ldexp.h.  Allow hex numbers
1999         starting with "0X" as well as "0x".  Return bigint.str for hex
2000         numbers starting with "0x" or "0X", zero bigint.str otherwise.
2001         Always use base 16 for numbers starting with "$".
2002         * ldmain.c: Include ldgram.h after ldexp.h.
2003         * ldwrite.c (build_link_order): Use bfd_data_link_order in place
2004         of bfd_fill_link_order.
2005         * pe-dll.c: Adjust lang_do_assignments calls.
2006         * emultempl/elf32.em: Likewise.
2007         * emultempl/hppaelf.em: Likewise.
2008         * emultempl/ppc64elf.em: Likewise.
2009         * emultempl/beos.em: Include ldgram.h after ldexp.h, adjust
2010         lang_add_assignment call.
2011         * emultempl/pe.em: Likewise.
2013 2002-02-14  Phil Edwards  <pme@gcc.gnu.org>
2015         * ld.texinfo (VERSION scripts):  Symbol names are globbing patterns.
2016         * ldgram.y (lang_new_vers_regex):  Rename to lang_new_vers_pattern;
2017         the pattern in question is not a regexp.
2018         * ldlang.c:  Likewise.
2019         * ldlang.h:  Likewise.
2020         * ldlex.l (V_IDENTIFIER):  Allow '[', ']', '-', '!', and '^' also.
2022 2002-02-12  Jakub Jelinek  <jakub@redhat.com>
2024         * ldlex.l (DATA_SEGMENT_ALIGN, DATA_SEGMENT_END): New tokens.
2025         * ldgram.y (DATA_SEGMENT_ALIGN, DATA_SEGMENT_END): New tokens.
2026         (exp): Add DATA_SEGMENT_ALIGN (exp, exp) and DATA_SEGMENT_END (exp).
2027         * ldexp.c (exp_data_seg): New variable.
2028         (exp_print_token): Handle DATA_SEGMENT_ALIGN and DATA_SEGMENT_END.
2029         (fold_binary): Handle DATA_SEGMENT_ALIGN.
2030         (exp_fold_tree): Handle DATA_SEGMENT_END.
2031         Pass allocation_done when recursing instead of hardcoding
2032         lang_allocating_phase_enum.
2033         * ldexp.h (exp_data_seg): New.
2034         * ldlang.c (lang_size_sections_1): Renamed from lang_size_sections.
2035         (lang_size_sections): New.
2036         * ld.texinfo (DATA_SEGMENT_ALIGN, DATA_SEGMENT_END): Document.
2037         * scripttempl/elf.sc: Use DATA_SEGMENT_ALIGN and DATA_SEGMENT_END
2038         if COMMONPAGESIZE is defined.
2039         * emulparams/elf_i386.sh (COMMONPAGESIZE): Set to 4K.
2040         * emulparams/elf32_sparc.sh (COMMONPAGESIZE): Set to 8K.
2041         * emulparams/elf64_sparc.sh (COMMONPAGESIZE): Set to 8K.
2042         * emulparams/elf64alpha.sh (COMMONPAGESIZE): Set to 8K.
2043         * emulparams/elf64_ia64.sh (COMMONPAGESIZE): Set to 16K for shared
2044         libraries only.
2046 2002-02-11  Alan Modra  <amodra@bigpond.net.au>
2048         * Makefile.in: Regenerate.
2050 2002-02-10  Daniel Jacobowitz  <drow@mvista.com>
2052         * lexsup.c: Remove strtoul declaration.
2054 2002-02-10  Daniel Jacobowitz  <drow@mvista.com>
2056         * ldmain.c: Add prototype for main ().
2057         * lexsup.c: Guard declaration of strtoul with HAVE_STDLIB_H.
2058         * emultempl/lnk960.em (lnk960_choose_target): Function should
2059         take two arguments.
2061 2002-02-10  Alan Modra  <amodra@bigpond.net.au>
2063         * ldlang.c (entry_section): New initialised variable.
2064         (lang_finish): Use it.
2065         * ldlang.h (entry_section): Declare.
2066         * emultempl/ppc64elf.em (gld${EMULATION_NAME}_finish): Set
2067         entry_section to ".opd".
2069 2002-02-09  Chris Demetriou  <cgd@broadcom.com>
2071         * ld.texinfo (Options): Add back in -nostdlib documentation,
2072         which had been inadvertently removed.
2074 2002-02-09  Hans-Peter Nilsson  <hp@bitrange.com>
2076         * emultempl/mmix-elfnmmo.em (mmix_after_allocation): Adjust
2077         register section vma to a sane value after emitting error.  Make
2078         fatal conditions cause program exit when emitting message.
2080 2002-02-08  Ivan Guzvinec <ivang@opencores.org>
2082         * configure.tgt: Add or32-*-rtems target.
2084 2002-02-08  Alexandre Oliva  <aoliva@redhat.com>
2086         Contribute sh64-elf.
2087         2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
2088         * emulparams/shelf32.sh (STACK_ADDR): Define as formerly defined
2089         in OTHER_RELOCATABLE_SECTIONS.
2090         2002-01-18  Alexandre Oliva  <aoliva@redhat.com>
2091         * emulparams/shelf32.sh (STACK_ADDR): Define.
2092         (OTHER_RELOCATABLE_SECTIONS): Renamed to...
2093         (OTHER_SECTIONS): this.  Removed stack settings.
2094         * emulparams/shelf64.sh (OTHER_RELOCATABLE_SECTIONS): Do not set.
2095         (OTHER_SECTIONS): Reset after sourcing shelf32.sh.
2096         2001-03-12  DJ Delorie  <dj@redhat.com>
2097         * emultempl/sh64elf.em (sh64_elf_$_before_allocation): Disable
2098         relaxing if any shmedia or mixed sections are found.
2099         2001-03-07  DJ Delorie  <dj@redhat.com>
2100         * emultempl/sh64elf.em (sh64_elf_before_allocation): Pass f to
2101         einfo.  Gracefully decline to output to non-elf formats.
2102         2001-03-06  Hans-Peter Nilsson  <hpn@redhat.com>
2103         * emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS) <.stack>:
2104         Default to _end aligned to next multiple of 0x40000, plus 0x40000.
2105         * emulparams/shelf32.sh: Ditto.
2106         2001-01-14  Hans-Peter Nilsson  <hpn@cygnus.com>
2107         * emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Tweak
2108         comment.
2109         2001-01-10  Ben Elliston  <bje@redhat.com>
2110         * emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Avoid
2111         non-portable shell constructs. From Hans-Peter Nilsson.
2112         2001-01-09  Hans-Peter Nilsson  <hpn@cygnus.com>
2113         * emulparams/shelf64.sh (EXTRA_EM_FILE): Define empty.
2114         * Makefile.am (eshelf64.c, eshlelf64.c, eshlelf32.c): Adjust
2115         dependencies to the shell script include chain.
2116         * Makefile.in: Regenerate.
2117         2001-01-06  Hans-Peter Nilsson  <hpn@cygnus.com>
2118         * emultempl/sh64elf.em: Update and tweak comments.
2119         (sh64_elf_${EMULATION_NAME}_after_allocation): Always allocate and
2120         make a .cranges section SEC_IN_MEMORY.
2121         2000-12-30  Hans-Peter Nilsson  <hpn@cygnus.com>
2122         * emultempl/sh64elf.em
2123         (sh64_elf_${EMULATION_NAME}_before_allocation): Don't stop when
2124         .cranges section found to be necessary; continue and set stored
2125         section contents flags for sections with non-mixed contents.
2126         Use a struct sh64_section_data container and sh64_elf_section_data
2127         to store contents-type flags.
2128         Remove unused update of "isec".
2129         (sh64_elf_${EMULATION_NAME}_after_allocation): Only process
2130         sections marked SHF_SH5_ISA32_MIXED.  Use sh64_elf_section_data to
2131         access contents-type flags.  Assert that the associated container
2132         is initialized.  Use that container, not elf_gp_size, to hold size
2133         of linker-generated cranges contents.
2134         2000-12-18  Hans-Peter Nilsson  <hpn@cygnus.com>
2135         * emultempl/sh64elf.em
2136         (sh64_elf_${EMULATION_NAME}_before_allocation): Exit early if
2137         there's already a .cranges section.  When section flag difference
2138         is found, don't NULL-check cranges a second time.  Tweak comments.
2139         (sh64_elf_${EMULATION_NAME}_after_allocation): Use size after
2140         merging, not max size, as size of ld-generated .cranges contents.
2141         Don't set ELF section flags in output section.  When checking for
2142         needed .cranges descriptors, don't use a variable; compare
2143         incoming ELF section flags directly to SHF_SH5_ISA32_MIXED.  Tweak
2144         comments.
2145         2000-12-18  Hans-Peter Nilsson  <hpn@cygnus.com>
2146         * emultempl/sh64elf.em: New file.
2147         * Makefile.am (eshelf32.c, eshlelf32.c): Adjust dependencies.
2148         * Makefile.in: Regenerate.
2149         * emulparams/shelf32.sh (OUTPUT_FORMAT): Only set if not set.
2150         (OTHER_RELOCATING_SECTIONS): Ditto.
2151         (EXTRA_EM_FILE): New, set to sh64elf if not set.
2152         * emulparams/shlelf32.sh: Stub out all settings except
2153         OUTPUT_FORMAT.  Source shelf32.sh.
2154         * emulparams/shelf64.sh: Similar, but also keep ELF_SIZE and
2155         OTHER_RELOCATING_SECTIONS.
2156         (OTHER_RELOCATING_SECTIONS): Remove .cranges.
2157         * emulparams/shlelf64.sh: Stub out all settings except
2158         OUTPUT_FORMAT.  Source shelf64.sh.
2159         2000-12-15  Hans-Peter Nilsson  <hpn@cygnus.com>
2160         * emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS): Include
2161         .cranges section.
2162         (DATA_START_SYMBOLS): Define, provide ___data.
2163         (OTHER_READONLY_SYMBOLS): Define, provide ___rodata and align to 8
2164         for consecutive .data section.
2165         (OTHER_GOT_SECTIONS): Define, align to 8 for consecutive .bss
2166         section after .data section.
2167         * emulparams/shlelf64.sh: Ditto.
2168         * emulparams/shelf32.sh: Ditto.
2169         (ALIGNMENT): Define to 8.
2170         * emulparams/shelf32.sh: Ditto.
2171         2000-12-12  Hans-Peter Nilsson  <hpn@cygnus.com>
2172         * configure.tgt (sh64-*-elf*): Assign targ_extra_libpath to get
2173         built-in linker scripts.
2174         2000-11-30  Hans-Peter Nilsson  <hpn@cygnus.com>
2175         * emulparams/shlelf64.sh: New.
2176         * emulparams/shelf64.sh: New.
2177         * configure.tgt (sh64-*-elf*): Add shelf64 and shlelf64 to
2178         targ_extra_emuls.
2179         * Makefile.am: Add support for shlelf64 and shelf64.
2180         * Makefile.in: Regenerate.
2181         2000-11-29  Hans-Peter Nilsson  <hpn@cygnus.com>
2182         * configure.tgt (sh64-*-elf*): Add shelf as default.
2183         Add shlelf to targ_extra_emuls.
2184         2000-11-24  Hans-Peter Nilsson  <hpn@cygnus.com>
2185         * emulparams/shelf32.sh: New file.
2186         * emulparams/shlelf32.sh: New file.
2187         * Makefile.am: Add support for shlelf32 and shelf32.
2188         * configure.tgt: Map sh64-*-elf* to shlelf32 and shelf32.
2189         * Makefile.in: Regenerate.
2191 2002-02-05  Hans-Peter Nilsson  <hp@axis.com>
2193         * ldlang.c (lang_reset_memory_regions): Rename from
2194         reset_memory_regions.  Change all callers.  Make public.
2195         * ldlang.h (lang_reset_memory_regions): Prototype.
2196         * emultempl/elf32.em (gld${EMULATION_NAME}_finish): Call
2197         lang_reset_memory_regions before lang_size_sections.
2198         * emultempl/hppaelf.em (hppaelf_layout_sections_again): Likewise.
2199         * emultempl/ppc64elf.em (gld${EMULATION_NAME}_finish): Likewise.
2201 2002-02-04  Hans-Peter Nilsson  <hp@bitrange.com>
2203         * emultempl/mmix-elfnmmo.em (mmix_after_allocation): Use signed
2204         arithmetic when checking for too many global registers.
2206 2002-02-02  Jason Thorpe  <thorpej@wasabisystems.com>
2208         * Makefile.am (ALL_EMULATIONS): Add ehppanbsd.o.
2209         (ehppanbsd.c): New rule.
2210         * Makefile.in: Regenerate.
2211         * configure.tgt (hppa*-*-netbsd*): New target.
2212         * emulparams/hppalinux.sh: Add comment to check other files
2213         that source this file it is modified, and list which
2214         files that do.
2215         * emulparams/hppanbsd.sh: New file.
2217 2002-02-01  Geoffrey Keating  <geoffk@redhat.com>
2219         * scripttempl/xstormy16.sc: Don't allocate extra space for the
2220         stack.
2222 2002-02-01  Hans-Peter Nilsson  <hp@bitrange.com>
2224         Support on-demand global register allocation from
2225         R_MMIX_BASE_PLUS_OFFSET relocs.
2226         * emultempl/mmix-elfnmmo.em (mmix_after_allocation): Rename from
2227         mmix_set_reg_section_vma.  Call
2228         _bfd_mmix_finalize_linker_allocated_gregs.
2229         (mmix_before_allocation): New function.
2230         (LDEMUL_AFTER_ALLOCATION): Set to mmix_after_allocation.
2231         (LDEMUL_BEFORE_ALLOCATION): Define to mmix_before_allocation.
2232         * scripttempl/mmo.sc (.text): Mark .init, .fini as KEEP.
2233         (.MMIX.reg_contents): Add .MMIX.reg_contents.linker_allocated
2234         before .MMIX.reg_contents.
2235         * emultempl/mmo.em (gldmmo_before_allocation): Define to default.
2236         (mmo_after_open): New function.
2237         (LDEMUL_AFTER_OPEN): Define to mmo_after_open.
2238         * emulparams/elf64mmix.sh (OTHER_SECTIONS): Tweak formatting.  Add
2239         .MMIX.reg_contents.linker_allocated before .MMIX.reg_contents.
2241 2002-01-31  Ivan Guzvinec  <ivang@opencores.org>
2243         * emulparams/or32.sh: New file.
2244         * emulparams/or32elf.sh: New file.
2245         * scripttempl/or32.sc: New file.
2246         * configure.tgt : Add support for or32.
2247         * configure: Regenerate
2248         * Makefile.am: Add support for or32.
2249         * Makefile.in: Regenerate.
2250         * NEWS: Mention support for or32.
2251         * po/ld.pot: Regenerate.
2253 2002-01-29  Chris Demetriou  <cgd@broadcom.com>
2254             Mitch Lichtenberg  <mpl@broadcom.com>
2256         * emulparams/elf32bmip.sh (EXTRA_EM_FILE): Define to be mipself.
2257         * emultempl/mipself.em: New file to handle MIPS ELF embedded
2258         reloc creation (ld --embedded-relocs).
2260 2002-01-27  Daniel Jacobowitz  <drow@mvista.com>
2262         * configure: Regenerated.
2264 2002-01-26  Hans-Peter Nilsson  <hp@bitrange.com>
2266         * Makefile.am (install): Depend on install-info.
2267         * Makefile.in: Regenerate.
2269 2002-01-26  Christian Rose  <menthos@menthos.com>
2271         * ldmain.c (main): Use full sentences to ease translation.
2273 2002-01-26  Nick Clifton  <nickc@cambridge.redhat.com>
2275         * po/fr.po: Updated version.
2277 2002-01-25  Nick Clifton  <nickc@cambridge.redhat.com>
2279         * po/es.po: Updated version.
2281 2002-01-25  Andreas Jaeger  <aj@suse.de>
2283         * ldlex.l (yy_input): Correct error check.
2285 2002-01-25  Alan Modra  <amodra@bigpond.net.au>
2287         * ldmisc.c (demangle): Put back dots when string not demangled.
2289 2002-01-22  Richard Henderson  <rth@redhat.com>
2291         * emulparams/elf64alpha.sh (NOP): Use unop.
2293 2002-01-21  Andreas Jaeger  <aj@suse.de>
2295         * ldlex.l: Use fread instead of read.
2297 2002-01-21  Jason Thorpe  <thorpej@wasabisystems.com>
2299         * configure.tgt (ia64-*-netbsd*): New target.
2301 2002-01-21  H.J. Lu <hjl@gnu.org>
2303         * emulparams/elf32btsmip.sh (SHLIB_TEXT_START_ADDR): Change to
2304         0.
2305         * emulparams/elf64btsmip.sh (SHLIB_TEXT_START_ADDR): Likewise.
2307 2002-01-18  Andreas Jaeger  <aj@suse.de>
2309         * ldver.c (ldversion): Update year.
2311 2002-01-17  Nick Clifton  <nickc@cambridge.redhat.com>
2313         * po/ld.pot: Regenerate.
2315 2002-01-16  Alan Modra  <amodra@bigpond.net.au>
2317         * Makefile.am (eelf64ppc.c, eelf64lppc.c): Depend on ppc64elf.em.
2318         * Makefile.in: Regenerate.
2319         * emulparams/elf64ppc.sh (EXTRA_EM_FILE): Define.
2320         * emultempl/ppc64elf.em: New file.
2322 2002-01-15  DJ Delorie  <dj@redhat.com>
2324         * scripttempl/pe.sc: Add support for constructor priorities.
2326 2002-01-07  Marek Michalkiewicz  <marekm@amelek.gda.pl>
2328         * emulparams/avr1200.sh (DATA_START): Define as 0x60.
2329         * emulparams/avr23xx.sh: Likewise.
2330         * emulparams/avr4433.sh: Likewise.
2331         * emulparams/avr44x4.sh: Likewise.
2332         * emulparams/avr85xx.sh: Likewise.
2333         * emulparams/avrmega103.sh: Likewise.
2334         * emulparams/avrmega161.sh: Likewise.
2335         * emulparams/avrmega603.sh: Likewise.
2336         * scripttempl/elf32avr.sc: Use DATA_START instead of 0x60.
2338 2002-01-08  Alexandre Oliva  <aoliva@redhat.com>
2340         * ldlang.c (walk_wild_section): Exclude object file if enclosing
2341         archive is excluded.
2343 2002-01-07  Jason Thorpe  <thorpej@wasabisystems.com>
2345         * Makefile.am (ALL_EMULATIONS): Add eshelf_nbsd.o and eshlelf_nbsd.o.
2346         (eshelf_nbsd.c): New rule.
2347         (eshlelf_nbsd.c): New rule.
2348         * Makefile.in: Regenerate.
2349         * configure.tgt (sh*le-*-netbsdelf*): New target.
2350         (sh*-*-netbsdelf*): New target.
2351         * emulparams/shelf.sh: Document that shelf_nbsd.sh sources this file.
2352         * ld/emulparams/shelf_nbsd.sh: New emulation.
2353         * ld/emulparams/shlelf_nbsd.sh: New emulation.
2355 2002-01-07  Nick Clifton  <nickc@cambridge.redhat.com>
2357         * po/es.po: New file: Spanish translation.
2358         * configure.in (ALL_LINGUAS): Add es.
2359         * configure: Regenerate.
2361 2002-01-06  John Marshall  <jmarshall@acm.org>
2363         * ld.texinfo: Note that --emit-relocs is currently only
2364         implemented for ELF.
2366 2002-01-05  Alan Modra  <amodra@bigpond.net.au>
2368         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Make use
2369         of bfd_section_list_remove and bfd_section_list_insert macros.
2370         * emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
2371         * emultempl/mmo.em (mmo_place_orphan): Likewise.
2373 2002-01-04  Jason Thorpe  <thorpej@wasabisystems.com>
2375         * configure.tgt (x86_64-*-netbsd*): New target.
2377 2001-12-21  Tom Rix  <trix@redhat.com>
2379         (gld*_create_output_section_statements): New function.
2380         For -binitfini support.
2381         * emultempl/aix.em (gld*_before_parse): Fix comment.
2382         * emultempl/aix.em (gld*_parse_args): Fix comment.
2384 2001-12-20  Jason Thorpe  <thorpej@wasabisystems.com>
2386         * configure.tgt (mips*-dec-netbsd*): Delete alias for
2387         mips*el-*-netbsd*.
2388         (sparc64-*-netbsd*): Add elf32_sparc to targ_extra_emuls.
2390         * configure.tgt (arm-*-netbsdelf*): Add target.
2391         (arm-*-netbsd*): Add armelf and armelf_nbsd to targ_extra_emuls.
2392         * emulparams/armelf_nbsd.sh: Added.
2393         * Makefile.am: Add rules for earmelf_nbsd.
2394         * Makefile.in: Regenerate.
2396 2001-12-19  Andreas Jaeger  <aj@suse.de>,
2397             Susanne Oberhauser <froh@suse.de>
2399         * configure.host: Add rules for x86_64-*linux-gnu.  Change
2400         s390x-linux entry to use gcc to report configuration, replace gcc
2401         with $CC in s390-linux
2403 2001-12-19  Andreas Jaeger  <aj@suse.de>
2405         * ld.texinfo (VERSION): Fix markup.
2407 2001-12-18  matthew green  <mrg@eterna.com.au>
2409         * Makefile.am (ALL_EMULATIONS): Add m68kelfnbsd.o.
2410         (m68kelfnbsd.c): New rule.
2411         * Makefile.in: Regenerate.
2412         * configure.tgt (m68*-hp-netbsd*): Renamed to ..
2413         (m68*-*-netbsd*4k*): .. this.
2414         (m68*-*-netbsdelf*): New target.
2415         (m68*-*-netbsd*): Also include ELF support.
2416         (m68*-*-netbsdaout*): New alias for m68*-*-netbsd*.
2417         * emulparams/m68kelfnbsd.sh: New emulation.
2419 2001-12-18  Jakub Jelinek  <jakub@redhat.com>
2421         * ldgram.y (vers_node): Support anonymous version tags.
2422         * ldlang.c (lang_register_vers_node): Ensure anonymous version
2423         tag is not defined together with non-anonymous versions.
2424         * ld.texinfo: Document it.
2426 2001-12-18  Nick Clifton  <nickc@cambridge.redhat.com>
2428         * po/tr.po: New file: Turkish translation.
2429         * configure.in (ALL_LINGUAS): Add tr.
2430         * configure: Regenerate.
2432 2001-12-17  Jason Thorpe  <thorpej@wasabisystems.com>
2434         * Makefile.am: Add rules for eelf64alpha_nbsd.
2435         * Makefile.in: Regenerate.
2436         * configure.tgt (alpha*-*-netbsd*): Set
2437         targ_emul to elf64alpha_nbsd.
2438         * emulparams/elf64alpha_nbsd.sh: Added.
2440 2001-12-17  Alan Modra  <amodra@bigpond.net.au>
2442         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Adjust
2443         section_tail when fiddling with section list.
2444         (gld${EMULATION_NAME}_list_options): Ensure sentences aren't
2445         broken into separate strings to make translation easier.
2446         * emultempl/mmo.em (mmo_place_orphan): Adjust section_tail when
2447         fiddling with section list.
2448         * emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
2450 2001-12-16  Hans-Peter Nilsson  <hp@bitrange.com>
2452         * scripttempl/mmo.sc: Add .debug_ranges to listed sections.
2454 2001-12-15  Alan Modra  <amodra@bigpond.net.au>
2456         * ldmain.c (main): Initialise link_info.eh_frame_hdr.
2458 2001-12-13  Jakub Jelinek  <jakub@redhat.com>
2460         * emultempl/elf32.em (finish): Supply output_bfd
2461         to bfd_elf*_discard_info.
2462         (OPTION_EH_FRAME_HDR): Define.
2463         (longopts): Add --eh-frame-hdr.
2464         (parse_args): Handle it.
2465         (list_options): Add --eh-frame-hdr to help.
2466         * emultempl/hppaelf.em (finish): Supply output_bfd
2467         to bfd_elf*_discard_info.
2468         * scripttempl/elf.sc (.eh_frame_hdr): Add.
2470 2001-12-13  Alan Modra  <amodra@bigpond.net.au>
2472         * lexsup.c (parse_args): Don't pass shortopts to second call to
2473         getopt functions.  Restore optind rather than decrementing before
2474         second call.  Remove errind as it now duplicates last_optind.
2476 2001-12-11  Christopher Faylor  <cgf@redhat.com>
2478         * emultempl/pe.em (gld_${EMULATION_NAME}_list_options): Fix typo.
2480 2001-12-07  Geoffrey Keating  <geoffk@redhat.com>
2481             Richard Henderson  <rth@redhat.com>
2483         * Makefile.am: Add support for xstormy16.
2484         * configure.tgt: Add support for xstormy16.
2485         * Makefile.in: Regenerate.
2486         * emulparams/elf32xstormy16.sh: New file.
2487         * scripttempl/xstormy16.sc: New file.
2489 2001-10-01  Christopher Faylor <cgf@cygnus.com>
2491         * Makefile.in (LIB_PATH): Make configurable.
2492         (GENSCRIPTS): Set LIB_PATH in environment.
2493         * configure.in: Substitute LIB_PATH.
2494         * configure: Regenerate.
2495         * configure.tgt (*cygwin): Set LIB_PATH for cross build.
2496         * configure.host (*cygwin): Add /usr/lib/w32api to NATIVE_LIB_DIRS.
2498 2001-12-07  Nick Clifton  <nickc@cambridge.redhat.com>
2500         * lexsup.c (ld_options): Insert 'PROGRAM' into the text string
2501         describing the -N option so that it is easier to translate into
2502         foreign languages.
2504 2001-12-05  Nick Clifton  <nickc@cambridge.redhat.com>
2506         * emultempl/pe.em (..._list_options): Replace multiple fprintf
2507         statements describing a single option with a single, newline
2508         escaped fprintf.  This allows better translation into other
2509         languages.
2511         * ldmain.c (add_archive_element): Combine multiple strings
2512         into a single string to permit better translation into other
2513         languages.
2515 2001-12-05  Tom Rix  <trix@redhat.com>
2517         * Makefile.am: Remove eaixppc64.
2518         * Makefile.in: Regenerate.
2520 2001-12-04  Tom Rix  <trix@redhat.com>
2522         * emultempl/aix.em (choose_target): Change default target to
2523         OUTPUT_FORMAT for ppcmacos.  Add braces to remove compiler
2524         warning.
2525         (gld*_read_file):  Fix typo.
2526         (change_symbol_mode): Add prototype.
2527         (is_syscall): Same.
2529         * emulparams/aixppc.sh (SYSCALL_MASK, SYMBOL_MODE_MASK): Delete.
2530         * emulparams/aixrs6.sh : Same.
2531         * emulparams/ppcmacos.sh : Same.
2532         * emulparams/aixppc64.sh : Delete file.
2533         * emultempl/aix.em : Formatting changes.
2535 2001-12-04  Hans-Peter Nilsson  <hp@axis.com>
2537         * emulparams/criself.sh (NO_SMALL_DATA): Set, to yes.
2538         (OTHER_BSS_END_SYMBOLS): Don't refer to .sbss when setting
2539         __Sbss.
2540         (OTHER_END_SYMBOLS): Fix formatting.
2541         * emulparams/crislinux.sh (NO_SMALL_DATA): Set, to yes.
2542         (OTHER_END_SYMBOLS): Fix formatting.
2544 2001-12-04  Alan Modra  <amodra@bigpond.net.au>
2546         * ldexp.c (exp_print_token): Correct "table" entry for RSHIFT.
2548 2001-12-02  Tom Rix  <trix@redhat.com>
2550         * configure.tgt : Remove eaixppc64 emulations.
2551         * Makefile.in : Remove eaixppc64.c
2552         * ldemul.c (ldemul_choose_target): New parameters argc, argv.
2553         (ldemul_default_target): Same.
2554         * emultempl/gld960.em (gld960_choose_target):  Same.
2555         * emultempl/gld960c.em (gld960_choose_target):  Same.
2556         * scripttempl/aix.sc: Remove OUTPUT_FORMAT.
2557         * emultempl/aix.em (is_syscall): syscall_mask now a variable.
2558         * emultempl/aix.em (gld*_read_file): symbol_mode_mask now a variable.
2559         * emultempl/aix.em (gld*_parse_args): Handle -b32 -b64 emulation.
2560         * emultempl/aix.em (choose_target): New function.  Handle emulation of
2561         -b32 and -b64.
2563 2001-11-27  H.J. Lu <hjl@gnu.org>
2565         * emulparams/elf_i386.sh (NO_SMALL_DATA): Set to yes.
2566         * emulparams/elf_i386_be.sh (NO_SMALL_DATA): Likewise.
2567         * emulparams/elf_i386_chaos.sh (NO_SMALL_DATA): Likewise.
2568         * emulparams/elf_i386_ldso.sh (NO_SMALL_DATA): Likewise.
2569         * emulparams/elf_x86_64.sh (NO_SMALL_DATA): Likewise.
2570         * emulparams/m68kelf.sh (NO_SMALL_DATA): Likewise.
2571         * emulparams/elf32_sparc.sh (NO_SMALL_DATA): Likewise.
2572         * emulparams/elf64_sparc.sh (NO_SMALL_DATA): Likewise.
2574         * scripttempl/elf.sc (SBSS): New. Define if ${NO_SMALL_DATA}
2575         is not empty.
2576         (SDATA): Likewise.
2577         (REL_SDATA): Likewise.
2578         (REL_SBSS): Likewise.
2579         (REL_SDATA2): Likewise.
2580         (REL_SBSS2): Likewise.
2581         (SBSS2): Define if ${NO_SMALL_DATA} is not empty.
2582         (SDATA2): Likewise.
2584 2001-11-25  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
2586         * scripttempl/elfm68hc11.sc (CTOR, DTOR): Put constructor and
2587         destructor in rom.
2588         * scripttempl/elfm68hc12.sc (CTOR, DTOR): Likewise.
2590 2001-11-22  H.J. Lu  <hjl@gnu.org>
2592         * Makefile.in: Regenerated with automake based on automake
2593         1.4-8 in RedHat 7.1.
2595 2001-11-22  Alan Modra  <amodra@bigpond.net.au>
2597         * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
2598         (config.status): Delete rule.
2599         Add extra dependencies to cover sourced emulparams files.
2600         * Makefile.in: Regenerate.
2602         * scripttempl/elf.sc: Order <section>, <section>.* and
2603         corresponding linkonce sections as seen in input files.
2604         Formatting fixes.  Zero vma of all sections if not relocating.
2605         (STACK): Define and insert if STACK_ADDR defined.
2606         (OTHER_RELOCATING_SECTIONS): Delete.
2607         (OTHER_END_SYMBOLS): Define.
2608         (OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
2609         (OTHER_READWRITE_SECTIONS): Likewise.
2610         (OTHER_GOT_SECTIONS): Likewise.
2611         (OTHER_SDATA_SECTIONS): Likewise.
2612         (OTHER_BSS_SECTIONS): Likewise.
2613         * scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
2614         (OTHER_READWRITE_SECTIONS): Likewise.
2615         * scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
2616         (OTHER_READWRITE_SECTIONS): Likewise
2618         * emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
2619         (STACK_ADDR): Define.
2620         * emulparams/armelf_oabi.sh: As for armelf.sh.
2621         * emulparams/elf32mcore.sh: As for armelf.sh.
2622         * emulparams/h8300elf.sh: As for armelf.sh.
2623         * emulparams/mn10200.sh: As for armelf.sh.
2624         * emulparams/shelf.sh: As for armelf.sh.
2626         * emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
2627         (OTHER_END_SYMBOLS): Define.
2628         * emulparams/m32relf.sh: As for elf32fr30.sh.
2629         * emulparams/h8300helf.sh: As for elf32fr30.sh.
2630         * emulparams/h8300self.sh: As for elf32fr30.sh.
2632         * emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
2633         defines with RELOCATING test.
2634         (OTHER_SDATA_SECTIONS): Likewise.
2635         (OTHER_RELOCATING_SECTIONS): Delete, replacing with..
2636         (OTHER_END_SYMBOLS): ..this.
2637         * emulparams/crislinux.sh: As for criself.sh.
2639         * emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
2640         if not relocating.
2641         (OTHER_RELOCATING_SECTIONS): Delete, replacing with..
2642         (OTHER_SECTIONS): ..this.  Zero vma if not relocating.  Order
2643         normal and linkonce sections as seen in input files.
2644         * emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
2645         (TEXT_DYNAMIC): Likewise.
2646         (INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
2647         (OTHER_SDATA_SECTIONS): Likewise.
2648         * emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
2649         * emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
2650         * emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
2651         * emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
2652         * emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
2653         (OTHER_PLT_RELOC_SECTIONS): Likewise.
2654         (OTHER_READONLY_SECTIONS): Likewise.  Order normal and linkonce
2655         sections as seen in input files.
2656         * emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
2657         * emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
2658         if not relocating.
2659         (OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
2660         (OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
2661         * emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
2662         (OTHER_SECTIONS): Instead, use this..
2663         (OTHER_END_SYMBOLS): ..and this.
2665         * emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
2666         * emulparams/elf32bsmip.sh: Likewise.
2667         * emulparams/elf32btsmip.sh: Likewise.
2668         * emulparams/elf32ebmip.sh: Likewise.
2669         * emulparams/elf32lmip.sh: Likewise.
2670         * emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
2671         * emulparams/elf32lsmip.sh: Likewise.
2672         * emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
2673         * emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
2674         * emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
2675         * emulparams/elf64btsmip.sh: Likewise.
2676         * emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
2677         * emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
2678         * emulparams/elf32ppclinux.sh: Likewise.
2679         * emulparams/elf32ppcsim.sh: Likewise.
2680         * emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
2681         * emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
2682         * emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
2683         * emulparams/h8300self.sh: Likewise.
2684         * emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
2685         * emulparams/sh.sh: Comment.
2686         * emulparams/shl.sh: Source sh.sh, remove duplicates.
2687         * emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
2688         * emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2690 2001-11-21  David Heine <dlheine@tensilica.com>
2691             Alan Modra  <amodra@bigpond.net.au>
2693         * ldlang.c (map_input_to_output_sections): Replace "break"
2694         accidentally removed with 2001-08-03 change.
2695         (lang_gc_sections_1): Likewise.
2697 2001-11-21  Alan Modra  <amodra@bigpond.net.au>
2699         * ldlang.c (walk_wild_section): Move sec == NULL case out of loop.
2701 2001-11-20  Angela Marie Thomas <angela@redhat.com>
2703         * emultempl/elf32.em (gld${EMULATION_NAME}_finish): Use NULL instead
2704         of false when calling lang_size_sections.
2705         * emultempl/hppaelf.em (hppaelf_layout_sections_again): Likewise.
2707 2001-11-15  Alan Modra  <amodra@bigpond.net.au>
2709         * emultempl/elf32.em (gld${EMULATION_NAME}_finish): Only emit this
2710         function when LDEMUL_FINISH isn't set to the same name.  Don't
2711         call ${LDEMUL_FINISH}.
2712         (ld_${EMULATION_NAME}_emulation): Call $LDEMUL_FINISH if defined.
2713         * emultempl/armelf.em (arm_elf_finish): Call
2714         gld${EMULATION_NAME}_finish.
2715         * emultempl/hppaelf.em (hppaelf_finish): Rename to
2716         gld${EMULATION_NAME}_finish.  Call bfd_elf32_discard_info and
2717         hppaelf_layout_sections_again if necessary.
2718         (need_laying_out): New var.
2719         (hppaelf_layaout_sections_again): Rename to
2720         hppaelf_layout_sections_again.  Clear need_laying_out.
2721         (PARSE_AND_LIST_OPTIONS): Format text.
2723 2001-11-14  H.J. Lu  <hjl@gnu.org>
2725         * emultempl/armelf.em (arm_elf_finish): Renamed from
2726         gld${EMULATION_NAME}_finish.
2727         (LDEMUL_FINISH): Set to arm_elf_finish.
2729 2001-11-14  Daniel Jacobowitz  <drow@mvista.com>
2731         * emultempl/elf32.em (gld${EMULATION_NAME}_finish): New.
2732         (struct ld_emulation_xfer_struct): Use it.
2734 2001-11-13  Ross Alexander <ross.alexander@uk.neceur.com>
2736         * emulparams/elf64hppa.sh (OTHER_BSS_END_SYMBOLS): Add
2737         additional symbols referenced by newer crt0.o files from HP.
2739 2001-11-12  Anthony Green  <green@redhat.com>
2741         * emulparams/armelf.sh (DATA_START_SYMBOLS): New symbol.
2743 2001-11-12  Alfred M. Szmidt  <ams@kemisten.nu>
2745         * Makefile.am (GENSCRIPTS): Quote ${exec_prefix}.
2746         * Makefile.in: Regenerate.
2748 2001-11-02  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
2750         * ld.texinfo: Use @command for commands, @option for options.
2751         * Makefile.am (POD2MAN): Use 'GNU Development Tools' for
2752         the page man title.
2753         * Makefile.in: Rebuild.
2755 2001-11-04  Chris Demetriou  <cgd@broadcom.com>
2757         * configure.tgt (mips*el-*-netbsd*, mips*-*-netbsd*):
2758         Add support for targets.
2760 2001-11-02  Nick Clifton  <nickc@cambridge.redhat.com>
2762         * configure.in (ALL_LINGUAS): Add "fr" and "sv"
2763         * configure: Regernate.
2764         * po/fr.po: New file.
2765         * po/sv.po: New file.
2767 2001-11-01  NIIBE Yutaka  <gniibe@m17n.org>
2769         * configure.tgt (sh-*-linux): Set targ_emul, targ_extra_emuls
2770         as little endian default and to support big endian.
2772 2001-11-01  Chris Demetriou  <cgd@broadcom.com>
2774         * ld.texinfo (Options): Document new option, -nostdlib.
2775         * lexsup.c (OPTION_NOSTDLIB): New definition.
2776         (ld_options): Add entry for "nostdlib".
2777         (parse_args): Handle OPTIONS_NOSTDLIB.
2778         * ldfile.c (ldfile_add_library_path): Don't add directories
2779         to the search path if they weren't specified on the command line
2780         and -nostdlib was specified.
2781         * ld.h (ld_config_type): New member only_cmd_line_lib_dirs.
2783 2001-10-31  Nick Clifton  <nickc@cambridge.redhat.com>
2785         * lexsup.c (parse_args): Prevent infinite parsing loop when
2786         "-rpath.a" is specified on the command line.
2787         Replace calls to fprintf with calls to einfo.
2789 2001-10-31  John Marshall  <jmarshall@acm.org>
2791         * ld.texinfo: A historical requirement that MEMORY and SECTIONS
2792         appear only once across all the linker scripts involved in a link
2793         invocation no longer applies.  Make the documentation reflect
2794         that.
2796 2001-10-31  NIIBE Yutaka  <gniibe@m17n.org>
2798         * configure.tgt: Supports sh3/sh4/sh3eb/sh4eb-unknown-linux-gnu
2799         targets.
2800         (sh-*-linux*): Added targ_extra_libpath.
2802 2001-10-31  David Heine  <dlheine@tensilica.com>
2804         * ldlang.c (lang_size_sections): Keep a valid output_offset field
2805         for padding statements.
2807 2001-10-30  Hans-Peter Nilsson  <hp@bitrange.com>
2809         * configure.tgt (mmix-*-*): New target.
2810         * Makefile.am (ALL_EMULATIONS): Add eelf64mmix.o and emmo.o.
2811         Add dependencies to match.
2812         * emulparams/mmo.sh, emulparams/elf64mmix.sh, emultempl/mmo.em,
2813         emultempl/mmix-elfnmmo.em, emultempl/mmixelf.em,
2814         scripttempl/mmo.sc: New files.
2815         * gen-doc.texi: @set MMIX.
2816         * ld.texinfo: Ditto.
2817         [MMIX] Add MMIX node.
2818         * Makefile.in: Regenerate.
2820 2001-10-29  Kazu Hirata  <kazu@hxi.com>
2822         * ldlang.c: Fix a comment typo.
2824 2001-10-23  Alan Modra  <amodra@bigpond.net.au>
2826         * configure.host: Move alpha*-*-linux-gnu* entry to generic
2827         entries, and match *-*-linux*.
2829 2001-10-20  Alan Modra  <amodra@bigpond.net.au>
2831         * ldgram.y (mri_script_command): Surround processing of INCLUDE
2832         with ldlex_script, ldlex_popstate.
2833         (ifile_p1): Likewise.
2834         * ldlex.l (EOF): Don't BEGIN(SCRIPT).  Restore lineno from the
2835         correct slot.
2836         (lex_push_file): Save current lineno to lineno_stack.  Set lineno
2837         to 1.  Don't BEGIN(SCRIPT).
2838         (lex_redirect): Similarly.
2839         * ldmain.c (main): Set yydebug non-zero if YYDEBUG.
2841 2001-10-20  Nick Clifton  <nickc@cambridge.redhat.com>
2843         * scripttempl/armcoff.sc: Define __EH_FRAME_BEGIN__ and
2844         __EH_FRAME_END__ and accept eh frames into data section.
2845         Add ctor and dtor sections.
2847 2001-10-19  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
2849         * pe-dll.c (autofilter_objectlist): Add gcrt0.o.
2850         (auto-export): Fix indentation.
2852 2001-10-18  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
2854         * pe-dll.c (autofilter_objectlist):  Add startup objects
2855         for profiling.
2856         (auto-export): Constify char * p.
2857         Extract file basename and use strcmp rather than ststr
2858         for object lookup.
2860 2001-10-18  Chris Demetriou  <cgd@broadcom.com>
2862         * ldmain.c (get_emulation): Improve comment about the handling
2863         of -mipsN options.
2865 2001-10-17  Alan Modra  <amodra@bigpond.net.au>
2867         * po/POTFILES.in: Regenerate.
2869 2001-10-16  Vassili Karpov  <malc@pulsesoft.com>
2871         * emultempl/elf32.em (gld*_list_options): Remove extra '\t' from
2872         -z nocopyreloc and -z nocombreloc usage strings.
2874 2001-10-12  Vassili Karpov  <malc@pulsesoft.com>
2876         * emultempl/elf32.em (gld*_list_options): Include -z nocopyreloc
2877         in usage.
2879 2001-10-11  Aleksey Romanov <aromanov@ennovatenetworks.com>
2881         * scripttempl/armaout.sc: Place .bss section after end of aligned
2882         data section to match behaviour of aout code in constructrion of
2883         header.
2885 2001-10-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
2887         * pe-dll.c (autofilter_entry_type autofilter_liblist: Add
2888         startup files for mingw32 dlls to list.
2890 2001-10-10  Chris Demetriou  <cgd@broadcom.com>
2892         * emultempl/elf32.em: Fix shell 'if' usage for portability.
2894 2001-10-08  Aldy Hernandez  <aldyh@redhat.com>
2896         * configure.tgt (targ): Add arm9e-*-elf.
2898 2001-10-05  H.J. Lu  <hjl@gnu.org>
2900         * genscripts.sh: Fix a typo in the last change.
2902 2001-10-05  Jakub Jelinek  <jakub@redhat.com>
2904         * emultempl/elf32.em (gld_*_list_options): Include -z combreloc and
2905         -z nocombreloc in usage.
2907 2001-10-03  Jim Blandy  <jimb@redhat.com>
2909         * genscripts.sh: Include a comment at the top of each generated
2910         script, explaining its purpose.
2912 2001-10-03  Vassili Karpov  <malc@pulsesoft.com>
2914         * emultempl/elf32.em (parse_args): Handle -z nocopyreloc.
2915         * NEWS: Mention -z nocopyreloc.
2916         * ld.texinfo (Options): Describe nocopyreloc.
2918 2001-10-03  Alan Modra  <amodra@bigpond.net.au>
2920         * configure: Regenerate.
2922 2001-10-02  Alan Modra  <amodra@bigpond.net.au>
2924         * ldver.h (ld_program_version): Remove declaration.
2925         * lexsup.c (parse_args): Move printing of copyright message..
2926         * ldver.c (ldversion): .. to here.
2927         Use BFD_VERSION_STRING in place of BFD_VERSION.
2928         (ld_program_version): Remove.
2929         * Makefile.am (Makefile): Depend on bfd/configure.in.
2930         Run "make dep-am".
2931         * Makefile.in: Regenerate.
2933 2001-09-30  Hans-Peter Nilsson  <hp@bitrange.com>
2935         * Makefile.am: Update dependencies with "make dep-am".
2936         * Makefile.in: Regenerate.
2938 2001-09-29  John Reiser  <jreiser@BitWagon.com>
2940         * ldlang.c (lang_common): Conditionally inhibit Common allocation.
2941         * lexsup.c: Add --no-define-common commandline option.
2942         * ldgram.y: Add INHIBIT_COMMON_ALLOCATION script command.
2943         * ldlex.l: Likewise.
2944         * ld.h: Add command_line.inhibit_common_definition.
2945         * ldmain.c (main): Initialize.
2946         * ld.texinfo: Document.
2948 2001-09-29  Alan Modra  <amodra@bigpond.net.au>
2950         * ldlang.c (section_already_linked): Remove assignment to kept_section.
2952 2001-09-26  Alan Modra  <amodra@bigpond.net.au>
2954         * ldmisc.c (USE_STDARG): Remove.
2955         (info_msg): Define using VPARAMS, VA_OPEN, VA_FIXEDARG, VA_CLOSE.
2956         (einfo): Likewise.
2957         (minfo): Likewise.
2958         (lfinfo): Likewise.
2960         * ldmisc.h: Remove #ifdef ANSI_PROTOTYPES and non-ansi
2961         declarations.  Update copyright.
2963 2001-09-24  Charles Wilson  <cwilson@ece.gatech.edu>
2965         * pe-dll.c: Remove obsoleted declaration of
2966         pe_get_data_import_dll_name.
2967         (pe_create_import_fixup): Fix thinko.
2969         * ld.texinfo(enable-auto-import): Clarify the explanation.
2971 2001-09-24  Nick Clifton  <nickc@cambridge.redhat.com>
2973         * pe-dll.c (pe_create_import_fixup): Revert previous patch.
2974         * emultemp/pe.em (pe_data_import_dll): Move definition outside of
2975         DLL_SUPPORT controlled code.
2977 2001-09-24  Charles Wilson  <cwilson@ece.gatech.edu>
2979         * emultempl/pe.em(pe_data_import_dll): Make static.
2980         (pe_get_data_import_dll_name): New accessor function.
2981         * pe-dll.c(pe_create_import_fixup): call
2982         pe_get_data_import_dll_name() from pe.em, instead of
2983         directly accessing pe_data_import_dll variable from pe.em.
2985 2001-09-18  Bruno Haible  <haible@clisp.cons.org>
2987         * deffilep.y: Include "safe-ctype.h" instead of <ctype.h>.
2988         (def_file_add_directive): Use ISSPACE instead of isspace.
2989         (def_lex): Use ISDIGIT/ISXDIGIT/ISALPHA/ISALNUM instead of
2990         isdigit/isxdigit/isalpha/isalnum.
2991         * emultempl/aix.em: Include "safe-ctype.h" instead of <ctype.h>.
2992         (gld${EMULATION_NAME}_read_file): Use ISSPACE instead of isspace.
2993         * emultempl/elf32.em: Include "safe-ctype.h" instead of <ctype.h>.
2994         (gld${EMULATION_NAME}_place_orphan): Use ISALNUM instead of
2995         isalnum.
2996         * emultempl/gld960c.em: Include "safe-ctype.h" instead of <ctype.h>.
2997         (gld960_set_output_arch): Use ISUPPER/TOLOWER instead of
2998         isupper/tolower.
2999         * emultempl/sunos.em: Include "safe-ctype.h" instead of <ctype.h>.
3000         (gld${EMULATION_NAME}_search_dir): Use ISDIGIT instead of isdigit.
3001         * ldctor.c: Include "safe-ctype.h" instead of <ctype.h>.
3002         (ctor_prio): Use ISDIGIT instead of isdigit.
3003         * ldfile.c: Include "safe-ctype.h" instead of <ctype.h>.
3004         (ldfile_open_file_search): Use ISALPHA instead of isalpha.
3005         (ldfile_add_arch): Use ISUPPER/TOLOWER instead of
3006         isupper/tolower.
3007         * ldlang.c: Include "safe-ctype.h" instead of <ctype.h>.
3008         (stricpy): Use TOLOWER instead of isupper/tolower.
3009         (lang_leave_overlay_section): Use ISALNUM instead of isalnum.
3010         * ldlex.l: Include "safe-ctype.h" instead of <ctype.h>.
3011         (lex_warn_invalid): Use ISPRINT instead of isprint.
3012         * ldmain.c: Include "safe-ctype.h" instead of <ctype.h>.
3013         (main): For gettext, also set the LC_CTYPE locate facet.
3014         (add_keepsyms_file): Use ISSPACE instead of isspace.
3015         * lexsup.c: Include "safe-ctype.h" instead of <ctype.h>.
3016         (is_num, parse_args): Use ISDIGIT instead of isdigit.
3017         * mpw-elfmips.c: Include "safe-ctype.h" instead of <ctype.h>.
3018         (gldelf32ebmip_place_orphan): Use ISALNUM instead of isalnum.
3019         * mpw-eppcmac.c: Include "safe-ctype.h" instead of <ctype.h>.
3020         (gldppcmacos_read_file): Use ISSPACE instead of isspace.
3021         * pe-dll.c: Include "safe-ctype.h" instead of <ctype.h>.
3022         (quoteput): Use ISSPACE instead of isspace.
3023         (pe_dll_generate_implib, pe_process_import_defs): Use ISALNUM
3024         instead of isalnum.
3026 2001-09-18  Alan Modra  <amodra@bigpond.net.au>
3028         * deffilep.y (def_stash_module): Constify "name" param.
3030         * pe-dll.c: Replace CONST with const throughout.
3031         (quick_symbol): Constify "n1", "n2", "n3" params.
3032         (make_singleton_name_thunk): Constify "import" param.  Make
3033         "buffer_len" a size_t.
3034         (make_import_fixup_entry): Constify "name", "fixup_name",
3035         "dll_symname" params.
3036         (pe_get16): Cast args of bfd_seek.  Replace bfd_read with bfd_bread.
3037         (pe_get32): Likewise.
3038         (pe_implied_import_dll): Likewise.
3040         * emultempl/beos.em (sort_by_file_name): Constify "ra", "rb".
3041         (sort_by_section_name): Likewise.
3043         * emultempl/pe.em: Move defines for arm_epoc_pe before bfd.h included.
3044         (make_import_fixup): Cast printf arg, rel->address to long rather
3045         than int.
3046         (gld_${EMULATION_NAME}_after_open): Don't compare NULL against int.
3048 2001-09-15  Alan Modra  <amodra@bigpond.net.au>
3050         * ldmain.c (main): Rename BufferSize to ld_bufsz because HPUX
3051         defines BufferSize.  Increase buffer size by one.
3053 2001-09-14  Ralf Habacker <Ralf.Habacker@freenet.de>
3055         * pe-dll.c (pe_walk_relocs_of_symbol): Fix memory leak.
3057 2001-09-14  Kevin Lo <kevlo@openbsd.org>
3059         * configure.tgt: Add arm-openbsd target.
3061 2001-09-12  H.J. Lu  <hjl@gnu.org>
3063         * Makefile.am (ALL_EMULATIONS): Move eelf64ppc.o and
3064         eelf64lppc.o to ...
3065         (ALL_64_EMULATIONS): Here.
3066         * Makefile.in: Regenerated.
3068 2001-09-12  Paul Sokolovsky  <Paul.Sokolovsky@technologist.com>
3070         * emultempl/pe.em(make_import_fixup): change signature to
3071         take asection as well as arelec; we need this for proper
3072         error reporting.  Only call pe_create_import_fixup() if
3073         there is no attempt to add a constant addend to the reloc;
3074         otherwise, report error condition.
3075         * pe-dll.c(pe_walk_relocs_of_symbol): change signature,
3076         since final argument is a pointer to make_import_fixup().
3077         Change call to cb() to match make_import_fixup() signature.
3078         (make_import_fixup_mark): make buffer_len unsigned.
3079         * pe-dll.h: change signature of pe_walk_relocs_of_symbol.
3081 2001-09-12  Charles Wilson  <cwilson@ece.gatech.edu>
3083         * ld.texinfo: add verbose documentation for auto-import
3084         direct-addressing workaround, to compliment the terse
3085         error message.
3087 2001-09-12  Andrew MacLeod  <amacleod@redhat.com>
3089         * scripttempl/v850.sc: Add gcc_except_table sections.
3091 2001-09-11  Jeffrey A Law  (law@cygnus.com)
3093         * emulparams/h8300helf.sh: Move stack to a much higher memory address.
3094         * emulparams/h8300self.sh: Similarly.
3096 2001-09-05 Danny Smith <dannysmith@users.souceforge.net>
3098         * ld.texinfo (Options, --stack): Correct default value for stack
3099         reserve.
3101 2001-09-05  Tom Rix <trix@redhat.com>
3103         * emultempl/aix.em : Handle import file XMC_XO and syscall symbols.
3105 2001-09-03  Andreas Jaeger  <aj@suse.de>
3107         * emultempl/beos.em: Declare prototypes for comparions functions,
3108         adjust definitions.
3110 2001-09-02  Andreas Jaeger  <aj@suse.de>
3112         * emultempl/aix.em: Add missing prototype.
3113         * emultempl/lnk960.em: Likewise.
3114         * emultempl/vanilla.em: Likewise.
3115         * emultempl/armcoff.em: Likewise.
3116         * emultempl/armelf_oabi.em: Likewise.
3117         * emultempl/beos.em: Likewise.
3118         * emultempl/gld960c.em: Likewise.
3119         * emultempl/gld960.em: Likewise.
3121         * emulparams/elf64alpha.sh (PARSE_AND_LIST_PROLOGUE): Add parameter
3122         for prototype declaration.
3124 2001-08-31  Eric Christopher  <echristo@redhat.com>
3125             Jason Eckhardt  <jle@redhat.com>
3127         * ldmain.c (get_emulation): Add support for -mips32 and -mips64.
3129 2001-08-31  Andreas Jaeger  <aj@suse.de>
3131         * emultempl/pe.em: Add missing prototypes.
3132         (gld_${EMULATION_NAME}_after_open): Remove extra args to
3133         pe_find_data_imports.
3134         (pr_sym): Add unused attribute.
3136 2001-08-29  Joel Sherrill <joel@OARcorp.com>
3138         * configure.tgt (i[3456]86-*-rtems*, m68*-*-rtems*): Change
3139         default from coff to elf.
3141 2001-08-29  Jeff Law <law@redhat.com>
3143         * emulparams/h8300helf.sh: Resync with h8300elf.sh.  Update
3144         ARCH specification.
3145         * emulparams/h8300self.sh: Similarly.
3147 2001-08-28  J"orn Rennecke <amylaar@redhat.com>
3149         * Makefile.am (ALL_EMULATIONS): Add eh8300elf.o, eh8300elf.o and
3150         eh8300self.o .
3151         (eh8300elf.c, eh8300helf.c, eh8300self.c): New targets.
3152         * configure.tgt (h8300-*-elf*): New case.
3153         * emulparams/h8300elf.sh, emulparams/h8300helf.sh: New files.
3154         * emulparams/h8300self.sh: New file.
3155         * Makefile.in: Regenerated.
3157 2001-08-28  Nick Clifton  <nickc@cambridge.redhat.com>
3159         * ldmain.c (main): Rename BSIZE to BufferSize to avoid collision
3160         with macro name.
3162 2001-08-27  Linus Nordberg  <linus@swox.com>
3163             Alan Modra  <amodra@bigpond.net.au>
3165         * Makefile.am (ALL_EMULATIONS): Add eelf64ppc.o and eelf64lppc.o.
3166         (eelf64ppc.c, eelf64lppc.c): Add make targets.
3167         Run "make dep-am"
3168         * Makefile.in: Regenerate.
3169         * configure.tgt: Add powerpc64 support.  Move pdp11, pjl, pj
3170         entries to correct alphabetical position.
3171         * emulparams/elf64ppc.sh: New.
3172         * emulparams/elf64lppc.sh: New.
3174 2001-08-27  Nick Clifton  <nickc@cambridge.redhat.com>
3176         * ldmain.c (main): Declare BSIZE as static.
3178 2001-08-23  Jakub Jelinek  <jakub@redhat.com>
3180         * emultempl/elf32.em (place_orphan): Place orphan .rel* sections
3181         into .rel.dyn resp. .rela.dyn if combreloc.
3182         (get_script): If .x linker script is equal to .xn, only put it
3183         once into the binary.
3184         Add .xc and .xsc scripts.
3185         (parse_args): Handle -z combreloc and -z nocombreloc.
3186         * scripttempl/elf.sc (.rela.sbss): Fix a typo.
3187         For .xc and .xsc scripts put all .rel* or .rela* input sections
3188         but .rel*.plt and PLT-like sections into .rel.dyn resp. .rela.dyn.
3189         * genscripts.sh (GENERATE_COMBRELOC_SCRIPT): Set if SCRIPT_NAME
3190         is elf.
3191         Strip trailing whitespace from script.
3192         Generate .xc and .xsc scripts if requested.
3193         * ldmain.c (main): Initialize link_info.combreloc and
3194         link_info.spare_dynamic_tags.
3195         * lexsup.c (OPTION_SPARE_DYNAMIC_TAGS): Define.
3196         (ld_options): Add --spare-dynamic-tags option.
3197         (parse_args): Likewise.
3198         * ld.texinfo: Document -z combreloc and -z nocombreloc.
3199         * ldint.texinfo: Document .xc and .xsc linker scripts.
3200         * NEWS: Add notes about -z combreloc and SHF_MERGE.
3202 2001-08-22  H.J. Lu  <hjl@gnu.org>
3204         * emulparams/elf32fr30.sh: Add a newline.
3206 2001-08-21  Andreas Jaeger  <aj@suse.de>
3208         * deffilep.y: Add missing prototypes.
3209         * pe-dll.c: Likewise.
3211 2001-08-20  Alan Modra  <amodra@bigpond.net.au>
3213         * ldlang.c (insert_pad): Fix typos in last patch.
3215         * ldlang.c: When traversing lang_statement_union_type lists,
3216         consistently use "header.next" rather than "next".
3217         * mpw-eppcmac.c: Likewise.
3218         * emultempl/beos.em: Likewise.
3219         * emultempl/hppaelf.em: Likewise.
3220         * emultempl/pe.em: Likewise.
3221         * ldlang.h (union lang_statement_union): Remove "next" field.
3223         * ldlang.c (insert_pad): Use offsetof macro.
3224         (lang_size_sections): Always neuter padding statements.
3225         * emultempl/hppaelf.em (hppaelf_delete_padding_statements): Delete.
3227         * pe-dll.c (pe_dll_fill_sections): Correct type of "relax" param
3228         passed to lang_size_sections.
3229         (pe_exe_fill_sections): Likewise.
3230         * emultempl/pe.em (output_prev_sec_find): Copied from elf32.em.
3231         (gld_${EMULATION_NAME}_place_orphan): Merge from elf32.em.
3233 2001-08-18  Alan Modra  <amodra@bigpond.net.au>
3235         * emultempl/aix.em: Formatting fixes.
3237 2001-08-18  Alan Modra  <amodra@bigpond.net.au>
3239         * ldlang.c (insert_pad): Make use of an existing pad statement if
3240         available.  Move code calculating alignment, adjusting section
3241         alignment power, and adjusting dot to ..
3242         (size_input_section): .. here.  Remove unused relax param.
3243         (lang_size_sections): Change boolean `relax' param to boolean *.
3244         Adjust call to size_input_section.  Make use of insert_pad to
3245         place pad after the assignment statement.  If relaxing, zap
3246         padding statements.
3247         (reset_memory_regions): Reset output_bfd section sizes too.
3248         (relax_again): Move to..
3249         (lang_process): ..here.  Adjust call to lang_size_sections, and
3250         remove duplicated code.
3251         * ldlang.h (lang_size_sections): Change `relax' param to boolean *.
3253 2001-08-17  Alan Modra  <amodra@bigpond.net.au>
3255         * ld.texinfo: Document that fill values now use the four least
3256         significant bytes.
3257         * emulparams/elf32fr30.sh (NOP): Update.
3258         * emulparams/elf32mcore.sh: Likewise.
3259         * emulparams/elf64_s390.sh: Likewise.
3260         * emulparams/elf_i386.sh: Likewise.
3261         * emulparams/elf_i386_be.sh: Likewise.
3262         * emulparams/elf_i386_chaos.sh: Likewise.
3263         * emulparams/elf_i386_ldso.sh: Likewise.
3264         * emulparams/elf_s390.sh: Likewise.
3265         * emulparams/elf_x86_64.sh: Likewise.
3266         * emulparams/i386moss.sh: Likewise.
3267         * emulparams/i386nw.sh: Likewise.
3268         * emulparams/m68kelf.sh: Likewise.
3269         * scripttempl/elf.sc: Update NOP comment.
3270         * scripttempl/elfi370.sc: Likewise.
3271         * scripttempl/elfm68hc11.sc: Likewise.
3272         * scripttempl/elfm68hc12.sc: Likewise.
3273         * scripttempl/nw.sc: Likewise.
3275 2001-08-15  Tom Rix <trix@redhat.com>
3277         * ldgram.y (saved_script_handle): Initialize to NULL.
3278         * ldmain.c (main): Change check on saved_script_handle.
3280 2001-08-14  Alan Modra  <amodra@bigpond.net.au>
3282         * emultempl/elf32.em: Formatting fixes.
3283         (output_prev_sec_find): Test for bfd_ind_section too;  do so by
3284         looking at sec->owner.
3285         (output_rel_find): Move function inside LDEMUL_PLACE_ORPHAN test.
3286         (gld${EMULATION_NAME}_place_orphan): Add a few comments.  Remove
3287         unused code, and reorganize orphan section placement code.
3289         * ldlang.c (wild_doit): Rename to lang_add_section.
3290         * ldlang.h: Here too.
3291         * mpw-elfmips.c: And here.
3292         * emultempl/beos.em: And here.
3293         * emultempl/elf32.em: And here.
3294         * emultempl/hppaelf.em: And here.
3295         * emultempl/pe.em: And here.
3297 2001-08-13  Richard Henderson  <rth@redhat.com>
3299         * emultempl/needrelax.em: New file.
3300         * emulparams/elf64_ia64.sh (EXTRA_EM_FILE): Reference it.
3301         * Makefile.am (eelf64_ia64.c): Depend on it.
3302         * Makefile.in: Rebuild.
3304 2001-08-13  Alan Modra  <amodra@bigpond.net.au>
3306         * emultempl/elf32.em: For SEC_EXCLUDE sections, ensure that
3307         output_section is set non-NULL.
3309         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Return
3310         `true' for SEC_EXCLUDE sections so that the generic code doesn't
3311         needlessly create an output_section_statement.  Treat a correctly
3312         named output_section_statement with NULL bfd_section as compatible.
3314 2001-08-13  Hans-Peter Nilsson  <hp@bitrange.com>
3316         * emultempl/generic.em: Support EXTRA_EM_FILE.
3317         (ld_${EMULATION_NAME}_emulation): Support emulation parameters
3318         LDEMUL_BEFORE_PARSE, LDEMUL_SYSLIB, LDEMUL_HLL,
3319         LDEMUL_AFTER_PARSE, LDEMUL_AFTER_OPEN, LDEMUL_AFTER_ALLOCATION,
3320         LDEMUL_SET_OUTPUT_ARCH, LDEMUL_CHOOSE_TARGET,
3321         LDEMUL_BEFORE_ALLOCATION, LDEMUL_GET_SCRIPT, LDEMUL_FINISH,
3322         LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS,
3323         LDEMUL_OPEN_DYNAMIC_ARCHIVE, LDEMUL_PLACE_ORPHAN,
3324         LDEMUL_SET_SYMBOLS, LDEMUL_PARSE_ARGS, LDEMUL_UNRECOGNIZED_FILE,
3325         LDEMUL_LIST_OPTIONS, LDEMUL_RECOGNIZED_FILE,
3326         LDEMUL_FIND_POTENTIAL_LIBRARIES.
3328 2001-08-12  Richard Henderson  <rth@redhat.com>
3330         * scripttempl/elf.sc, scripttempl/elfd30v.sc,
3331         scripttempl/elfm68hc11.sc, scripttempl/elfm68hc12.sc,
3332         scripttempl/v850.sc: Keep .jcr data.
3334 2001-08-12  H.J. Lu  <hjl@gnu.org>
3335             Andrew Haley  <aph@cambridge.redhat.com>
3336             Nick Clifton  <nickc@redhat.com>
3338         * ldgram.y (had_script): Change name to saved_script_handle.
3339         Change type to file handle.
3340         * ld.h (had_script): Rename and retype.
3341         * ldfile.c (ldfile_open_command_file): Save the file handle
3342         used in saved_script_handle.
3343         * lexsup.c (parse_args): Do not allow -c option to alter
3344         saved_script_handle.
3345         * ldmain.c (main): Print out the linker script used if
3346         --verbose is given.  Check saved_script_handle to obtain the
3347         external linker script used, or if NULL, dump the builtin
3348         script.
3349         * ld.texinfo: Document that --verbose now dumps the linker
3350         script used, regardless of whether it was an internal or an
3351         external script.
3353 2001-08-10  Andreas Jaeger  <aj@suse.de>
3355         * configure.in: Add -Wstrict-prototypes and -Wmissing-prototypes
3356         to build warnings.
3357         * configure: Regenerate.
3359 2001-08-09  Alan Modra  <amodra@bigpond.net.au>
3361         * emultempl/elf32.em (output_prev_sec_find): Add missing prototype.
3363         * scripttempl/elf.sc: Move non-text .dynamic section before
3364         .plt/.got/.sdata* group.
3365         (OTHER_GOT_SECTIONS): Move to immediately after .got.
3366         (OTHER_SDATA_SECTIONS): Add.
3367         * emulparams/criself.sh: Use OTHER_SDATA_SECTIONS rather than
3368         OTHER_GOT_SECTIONS.
3369         * emulparams/crislinux.sh: Likewise.
3370         * emulparams/elf32b4300.sh: Likewise.
3371         * emulparams/elf32bmip.sh: Likewise.
3372         * emulparams/elf32bmipn32.sh: Likewise.
3373         * emulparams/elf32bsmip.sh: Likewise.
3374         * emulparams/elf32btsmip.sh: Likewise.
3375         * emulparams/elf32ebmip.sh: Likewise.
3376         * emulparams/elf32elmip.sh: Likewise.
3377         * emulparams/elf32l4300.sh: Likewise.
3378         * emulparams/elf32lmip.sh: Likewise.
3379         * emulparams/elf32lsmip.sh: Likewise.
3380         * emulparams/elf32ltsmip.sh: Likewise.
3381         * emulparams/elf64bmip.sh: Likewise.
3382         * emulparams/elf64btsmip.sh: Likewise.
3383         * emulparams/elf64ltsmip.sh: Likewise.
3385 2001-08-08  Alan Modra  <amodra@bigpond.net.au>
3387         * genscripts.sh: Source the emulparams script before each output
3388         script is generated so that variables like `RELOCATING' may affect
3389         variables defined in the emulparams script.
3391 2001-08-04  Alan Modra  <amodra@bigpond.net.au>
3393         * emultempl/aix.em: ldexp.h,ldlang.h,ldfile.h,ldemul.h go in this
3394         order.
3396         * emultempl/beos.em (sort_sections): Modify for 2001-08-03 change,
3397         ie. iterate over wild_statement.section_list.
3398         (gld${EMULATION_NAME}_place_orphan): Likewise.
3400 2001-08-03  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
3402         * scripttempl/elfm68hc12.sc (FINISH_CODE, FINISH_RELOC): New to handle
3403         .fini[0-4] sections used by _exit
3404         (CTOR, DTOR): Export ctor/dtor symbols; move them to ROM.
3405         (*.text,*.data,*.bss): Take into account .text.*, .data.*, .bss.*.
3406         * scripttempl/elfm68hc11.sc: Likewise.
3408 2001-08-03  H.J. Lu  <hjl@gnu.org>
3410         * emultempl/beos.em (init): Add the missing initialization.
3412 2001-08-03  Alan Modra  <amodra@bigpond.net.au>
3414         * ld.texinfo (Input Section Basics): Clarify ordering of output
3415         sections.
3416         * ldlang.c (callback_t): Add wildcard_list param.
3417         (walk_wild_section): Remove "section" param.  Rewrite for
3418         lang_wild_statement_type change.  Remove unique_section_p test.
3419         (walk_wild_file): Remove "section" param.
3420         (walk_wild): Remove "section" and "file" params.
3421         (lang_gc_wild): Likewise.
3422         (wild): Likewise.  Modify for lang_wild_statement_type change.
3423         (wild_sort): Likewise.  Add "sec" param.
3424         (gc_section_callback): Likewise.
3425         (output_section_callback): Likewise.  Do unique_section_p test.
3426         (map_input_to_output_sections): Modify call to wild.
3427         (lang_gc_sections_1): Likewise.
3428         (print_wild_statement): Modify for lang_wild_statement_type
3429         change.
3430         (lang_add_wild): Replace filename, filenames_sorted param with
3431         filespec.  Replace section_name, sections_sorted,
3432         exclude_filename_list with section_list.
3433         * ldlang.h (lang_add_wild): Here too.
3434         (lang_wild_statement_type): Replace section_name, sections_sorted,
3435         and exclude_filename_list with section_list.
3436         * ldgram.y (current_file): Delete.
3437         (%union): Add wildcard_list.
3438         (file_NAME_list): Set type to wildcard_list.  Build a linked list
3439         rather than calling lang_add_wild for each entry.
3440         (input_section_spec_no_keep): Call lang_add_wild here instead.
3441         * ld.h (struct wildcard_list): Declare.
3442         * mri.c (mri_draw_tree): Modify to suit new lang_add_wild.
3444 2001-08-02  Charles Wilson  <cwilson@ece.gatech.edu>
3446         * ldmain.c (main): initialize link_info.pei386_auto_import
3447         * pe-dll.c: new tables for auto-export filtering
3448         (auto_export): change API, pass abfd for contextual filtering.
3449         Loop thru tables of excluded symbols instead of comparing
3450         "by hand".
3452 2001-08-02  Paul Sokolovsky  <paul.sokolovsky@technologist.com>
3454         * pe-dll.c: new variable pe_dll_enable_extra_debug. New
3455         static variable current_sec (static struct sec *). Add
3456         forward declaration for add_bfd_to_link.
3457         (process_def_file): Don't export undefined symbols. Do not
3458         export symbols starting with  "_imp__".  Call auto_export()
3459         with new API.
3460         (pe_walk_relocs_of_symbol): New function.
3461         (generate_reloc): add optional extra debugging
3462         (pe_dll_generate_def_file): eliminate extraneous initial blank
3463         line in output
3464         (make_one): enlarge symtab to make room for __nm__ symbols
3465         (DATA auto-import support).
3466         (make_singleton_name_thunk): New function.
3467         (make_import_fixup_mark): New function.
3468         (make_import_fixup_entry): New function.
3469         (pe_create_import_fixup): New function.
3470         (add_bfd_to_link): Specify that 'name' argument is a CONST
3471         char *.
3472         * pe-dll.h: declare new variable pe_dll_extra_pe_debug;
3473         declare new functions pe_walk_relocs_of_symbol and
3474         pe_create_import_fixup.
3475         * emultempl/pe.em: add new options --enable-auto-import,
3476         --disable-auto-import, and --enable-extra-pe-debug.
3477         (make_import_fixup): New function.
3478         (pe_find_data_imports): New function.
3479         (pr_sym): New function.
3480         (gld_${EMULATION_NAME}_after_open): Add optional extra pe
3481         debugging. Call pe_find_data_imports.  Mark .idata as DATA, not
3482         CODE.
3484 2001-08-02  Charles Wilson  <cwilson@ece.gatech.edu>
3486         * ld.texinfo: add additional documentation for
3487         --export-all-symbols.  Document --out-implib,
3488         --enable-auto-image-base, --disable-auto-image-base,
3489         --dll-search-prefix, --enable-auto-import, and
3490         --disable-auto-import.
3491         * ldint.texinfo: Add detailed documentation on auto-import
3492         implementation.
3494 2001-07-30  Nick Clifton  <nickc@cambridge.redhat.com>
3496         * ld.texinfo (Simple Assignments): Fix computation in SECTIONS
3497         example.
3499 2001-07-24  Alan Modra  <amodra@bigpond.net.au>
3501         * Makefile.am: Update dependencies with "make dep-am".
3502         * Makefile.in: Regenerate
3504 2001-07-23  Alan Modra  <amodra@bigpond.net.au>
3506         * ldcref.c (check_section_sym_xref): New function.
3507         (check_nocrossrefs): Call it.
3508         (check_nocrossref): Interate over h->refs here instead of..
3509         (check_refs): ..here.  Pass in the symbol name, section, and bfd
3510         rather than hash_entry pointers.
3511         (struct check_refs_info): Keep symbol name rather than hash entry.
3512         Remove "same".
3513         (check_reloc_refs): Tweak for above changes in check_refs_info.
3514         Only report references to section syms when symname is NULL to
3515         prevent duplicate messages for the same reloc.
3517 2001-07-19  Nick Clifton  <nickc@cambridge.redhat.com>
3519         * ldexp.c (exp_print_tree): Use stderr if config.map_file is not
3520         available.  Do not print NULL trees.
3521         (exp_print_token): Print unknown tokens with values > 126 as
3522         decimal values not ASCII characters.
3524         * ldlang.c (lang_leave_overlay): If a region is specified assign
3525         it to all sections inside the overlay unless they have been
3526         assigned to the own, non-default, memory region.
3528         * README: Add header for consistency with other README files.
3530 2001-07-14  H.J. Lu  <hjl@gnu.org>
3532         * emultempl/elf32.em (output_prev_sec_find): Never return
3533         bfd_abs_section_ptr, bfd_com_section_ptr nor
3534         bfd_und_section_ptr.
3536 2001-07-14  Nick Clifton  <nickc@cambridge.redhat.com>
3538         * Makefile.am (em32relf.c): Change dependency from generic.em to
3539         elf32.em.
3540         * Makefile.in: Regenerate.
3542 2001-07-14  matthew green  <mrg@eterna.com.au>
3544         * configure.tgt (i386-*-netbsdelf*): New target.
3545         (i386-*-netbsd*): Set targ_extra_emuls to `elf_i386'
3547 2001-07-13  Jakub Jelinek  <jakub@redhat.com>
3549         * emultempl/elf32.em (output_prev_sec_find): New.
3550         (place_orphan): Use it.
3552 2001-07-11  H.J. Lu  <hjl@gnu.org>
3554         * ldmain.c (main): Fix typos in the last change.
3556 2001-07-11  Jakub Jelinek  <jakub@redhat.com>
3558         * ldmain.c (main): Disallow -F and -f without -shared.
3560 2001-07-11  Nick Clifton  <nickc@cambridge.redhat.com>
3562         * emultempl/pe.em (after_open): Check for the output_bfd not
3563         having any coff_data structure allocated to it.
3565 2001-07-09  David O'Brien  <obrien@FreeBSD.org>
3567         * emultempl/elf32.em: Do not assuming that contents of the buffer
3568         returned from basename function will remain unchanged accross other
3569         function calls.
3571 2001-07-03  H.J. Lu  <hjl@gnu.org>
3573         * scripttempl/elf.sc (DYNAMIC_PAD): Revert the change made on
3574         2001-07-03. It creates dynamic entries even for static binaries.
3576 2001-07-03  Jakub Jelinek  <jakub@redhat.com>
3578         * scripttempl/elf.sc (DYNAMIC_PAD): New variable.
3579         (DYNAMIC): Use it to reserve few dynamic entries for
3580         post-linking tools.
3582 2001-06-27  Alan Modra  <amodra@bigpond.net.au>
3584         * emulparams/hppa64linux.sh: New file.
3585         * configure.tgt: hppa*64*-*-linux* uses hppa64linux.sh
3586         * Makefile.am (ALL_64_EMULATIONS): Add ehppa64linux.o
3587         (ehppa64linux.c): Add rule to make it.
3588         Run "make dep-am".
3589         * Makefile.in: Regenerate.
3591 2001-06-21  Hans-Peter Nilsson  <hp@axis.com>
3593         * ld.texinfo (Options, -r): Mention restrictions when using
3594         different object formats.
3596 2001-06-19  Hans-Peter Nilsson  <hp@axis.com>
3598         * ldlang.c (lang_check): Emit fatal error if relocatable link
3599         between different object flavours with relocations in input.
3601 2001-06-19  H.J. Lu  <hjl@gnu.org>
3603         * ld.texinfo (-E, --export-dynamic): Mention --version-script.
3604         (--version-script): Mention the language support.
3606 2001-06-19  H.J. Lu <hjl@gnu.org>
3608         * ldlang.c (lang_check): Revert the change mode on 2001-06-15.
3610 2001-06-18  H.J. Lu <hjl@gnu.org>
3612         * Makefile.am (ld.1): Remove the prefix `$(srcdir)/'.
3613         (diststuff): Add $(MANS).
3614         * Makefile.in: Regenerated.
3616         * ld.1: Removed.
3618 2001-06-18  Hans-Peter Nilsson  <hp@axis.com>
3620         * emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation):
3621         Update for API change in bfd_elf${ELFSIZE}_size_dynamic_sections.
3622         * mpw-elfmips.c (gldelf32ebmip_before_allocation): Ditto.
3623         * ld.h (args_type): Remove member export_dynamic.  All users
3624         changed to use struct bfd_link_info member.
3626         * Makefile.am (ecriself.c, ed10velf.c, ei386moss.c): Depend on
3627         $(srcdir)/emultempl/elf32.em, not $(srcdir)/emultempl/generic.em.
3628         * Makefile.in: Regenerate.
3630 2001-06-18  H.J. Lu  <hjl@gnu.org>
3632         * ldlang.c (init_os): Add the newline to the einfo call.
3633         (lang_check): Likewise.
3634         (lang_do_version_exports_section): Likewise.
3636 2001-06-15  H.J. Lu  <hjl@gnu.org>
3638         * lexsup.c (parse_args); Save optind to report unrecognized
3639         option.
3641 2001-06-15  Hans-Peter Nilsson  <hp@axis.com>
3643         * ldlang.c (lang_check): Emit fatal error if relocatable link
3644         between different object flavours.
3646         * lexsup.c (parse_args) <case OPTION_EXPORT_DYNAMIC, case 'E'>:
3647         Set new link_info member export_dynamic.
3648         * ldmain.c (main): Initialize new link_info member export_dynamic.
3650 2001-06-12  Nick Clifton  <nickc@cambridge.redhat.com>
3652         * ldlang.c (walk_wild): Only call walk_wild_file if
3653         lookup_name returns something.
3654         (lookup_name): If load_symbols fails, return NULL.
3655         (load_symbols): Change to a boolean function.
3656         (open_input_bfds): If load_symbols fails then do not make the
3657         executable.
3659 2001-06-08  Alan Modra  <amodra@bigpond.net.au>
3661         * ldlang.c (record_bfd_errors): Remove.
3663         * emultempl/aix.em: Fix copyright dates.
3665 2001-06-07  Andreas Jaeger  <aj@suse.de>
3667         * elf_x86_64.sh (NONPAGED_TEXT_START_ADDR): Increase.
3668         (TEXT_START_ADDR): Likewise.
3670 2001-06-06  Martin Schwidefsky <schwidefsky@de.ibm.com>
3672         * configure.host: Set HOSTING_CRT0/HOSTING_LIBS correctly for s/390.
3674 2001-06-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
3676         * emultempl/pe.em (init): Reduce default stack reserve to 0x200000.
3678 2001-05-31  H.J. Lu  <hjl@gnu.org>
3680         * ldlang.c (open_input_bfds): Don't change the bfd error
3681         handler whilst loading symbols.
3683 2001-05-28  Nick Clifton  <nickc@cambridge.redhat.com>
3685         * configure.tgt: Remove i370-mvs architecture, it is not currently
3686         supported.
3688 2001-05-25  H.J. Lu  <hjl@gnu.org>
3690         * emulparams/ppcmacos.sh: Add SYSCALL_MASK and SYMBOL_MODE_MASK
3691         like emulparams/aixppc.sh.
3693 2001-05-25  H.J. Lu  <hjl@gnu.org>
3695         * emultempl/beos.em (gld${EMULATION_NAME}_before_parse): Move
3696         setting of output_filename after bfd_scan_arch.
3697         * emultempl/pe.em: Likewise.
3699 2001-05-25  H.J. Lu  <hjl@gnu.org>
3701         * emulparams/aixrs6.sh: Add SYSCALL_MASK and SYMBOL_MODE_MASK
3702         like emulparams/aixppc.sh.
3704         * emultempl/aix.em (sc): Use ${srcdir}/emultempl/ostring.sed
3705         instead of ${srcdir}/emultempl/stringify.sed.
3707 2001-05-25  Timothy Wall  <twall@oculustech.com>
3709         * emulparams/elf64_aix.sh: Change settings to match IBM linker
3710         output.
3712 2001-05-25  Alan Modra  <amodra@one.net.au>
3714         * configure.host: Replace linuxoldld with linux*oldld.
3715         * configure.tgt: Likewise.
3717 2001-05-24  H.J. Lu  <hjl@gnu.org>
3719         * emultempl/stringify.sed: Removed again.
3721 2001-05-24  H.J. Lu  <hjl@gnu.org>
3723         * emultempl/aix.em (OUTPUT_ARCH): Defined.
3724         (gld${EMULATION_NAME}_before_parse): Initialize
3725         ldfile_output_architecture, ldfile_output_machine and
3726         ldfile_output_machine_name from ${OUTPUT_ARCH} if possible.
3727         * emultempl/beos.em: Likewise.
3728         * emultempl/elf32.em: Likewise.
3729         * emultempl/linux.em: Likewise.
3730         * emultempl/mipsecoff.em: Likewise.
3731         * emultempl/pe.em: Likewise.
3732         * emultempl/sunos.em: Likewise.
3734 2001-05-24 Tom Rix <trix@redhat.com>
3736         * emultempl/aix.em : (gld${EMULATION_NAME}_read_file)
3737         udate import file format.
3738         (change_symbol_mode) New, same
3739         (is_syscall) New, same
3740         * emulparams/aixppc.sh : add SYSCALL_MASK and SYMBOL_MODE_MASK
3741         * emulparams/aixppc64.sh : same
3742         * emulparams/aixrs6.sh : same
3743         * emulparams/ppcmacos.sh : same
3744         * emultempl/aix.em : use strtoull to parse options
3745         * Makefile.am : add eaixppc64 emulation for xcoff64
3746         * Makefile.in : same
3747         * configure.tgt : same
3749         * scripttempl/aix.sc : default text section offset to 0x10000000
3750         default data section offset to 0x20000000
3751         add .sv3264 and .sv64 pseudo sections
3752         loader and debug sections use the currect section offset.
3754         * emultempl/aix.em : Add xcoff64 support
3755         Add -binitfini support
3756         (gld${EMULATION_NAME}_before_parse) -binitfini
3757         (gld${EMULATION_NAME}_parse_args) same
3758         (gld${EMULATION_NAME}_before_allocation) format change for special
3759         sections
3761         * emulparams/aixppc64.sh : New file for xcoff64 support
3763 2001-05-23  Alexandre Oliva  <aoliva@redhat.com>
3765         * emultempl/elf32.em (ELF_INTERPRETER_SET_DEFAULT): Use this new
3766         variable to avoid non-portable shell construct.
3768 2001-05-23  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
3770         * ldmain.c (get_emulation): Add -mips5 command line argument.
3772 2001-05-22  Alexandre Oliva  <aoliva@redhat.com>
3774         * emulparams/elf_i386_ldso.sh: New, copied from elf_i386.sh.
3775         (ELF_INTERPRETER_NAME): Define it.
3776         * emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation): Use
3777         it.
3778         * configure.tgt (targ_emul, targ_extra_emuls)
3779         [i[3456]86-*-solaris2*, i[3456]86-*-solaris*]: Use elf_i386_ldso
3780         as primary, elf_i386 as extra.
3781         * Makefile.am (ALL_EMULATIONS): Added eelf_i386_ldso.o.
3782         (eelf_i386_ldso.c): New rule.
3783         * Makefile.in: Rebuilt.
3785 2001-05-22  Nick Clifton  <nickc@redhat.com>
3787         * lexsup.c (ld_options):  Allow -I to be an alias for
3788         --dynamic-linker.  This is for Solaris compatability.
3789         * ld.texinfo: Document that -I can be used.
3790         * ld.1: Regenerate.
3792 2001-05-16  Alan Modra  <amodra@one.net.au>
3794         * ldlang.c (wild_doit): Use linker_has_input to reliably determine
3795         whether an input section is the first one assigned to an output
3796         section.
3797         Assorted formatting fixes.
3799 2001-05-14  DJ Delorie  <dj@delorie.com>
3801         * Makefile.am (ld.dvi): Search bfd/doc for texinfo files.
3802         * Makefile.in: Ditto.
3804 2001-05-11  Jakub Jelinek  <jakub@redhat.com>
3806         * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Put
3807         .gnu.linkonce.ia64unw{,i} sections into corresponding .IA_64.unwind*
3808         output sections.
3809         * emulparams/elf64_aix.sh (OTHER_READONLY_SECTIONS): Likewise.
3811 2001-05-11  Jakub Jelinek  <jakub@redhat.com>
3813         * ldlang.c (lang_process): Call bfd_merge_sections.
3815 2001-05-07  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
3817         * ldgram.y: Fix typo.
3819 2001-05-03  H.J. Lu  <hjl@gnu.org>
3821         * emultempl/elf32.em: Include "libiberty.h".
3822         (gld${EMULATION_NAME}_vercheck): Call basename () to get the
3823         basename of the bfd filename.
3824         (gld${EMULATION_NAME}_stat_needed): Likewise.
3825         (gld${EMULATION_NAME}_try_needed): Likewise.
3826         (gld${EMULATION_NAME}_open_dynamic_archive): Likewise.
3828 2001-05-02  H.J. Lu  <hjl@gnu.org>
3830         * emultempl/pe.em: Include <ctype.h>.
3832 2001-05-02  Johan Rydberg  <jrydberg@opencores.org>
3834         * emulparams/elf32openrisc.sh: New file.
3836         * Makefile.am: Add OpenRISC target.
3837         * Makefile.in: Regenerated.
3839         * configure.tgt: Add openrisc-*-* mapping.
3841 2001-05-02  Nick Clifton  <nickc@redhat.com>
3843         * emultempl/aix.em: Replace buystring with xstrdup.
3844         * emultempl/beos.em: Replace buystring with xstrdup.
3846 2001-05-02  H.J. Lu  <hjl@gnu.org>
3848         * ldfile.c: Include "libiberty.h".
3849         * ldlex.l: Likewise.
3851         * ldmisc.c (buystring): Removed.
3852         * ldmisc.h: Likewise.
3854         * ldfile.c: Replace buystring with xstrdup.
3855         * ldlang.c: Likewise.
3856         * ldlex.l: Likewise.
3857         * ldmain.c: Likewise.
3858         * ldmisc.c: Likewise.
3859         * lexsup.c: Likewise.
3860         * mpw-eppcmac.c: Likewise.
3862 2001-04-30  Andreas Jaeger  <aj@suse.de>
3864         * emulparms/elf_x86_64.sh (MAXPAGESIZE): Fix value.
3866 2001-04-28  Paul Sokolovsky  <Paul.Sokolovsky@technologist.com>
3868         * ldlang.c (load_symbols): Give emulation a chance
3869         to process unrecognized file before fatal error is
3870         reported, not after.
3872 2001-04-27  Sean McNeil <sean@mcneil.com>
3874         * configure.tgt: Add arm-vxworks target.
3875         * scripttempl/armcoff.sc: Support .text or .data as a section name
3876         prefix.
3877         Define _etext.
3879 2001-04-13  J.T. Conklin  <jtc@redback.com>
3881         * ld.texinfo: Document --fatal-warnings.
3882         * ld.1: Regenerate.
3884         * ldmisc.c (vfinfo): Set flag to inhibit making executable if
3885         warnings have been turned into errors.
3886         * lexsup.c (OPTION_WARN_FATAL): Define.
3887         (ld_options): Entry for --fatal-warnings.
3888         (parse_args): Handle OPTION_WARN_FATAL.
3889         * ld.h (ld_config_type): Add fatal_warnings field.
3891 2001-04-13  Jakub Jelinek  <jakub@redhat.com>
3893         * ldmain.c (main): Default to discard_sec_merge.
3894         * lexsup.c (OPTION_DISCARD_NONE): Define.
3895         (ld_options): Add --discard-none.
3896         (parse_args): Handle OPTION_DISCARD_NONE.
3897         * ldlang.c (wild_doit): SEC_MERGE should be set in the output
3898         section only if SEC_MERGE and SEC_STRINGS flags and entsize of
3899         all its input sections match.
3901 2001-04-05  Steven J. Hill  <sjhill@cotw.com>
3903         * Makefile.am (ALL_EMULATIONS): Add eelf32ltsmip.o.
3904         (ALL_64_EMULATIONS): Add eelf64btsmip.o and eelf64ltsmip.o.
3905         (eelf32ltsmip.c): New target.
3906         (eelf64btsmip.c): Likewise.
3907         (eelf64ltsmip.c): Likewise.
3908         * Makefile.in: Regenerated.
3910         * configure.tgt (mips*el-*-linux-gnu): Uses traditional MIPS
3911         target.
3912         (mips*-*-linux-gnu*): Likewise.
3914         * emulparams/elf32ltsmip.sh: New. Traditional little endian
3915         MIPS taget.
3916         * emulparams/elf64btsmip.sh: New. Traditional 64bit big endian
3917         target.
3918         * emulparams/elf64ltsmip.sh: New. Traditional 64bit little
3919         endian target.
3921 2001-04-05  Hans-Peter Nilsson  <hp@axis.com>
3923         * emulparams/criself.sh (EXECUTABLE_SYMBOLS): Cannot provide
3924         correct value of __Stext here.
3925         (TEXT_START_SYMBOLS): Define; always define __Stext, to start of
3926         .startup section.
3928         * emulparams/crislinux.sh: Remove FIXME.
3930 2001-04-02  Alan Modra  <alan@linuxcare.com.au>
3932         * emulparams/hppalinux.sh (MAXPAGESIZE): Set to 64k.
3933         (TEXT_START_ADDR, TARGET_PAGE_SIZE): Likewise.
3935 2001-03-27  Hans-Peter Nilsson  <hp@axis.com>
3937         * configure.tgt (cris-*-*): Change default emulation to criself.
3938         (cris-*-*aout*): New rule.
3940 2001-03-27  Matthew Wilcox  <willy@ldl.fc.hp.com>
3942         * emulparams/hppalinux.sh (MAXPAGESIZE): Set to 0x4000.
3943         (TEXT_START_ADDR, TARGET_PAGE_SIZE): Ditto.
3945 2001-03-26  Andreas Jaeger  <aj@suse.de>
3947         * ld.texinfo (Overview): Fix syntax in texi code.
3949 2001-03-25  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
3951         * ld.texinfo: Put @c man indications to generate the ld man page.
3952         When generating man, define all the variables.  Define SEEALSO
3953         and SYNOPSIS.  Re-organize some lines to avoid the cross references.
3954         * Makefile.am (MANCONF, TEXI2POD, POD2MAN): New variables.
3955         (ld.1): Generate from ld.texinfo.
3956         * Makefile.in: Regenerate.
3958 2001-03-23  Mark Elbrecht <snowball3@bigfoot.com>
3960         * scripttempl/i386go32.sc: Support the GCC flags '-ffunction-sections'
3961         and '-fdata-sections'. Set the VMA of STABS sections to zero.
3963 2001-03-17  Ulrich Drepper  <drepper@redhat.com>
3965         * emultmpl/elf32.em (gld${EMULATION_NAME}_search_needed): If NAME
3966         is an absolute path look only for this file and not along the path.
3968 2001-03-17  Ulrich Drepper  <drepper@redhat.com>
3970         * emultempl/elf32.em (OPTION_GROUP): New macro.
3971         Add new option Bgroup to longopts.
3972         (gld*_parse_args): Handle GROUP_OPTION and recognize -z defs.
3973         (gld*_list_options): Add -Bgroup and -z defs.
3974         * ld.1: Document -Bgroup and -z defs.
3975         * ld.texinfo: Likewise.
3977 2001-03-07  Michael Meissner  <meissner@redhat.com>
3979         * scripttempl/elfd10v.sc (.rodata,.rodata1,.data1,.sdata): Deal
3980         with sections created by -fdata-sections.
3981         (.dynbss,.bss): Ditto.
3983 2001-03-05  Alan Modra  <alan@linuxcare.com.au>
3985         * emultempl/m68kelf.em (m68k_elf_after_allocation): Call
3986         after_allocation_default, not gld..._before_allocation.
3988 2001-02-27  Alan Modra  <alan@linuxcare.com.au>
3990         * configure.in (BFD_VERSION): New.
3991         (AM_INIT_AUTOMAKE): Use $BFD_VERSION.
3992         * configure: Regenerate.
3993         * Makefile.am: Run "make dep-am"
3994         * Makefile.in: Regenerate.
3996 2001-02-26  Timothy Wall  <twall@cygnus.com>
3998         * emulparams/elf64_aix.sh: Add additional read-only sections;
3999         uncomment lines which are now required.
4001 2001-02-26  H.J. Lu  <hjl@gnu.org>
4003         * ldlang.c (open_input_bfds): Set the bfd error handler so
4004         that problems can be caught whilst loading symbols.
4005         (record_bfd_errors): New function: Report BFD errors and mark
4006         the executable output as being invalid.
4008 2001-02-22  Timothy Wall  <twall@cygnus.com>
4010         * configure.host: Add configuration for ia64-*-aix*.
4011         * Makefile.am (ALL_64_EMULATIONS): Add emulation for ia64-*-aix*.
4012         Add dependencies for eelf64_aix.c.
4013         * Makefile.in: Regenerate.
4014         * configure.tgt: Add ia64-*-aix* mapping.
4015         * emulparams/elf64_aix.sh: Add settings for elf64 on aix5.
4017 2001-02-20  H.J. Lu  <hjl@gnu.org>
4019         * ldfile.c (ldfile_open_file): Set entry->search_dirs_flag to
4020         false if we found the file.
4022 2001-02-18  David O'Brien  <obrien@FreeBSD.org>
4024         * configure.tgt: Add FreeBSD/Alpha, FreeBSD/x86-64, FreeBSD/ia64,
4025         FreeBSD/PowerPC, FreeBSD/arm, and FreeBSD/sparc64 entries.
4027 2001-02-18  lars brinkhoff  <lars@nocrew.org>
4029         * Makefile.am: Add PDP-11 target.
4030         * configure.tgt: Likewise.
4031         * emulparams/pdp11.sh: New file.
4033 2001-02-17  David O'Brien  <obrien@FreeBSD.org>
4035         * configure.host: Add a generic FreeBSD configuration entry such that
4036         all [modern] FreeBSD systems on all platforms will look the same.
4038 2001-02-14  H.J. Lu  <hjl@gnu.org>
4040         * configure.tgt: Remove mention of earmelf_linux26.
4042 2001-02-13  Richard Henderson  <rth@redhat.com>
4044         * emulparams/elf64_ia64.sh (OTHER_GOT_SYMBOLS): Remove.
4046 2001-02-13  H.J. Lu  <hjl@gnu.org>
4048         * ldexp.h (node_type): Add etree_provided.
4049         * ldexp.c (exp_fold_tree): Handle etree_provided. Set the node
4050         type to etree_provided if defined by PROVIDE. Allow updating
4051         for etree_provided.
4052         (exp_print_tree): Handle etree_provided.
4053         * mpw-elfmips.c (gldelf32ebmip_find_exp_assignment): Handle
4054         etree_provided.
4056 2001-02-09  David Mosberger  <davidm@hpl.hp.com>
4058         * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Add
4059         .IA_64.unwind.* pattern to unwind table section and
4060         .IA_64.unwind_info* pattern to unwind info section.
4062 2001-02-09  Martin Schwidefsky  <schwidefsky@de.ibm.com>
4064         * Makefile.am: Add linux target for S/390.
4065         * Makefile.in: Likewise.
4066         * configure.host: Likewise.
4067         * configure.tgt: Likewise.
4068         * emulparams/elf64_s390.sh: New file.
4069         * emulparams/elf_s390.sh: New file.
4071 2001-02-09  Jakub Jelinek  <jakub@redhat.com>
4073         * configure.tgt (sparc64-*-linux-gnu*): Add elf32_sparc into
4074         targ_extra_libpath.
4075         (sparc-*-linux-gnu*): Add elf64_sparc into targ_extra_libpath.
4077 2001-02-06  Philip Blundell  <philb@gnu.org>
4079         * Makefile.am: Remove mention of earmelf_linux26.
4080         * Makefile.in: Regenerate.
4082 2001-02-04  Philip Blundell  <philb@gnu.org>
4084         * emulparams/armelf_linux.sh (TEXT_START_ADDR): Set to 0x8000.
4085         * emulparams/armelf_linux26.sh: Delete.
4086         * configure.tgt: Remove mention of armelf_linux26 emulation.
4088 2001-02-01  Nick Clifton  <nickc@redhat.com>
4090         * ld.1: Replace occurances of -oformat with --oformat.
4092 2001-01-25  Jim Driftmyer <jdrift@stny.rr.com>
4094         * ldlang.c (lang_leave_overlay): Don't set lma_region when
4095         load_base is specified.
4097 2001-01-24  Hans-Peter Nilsson  <hp@axis.com>
4099         * emultempl/elf32.em: Correct spelling in comments and listed
4100         options.
4102 2001-01-23  Alan Modra  <alan@linuxcare.com.au>
4104         * ldlang.c (lang_leave_overlay): Only set lma_region from the
4105         default for the first section of a group of overlay sections.
4107 2001-01-22  Alan Modra  <alan@linuxcare.com.au>
4109         * Makefile.am (GENSCRIPTS): Pass exec_prefix.
4110         * Makefile.in: Regenerate.
4111         * genscripts.sh: Use exec_prefix parameter to specify tool lib.
4112         Check for null tool_dir.
4114 2001-01-16  Jim Wilson  <wilson@redhat.com>
4116         * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Add IA_64.unwind
4117         and IA_64.unwind.info.
4119 2001-01-16  H.J. Lu  <hjl@gnu.org>
4121         * ldlang.c (lang_check): Merge the private data only if the
4122         input file has contents.
4124 2001-01-14  Alan Modra  <alan@linuxcare.com.au>
4126         * emulparams/hppalinux.sh (OUTPUT_FORMAT): Set to elf32-hppa-linux.
4128         * emultempl/hppaelf.em (hppaelf_after_parse): New function,
4129         enabling search for libmilli.  On a relocatable link, make .text
4130         sections unique.
4131         (LDEMUL_AFTER_PARSE): Define.
4132         (hppaelf_finish): Correct spelling of relocatable in comments.
4134         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
4135         rummage through the script for sections on the unique list.
4136         Correct length of strncmp for ".note".
4137         (gld${EMULATION_NAME}_check_needed): Rearrange function.
4139         * ldlang.c (unique_section_list): New var.
4140         (unique_section_p): New function.
4141         (walk_wild_section): Don't match sections on unique_section_list.
4142         (lang_add_unique): New function.
4143         Correct spelling of relocatable in comments.
4145         * ldlang.h (struct unique_sections): Declare.
4146         (unique_section_list): Declare.
4147         (unique_section_p): Declare.
4148         (lang_add_unique): Declare.
4150         * lexsup.c (ld_options): Allow --unique to take an optional arg.
4151         (parse_args [OPTION_UNIQUE]): Call lang_add_unique.
4153         * ld.texinfo (--unique): Update.
4155 2001-01-13  Nick Clifton  <nickc@redhat.com>
4157         * lexsup.c (parse_args): Remove spurious white space.
4159 2001-01-12  Nick Clifton  <nickc@redhat.com>
4161         * lexsup.c (parse_args): Update copyright date.
4163 2001-01-12  Philip Blundell  <pb@futuretv.com>
4165         * configure.host: Set HOSTING_LIBS appropriately for ix86-cygwin.
4167 2001-01-10  Kazu Hirata  <kazu@hxi.com>
4169         * scripttempl/h8300.sc: Fix formatting.  Fix a comment typo.
4170         * scripttempl/h8300h.sc: Fix formatting.
4171         * scripttempl/h8300s.sc: Likewise.
4172         * scripttempl/h8500.sc: Likewise.
4173         * scripttempl/h8500b.sc: Likewise.
4174         * scripttempl/h8500c.sc: Likewise.
4175         * scripttempl/h8500m.sc: Likewise.
4176         * scripttempl/h8500s.sc: Likewise.
4178 2000-01-07  David O'Brien  <obrien@BSDi.com>
4180         * emultempl/elf32.em: Only perform Linux ld hints processing when
4181         targeting Linux.
4183 2001-01-07  Philip Blundell  <philb@gnu.org>
4185         * ld.texinfo (Bug Reporting): Update email address for reports.
4187 2000-12-31  Nick Clifton  <nickc@redhat.com>
4189         * lexsup.c (parse_args): Set opterr to 0 and detect unparsed long
4190         options by checking for a return value of '?' not -1.
4192 2000-12-28  Nick Clifton  <nickc@redhat.com>
4194         * lexsup.c (struct ld_option): Add new enum value:
4195         EXACTLY_TWO_DASHES.
4196         (ld_options[]): Change -omagic, -output and -oformat options
4197         to be EXACTLY_TWO_DASHES.
4198         (OUTPUT_COUNT): Use ARRAY_SIZE.
4199         (parse_args): Change parameter 'argc' to unsigned.
4200         Place EXACTLY_TWO_DASHES options into new really_longopts
4201         array.
4202         If getopt_long_only fails, try calling getopt_long using the
4203         really_longopts array.
4204         (help): Print a double dash for both EXACTLY_TWO_DASHES and
4205         TWO_DASHES options.
4207         * ldlex.h: Fix prototype of parse_args.
4209         * ld.texinfo: Document that long options starting with 'o'
4210         must be preceeded by two dashes.  Change example of a single
4211         dashed long option from -oformat to -trace-symbol.
4213 2000-12-26  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
4215         * emultempl/pe.em (OPTION_NO_DEFAULT_EXCLUDES): Define.
4216         (longopts[]): New --no-default-excludes option.
4217         (gld_${EMULATION_NAME}_list_options): Document.
4218         (gld_${EMULATION_NAME}_parse_args): Handle.
4220 2000-12-13  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
4222         * ldlang.c (new_stat): Revert the last beautification with "innocent"
4223         whitespace, it breaks the K&R C preprocessor.
4225 2000-12-11  DJ Delorie  <dj@redhat.com>
4227         * ld.texinfo: Add notes about --whole-archive and gcc.
4229 2000-11-18  Fred Fish  <fnf@be.com>
4231         * lexsup.c (OPTION_ALLOW_SHLIB_UNDEFINED): Define.
4232         (ld_options): Entry for --allow-shlib-undefined.
4233         (parse_args): Handle OPTION_ALLOW_SHLIB_UNDEFINED.
4234         * ldmain.c (main): Initialize link_info.allow_shlib_undefined
4235         to false.
4236         * ld.texinfo: Document new command line switch.
4238 2000-12-12  Geoffrey Keating  <geoffk@redhat.com>
4240         * emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS):
4241         .fixup is actually read/write.
4242         * emulparams/elf32lppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
4243         * emulparams/elf32ppcsim.sh (OTHER_READWRITE_SECTIONS): Likewise.
4244         * emulparams/elf32lppcsim.sh (OTHER_READWRITE_SECTIONS): Likewise.
4246 2000-12-11  Jan Hubicka  <jh@suse.cz>
4248         * NEWS: Add note about x86_64 architecture.
4250 2000-12-06  Mark Elbrecht  <snowball3@bigfoot.com>
4252         * scripttempl/i386go32.sc: Use PROVIDE with _etext, _edata, _end.
4253         Set DWARF2 sections to a VMA of zero.
4255 2000-12-01  Joel Sherrill  <joel@OARcorp.com>
4257         * configure.tgt (arm-*-rtems*, a29k-*rtems*, h8300-*-rtems*):
4258         New targets.
4259         (sparc*-*-rtemself*, sparc*-*-rtemsaout*): New targets.
4260         (sparc*-*-rtems*): Switched from a.out to ELF.
4262 2000-11-30  Jan Hubicka  <jh@suse.cz>
4264         * Makefile.am (ALL_EMULATIONS): Add eelf_x86_64.o
4265         (eelf_x86_64.c): New.
4266         * Makefile.in: Regenerate.
4267         * configure.tgt: Add support for x86_64-*-linux-gnu*.
4268         * emulparams/elf_x86_64.sh: New.
4270 2000-11-30  Hans-Peter Nilsson  <hp@axis.com>
4272         * emulparams/crislinux.sh (ENTRY): Change back to _start.
4273         (TEXT_START_SYMBOLS): Remove conditional setting of __start.
4275         * scripttempl/crisaout.sc: Change all RELOCATING not related to
4276         merging non-a.out sections into CONSTRUCTING.
4278 2000-11-28  Nick Clifton  <nickc@redhat.com>
4280         * ld.1 (COPYING): Mention that the GNU Free Documentation
4281         License is present in the sources, but not the output, and
4282         also available from the GNU website.
4283         (GNU Free Documentation License): Comment out this section.
4285 2000-11-28  David O'Brien  <obrien@dragon.nuxi.com>
4287         * emulparams/elf64alpha.sh (ENTRY): Remove leading underscore as ELF
4288         does not use them.
4290 2000-11-25  David O'Brien  <obrien@FreeBSD.org>
4292         * ld.1: Remove old date so it does not give the impression the manpage
4293         is way out of date.
4295 2000-11-24  Nick Clifton  <nickc@redhat.com>
4297         * configure.tgt (xscale-coff): Add target.
4298         (xscale-elf): Add target.
4300 2000-11-24  Fred Fish  <fnf@be.com>
4302         * ldmain.c (main): Remove redundant init of config.make_executable
4303         to true.
4305 2000-11-15  Richard Henderson  <rth@redhat.com>
4307         * emulparams/elf64alpha.sh (MAXPAGESIZE): Typo -- 64k, not 1M.
4309 2000-11-14  Kazu Hirata  <kazu@hxi.com>
4311         * scripttempl/h8300.sc: Fix formatting.
4312         * scripttempl/h8300h.sc: Likewise.
4313         * scripttempl/h8300s.sc: Likewise.
4315 2000-11-14  Denis Chertykov  <denisc@overta.ru>
4317         * scripttempl/elf32avr.sc: Fix bug in .eeprom segment.
4319 2000-11-09  Philip Blundell  <pb@futuretv.com>
4321         * emultempl/pe.em: Define ___start_SECNAME and ___stop_SECNAME
4322         around orphan sections whose names can be represented in C.
4324 2000-11-07  Jim Wilson  <wilson@redhat.com>
4326         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): New local
4327         hold_sdata.  If SEC_SMALL_DATA set, set place to hold_sdata.
4329 2000-11-06  Nick Clifton  <nickc@redhat.com>
4331         * ld.texinfo: Add GNU Free Documentation License.
4332         * ldint.texinfo: Add GNU Free Documentation License.
4333         * ld.1: Add GNU Free Documentation License.
4335 2000-11-05  Alan Modra  <alan@linuxcare.com.au>
4337         * ldlex.l (yy_create_string_buffer): Init yy_is_our_buffer,
4338         yy_is_interactive, yy_at_bol, and yy_fill_buffer.
4340         * Makefile.am (DISTCLEANFILES): Add stringify.sed.
4341         Move 2000-11-02 Makefile.in changes to this file.
4342         * Makefile.in: Regenerate.
4344 2000-11-03  Nick Clifton  <nickc@redhat.com>
4346         * scripttempl/h8300.sc: Use ${CONSTRUCTING...} to enclose
4347         constructors and destructors.
4348         * scripttempl/h8300h.sc: Ditto.
4349         * scripttempl/h8300s.sc: Ditto.
4350         * scripttempl/h8500.sc: Ditto.
4351         * scripttempl/h8500b.sc: Ditto.
4352         * scripttempl/h8500c.sc: Ditto.
4353         * scripttempl/h8500m.sc: Ditto.
4354         * scripttempl/h8500s.sc: Ditto.
4355         * scripttempl/v850.sc: Ditto.
4356         * scripttempl/w65.sc: Ditto.
4357         * scripttempl/z8000.sc: Ditto.
4359 2000-11-02  Per Lundberg  <plundis@chaosdev.org>
4361         * Makefile.in (e_i386_chaos.c): New rule.
4362         (ALL_EMULATIONS): Added e_i386_chaos.o.
4363         * emulparams/elf_i386_chaos.sh: New file.
4364         * configure.tgt: Recognise i[3456]86-chaosdev-storm-chaos.
4366 2000-10-20  Jakub Jelinek  <jakub@redhat.com>
4368         * emulparams/elf64_sparc.sh (TEXT_START_ADDR,
4369         NONPAGED_TEXT_START_ADDR): Set to 4GB for Solaris targets.
4370         Fix sed invocation, so that it coped with '/' in Solaris 64bit
4371         library path suffix.
4372         Based on patch by Andrew Macleod <amacleod@cygnus.com>.
4374 2000-10-18  Hans-Peter Nilsson  <hp@axis.com>
4376         * scripttempl/crisaout.sc (.text, .data): Pad, with ALIGN (32),
4377         for consecutive sections.
4379 2000-10-17  Chandrakala Chavva  <cchavva@redhat.com>
4381         * lexsup.c: New option OPTION_TARGET_HELP. Prints all target specific
4382         options.
4383         * ld.texinfo: Added notes about this new option.
4385 2000-10-16  Nick Clifton  <nickc@redhat.com>
4387         * emultempl/pe.em (_after_open): Add tests of return values from
4388         bfd functions.  Emit appropriate error messages if necessary.
4390 2000-10-13  Nick Clifton  <nickc@redhat.com>
4392         * emultempl/pe.em (_after_open): Delete 'is2' and 'nsyms'
4393         local variables - they are not used, but leave in the call to
4394         bfd_canonicalize_symtab.
4395         (_open_dynamic_archive): Add #ifdef DLL_SUPPORT around use of
4396         pe_dll_search_prefix.
4398 2000-10-12  Charles Wilson  <cwilson@ece.gatech.edu>
4400         * emultempl/pe.em (pe_dll_search_prefix): New variable,
4401         (longopts): New --dll-search-prefix option.
4402         (gld_${EMULATION_NAME}_list_options): Document.
4403         (gld_${EMULATION_NAME}_parse_args): Handle.
4404         (gld_${EMULATION_NAME}_open_dynamic_archive): When linking
4405         dynamically, search for a dll named '<prefix><basename>.dll'
4406         in preference to 'lib<basename>.dll' if --dll-search-prefix
4407         is specified.
4409 2000-10-12  Alan Modra  <alan@linuxcare.com.au>
4411         * ldlang.c (section_already_linked): Set kept_section instead of
4412         sec->comdat->sec.
4414 2000-10-10  Kazu Hirata  <kazu@hxi.com>
4416         * deffile.h: Fix formatting.
4417         * lexsup.c: Likewise.
4418         * mri.c: Likewise.
4420 2000-10-09  Paul Sokolovsky  <Paul.Sokolovsky@technologist.com>
4422         * pe-dll.c (make_one): Do not generate code thunk for DATA
4423         exports.
4424         (process_def_file): deduce DATA flag for auto-export sumbols.
4426 2000-10-09  Kazu Hirata  <kazu@hxi.com>
4428         * ld.h: Fix formatting.
4429         * ldcref.c: Likewise.
4430         * ldctor.h: Likewise.
4431         * ldemul.c: Likewise.
4432         * ldemul.h: Likewise.
4433         * ldexp.c: Likewise.
4434         * ldexp.h: Likewise.
4435         * ldfile.c: Likewise.
4436         * ldfile.h: Likewise.
4437         * ldlang.c: Likewise.
4438         * ldlang.h: Likewise.
4439         * ldmain.c: Likewise.
4440         * pe-dll.c: Likewise.
4442         * pe-dll.c: Revert some formatting fixes.
4444 2000-10-08  Kazu Hirata  <kazu@hxi.com>
4446         * pe-dll.c: Fix formatting.
4448 2000-10-05  Kazu Hirata  <kazu@hxi.com>
4450         * ldlang.c: Fix formatting.
4452 2000-10-03  DJ Delorie  <dj@redhat.com>
4454         * pe-dll.c (fill_edata): initialize entire block
4455         (make_one): fill in correct section.
4457 2000-10-03  Kazu Hirata  <kazu@hxi.com>
4459         * ldexp.c: Fix formatting.
4461 2000-10-02  DJ Delorie  <dj@redhat.com>
4463         * emultempl/pe.em (gld_*_after_open): detect case where there two
4464         import libraries for same dll; rename one to ensure proper link
4465         order.
4467         * pe-dll.c (process_def_file): compare ordinals to -1, not 0; fix
4468         typo
4469         (generate_edata): fix typo
4471 2000-09-29  Hans-Peter Nilsson  <hp@axis.com>
4473         * scripttempl/crisaout.sc (ENTRY): Now __start.
4474         (.text): Add default setting for __start.
4475         Remove CONSTRUCTORS handling.
4476         (/DISCARD/): Add .gnu.warning.*.
4477         * emulparams/crislinux.sh (ENTRY): Now __start.
4478         (TEXT_START_SYMBOLS): New; provide __Stext and __start default.
4479         * emulparams/criself.sh (OUTPUT_FORMAT): Now elf32-us-cris.
4480         (ENTRY): Now __start.
4481         (INITIAL_READONLY_SECTIONS): Add KEEP for .startup.
4482         (EXECUTABLE_SYMBOLS): Add default setting for __start.
4484 2000-09-29  Kazu Hirata  <kazu@hxi.com>
4486         * deffile.h: Fix formatting.
4487         * ld.h: Likewise.
4488         * ldcref.c: Likewise.
4489         * ldctor.c: Likewise.
4490         * ldctor.h: Likewise.
4491         * ldemul.c: Likewise.
4492         * ldemul.h: Likewise.
4493         * ldexp.c: Likewise.
4494         * ldexp.h: Likewise.
4495         * ldfile.c: Likewise.
4496         * ldfile.h: Likewise.
4497         * ldlang.c: Likewise.
4498         * ldlang.h: Likewise.
4499         * lexsup.c: Likewise.
4500         * mri.c: Likewise.
4501         * pe-dll.c: Likewise.
4503 2000-09-28  Paul Sokolovsky  <Paul.Sokolovsky@technologist.com>
4505         * pe-dll.c (process_def_file): Uninitialized data wasn't
4506         exported with --export-all-symbols switch.
4508 2000-09-28  DJ Delorie  <dj@redhat.com>
4510         * pe-dll.c (fill_edata): rearrange the data so that ordinals and
4511         noname work properly.
4513 2000-09-28  Alan Modra  <alan@linuxcare.com.au>
4515         * ld.texinfo (HPPA ELF32): New section.
4517         * emultempl/hppaelf.em (group_size): New.
4518         (hppaelf_finish): Pass group_size to elf32_hppa_size_stubs.
4519         (PARSE_AND_LIST_PROLOGUE): Add OPTION_STUBGROUP_SIZE.
4520         (PARSE_AND_LIST_LONGOPTS): Add --stub-group-size.  Duplicate
4521         options to prevent abbreviations matching.
4522         (PARSE_AND_LIST_OPTIONS): Describe the above.  Reformat.
4523         (PARSE_AND_LIST_ARGS_CASES): Handle it.
4525 2000-09-21  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
4527         * emultempl/m68kelf.em: Conditionalise the embedded relocs feature
4528         on the m68*-*-elf target.  Make it support COFF input objects.
4530 2000-09-21  Kazu Hirata  <kazu@hxi.com>
4532         * ldmain.c: Fix formatting.
4533         * ldmisc.c: Likewise.
4534         * ldver.c: Likewise.
4535         * ldwrite.c: Likewise.
4537 2000-09-21  Alan Modra  <alan@linuxcare.com.au>
4539         * ldwrite.c (clone_section): Silence gcc warnings.
4541 2000-09-20  Alan Modra  <alan@linuxcare.com.au>
4543         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Handle
4544         out of memory failure.
4546         * ldwrite.c (ldwrite): Remove unnecessary einfo arg.
4547         (clone_section): Handle out of memory failures.  Rename var to
4548         avoid c++ reserved word.
4550 2000-09-18  Alan Modra  <alan@linuxcare.com.au>
4552         * emultempl/hppaelf.em (hppaelf_add_stub_section): Rename
4553         stub_name param to stub_sec_name.
4554         (hppaelf_finish): Modify call to elf32_hppa_size_stubs.
4556 2000-09-10  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
4558         * emultempl/m68kelf.em: New file.
4559         * emulparams/m68kelf.sh (EXTRA_EM_FILE): Use it.
4560         * Makefile.am (em68kelf.c): Add dependency on m68kelf.em.
4561         * Makefile.in: Regenerate.
4563 2000-09-15  Alan Modra  <alan@linuxcare.com.au>
4565         * emulparams/hppalinux.sh (DATA_START_SYMBOLS): Provide $global$
4566         only as needed.
4568 2000-09-13  Nick Clifton  <nickc@redhat.com>
4570         * ldmain.c (multiple_definition): Disable relaxation if
4571         multiple symbol definitions are encountered - otherwise the
4572         linker could abort with an assertion failure.
4574 2000-09-10  Nick Clifton  <nickc@redhat.com>
4576         * mri.c: Fix formatting.
4578 2000-09-07  H.J. Lu  <hjl@gnu.org>
4580         * configure.in (AC_ISC_POSIX): Put after AC_CANONICAL_SYSTEM.
4581         * configure: Rebuild.
4583 2000-09-07  H.J. Lu  <hjl@gnu.org>
4585         * Makefile.am (lexsup.o): Also depend on $(INCDIR)/demangle.h.
4586         * Makefile.in: Rebuild.
4588 2000-09-07  Alan Modra  <alan@linuxcare.com.au>
4590         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Fix
4591         broken list handling.  Create __start_SECNAME and __stop_SECNAME
4592         when no place-holder.  Add some comments.  Test both SEC_CODE and
4593         SEC_READONLY for hold_text to prevent .rodata orphan poisoning.
4594         Handle case where no output section statement created.
4596 2000-09-07  Niibe Yutaka  <gniibe@m17n.org>, Kaz Kojima  <kkojima@rr.iij4u.or.jp>, Alexandre Oliva  <aoliva@redhat.com>
4598         * configure.tgt (sh-*-linux*): Added.
4599         * Makefile.am: Added eshelf_linux and eshlelf_linux.
4600         * Makefile.in: Rebuilt.
4601         * emulparams/shelf_linux.sh: New file.
4602         * emulparams/shlelf_linux.sh: New file.
4604 2000-09-06  Alan Modra  <alan@linuxcare.com.au>
4606         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
4607         try shuffling sections when the orphan happens to be the place
4608         holder.  Keep count of unique section names generated so we speed
4609         the search for a new name.
4611 2000-09-06  Alexandre Oliva  <aoliva@redhat.com>
4613         * configure: Rebuilt with new libtool.m4.
4615 2000-09-05  Nick Clifton  <nickc@redhat.com>
4617         * Makefile.in: Regenerate.
4618         * aclocal.m4: Regenerate.
4619         * configure: Regenerate.
4620         * config.in: Regenerate.
4621         * po/ld.pot: Regenerate.
4623         * ldint.texinfo: Remove CVS revision marker - it foils local
4624         comparisons.
4626         * emultempl/ticoff.em: Remove extraneous comma.
4628 2000-09-05  Alan Modra  <alan@linuxcare.com.au>
4630         * emultempl/hppaelf.em (hppaelf_add_stub_section): Add SEC_RELOC
4631         to stub section flags.
4632         (hppa_for_each_input_file_wrapper): New.
4633         (hppa_lang_for_each_input_file): New.
4634         (lang_for_each_input_file): Define to call above.
4635         (multi_subspace): New.
4636         (hppaelf_finish): Pass multi_subspace to elf32_hppa_size_stubs.
4637         (PARSE_AND_LIST_PROLOGUE): Define.
4638         (PARSE_AND_LIST_LONGOPTS): Define.
4639         (PARSE_AND_LIST_OPTIONS): Define.
4640         (PARSE_AND_LIST_ARGS_CASES): Define.
4641         (hppaelf_finish): Call elf32_hppa_set_gp.
4642         (hppaelf_set_output_arch): Remove.
4643         (LDEMUL_SET_OUTPUT_ARCH): Remove.
4645         * emulparams/hppalinux.sh (ELFSIZE): Define.
4646         (MACHINE): Define.
4647         (OTHER_READONLY_SECTIONS): Define.
4648         (DATA_PLT): Define.
4649         (GENERATE_SHLIB_SCRIPT): Define.
4651         * ldlang.c: Add missing prototypes, and tidy others.  Change CONST
4652         to const throughout.  Change `void *' to `PTR' throughout.
4653         (lang_memory_default): Function is local to file, add `static'.
4655         * Makefile.am (ehppaelf.c): Depend on emultempl/elf32.em.
4656         (ehppalinux.c): Likewise.
4657         (earmelf.c): Likewise.
4658         (earmelf_linux.c): Likewise.
4659         (earmelf_linux26.c): Likewise.
4660         * Makefile.in: Regenerate.
4662         * ld.h (ld_config_type): Add unique_orphan_sections.
4663         * lexsup.c (OPTION_UNIQUE): Define.
4664         (ld_options): Add "--unique".
4665         (parse_args): Handle it.
4666         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
4667         search for an existing output section if unique_orphan_sections is
4668         set.  Make use of bfd_get_unique_section_name rather than
4669         duplicating code here.
4670         * ld.texinfo: Describe --unique.
4672         * lexsup.c (ld_options): Make split-by-reloc arg optional. Add
4673         optional arg to split-by-file.
4674         (parse_args): Handle them.
4675         * ld.texinfo: Update description of these options.
4676         * ldwrite.c (clone_section): Pass in the section name.  Replace
4677         local code with bfd_get_unique_section_name.
4678         (split_sections): Tidy code and comments.  Use a list traversal
4679         more appropriate to the list construction.  Handle cooked section
4680         sizes.  Split when split_by_reloc reached rather than exceeded.
4681         Track section size and split when split_by_file reached.  Fix
4682         link_order_tail (even though it's not used).
4683         (ldwrite): Modify condition for calling split_sections to suit
4684         changed split_by_reloc and split_by_file.
4685         * ldmain.c (main): Init config.split_by_reloc and
4686         config.split_by_file to -1.
4687         * ld.h (ld_config_type): Change split_by_reloc to unsigned.
4688         Change split_by_file to bfd_size_type.
4690 2000-09-02  Nick Clifton  <nickc@redhat.com>
4692         * configure.in: Increase version number to 2.10.91.
4693         * NEWS: Mention new ability to support removal of duplicate DWARF2
4694         debug information.
4695         * configure: Regenerate.
4696         * aclocal.m4: Regenerate.
4697         * config.in: Regenerate.
4699 2000-09-02  Daniel Berlin <dberlin@redhat.com>
4701         * scripttempl/elf.sc: Add .gnu.linkonce.wi.* to .debug_info
4702         sections.
4703         * scripttempl/elf32avr.sc: Ditto.
4704         * scripttempl/elfd10v.sc: Ditto.
4705         * scripttempl/elfd30v.sc: Ditto.
4706         * scripttempl/elfi370.sc: Ditto.
4707         * scripttempl/elfm68hc11.sc: Ditto.
4708         * scripttempl/elfm68hc12.sc: Ditto.
4709         * scripttempl/elfi386beos.sc: Ditto.
4710         * scripttempl/v850.sc: Ditto.
4712 2000-08-31  Alexandre Oliva  <aoliva@redhat.com>
4714         * acinclude.m4: Include libtool and gettext macros from the
4715         top level.
4716         * aclocal.m4, configure: Rebuilt.
4718 2000-08-25  Nick Clifton  <nickc@redhat.com>
4720         * ldlang.c (open_output): When choosing the target for a
4721         particular endianness, do nothing if the target is not
4722         supported.
4724 2000-08-25  H.J. Lu  <hjl@gnu.org>
4726         * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Don't
4727         check -rpath nor LD_RUN_PATH for cross link.
4728         * ld.texinfo: Document the change.
4730 2000-08-24  Hans-Peter Nilsson  <hp@axis.com>
4732         * NEWS: Mention support for CRIS.
4734 2000-08-23  H.J. Lu  <hjl@gnu.org>
4736         * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Get
4737         the current runpath list from bfd_elf_get_runpath_list ()
4738         before search.
4740 2000-08-22  H.J. Lu  <hjl@gnu.org>
4742         * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Search
4743         the DT_RPATH/DT_RUNPATH entries for DT_NEEDED after
4744         LD_LIBRARY_PATH for native linker. Display the needed DSO if
4745         trace_file_tries is non-zero.
4746         (gld${EMULATION_NAME}_try_needed): Report the needed DSO found
4747         if trace_file_tries is non-zero.
4749         * ld.texinfo: Document the usage of DT_RPATH/DT_RUNPATH.
4750         * NEWS: Mention it.
4752 2000-08-14  Jason Eckhardt  <jle@cygnus.com>
4754         * NEWS: Mention i860 support.
4756 2000-08-14  Andreas Schwab  <schwab@suse.de>
4758         * scripttempl/elf.sc: Fix last change to use correct comment
4759         syntax.
4761 2000-08-10  Geoff Keating  <geoffk@cygnus.com>
4763         * scripttempl/elf.sc: Add a comment giving the correspondence
4764         between sections, per-datum sections, and linkonce sections.  Make
4765         the comment true even for .bss, .sdata, .sdata2, .sbss, and
4766         .sbss2.
4768 2000-08-10  Jason Eckhardt  <jle@cygnus.com>
4770         * emulparams/elf32_i860.sh: New file.
4771         * configure.tgt: Recognize new target i860-stardent-{sysv4*|elf*}.
4772         * Makefile.am (ALL_EMULATIONS): Add eelf32_i860.o.
4773         (eelf32_i860.c): New rule.
4774         * Makefile.in: Regenerate.
4776 2000-08-10  Nick Clifton  <nickc@cygnus.com>
4778         * emulparams/mipspe.sh (ENTRY): Add definition.
4780 2000-08-08  Peter Jeremy  <peter.jeremy@alcatel.com.au>
4782         * emultempl/elf32.em (_after_close): Refer to -rpath not --rpath
4783         in error message.
4785 2000-08-08  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
4787         * scripttempl/elfm68hc11.sc: Define __bss_size symbol to indicate
4788         the final size of .bss section.
4789         * scripttempl/elfm68hc12.sc: Likewise.
4791 2000-08-04  Alan Modra  <alan@linuxcare.com.au>
4793         * emultempl/elf32.em (gld_${EMULATION_NAME}_parse_args): Rename to
4794         gld${EMULATION_NAME}_parse_args for consistency.  Combine
4795         lastoptind and prevoptind vars, and keep track of last optind.
4796         (gld_${EMULATION_NAME}_list_options): Rename to
4797         gld${EMULATION_NAME}_list_options.
4799 2000-08-03  Rodney Brown  <RodneyBrown@pmsc.com>
4801         * configure.tgt: Select targ_emul=elf_i386 for Unixware 7
4802         (i586-sco-sysv5uw7.1.0).
4804 2000-07-27  H.J. Lu  <hjl@gnu.org>
4806         * emulparams/elf64alpha.sh (PARSE_AND_LIST_ARGS): Removed.
4807         (PARSE_AND_LIST_PROLOGUE): New.
4808         (PARSE_AND_LIST_LONGOPTS): Likewise.
4809         (PARSE_AND_LIST_OPTIONS): Likewise.
4810         (PARSE_AND_LIST_ARGS_CASES): Likewise.
4811         (PARSE_AND_LIST_EPILOGUE): Likewise.
4813 2000-07-28  Alan Modra  <alan@linuxcare.com.au>
4815         * emultempl/armelf.em: Elide functions common to elf32.em,
4816         ie. most of the file.
4817         (arm_elf_after_open): New.  Do arm specific things then call
4818         gld${EMULATION_NAME}_after_open.
4819         (arm_elf_before_allocation): New.  Call
4820         gld${EMULATION_NAME}_before_allocation then do arm specifics.
4821         (PARSE_AND_LIST_PROLOGUE): Define.
4822         (PARSE_AND_LIST_SHORTOPTS): Define.
4823         (PARSE_AND_LIST_LONGOPTS): Define.
4824         (PARSE_AND_LIST_OPTIONS): Define.
4825         (PARSE_AND_LIST_ARGS_CASES): Define.
4826         (LDEMUL_AFTER_OPEN): Define.
4827         (LDEMUL_BEFORE_ALLOCATION): Define.
4828         (LDEMUL_BEFORE_PARSE): Define.
4829         (LDEMUL_FINISH): Define.
4831         * emultempl/hppaelf.em: Similarly zap most of this file.
4832         (hppaelf_add_stub_section): Prototype.
4833         (hppaelf_layaout_sections_again): Prototype.
4834         (hook_in_stub): Prototype.
4835         (LDEMUL_SET_OUTPUT_ARCH): Define.
4836         (LDEMUL_FINISH): Define.
4837         (LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS): Define.
4839         * emulparams/armelf.sh (TEMPLATE_NAME): Use elf32.
4840         (EXTRA_EM_FILE): New.
4841         * emulparams/armelf_linux.sh: Likewise.
4842         * emulparams/armelf_linux26.sh: Likewise.
4843         * emulparams/hppalinux.sh: Likewise.
4844         * emulparams/hppaelf.sh: Likewise.
4845         (NOP): Define.
4847         * emultempl/elf32.em: Fix formatting.
4848         (EXTRA_EM_FILE): Source it.
4849         (LDEMUL_BEFORE_PARSE, LDEMUL_SYSLIB, LDEMUL_HLL,
4850         LDEMUL_AFTER_PARSE, LDEMUL_AFTER_OPEN, LDEMUL_AFTER_ALLOCATION,
4851         LDEMUL_SET_OUTPUT_ARCH, LDEMUL_CHOOSE_TARGET,
4852         LDEMUL_BEFORE_ALLOCATION, LDEMUL_GET_SCRIPT, LDEMUL_FINISH,
4853         LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS,
4854         LDEMUL_OPEN_DYNAMIC_ARCHIVE, LDEMUL_PLACE_ORPHAN,
4855         LDEMUL_SET_SYMBOLS, LDEMUL_PARSE_ARGS, LDEMUL_UNRECOGNIZED_FILE,
4856         LDEMUL_LIST_OPTIONS, LDEMUL_RECOGNIZED_FILE,
4857         LDEMUL_FIND_POTENTIAL_LIBRARIES): New shell vars.  Add code to
4858         allow functions in this file to be overridden.
4859         (PARSE_AND_LIST_SHORTOPTS): Handle it.
4861         * emultempl/m68kcoff.em: Include ldfile.h before ldemul.h.
4863         * emultempl/elf32.em: Reorganize file.
4865 2000-07-27  Ivan Kokshaysky  <ink@jurassic.park.msu.ru>
4867         * emulparams/elf64alpha.sh: Implement "-taso" emulation
4868         specific option to fit 64-bit executable in the lower
4869         31-bit address range.  This is done by changing start
4870         address of .interp (the very first section of executable)
4871         and then setting EF_ALPHA_32BIT elf header flag.
4873 2000-07-21  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
4875         * emultempl/m68kcoff.em: New file.
4876         * emulparams/m68kcoff.sh (TEMPLATE_NAME): Use m68kcoff template.
4877         * Makefile.am (em68kcoff.c): Depend on m68kcoff.em rather than
4878         generic.em.
4879         * Makefile.in: Regenerate.
4881 2000-07-20  H.J. Lu  <hjl@gnu.org>
4883         * emultempl/elf32.em (longopts): Duplicate "disable-new-dtags"
4884         and "disable-new-dtags" to stop getopt from treating -d/-e as
4885         abbreviations for these options.
4887 2000-07-20  H.J. Lu  <hjl@gnu.org>
4889         * ld.texinfo: Add documentation for --disable-new-dtags and
4890         --enable-new-dtags.
4892         * ldmain.c (main): Initialize link_info.new_dtags to false.
4894         * emultempl/elf32.em (gld_${EMULATION_NAME}_parse_args): Add
4895         --disable-new-dtags and --enable-new-dtags.
4896         (gld_${EMULATION_NAME}_list_options): Likewise.
4898 2000-07-05  Kenneth Block  <krblock@computer.org>
4900         * lexsup.c: Add optional style to demangle switch
4901         * ld.texinfo: Document optional style to demangle switch.
4903 2000-07-20  Hans-Peter Nilsson  <hp@axis.com>
4905         * Makefile.am (ALL_EMULATIONS): Add ecrisaout.o, ecriself.o,
4906         ecrislinux.o.
4907         (ecrisaout.c, ecriself.c, ecrislinux.c): New rules.
4908         Regenerate dependencies.
4909         * Makefile.in: Rebuild.
4910         * configure.tgt (cris-*-*): New target.
4911         * emulparams/crisaout.sh, emulparams/criself.sh,
4912         emulparams/crislinux.sh, scripttempl/crisaout.sc: New files.
4913         * po/POTFILES.in, po/ld.pot: Regenerate.
4915 2000-07-20  H.J. Lu  <hjl@gnu.org>
4917         * emultempl/elf32.em (gld_${EMULATION_NAME}_list_options):
4918         Print out ignored -z options.
4920 2000-07-19  H.J. Lu  <hjl@gnu.org>
4922         * emulparams/elf32mcore.sh (PARSE_AND_LIST_ARGS): Removed.
4923         (PARSE_AND_LIST_PROLOGUE): New.
4924         (PARSE_AND_LIST_LONGOPTS): Likewise.
4925         (PARSE_AND_LIST_OPTIONS): Likewise.
4926         (PARSE_AND_LIST_ARGS_CASES): Likewise.
4928         * ldmain.c (main): Clear link_info.flags and link_info.flags_1.
4930         * lexsup.c (ld_options): Comment out 'z'.
4931         (parse_args): Likewise.
4933         * emultempl/elf32.em: Include "elf/common.h".
4934         (gld_${EMULATION_NAME}_parse_args): Defined. Handle some -z
4935         options.
4936         (gld_${EMULATION_NAME}_list_options): Likewise.
4938         * ld.texinfo: Add documentation for the recognized -z options.
4940 2000-07-19  H.J. Lu  <hjl@gnu.org>
4942         * emultempl/elf32.em (gld${EMULATION_NAME}_try_needed): Call
4943         bfd_elf_set_dt_needed_soname ().
4945 2000-07-18  DJ Delorie  <dj@cygnus.com>
4947         * pe-dll.c (pe_dll_id_target): check object target name also
4949 2000-07-18  Hans-Peter Nilsson  <hp@axis.com>
4951         * scripttempl/elf.sc (.init): Only do ${INIT_START} and
4952         ${INIT_END} if relocating.
4953         (.fini): Likewise ${FINI_START} and ${FINI_END}.
4955 2000-07-16  Charles Wilson  <cwilson@ece.gatech.edu>
4957         * emultempl/pe.em (gld_*_open_dynamic_archive): New search
4958         order for dynamic library '-lfoo' on pei386: libfoo.dll.a,
4959         foo.dll.a, libfoo.a, libfoo.dll, foo.dll. This fixes compatibility
4960         errors introduced by the old dynamic lib search order.
4962 2000-07-17  DJ Delorie  <dj@cygnus.com>
4964         * pe-dll.c (process_def_file): auto-export data items also
4965         (pe_process_import_defs): also see if _imp_ form needed
4967 2000-07-12  Charles Wilson  <cwilson@ece.gatech.edu>
4969         * pe-dll.c (make_one): fix a typo in the __imp_ name decoration
4970         for dll import libraries
4972 2000-07-12  Mark Elbrecht  <snowball3@bigfoot.com>
4974         * scripttempl/i386go32.sc: Support the g++ attribute init_priority in
4975         gcc 2.95.2 and later.
4977 2000-07-11  Kazu Hirata  <kazu@hxi.com>
4979         * ldfile.c (ldfile_try_open_bfd): Output '\n' after an error
4980         message.
4982 2000-07-10  Alan Modra  <alan@linuxcare.com.au>
4984         * ldemul.h (struct lang_input_statement_struct): Remove forward
4985         declaration.
4986         (struct search_dirs): Likewise.
4987         * ldfile.h (struct lang_input_statement_struct): Likewise.
4988         Protect file from multiple inclusion.
4989         * ldlang.h (LANG_FOR_EACH_INPUT_STATEMENT): Move file_chain
4990         declaration from macro to file scope.
4992         * ldemul.c: ldexp.h,ldlang.h,ldfile.h,ldemul.h go in this order.
4993         * ldgram.y: Likewise here.
4994         * ldlang.c: And here.
4995         * ldmain.c: And here.
4996         * mpw-elfmips.c: And here.
4997         * mpw-eppcmac.c: And here.
4998         * emultempl/aix.em: And here.
4999         * emultempl/armcoff.em: And here.
5000         * emultempl/armelf.em: And here.
5001         * emultempl/armelf_oabi.em: And here.
5002         * emultempl/beos.em: And here.
5003         * emultempl/elf32.em: And here.
5004         * emultempl/hppaelf.em: And here.
5005         * emultempl/linux.em: And here.
5006         * emultempl/lnk960.em: And here.
5007         * emultempl/pe.em: And here.
5008         * emultempl/sunos.em: And here.
5009         * mpw-esh.c: And here. Include ldexp.h and ldlang.h too.
5010         * mpw-idtmips.c: Ditto.
5011         * emultempl/generic.em: Ditto.
5012         * emultempl/gld960.em: Ditto.
5013         * emultempl/gld960c.em: Ditto.
5014         * emultempl/mipsecoff.em: Ditto.
5015         * emultempl/ticoff.em: Ditto.
5016         * emultempl/vanilla.em: Ditto.
5018         * pe-dll.c: Include ldfile.h
5019         * ldver.c: Include ldexp.h, ldlang.h, ldfile.h
5021         * mpw-elfmips.c: (gldelf32ebmip_before_allocation): Add missing
5022         arguments to bfd_elf32_size_dynamic_sections call.
5023         (gldelf32ebmip_place_orphan): Add missing arguments to
5024         lang_leave_output_section_statement call.
5026 2000-07-10  H.J. Lu  <hjl@gnu.org>
5028         * emultempl/pe.em (pe_enable_stdcall_fixup): Protect with
5029         DLL_SUPPORT.
5030         (strhash): Likewise.
5031         (compute_dll_image_base): Likewise.
5032         (pe_undef_found_sym): Likewise.
5033         (pe_undef_cdecl_match): Likewise.
5034         (gld_${EMULATION_NAME}_open_dynamic_archive): Mark the
5035         argument "arch" with ATTRIBUTE_UNUSED.
5037 2000-07-10  Alan Modra  <alan@linuxcare.com.au>
5039         * configure.tgt: Remove extraneous hppa*-*-linux-gnu*.
5041         From  Ryan Bradetich  <rbradetich@uswest.net>
5042         * ldwrite.c (SSIZE): Remove to cure macro redefinition warning.
5044 2000-07-09  Alan Modra  <alan@linuxcare.com.au>
5046         Changes to create multiple linker stubs, positioned immediately
5047         before the section where they are required.
5048         * emultempl/hppaelf.em: Include elf32-hppa.h.
5049         (stub_sec, file_chain): Delete.
5050         (hppaelf_create_output_section_statements): Don't make a stub
5051         section here.
5052         (hook_stub_info): New struct.
5053         (hook_in_stub): New function.
5054         (hppaelf_add_stub_section): New function.
5055         (hppaelf_finish): Do nothing for relocateable links.  Modify the
5056         call to elf32_hppa_size_stubs.  Move code for updating section
5057         layout from here...
5058         (hppaelf_layaout_sections_again): ..to here, a new function.
5060         * emultempl/hppaelf.em (hppaelf_delete_padding_statements): Fix
5061         broken list handling.  Pass in a pointer to the list.
5062         (hppaelf_finish): Update call to hppaelf_delete_padding_statements
5063         for above changes.
5064         (hppaelf_before_parse): Prototype.
5065         (hppaelf_set_output_arch): Prototype.
5066         (hppaelf_create_output_section_statements): Prototype.
5067         (hppaelf_delete_padding_statements): Prototype.
5068         (hppaelf_finish): Prototype.
5070         Merge from elf32.em
5071         * emultempl/hppaelf.em: Include ctype.h.
5072         (struct orphan_save): New.
5073         (gld${EMULATION_NAME}_place_orphan): New.
5074         (output_rel_find): New.
5075         (hppaelf_get_script): Update from elf32.em.
5076         (ld_hppaelf_emulation): Rename to ld_${EMULATION_NAME}_emulation.
5077         Change emulation_name field to "${EMULATION_NAME}".  Add
5078         gld${EMULATION_NAME}_place_orphan.
5080         * Makefile.am (ALL_EMULATIONS): Reinstate ehppaelf.o,  add
5081         ehppalinux.o, sort it.  Regenerate dependencies.
5082         (ehppalinux.c): Depend on hppaelf.em
5083         * Makefile.in: Regenerate.
5085         * configure.tgt: targ_emul=hppalinux for hppa*linux
5087         * emulparams/hppalinux.sh: New.
5088         * emulparams/hppaelf.sh (TARGET_PAGE_SIZE): Write in hex.
5090 2000-07-08  Alan Modra  <alan@linuxcare.com.au>
5092         * lexsup.c (parse_args): Copy section name.
5094 2000-07-07  Charles Wilson  <cwilson@ece.gatech.edu>
5096         * emultempl/pe.em: institute the following search order for
5097         dynamic libraries on pei386: libfoo.dll.a, foo.dll.a (import
5098         libs), libfoo.dll, foo.dll (link direct to dll).  Fall back to
5099         static lib (libfoo.a) if none of the above are found.
5101 2000-07-07  Mumit Khan  <khan@xraylith.wisc.edu>
5103         * emultempl/pe.em (pe_enable_auto_image_base): New variable.
5104         (longopts): New --{enable,disable}-auto-image-base options.
5105         (gld_${EMULATION_NAME}_list_options): Document.
5106         (gld_${EMULATION_NAME}_parse): Handle.
5107         (strhash): New static function.
5108         (compute_dll_image_base): New static function.
5109         (gld_${EMULATION_NAME}_set_symbols): Use.
5111 2000-07-05  DJ Delorie  <dj@redhat.com>
5113         * MAINTAINERS: new
5115 2000-07-01  Koundinya K  <kk@ddeorg.soft.net>
5117         * configure.tgt: Add traditional mips (mips*-*-sysv4*) target.
5118         * emulparams/elf32btsmip.sh: New file.
5119         * Makefile.am: Add traditional mips target.
5120         * Makefile.in: Rebuild.
5122 2000-07-01  H.J. Lu  <hjl@gnu.org>
5124         * Makefile.am (EXTRA_ld_new_SOURCES): Set to deffilep.y for
5125         automake to use YLWRAP.
5126         * Makefile.in: Rebuild.
5128 2000-07-01  Alan Modra  <alan@linuxcare.com.au>
5130         * Makefile.am (DEP): Fix 2000-06-22.  grep after running dep.sed
5131         (CLEANFILES): Add DEPA.
5132         * Makefile.in: Regenerate.
5134 2000-06-30  Timothy Wall  <twall@ppc>
5136         * scripttempl/tic54xcoff.sc: PAGE N is not implemented, so encode
5137         the page in the upper octet of the address.
5139 2000-06-26  Marek Michalkiewicz  <marekm@linux.org.pl>
5141         * emulparams/avrmega161.sh (ARCH): Change to avr:5.
5143 2000-06-24  Alan Modra  <alan@linuxcare.com.au>
5145         * NEWS: arm-elf does --gc-sections too.
5147 2000-06-22  Alan Modra  <alan@linuxcare.com.au>
5149         * Makefile.am (DEP): grep for leading `/' in DEP1, and fail if we
5150         find one.
5151         * Makefile.in: Regenerate.
5153 2000-06-21  H.J. Lu  <hjl@gnu.org>
5155         * Makefile.am: Rebuild dependency.
5156         * Makefile.in: Rebuild.
5158 2000-06-20  H.J. Lu  <hjl@gnu.org>
5160         * Makefile.am: Rebuild dependency.
5161         * Makefile.in: Rebuild.
5163 2000-06-20  Timothy Wall  <twall@cygnus.com>
5165         * scripttempl/tic54xcoff.sc: New.
5166         * ldlang.c (wild_doit): Propagate SEC_BLOCK flag.
5167         * gen-doc.texi: Add flag for TI COFF.
5168         * ld.texinfo: Add documentation for TI COFF handling switches.
5169         * emultempl/ticoff.em: New. TI COFF handling.
5170         * configure.tgt: Add tic54x target.
5171         * Makefile.am: Add tic54x target.
5172         * Makefile.in: Ditto.
5174 2000-06-20  Alan Modra  <alan@linuxcare.com.au>
5176         * ldmain.c (set_scripts_dir): Correct pointer comparison when
5177         checking for backslashes.
5179 2000-06-19  Alan Modra  <alan@linuxcare.com.au>
5181         * NEWS: Move entries not in 2.10 above "Changes in version 2.10".
5183 2000-06-18  Alan Modra  <alan@linuxcare.com.au>
5185         * NEWS: Update list of targets supporting --gc-sections.
5187         * scripttempl/elf.sc: KEEP .eh_frame contents.
5188         * scripttempl/elfd30v.sc: Same here.
5190 2000-06-18  Stephane Carrez  <stcarrez@worldnet.fr>
5192         * Makefile.am (ALL_EMULATIONS): Added new emulation for m68hc12
5193         and m68hc11 (elf).
5194         * Makefile.in: Rebuild.
5195         * configure.tgt: Recognize m68hc12 and m68hc11.
5196         * scripttempl/elfm68hc12.sc: New file.
5197         * emulparams/m68hc12elfb: New emulation.
5198         * emulparams/m68hc12elf: New emulation.
5199         * emulparams/m68hc11elfb.sh: New file.  User configurable emulation
5200         (includes a memory.x script to define the ROM and RAM banks).
5201         * scripttempl/elfm68hc11.sc, emulparams/m68hc11elf.sh:
5202         New configuration files for support of Motorola 68hc11
5204 2000-06-15  Alan Modra  <alan@linuxcare.com.au>
5206         * ldmain.c (main): Only change SEC_READONLY for final link.
5208 2000-06-13  H.J. Lu  <hjl@gnu.org>
5210         * configure: Regenerate.
5212 2000-06-08  David O'Brien  <obrien@FreeBSD.org>
5214         * configure.in (VERSION): Update to show this is the CVS mainline.
5216 2000-06-07  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
5218         * emultempl/mipsecoff.em (gld{EMULATION_NAME}_after_open): Require all
5219         input objects to be ECOFF.
5220         (check_sections): einfo takes %B, not %P, to print a BFD name.
5222 2000-06-05  Michael Matz <matz@ifh.de>
5224         * ldgram.y (vers_defns): Handle 'extern "C++" { ... }' in
5225         version scripts.
5227         * ldlex.l (V_IDENTIFIER): Accept `::' in symbols.
5229 2000-05-23  Marek Michalkiewicz  <marekm@linux.org.pl>
5231         * emulparams/avr1200.sh (STACK): Define as 0.
5232         * emulparams/avr23xx.sh (STACK): Define as last internal SRAM address.
5233         * emulparams/avr4433.sh (STACK): Likewise.
5234         * emulparams/avr44x4.sh (STACK): Likewise.
5235         * emulparams/avr85xx.sh (STACK): Likewise.
5236         * emulparams/avrmega103.sh (STACK): Likewise.
5237         * emulparams/avrmega161.sh (STACK): Likewise.
5238         * emulparams/avrmega603.sh (STACK): Likewise.
5239         * scripttempl/elf32avr.sc (__data_start): Define for gcrt1.
5240         (__stack): Define from ${STACK} for main().
5242 2000-05-26  Alan Modra  <alan@linuxcare.com.au>
5244         * Makefile.am: Update dependencies with "make dep-am"
5245         * Makefile.in: Regenerate.
5247 2000-05-26  Eli Zaretskii  <eliz@is.elta.co.il>
5249         * ldmain.c: Include filenames.h.
5250         (set_scripts_dir): Support backslashes in program name.
5252 2000-05-22  Igor Shevlyakov  <igor@windriver.com>
5254         * ldmain.c (main): When deciding if ".text" section should be
5255         read-only, don't forget to reset SEC_READONLY because it
5256         could be already set.
5258 2000-05-22  Thomas de Lellis  <tdel@windriver.com>
5260         * ld.1: Add documentation for new command line option:
5261                 --section-start <sectionname>=<sectionorg>
5262         This is a generic version of -Ttext etc. which accepts
5263         any section name as a parameter instead of just text/data/
5264         bss.
5265         * ld.texinfo: More docs.
5266         * NEWS: More docs.
5267         * lexsup.c: (parse_args): Recognize new command line option.
5268         (ld_options): Add new option.
5270 2000-05-18  H.J. Lu  <hjl@gnu.org>
5272         * lexsup.c (parse_args): `i' == `r', not `q'.
5274 2000-05-18  Jeffrey A Law  (law@cygnus.com)
5276         * configure.tgt (hppa*64*-*-*): Enable PA64 target.
5278 2000-05-17 S. Bharadwaj Yadavalli  <sby@scrugs.lkg.dec.com>
5279               Rick Gorton          <gorton@scrugs.lkg.dec.com>
5281         Add support for '-q' == '--emit-relocs' switch.
5282         * ldmain.c (main): Default to false.
5283         * lexsup.c (parse_args): Turn on emitrelocations flag if set.
5284         * NEWS: Describe the emitrelocations switch.
5285         * ld.texinfo: Describe the emitrelocations switch.
5287 2000-05-16  Charles Wilson <cwilson@ece.gatech.edu>
5289         * emultempl/pe.em (_open_dynamic_archive): New function: Search
5290         the library path for "foo.dll" and "libfoo.dll" dynamic libraries
5291         before searching for 'libfoo.a' in response to a '-Bdynamic -lfoo'
5292         link options.
5294 2000-05-15  David O'Brien  <obrien@FreeBSD.org>
5296         * lexsup.c (parse_args): Update the year in the copyright notice.
5298 2000-05-13  Alan Modra  <alan@linuxcare.com.au>
5300         * ld.h (gettext, dgettext, dcgettext, textdomain, bindtextdomain):
5301         Replace defines with those from intl/libgettext.h to quieten gcc
5302         warnings.
5304 2000-05-10  H.J. Lu  <hjl@gnu.org>
5306         * ldlang.c (open_input_bfds): Don't load the same file within
5307         a group again if the whole archive has been loaded already.
5309 2000-05-03  Alan Modra  <alan@linuxcare.com.au>
5311         From Ulf Carlsson <ulfc@engr.sgi.com> and Andreas Jaeger <aj@suse.de>
5312         * lexsup.c (set_section_start): Use bfd_scan_vma rather than
5313         strtoul.
5315 2000-05-01  Jim Wilson  <wilson@cygnus.com>
5317         * configure.host (ia64-*-linux-gnu*): Change gcc to ${CC}.
5319         * configure.host: Added HOSTING_CRT0, HOSTING_LIBS for
5320         host "ia64-*-linux-gnu*".
5322 2000-04-29  Andreas Jaeger  <aj@suse.de>
5324         * ld.h: Correctly check GCC version.
5326 2000-04-25  Jeffrey A Law  (law@cygnus.com)
5328         * Makefile.am: Add PA64 support.  Add missing dependencies for
5329         PA32 elf support.
5330         * Makefile.in: Rebuilt.
5331         * configure.tgt: Add PA64 support (currently disabled).
5333 2000-04-25  Alan Modra  <alan@linuxcare.com.au>
5335         * emultempl/elf32.em (gld${EMULATION_NAME}_place_section): Delete.
5336         (output_rel_find): New function.
5337         (hold_section, hold_use): Delete.
5338         (hold_text, hold_rodata, hold_data, hold_bss, hold_rel,
5339         hold_interp): Make local to place_orphan.
5340         (gld${EMULATION_NAME}_place_orphan): Use lang_output_section_find
5341         rather than place_section to find possible previous use of orphan.
5342         Similarly find the place-holder output sections.  Use returned
5343         value from lang_enter_output_section_statement rather than calling
5344         lang_output_section_statement_lookup.
5345         * emultempl/armelf.em: Same here.
5346         * emultempl/pe.em: Similar to above, but no need for output_rel_find.
5348         * ldlang.c (lang_enter_output_section_statement): Return output
5349         section statement.
5350         * ldlang.h (lang_enter_output_section_statement): Change
5351         declaration too.
5353         * ldlang.h (lang_output_section_statement): Export it.
5354         * ldlang.c (lang_output_section_statement): Ditto.
5356 2000-04-24  Nick Clifton  <nickc@cygnus.com>
5358         * ld.texinfo (Output Section Data): Add note that section data
5359         commands cannot appear outside of section directives.
5361 2000-04-2  Matthew Green  <mrg@cygnus.com>
5363         * configure.tgt: Add NetBSD/sparc ELF, and NetBSD/sparc64 support.
5365 2000-04-21  Richard Henderson  <rth@cygnus.com>
5366             David Mosberger  <davidm@hpl.hp.com>
5368         * Makefile.am (ALL_64_EMULATIONS): Add eelf64_ia64.o.
5369         (eelf64_ia64.c): New rule.
5370         * Makefile.in: Rebuild.
5371         * configure.tgt (ia64-*-elf*, ia64-*-linux*): New targets.
5372         * emulparams/elf64_ia64.sh: New file.
5374 2000-04-21  Richard Henderson  <rth@cygnus.com>
5376         * scripttempl/elfd30v.sc: Place .gcc_except_table.
5378 2000-04-19  Alan Modra  <alan@linuxcare.com.au>
5380         * dep-in.sed: Match space at start of file name, not at end.
5382 2000-04-18  H.J. Lu  <hjl@gnu.org>
5384         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Call
5385         lang_leave_output_section_statement () after calling
5386         lang_enter_output_section_statement ().
5387         * emultempl/armelf.em: Likewise.
5389 2000-04-18  Alan Modra  <alan@linuxcare.com.au>
5391         * emultempl/elf32.em (struct orphan_save): Add section field.
5392         (gld${EMULATION_NAME}_place_orphan): Use above to keep sections in
5393         better order, and place first orphan section as we did before the
5394         2000-04-12 patch.  Ignore ~SEC_ALLOC sections when choosing place.
5395         Don't call make_bfd_section here, let wild_doit do the job for us.
5396         Don't build a statement list when we'll only throw it away.
5397         * emultempl/armelf.em: Ditto.
5398         * emultempl/pe.em: Similarly.
5400 2000-04-14  Geoff Keating  <geoffk@cygnus.com>
5402         * scripttempl/elfppc.sc: Remove.
5403         * emulparams/elf32ppc.sh: Use elf.sc.
5404         * emulparams/elf32lppc.sh: Use elf.sc.
5405         * emulparams/elf32ppclinux.sh: Use elf.sc.
5406         * emulparams/elf32ppcsim.sh: New file.
5407         * emulparams/elf32lppcsim.sh: New file.
5408         * Makefile.am: Update dependencies.  Add elf32ppcsim ad elf32lppcsim.
5409         (ALL_EMULATIONS): Add elf32ppcsim ad elf32lppcsim.
5410         * Makefile.in: Regenerate.
5411         * configure.tgt (powerpc-*): Add elf32ppcsim and elf32lppcsim.
5413 2000-04-14  Alan Modra  <alan@linuxcare.com.au>
5415         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Process
5416         ~SEC_ALLOC sections too.  Init start address of debug sections.
5417         * emultempl/armelf.em (gld${EMULATION_NAME}_place_orphan): Ditto.
5418         * emultempl/pe.em (gld${EMULATION_NAME}_place_orphan): Ditto.
5419         Also set all relocateable section start addresses.
5421 2000-04-13  Geoff Keating  <geoffk@cygnus.com>
5423         * scripttempl/elf.sc: Add support for .sbss2 and .sdata2 sections.
5424         Add new BSS_PLT variable for when .plt need not be contained in
5425         the file.  Move _etext so that it is also after .fini, and provide
5426         both etext and _etext with a leading underscore.  Mark the start
5427         and end of .sbss.
5429 2000-04-12  Alan Modra  <alan@linuxcare.com.au>
5431         * emultempl/elf32.em (struct orphan_save): New.
5432         (hold_text, hold_rodata, hold_data, hold_bss, hold_rel,
5433         hold_interp): Make them struct orphan_save.
5434         (gld${EMULATION_NAME}_place_section): Modify for new hold_*.
5435         (gld${EMULATION_NAME}_place_orphan): Add new orphan sections to
5436         the end of the relevant section list.  Also add associated section
5437         statements to the end of any previous orphan statements.
5438         * emultempl/armelf.em: Similarly.
5439         * emultempl/pe.em: Similarly.
5441 2000-04-11  Alan Modra  <alan@linuxcare.com.au>
5443         * ld.texinfo (Simple Example): Remove extraneous paragraph.
5445 2000-04-07  Andrew Cagney  <cagney@b1.cygnus.com>
5447         * configure.in (WARN_CFLAGS): Set to -W -Wall by default.  Add
5448         --enable-build-warnings option.
5449         * Makefile.am (AM_CFLAGS, WARN_CFLAGS): Add definitions.
5450         * Makefile.in, configure: Re-generate.
5452 2000-04-04  Alan Modra  <alan@linuxcare.com.au>
5454         * po/ld.pot: Regenerate.
5456         * lexsup.c (help): Restore translated part of bug string.
5458         * Makefile.am (MKDEP): Use gcc -MM rather than mkdep.
5459         (DEP): Quote when passing vars to sub-make.  Add warning message
5460         to end.
5461         (DEP1): Rewrite for "gcc -MM".
5462         (CLEANFILES): Add DEP2.
5463         Update dependencies.
5464         * Makefile.in: Regenerate.
5466 2000-04-03  Alan Modra  <alan@linuxcare.com.au>
5468         * ld.h: #include "bin-bugs.h"
5469         * lexsup.c (help): Use REPORT_BUGS_TO.
5471 2000-03-27  Denis Chertykov  <denisc@overta.ru>
5473         * configure.tgt (avr-*-*): New target support.
5474         * Makefile.am: Likewise.
5475         * scripttempl/elf32avr.sc: New script file.
5476         * emulparams/avr1200.sh: New file.
5477         * emulparams/avr23xx.sh: New file.
5478         * emulparams/avr4433.sh New file.
5479         * emulparams/avr44x4.sh New file.
5480         * emulparams/avr85xx.sh New file.
5481         * emulparams/avrmega103.sh New file.
5482         * emulparams/avrmega161.sh New file.
5483         * emulparams/avrmega603.sh New file.
5484         * Makefile.in: Regenerate.
5486 2000-03-09  Andreas Jaeger  <aj@suse.de>
5488         * Makefile.am (check-DEJAGNU): Also unset LANG.
5489         * Makefile.in: Rebuild.
5491 2000-03-06  Ian Lance Taylor  <ian@zembu.com>
5493         * ldfile.c (ldfile_try_open_bfd): Don't crash if we see an empty
5494         archive.
5496 2000-03-02  H.J. Lu  <hjl@gnu.org>
5498         * emulparams/elf32mcore.sh: Include "getopt.h".
5500 2000-03-01  Ian Lance Taylor  <ian@zembu.com>
5502         * configure.tgt: Remove *-*-aout, *-*-coff, and *-*-netware.
5504 2000-03-01  H.J. Lu  <hjl@gnu.org>
5506         * emulparams/mipspe.sh: Add SUBSYSTEM and INITIAL_SYMBOL_CHAR.
5507         * emulparams/shpe.sh: Likewise.
5509 2000-03-01  Nick Clifton  <nickc@cygnus.com>
5511         * pe-dll.c: Remove unused variables and add ATTRIBUTE_UNUSED
5512         to unused parameters.
5514         * emultempl/pe.em: Add "#ifdef DLL_SUPPORT" around static
5515         functions only used by DLL code.
5516         (_place_orphan): Initialise 'dollar'.
5518 2000-03-01  H.J. Lu  <hjl@gnu.org>
5520         * ldmain.c (undefined_symbol): Take one more arg, fatal, to
5521         indicate if the undefined symbol is a fatal error or not.
5522         Don't delete the output file if "fatal" is false.
5524 2000-02-29  H.J. Lu  <hjl@gnu.org>
5526         * Makefile.am (check-DEJAGNU): Also pass LIBS="$(LIBS)".
5527         Set LC_COLLATE and LC_ALL to null and export them. It is for
5528         sort which expects the C locale.
5529         Add $(LIBS) to all $(HOSTING_LIBS).
5530         * Makefile.in: Rebuild.
5532 2000-02-29  Alan Modra  <alan@spri.levels.unisa.edu.au>
5534         * emultempl/{aix.em, armcoff.em, armelf.em, armelf_oabi.em,
5535         beos.em, elf32.em, generic.em, gld960.em, gld960c.em, hppaelf.em,
5536         linux.em, lnk960.em, mipsecoff.em, sunos.em, vanilla.em}
5537         (ld_emulation_xfer_struct): Add missing NULL initialiser for
5538         find_potential_libraries.
5540 2000-02-28  Jim Blandy  <jimb@redhat.com>
5542         * ldgram.y (exclude_name_list): Don't require a comma to separate
5543         list entries; the lexer considers commas to be valid part of a
5544         filename, so in something like `foo, bar' the comma is considered
5545         part of the first filename, `foo,'.
5546         * ld.texinfo: Update section on EXCLUDE_FILE lists.
5548 2000-02-27  Loren J. Rittle  <ljrittle@acm.org>
5550         * configure.host: Added HOSTING_CRT0, HOSTING_LIBS for
5551         host "i[3456]86-*-freebsdelf*".
5553 2000-02-27  Mark Elbrecht  <snowball3@bigfoot.com>
5555         * scripttempl/i386go32.sc: Move misplaced semicolons.
5557 2000-02-25  Ian Lance Taylor  <ian@zembu.com>
5559         * Makefile.am (ALL_EMULATIONS): Remove ehppaelf.o.
5560         (ALL_64_EMULATIONS): Remove eelf64hppa.o.
5561         (eelf64hppa.c, ehppaelf.c): Remove targets.
5562         * Makefile.in: Rebuild.
5564 2000-02-25  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
5566         * configure.tgt (targ_extra_ofiles): Enable elf64_sparc on
5567         GNU/Linux/sparc, but keep the default as 32.
5569         * configure.tgt: Enable elf64_sparc on Solaris7+/sparc.  And make
5570         it default if sparcv9 or sparc64.
5572 2000-02-24  Nick Clifton  <nickc@cygnus.com>
5574         * Makefile.am: Add rules to build emipspe.o and earmpe.o.
5575         * Makefile.in: Regenerate.
5576         * configure.tgt: Add targets for arm-wince, sh-pe and mips-pe.
5578         * ldemul.h (ld_emulation_xfer_struct): Add new field:
5579         find_potential_libraries.
5580         * ldemul.c (ldemul_find_potential_libraries): New function.
5582         * ldfile.c (ldfile_open_file_search): Allow function to be
5583         exported.
5584         (ldfile_open_file): Call ldemul_find_potential_libraries.
5585         * ldfile.h: Add prototype for ldfile_open_file_search.
5587         * pe-dll.c: Add support for ARM, MIPS and SH targets.
5589         * emulparams/mipspe.sh: New file.  Parameters for mips-pe target.
5590         * emulparams/shpe.sh: New file.  Parameters for sh-pe target.
5592         * emultempl/pe.em: Add support for ARM, MIPS and SH DLLs.
5593         (gld_X_find_potential_libraries): New function.  Search for
5594         libraries called "*.lib".
5596         * scripttempl/pe.sc: Add .pdata section.
5598 2000-02-23  Richard Henderson  <rth@cygnus.com>
5600         * scripttempl/elfd10v.sc: Remove dynamic linking hooks.
5601         Add and use memory regions.
5603 2000-02-23  Linas Vepstas (linas@linas.org)
5605         * emulparams/elf32i370.sh, scripttempl/elfi370.sc: New.
5607         * Makefile.am: Add support for Linux/IBM 370.
5608         * configure.tgt: Likewise.
5610         * Makefile.in: Regenerate.
5612 2000-02-21  Alan Modra  <alan@spri.levels.unisa.edu.au>
5614         * ldlang.c (print_input_section, print_data_statement,
5615         print_reloc_statement, print_padding_statement, insert_pad,
5616         size_input_section, lang_check_section_addresses,
5617         lang_size_sections, lang_do_assignments, lang_set_startof,
5618         lang_one_common): Change `opb' to unsigned.
5619         (lang_do_assignments): Also change `size' to unsigned.
5621 2000-02-16  Richard Henderson  <rth@cygnus.com>
5623         * scripttempl/elf.sc: Place OTHER_PLT_RELOC_SECTION.
5625 2000-02-16  Timothy Wall  <twall@cygnus.com>
5627         * mri.c (mri_draw_tree): Add default LMA region argument to call
5628         to lang_leave_output_section_statement.
5629         * ldlang.h: Update prototypes with LMA region arguments.
5630         * ldlang.c (lang_size_sections): Encapsulate region bounds
5631         checking in os_check_region call.
5632         (os_check_region): New function.
5633         (lang_output_section_statement_lookup): Initialize lma_region.
5634         (lang_leave_output_section_statement): Add LMA region argument.
5635         (lang_leave_overlay): Ditto.
5636         * ldgram.y: Handle LMA region syntax.
5637         * ld.texinfo (Output Section Description): Describe LMA region usage.
5638         * emultempl/armelf.em (gld$place_orphan): Add default value for
5639         lma region in call to lang_leave_output_section_statement.
5640         * emultempl/elf32.em (gld$place_orphan): Add default value for
5641         lma region in call to lang_leave_output_section_statement.
5642         * emultempl/pe.em (gld$place_orphan): Add default value for
5643         lma region in call to lang_leave_output_section_statement.
5646 2000-02-04  Timothy Wall  <twall@redhat.com>
5648         * ldlang.c (lang_check_section_addresses): Use bytes instead of
5649         octets when calculating section end addresses.
5651 2000-02-04  Timothy Wall  <twall@redhat.com>
5653         * ldlang.c (lang_size_sections): Fix typo in ALIGN_N invocation.
5655 2000-02-03  Timothy Wall <twall@redhat.com>
5657         * ldexp.c (fold_name): Make SIZEOF operator return byte count, not
5658         octet count.
5659         * ldlang.c (print_input_section, print_data_statement,
5660         print_reloc_statement, print_padding_statement): Print target
5661         address values and section sizes as bytes, not octets.
5662         (insert_pad) Calculate padding size in octets, and adjust "dot"
5663         by bytes.
5664         (size_input_section) Always adjust "dot" by bytes, not octets.
5665         (lang_check_section_addresses, lang_do_assignments) Adjust
5666         "dot" by bytes, not octets.  Use the larger of the directive size
5667         or octets_per_byte for the number of octets actually allocated in
5668         the output section.
5669         (lang_set_startof) Make sure STARTOF returns a target address.
5670         (lang_one_common) Record size changes in octets.
5671         (lang_abs_symbol_at_end_of) Section end symbol's value is
5672         recorded in target bytes.
5673         * ld.texinfo: Updated description of BYTE, SHORT, LONG, etc.
5674         to be clear about behavior when an octet is smaller than one byte.
5676 2000-01-27  Alan Modra  <alan@spri.levels.unisa.edu.au>
5678         * ldcref.c (output_cref): Don't pass message strings to printf
5679         as format arg.
5680         Update copyright.
5682         * ldmisc.c (vfinfo): Same here.
5683         Update copyright.
5685 2000-01-23  Alan Modra  <alan@spri.levels.unisa.edu.au>
5687         * emultempl/{armcoff.em,armelf.em,armelf_oabi.em,beos.em,
5688         generic.em,gld960.em,gld960c.em,hppaelf.em,linux.em,lnk960.em,
5689         mipsecoff.em,sunos.em,vanilla.em} (ld_emulation_xfer_struct):
5690         Add missing NULL initialisers, and comments.
5692 2000-01-21  Nick Clifton  <nickc@cygnus.com>
5694         * ldlang.c (lang_size_sections): Fix typo in comment.
5696 2000-01-18  H.J. Lu  <hjl@gnu.org>
5698         * ldlang.c (lang_size_sections): Also update the current
5699         address of a region if the SEC_NEVER_LOAD bit is not set.
5701 2000-01-10  Philip Blundell  <pb@futuretv.com>
5703         * configure.tgt (arm*-*-conix*): New target.
5705 2000-01-07  Nick Clifton  <nickc@cygnus.com>
5707         * ld.texinfo (Options): Remind users to preceed linker command
5708         line switches with -Wl, (or whatever is appropriate) if it is
5709         being invoked by a comnpiler driver program.
5710         Fix description of the behaviour of the -n command line switch.
5712 2000-01-05  Catherine Moore  <clm@cygnus.com>
5714         * ld.h (wildcard_spec):  Change exclude_name to exclude_name_list.
5715         (name_list): New.
5716         * ld.texinfo (EXCLUDE_FILE): Update documentation.
5717         * ldgram.y (wildcard_spec): Support a list of excluded_files.
5718         (exclude_name_list): New.
5719         ldlang.c (walk_wild_section): Support list of excluded files.
5720         (print_wild_statement): Likewise.
5721         (lang_add_wild): Likewise.
5722         * ldlang.h (lang_wild_statement_type): Likewise.
5723         * scripttempl/elf.sc (OTHER_EXCLUDE_FILES): Support.
5725 2000-01-04  Mumit Khan  <khan@xraylith.wisc.edu>
5727         * pe-dll.c (pe_dll_warn_dup_exports): New variable.
5728         (process_def_file): Use.
5729         (pe_dll_compat_implib): New variable.
5730         (make_one): Use.
5732         * pe-dll.h: Add exports of pe_dll_warn_dup_exports and
5733         pe_dll_compat_implib.
5735         * emultempl/pe.em (longopts): Add warn-duplicate-exports and
5736         compat-implib options.
5737         (gld_${EMULATION_NAME}_list_options): List new options.
5738         (gld_${EMULATION_NAME}_parse_args): Handle.
5740         * pe-dll.c (pe_dll_generate_implib): Use the correct name for output
5741         dll.
5743         * deffilep.y (opt_name): Allow "." in name.
5745 For older changes see ChangeLog-9899
5747 Local Variables:
5748 mode: change-log
5749 left-margin: 8
5750 fill-column: 74
5751 version-control: never
5752 End: