* emultempl/elf32.em (output_prev_sec_find): Add missing prototype.
[deliverable/binutils-gdb.git] / ld / ChangeLog
1 2001-08-09 Alan Modra <amodra@bigpond.net.au>
2
3 * emultempl/elf32.em (output_prev_sec_find): Add missing prototype.
4
5 * scripttempl/elf.sc: Move non-text .dynamic section before
6 .plt/.got/.sdata* group.
7 (OTHER_GOT_SECTIONS): Move to immediately after .got.
8 (OTHER_SDATA_SECTIONS): Add.
9 * emulparams/criself.sh: Use OTHER_SDATA_SECTIONS rather than
10 OTHER_GOT_SECTIONS.
11 * emulparams/crislinux.sh: Likewise.
12 * emulparams/elf32b4300.sh: Likewise.
13 * emulparams/elf32bmip.sh: Likewise.
14 * emulparams/elf32bmipn32.sh: Likewise.
15 * emulparams/elf32bsmip.sh: Likewise.
16 * emulparams/elf32btsmip.sh: Likewise.
17 * emulparams/elf32ebmip.sh: Likewise.
18 * emulparams/elf32elmip.sh: Likewise.
19 * emulparams/elf32l4300.sh: Likewise.
20 * emulparams/elf32lmip.sh: Likewise.
21 * emulparams/elf32lsmip.sh: Likewise.
22 * emulparams/elf32ltsmip.sh: Likewise.
23 * emulparams/elf64bmip.sh: Likewise.
24 * emulparams/elf64btsmip.sh: Likewise.
25 * emulparams/elf64ltsmip.sh: Likewise.
26
27 2001-08-08 Alan Modra <amodra@bigpond.net.au>
28
29 * genscripts.sh: Source the emulparams script before each output
30 script is generated so that variables like `RELOCATING' may affect
31 variables defined in the emulparams script.
32
33 2001-08-04 Alan Modra <amodra@bigpond.net.au>
34
35 * emultempl/aix.em: ldexp.h,ldlang.h,ldfile.h,ldemul.h go in this
36 order.
37
38 * emultempl/beos.em (sort_sections): Modify for 2001-08-03 change,
39 ie. iterate over wild_statement.section_list.
40 (gld${EMULATION_NAME}_place_orphan): Likewise.
41
42 2001-08-03 Stephane Carrez <Stephane.Carrez@worldnet.fr>
43
44 * scripttempl/elfm68hc12.sc (FINISH_CODE, FINISH_RELOC): New to handle
45 .fini[0-4] sections used by _exit
46 (CTOR, DTOR): Export ctor/dtor symbols; move them to ROM.
47 (*.text,*.data,*.bss): Take into account .text.*, .data.*, .bss.*.
48 * scripttempl/elfm68hc11.sc: Likewise.
49
50 2001-08-03 H.J. Lu <hjl@gnu.org>
51
52 * emultempl/beos.em (init): Add the missing initialization.
53
54 2001-08-03 Alan Modra <amodra@bigpond.net.au>
55
56 * ld.texinfo (Input Section Basics): Clarify ordering of output
57 sections.
58 * ldlang.c (callback_t): Add wildcard_list param.
59 (walk_wild_section): Remove "section" param. Rewrite for
60 lang_wild_statement_type change. Remove unique_section_p test.
61 (walk_wild_file): Remove "section" param.
62 (walk_wild): Remove "section" and "file" params.
63 (lang_gc_wild): Likewise.
64 (wild): Likewise. Modify for lang_wild_statement_type change.
65 (wild_sort): Likewise. Add "sec" param.
66 (gc_section_callback): Likewise.
67 (output_section_callback): Likewise. Do unique_section_p test.
68 (map_input_to_output_sections): Modify call to wild.
69 (lang_gc_sections_1): Likewise.
70 (print_wild_statement): Modify for lang_wild_statement_type
71 change.
72 (lang_add_wild): Replace filename, filenames_sorted param with
73 filespec. Replace section_name, sections_sorted,
74 exclude_filename_list with section_list.
75 * ldlang.h (lang_add_wild): Here too.
76 (lang_wild_statement_type): Replace section_name, sections_sorted,
77 and exclude_filename_list with section_list.
78 * ldgram.y (current_file): Delete.
79 (%union): Add wildcard_list.
80 (file_NAME_list): Set type to wildcard_list. Build a linked list
81 rather than calling lang_add_wild for each entry.
82 (input_section_spec_no_keep): Call lang_add_wild here instead.
83 * ld.h (struct wildcard_list): Declare.
84 * mri.c (mri_draw_tree): Modify to suit new lang_add_wild.
85
86 2001-08-02 Charles Wilson <cwilson@ece.gatech.edu>
87
88 * ldmain.c (main): initialize link_info.pei386_auto_import
89 * pe-dll.c: new tables for auto-export filtering
90 (auto_export): change API, pass abfd for contextual filtering.
91 Loop thru tables of excluded symbols instead of comparing
92 "by hand".
93
94 2001-08-02 Paul Sokolovsky <paul.sokolovsky@technologist.com>
95
96 * pe-dll.c: new variable pe_dll_enable_extra_debug. New
97 static variable current_sec (static struct sec *). Add
98 forward declaration for add_bfd_to_link.
99 (process_def_file): Don't export undefined symbols. Do not
100 export symbols starting with "_imp__". Call auto_export()
101 with new API.
102 (pe_walk_relocs_of_symbol): New function.
103 (generate_reloc): add optional extra debugging
104 (pe_dll_generate_def_file): eliminate extraneous initial blank
105 line in output
106 (make_one): enlarge symtab to make room for __nm__ symbols
107 (DATA auto-import support).
108 (make_singleton_name_thunk): New function.
109 (make_import_fixup_mark): New function.
110 (make_import_fixup_entry): New function.
111 (pe_create_import_fixup): New function.
112 (add_bfd_to_link): Specify that 'name' argument is a CONST
113 char *.
114 * pe-dll.h: declare new variable pe_dll_extra_pe_debug;
115 declare new functions pe_walk_relocs_of_symbol and
116 pe_create_import_fixup.
117 * emultempl/pe.em: add new options --enable-auto-import,
118 --disable-auto-import, and --enable-extra-pe-debug.
119 (make_import_fixup): New function.
120 (pe_find_data_imports): New function.
121 (pr_sym): New function.
122 (gld_${EMULATION_NAME}_after_open): Add optional extra pe
123 debugging. Call pe_find_data_imports. Mark .idata as DATA, not
124 CODE.
125
126 2001-08-02 Charles Wilson <cwilson@ece.gatech.edu>
127
128 * ld.texinfo: add additional documentation for
129 --export-all-symbols. Document --out-implib,
130 --enable-auto-image-base, --disable-auto-image-base,
131 --dll-search-prefix, --enable-auto-import, and
132 --disable-auto-import.
133 * ldint.texinfo: Add detailed documentation on auto-import
134 implementation.
135
136 2001-07-30 Nick Clifton <nickc@cambridge.redhat.com>
137
138 * ld.texinfo (Simple Assignments): Fix computation in SECTIONS
139 example.
140
141 2001-07-24 Alan Modra <amodra@bigpond.net.au>
142
143 * Makefile.am: Update dependencies with "make dep-am".
144 * Makefile.in: Regenerate
145
146 2001-07-23 Alan Modra <amodra@bigpond.net.au>
147
148 * ldcref.c (check_section_sym_xref): New function.
149 (check_nocrossrefs): Call it.
150 (check_nocrossref): Interate over h->refs here instead of..
151 (check_refs): ..here. Pass in the symbol name, section, and bfd
152 rather than hash_entry pointers.
153 (struct check_refs_info): Keep symbol name rather than hash entry.
154 Remove "same".
155 (check_reloc_refs): Tweak for above changes in check_refs_info.
156 Only report references to section syms when symname is NULL to
157 prevent duplicate messages for the same reloc.
158
159 2001-07-19 Nick Clifton <nickc@cambridge.redhat.com>
160
161 * ldexp.c (exp_print_tree): Use stderr if config.map_file is not
162 available. Do not print NULL trees.
163 (exp_print_token): Print unknown tokens with values > 126 as
164 decimal values not ASCII characters.
165
166 * ldlang.c (lang_leave_overlay): If a region is specified assign
167 it to all sections inside the overlay unless they have been
168 assigned to the own, non-default, memory region.
169
170 * README: Add header for consistency with other README files.
171
172 2001-07-14 H.J. Lu <hjl@gnu.org>
173
174 * emultempl/elf32.em (output_prev_sec_find): Never return
175 bfd_abs_section_ptr, bfd_com_section_ptr nor
176 bfd_und_section_ptr.
177
178 2001-07-14 Nick Clifton <nickc@cambridge.redhat.com>
179
180 * Makefile.am (em32relf.c): Chnage dependencu from generic.em to
181 elf32.em.
182 * Makefile.in: Regenerate.
183
184 2001-07-14 matthew green <mrg@eterna.com.au>
185
186 * configure.tgt (i386-*-netbsdelf*): New target.
187 (i386-*-netbsd*): Set targ_extra_emuls to `elf_i386'
188
189 2001-07-13 Jakub Jelinek <jakub@redhat.com>
190
191 * emultempl/elf32.em (output_prev_sec_find): New.
192 (place_orphan): Use it.
193
194 2001-07-11 H.J. Lu <hjl@gnu.org>
195
196 * ldmain.c (main): Fix typos in the last change.
197
198 2001-07-11 Jakub Jelinek <jakub@redhat.com>
199
200 * ldmain.c (main): Disallow -F and -f without -shared.
201
202 2001-07-11 Nick Clifton <nickc@cambridge.redhat.com>
203
204 * emultempl/pe.em (after_open): Check for the output_bfd not
205 having any coff_data structure allocated to it.
206
207 2001-07-09 David O'Brien <obrien@FreeBSD.org>
208
209 * emultempl/elf32.em: Do not assuming that contents of the buffer
210 returned from basename function will remain unchanged accross other
211 function calls.
212
213 2001-07-03 H.J. Lu <hjl@gnu.org>
214
215 * scripttempl/elf.sc (DYNAMIC_PAD): Revert the change made on
216 2001-07-03. It creates dynamic entries even for static binaries.
217
218 2001-07-03 Jakub Jelinek <jakub@redhat.com>
219
220 * scripttempl/elf.sc (DYNAMIC_PAD): New variable.
221 (DYNAMIC): Use it to reserve few dynamic entries for
222 post-linking tools.
223
224 2001-06-27 Alan Modra <amodra@bigpond.net.au>
225
226 * emulparams/hppa64linux.sh: New file.
227 * configure.tgt: hppa*64*-*-linux* uses hppa64linux.sh
228 * Makefile.am (ALL_64_EMULATIONS): Add ehppa64linux.o
229 (ehppa64linux.c): Add rule to make it.
230 Run "make dep-am".
231 * Makefile.in: Regenerate.
232
233 2001-06-21 Hans-Peter Nilsson <hp@axis.com>
234
235 * ld.texinfo (Options, -r): Mention restrictions when using
236 different object formats.
237
238 2001-06-19 Hans-Peter Nilsson <hp@axis.com>
239
240 * ldlang.c (lang_check): Emit fatal error if relocatable link
241 between different object flavours with relocations in input.
242
243 2001-06-19 H.J. Lu <hjl@gnu.org>
244
245 * ld.texinfo (-E, --export-dynamic): Mention --version-script.
246 (--version-script): Mention the language support.
247
248 2001-06-19 H.J. Lu <hjl@gnu.org>
249
250 * ldlang.c (lang_check): Revert the change mode on 2001-06-15.
251
252 2001-06-18 H.J. Lu <hjl@gnu.org>
253
254 * Makefile.am (ld.1): Remove the prefix `$(srcdir)/'.
255 (diststuff): Add $(MANS).
256 * Makefile.in: Regenerated.
257
258 * ld.1: Removed.
259
260 2001-06-18 Hans-Peter Nilsson <hp@axis.com>
261
262 * emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation):
263 Update for API change in bfd_elf${ELFSIZE}_size_dynamic_sections.
264 * mpw-elfmips.c (gldelf32ebmip_before_allocation): Ditto.
265 * ld.h (args_type): Remove member export_dynamic. All users
266 changed to use struct bfd_link_info member.
267
268 * Makefile.am (ecriself.c, ed10velf.c, ei386moss.c): Depend on
269 $(srcdir)/emultempl/elf32.em, not $(srcdir)/emultempl/generic.em.
270 * Makefile.in: Regenerate.
271
272 2001-06-18 H.J. Lu <hjl@gnu.org>
273
274 * ldlang.c (init_os): Add the newline to the einfo call.
275 (lang_check): Likewise.
276 (lang_do_version_exports_section): Likewise.
277
278 2001-06-15 H.J. Lu <hjl@gnu.org>
279
280 * lexsup.c (parse_args); Save optind to report unrecognized
281 option.
282
283 2001-06-15 Hans-Peter Nilsson <hp@axis.com>
284
285 * ldlang.c (lang_check): Emit fatal error if relocatable link
286 between different object flavours.
287
288 * lexsup.c (parse_args) <case OPTION_EXPORT_DYNAMIC, case 'E'>:
289 Set new link_info member export_dynamic.
290 * ldmain.c (main): Initialize new link_info member export_dynamic.
291
292 2001-06-12 Nick Clifton <nickc@cambridge.redhat.com>
293
294 * ldlang.c (walk_wild): Only call walk_wild_file if
295 lookup_name returns something.
296 (lookup_name): If load_symbols fails, return NULL.
297 (load_symbols): Chnage to a boolean function.
298 (open_input_bfds): If load_symbols fails then do not make the
299 executable.
300
301 2001-06-08 Alan Modra <amodra@bigpond.net.au>
302
303 * ldlang.c (record_bfd_errors): Remove.
304
305 * emultempl/aix.em: Fix copyright dates.
306
307 2001-06-07 Andreas Jaeger <aj@suse.de>
308
309 * elf_x86_64.sh (NONPAGED_TEXT_START_ADDR): Increase.
310 (TEXT_START_ADDR): Likewise.
311
312 2001-06-06 Martin Schwidefsky <schwidefsky@de.ibm.com>
313
314 * configure.host: Set HOSTING_CRT0/HOSTING_LIBS correctly for s/390.
315
316 2001-06-05 Danny Smith <danny_r_smith_2001@yahoo.co.nz>
317
318 * emultempl/pe.em (init): Reduce default stack reserve to 0x200000.
319
320 2001-05-31 H.J. Lu <hjl@gnu.org>
321
322 * ldlang.c (open_input_bfds): Don't change the bfd error
323 handler whilst loading symbols.
324
325 2001-05-28 Nick Clifton <nickc@cambridge.redhat.com>
326
327 * configure.tgt: Remove i370-mvs architecture, it is not currently
328 supported.
329
330 2001-05-25 H.J. Lu <hjl@gnu.org>
331
332 * emulparams/ppcmacos.sh: Add SYSCALL_MASK and SYMBOL_MODE_MASK
333 like emulparams/aixppc.sh.
334
335 2001-05-25 H.J. Lu <hjl@gnu.org>
336
337 * emultempl/beos.em (gld${EMULATION_NAME}_before_parse): Move
338 setting of output_filename after bfd_scan_arch.
339 * emultempl/pe.em: Likewise.
340
341 2001-05-25 H.J. Lu <hjl@gnu.org>
342
343 * emulparams/aixrs6.sh: Add SYSCALL_MASK and SYMBOL_MODE_MASK
344 like emulparams/aixppc.sh.
345
346 * emultempl/aix.em (sc): Use ${srcdir}/emultempl/ostring.sed
347 instead of ${srcdir}/emultempl/stringify.sed.
348
349 2001-05-25 Timothy Wall <twall@oculustech.com>
350
351 * emulparams/elf64_aix.sh: Change settings to match IBM linker
352 output.
353
354 2001-05-25 Alan Modra <amodra@one.net.au>
355
356 * configure.host: Replace linuxoldld with linux*oldld.
357 * configure.tgt: Likewise.
358
359 2001-05-24 H.J. Lu <hjl@gnu.org>
360
361 * emultempl/stringify.sed: Removed again.
362
363 2001-05-24 H.J. Lu <hjl@gnu.org>
364
365 * emultempl/aix.em (OUTPUT_ARCH): Defined.
366 (gld${EMULATION_NAME}_before_parse): Initialize
367 ldfile_output_architecture, ldfile_output_machine and
368 ldfile_output_machine_name from ${OUTPUT_ARCH} if possible.
369 * emultempl/beos.em: Likewise.
370 * emultempl/elf32.em: Likewise.
371 * emultempl/linux.em: Likewise.
372 * emultempl/mipsecoff.em: Likewise.
373 * emultempl/pe.em: Likewise.
374 * emultempl/sunos.em: Likewise.
375
376 2001-05-24 Tom Rix <trix@redhat.com>
377
378 * emultempl/aix.em : (gld${EMULATION_NAME}_read_file)
379 udate import file format.
380 (change_symbol_mode) New, same
381 (is_syscall) New, same
382 * emulparams/aixppc.sh : add SYSCALL_MASK and SYMBOL_MODE_MASK
383 * emulparams/aixppc64.sh : same
384 * emulparams/aixrs6.sh : same
385 * emulparams/ppcmacos.sh : same
386 * emultempl/aix.em : use strtoull to parse options
387 * Makefile.am : add eaixppc64 emulation for xcoff64
388 * Makefile.in : same
389 * configure.tgt : same
390
391 * scripttempl/aix.sc : default text section offset to 0x10000000
392 default data section offset to 0x20000000
393 add .sv3264 and .sv64 pseudo sections
394 loader and debug sections use the currect section offset.
395
396 * emultempl/aix.em : Add xcoff64 support
397 Add -binitfini support
398 (gld${EMULATION_NAME}_before_parse) -binitfini
399 (gld${EMULATION_NAME}_parse_args) same
400 (gld${EMULATION_NAME}_before_allocation) format change for special
401 sections
402
403 * emulparams/aixppc64.sh : New file for xcoff64 support
404
405 2001-05-23 Alexandre Oliva <aoliva@redhat.com>
406
407 * emultempl/elf32.em (ELF_INTERPRETER_SET_DEFAULT): Use this new
408 variable to avoid non-portable shell construct.
409
410 2001-05-23 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
411
412 * ldmain.c (get_emulation): Add -mips5 command line argument.
413
414 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
415
416 * emulparams/elf_i386_ldso.sh: New, copied from elf_i386.sh.
417 (ELF_INTERPRETER_NAME): Define it.
418 * emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation): Use
419 it.
420 * configure.tgt (targ_emul, targ_extra_emuls)
421 [i[3456]86-*-solaris2*, i[3456]86-*-solaris*]: Use elf_i386_ldso
422 as primary, elf_i386 as extra.
423 * Makefile.am (ALL_EMULATIONS): Added eelf_i386_ldso.o.
424 (eelf_i386_ldso.c): New rule.
425 * Makefile.in: Rebuilt.
426
427 2001-05-22 Nick Clifton <nickc@redhat.com>
428
429 * lexsup.c (ld_options): Allow -I to be an alias for
430 --dynamic-linker. This is for Solaris compatability.
431 * ld.texinfo: Document that -I can be used.
432 * ld.1: Regenerate.
433
434 2001-05-16 Alan Modra <amodra@one.net.au>
435
436 * ldlang.c (wild_doit): Use linker_has_input to reliably determine
437 whether an input section is the first one assigned to an output
438 section.
439 Assorted formatting fixes.
440
441 2001-05-14 DJ Delorie <dj@delorie.com>
442
443 * Makefile.am (ld.dvi): Search bfd/doc for texinfo files.
444 * Makefile.in: Ditto.
445
446 2001-05-11 Jakub Jelinek <jakub@redhat.com>
447
448 * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Put
449 .gnu.linkonce.ia64unw{,i} sections into corresponding .IA_64.unwind*
450 output sections.
451 * emulparams/elf64_aix.sh (OTHER_READONLY_SECTIONS): Likewise.
452
453 2001-05-11 Jakub Jelinek <jakub@redhat.com>
454
455 * ldlang.c (lang_process): Call bfd_merge_sections.
456
457 2001-05-07 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
458
459 * ldgram.y: Fix typo.
460
461 2001-05-03 H.J. Lu <hjl@gnu.org>
462
463 * emultempl/elf32.em: Include "libiberty.h".
464 (gld${EMULATION_NAME}_vercheck): Call basename () to get the
465 basename of the bfd filename.
466 (gld${EMULATION_NAME}_stat_needed): Likewise.
467 (gld${EMULATION_NAME}_try_needed): Likewise.
468 (gld${EMULATION_NAME}_open_dynamic_archive): Likewise.
469
470 2001-05-02 H.J. Lu <hjl@gnu.org>
471
472 * emultempl/pe.em: Include <ctype.h>.
473
474 2001-05-02 Johan Rydberg <jrydberg@opencores.org>
475
476 * emulparams/elf32openrisc.sh: New file.
477
478 * Makefile.am: Add OpenRISC target.
479 * Makefile.in: Regenerated.
480
481 * configure.tgt: Add openrisc-*-* mapping.
482
483 2001-05-02 Nick Clifton <nickc@redhat.com>
484
485 * emultempl/aix.em: Replace buystring with xstrdup.
486 * emultempl/beos.em: Replace buystring with xstrdup.
487
488 2001-05-02 H.J. Lu <hjl@gnu.org>
489
490 * ldfile.c: Include "libiberty.h".
491 * ldlex.l: Likewise.
492
493 * ldmisc.c (buystring): Removed.
494 * ldmisc.h: Likewise.
495
496 * ldfile.c: Replace buystring with xstrdup.
497 * ldlang.c: Likewise.
498 * ldlex.l: Likewise.
499 * ldmain.c: Likewise.
500 * ldmisc.c: Likewise.
501 * lexsup.c: Likewise.
502 * mpw-eppcmac.c: Likewise.
503
504 2001-04-30 Andreas Jaeger <aj@suse.de>
505
506 * emulparms/elf_x86_64.sh (MAXPAGESIZE): Fix value.
507
508 2001-04-28 Paul Sokolovsky <Paul.Sokolovsky@technologist.com>
509
510 * ldlang.c (load_symbols): Give emulation a chance
511 to process unrecognized file before fatal error is
512 reported, not after.
513
514 2001-04-27 Sean McNeil <sean@mcneil.com>
515
516 * configure.tgt: Add arm-vxworks target.
517 * scripttempl/armcoff.sc: Support .text or .data as a section name
518 prefix.
519 Define _etext.
520
521 2001-04-13 J.T. Conklin <jtc@redback.com>
522
523 * ld.texinfo: Document --fatal-warnings.
524 * ld.1: Regenerate.
525
526 * ldmisc.c (vfinfo): Set flag to inhibit making executable if
527 warnings have been turned into errors.
528 * lexsup.c (OPTION_WARN_FATAL): Define.
529 (ld_options): Entry for --fatal-warnings.
530 (parse_args): Handle OPTION_WARN_FATAL.
531 * ld.h (ld_config_type): Add fatal_warnings field.
532
533 2001-04-13 Jakub Jelinek <jakub@redhat.com>
534
535 * ldmain.c (main): Default to discard_sec_merge.
536 * lexsup.c (OPTION_DISCARD_NONE): Define.
537 (ld_options): Add --discard-none.
538 (parse_args): Handle OPTION_DISCARD_NONE.
539 * ldlang.c (wild_doit): SEC_MERGE should be set in the output
540 section only if SEC_MERGE and SEC_STRINGS flags and entsize of
541 all its input sections match.
542
543 2001-04-05 Steven J. Hill <sjhill@cotw.com>
544
545 * Makefile.am (ALL_EMULATIONS): Add eelf32ltsmip.o.
546 (ALL_64_EMULATIONS): Add eelf64btsmip.o and eelf64ltsmip.o.
547 (eelf32ltsmip.c): New target.
548 (eelf64btsmip.c): Likewise.
549 (eelf64ltsmip.c): Likewise.
550 * Makefile.in: Regenerated.
551
552 * configure.tgt (mips*el-*-linux-gnu): Uses traditional MIPS
553 target.
554 (mips*-*-linux-gnu*): Likewise.
555
556 * emulparams/elf32ltsmip.sh: New. Traditional little endian
557 MIPS taget.
558 * emulparams/elf64btsmip.sh: New. Traditional 64bit big endian
559 target.
560 * emulparams/elf64ltsmip.sh: New. Traditional 64bit little
561 endian target.
562
563 2001-04-05 Hans-Peter Nilsson <hp@axis.com>
564
565 * emulparams/criself.sh (EXECUTABLE_SYMBOLS): Cannot provide
566 correct value of __Stext here.
567 (TEXT_START_SYMBOLS): Define; always define __Stext, to start of
568 .startup section.
569
570 * emulparams/crislinux.sh: Remove FIXME.
571
572 2001-04-02 Alan Modra <alan@linuxcare.com.au>
573
574 * emulparams/hppalinux.sh (MAXPAGESIZE): Set to 64k.
575 (TEXT_START_ADDR, TARGET_PAGE_SIZE): Likewise.
576
577 2001-03-27 Hans-Peter Nilsson <hp@axis.com>
578
579 * configure.tgt (cris-*-*): Change default emulation to criself.
580 (cris-*-*aout*): New rule.
581
582 2001-03-27 Matthew Wilcox <willy@ldl.fc.hp.com>
583
584 * emulparams/hppalinux.sh (MAXPAGESIZE): Set to 0x4000.
585 (TEXT_START_ADDR, TARGET_PAGE_SIZE): Ditto.
586
587 2001-03-26 Andreas Jaeger <aj@suse.de>
588
589 * ld.texinfo (Overview): Fix syntax in texi code.
590
591 2001-03-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>
592
593 * ld.texinfo: Put @c man indications to generate the ld man page.
594 When generating man, define all the variables. Define SEEALSO
595 and SYNOPSIS. Re-organize some lines to avoid the cross references.
596 * Makefile.am (MANCONF, TEXI2POD, POD2MAN): New variables.
597 (ld.1): Generate from ld.texinfo.
598 * Makefile.in: Regenerate.
599
600 2001-03-23 Mark Elbrecht <snowball3@bigfoot.com>
601
602 * scripttempl/i386go32.sc: Support the GCC flags '-ffunction-sections'
603 and '-fdata-sections'. Set the VMA of STABS sections to zero.
604
605 2001-03-17 Ulrich Drepper <drepper@redhat.com>
606
607 * emultmpl/elf32.em (gld${EMULATION_NAME}_search_needed): If NAME
608 is an absolute path look only for this file and not along the path.
609
610 2001-03-17 Ulrich Drepper <drepper@redhat.com>
611
612 * emultempl/elf32.em (OPTION_GROUP): New macro.
613 Add new option Bgroup to longopts.
614 (gld*_parse_args): Handle GROUP_OPTION and recognize -z defs.
615 (gld*_list_options): Add -Bgroup and -z defs.
616 * ld.1: Document -Bgroup and -z defs.
617 * ld.texinfo: Likewise.
618
619 2001-03-07 Michael Meissner <meissner@redhat.com>
620
621 * scripttempl/elfd10v.sc (.rodata,.rodata1,.data1,.sdata): Deal
622 with sections created by -fdata-sections.
623 (.dynbss,.bss): Ditto.
624
625 2001-03-05 Alan Modra <alan@linuxcare.com.au>
626
627 * emultempl/m68kelf.em (m68k_elf_after_allocation): Call
628 after_allocation_default, not gld..._before_allocation.
629
630 2001-02-27 Alan Modra <alan@linuxcare.com.au>
631
632 * configure.in (BFD_VERSION): New.
633 (AM_INIT_AUTOMAKE): Use $BFD_VERSION.
634 * configure: Regenerate.
635 * Makefile.am: Run "make dep-am"
636 * Makefile.in: Regenerate.
637
638 2001-02-26 Timothy Wall <twall@cygnus.com>
639
640 * emulparams/elf64_aix.sh: Add additional read-only sections;
641 uncomment lines which are now required.
642
643 2001-02-26 H.J. Lu <hjl@gnu.org>
644
645 * ldlang.c (open_input_bfds): Set the bfd error handler so
646 that problems can be caught whilst loading symbols.
647 (record_bfd_errors): New function: Report BFD errors and mark
648 the executable output as being invalid.
649
650 2001-02-22 Timothy Wall <twall@cygnus.com>
651
652 * configure.host: Add configuration for ia64-*-aix*.
653 * Makefile.am (ALL_64_EMULATIONS): Add emulation for ia64-*-aix*.
654 Add dependencies for eelf64_aix.c.
655 * Makefile.in: Regenerate.
656 * configure.tgt: Add ia64-*-aix* mapping.
657 * emulparams/elf64_aix.sh: Add settings for elf64 on aix5.
658 * testsuite/ld-bootstrap/bootstrap.exp: Exclude ia64 flavor from
659 AIX-specific test.
660
661 2001-02-20 H.J. Lu <hjl@gnu.org>
662
663 * ldfile.c (ldfile_open_file): Set entry->search_dirs_flag to
664 false if we found the file.
665
666 2001-02-18 David O'Brien <obrien@FreeBSD.org>
667
668 * configure.tgt: Add FreeBSD/Alpha, FreeBSD/x86-64, FreeBSD/ia64,
669 FreeBSD/PowerPC, FreeBSD/arm, and FreeBSD/sparc64 entries.
670
671 2001-02-18 lars brinkhoff <lars@nocrew.org>
672
673 * Makefile.am: Add PDP-11 target.
674 * configure.tgt: Likewise.
675 * emulparams/pdp11.sh: New file.
676
677 2001-02-17 David O'Brien <obrien@FreeBSD.org>
678
679 * configure.host: Add a generic FreeBSD configuration entry such that
680 all [modern] FreeBSD systems on all platforms will look the same.
681
682 2001-02-14 H.J. Lu <hjl@gnu.org>
683
684 * configure.tgt: Remove mention of earmelf_linux26.
685
686 2001-02-13 Richard Henderson <rth@redhat.com>
687
688 * emulparams/elf64_ia64.sh (OTHER_GOT_SYMBOLS): Remove.
689
690 2001-02-13 H.J. Lu <hjl@gnu.org>
691
692 * ldexp.h (node_type): Add etree_provided.
693 * ldexp.c (exp_fold_tree): Handle etree_provided. Set the node
694 type to etree_provided if defined by PROVIDE. Allow updating
695 for etree_provided.
696 (exp_print_tree): Handle etree_provided.
697 * mpw-elfmips.c (gldelf32ebmip_find_exp_assignment): Handle
698 etree_provided.
699
700 2001-02-09 David Mosberger <davidm@hpl.hp.com>
701
702 * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Add
703 .IA_64.unwind.* pattern to unwind table section and
704 .IA_64.unwind_info* pattern to unwind info section.
705
706 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
707
708 * Makefile.am: Add linux target for S/390.
709 * Makefile.in: Likewise.
710 * configure.host: Likewise.
711 * configure.tgt: Likewise.
712 * emulparams/elf64_s390.sh: New file.
713 * emulparams/elf_s390.sh: New file.
714
715 2001-02-09 Jakub Jelinek <jakub@redhat.com>
716
717 * configure.tgt (sparc64-*-linux-gnu*): Add elf32_sparc into
718 targ_extra_libpath.
719 (sparc-*-linux-gnu*): Add elf64_sparc into targ_extra_libpath.
720
721 2001-02-06 Philip Blundell <philb@gnu.org>
722
723 * Makefile.am: Remove mention of earmelf_linux26.
724 * Makefile.in: Regenerate.
725
726 2001-02-04 Philip Blundell <philb@gnu.org>
727
728 * emulparams/armelf_linux.sh (TEXT_START_ADDR): Set to 0x8000.
729 * emulparams/armelf_linux26.sh: Delete.
730 * configure.tgt: Remove mention of armelf_linux26 emulation.
731
732 2001-02-01 Nick Clifton <nickc@redhat.com>
733
734 * ld.1: Replace occurances of -oformat with --oformat.
735
736 2001-01-25 Jim Driftmyer <jdrift@stny.rr.com>
737
738 * ldlang.c (lang_leave_overlay): Don't set lma_region when
739 load_base is specified.
740
741 2001-01-24 Hans-Peter Nilsson <hp@axis.com>
742
743 * emultempl/elf32.em: Correct spelling in comments and listed
744 options.
745
746 2001-01-23 Alan Modra <alan@linuxcare.com.au>
747
748 * ldlang.c (lang_leave_overlay): Only set lma_region from the
749 default for the first section of a group of overlay sections.
750
751 2001-01-22 Alan Modra <alan@linuxcare.com.au>
752
753 * Makefile.am (GENSCRIPTS): Pass exec_prefix.
754 * Makefile.in: Regenerate.
755 * genscripts.sh: Use exec_prefix parameter to specify tool lib.
756 Check for null tool_dir.
757
758 2001-01-16 Jim Wilson <wilson@redhat.com>
759
760 * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Add IA_64.unwind
761 and IA_64.unwind.info.
762
763 2001-01-16 H.J. Lu <hjl@gnu.org>
764
765 * ldlang.c (lang_check): Merge the private data only if the
766 input file has contents.
767
768 2001-01-14 Alan Modra <alan@linuxcare.com.au>
769
770 * emulparams/hppalinux.sh (OUTPUT_FORMAT): Set to elf32-hppa-linux.
771
772 * emultempl/hppaelf.em (hppaelf_after_parse): New function,
773 enabling search for libmilli. On a relocatable link, make .text
774 sections unique.
775 (LDEMUL_AFTER_PARSE): Define.
776 (hppaelf_finish): Correct spelling of relocatable in comments.
777
778 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
779 rummage through the script for sections on the unique list.
780 Correct length of strncmp for ".note".
781 (gld${EMULATION_NAME}_check_needed): Rearrange function.
782
783 * ldlang.c (unique_section_list): New var.
784 (unique_section_p): New function.
785 (walk_wild_section): Don't match sections on unique_section_list.
786 (lang_add_unique): New function.
787 Correct spelling of relocatable in comments.
788
789 * ldlang.h (struct unique_sections): Declare.
790 (unique_section_list): Declare.
791 (unique_section_p): Declare.
792 (lang_add_unique): Declare.
793
794 * lexsup.c (ld_options): Allow --unique to take an optional arg.
795 (parse_args [OPTION_UNIQUE]): Call lang_add_unique.
796
797 * ld.texinfo (--unique): Update.
798
799 2001-01-13 Nick Clifton <nickc@redhat.com>
800
801 * lexsup.c (parse_args): Remove spurious white space.
802
803 2001-01-12 Nick Clifton <nickc@redhat.com>
804
805 * lexsup.c (parse_args): Update copyright date.
806
807 2001-01-12 Philip Blundell <pb@futuretv.com>
808
809 * configure.host: Set HOSTING_LIBS appropriately for ix86-cygwin.
810
811 2001-01-10 Kazu Hirata <kazu@hxi.com>
812
813 * scripttempl/h8300.sc: Fix formatting. Fix a comment typo.
814 * scripttempl/h8300h.sc: Fix formatting.
815 * scripttempl/h8300s.sc: Likewise.
816 * scripttempl/h8500.sc: Likewise.
817 * scripttempl/h8500b.sc: Likewise.
818 * scripttempl/h8500c.sc: Likewise.
819 * scripttempl/h8500m.sc: Likewise.
820 * scripttempl/h8500s.sc: Likewise.
821
822 2000-01-07 David O'Brien <obrien@BSDi.com>
823
824 * emultempl/elf32.em: Only perform Linux ld hints processing when
825 targeting Linux.
826
827 2001-01-07 Philip Blundell <philb@gnu.org>
828
829 * ld.texinfo (Bug Reporting): Update email address for reports.
830
831 2000-12-31 Nick Clifton <nickc@redhat.com>
832
833 * lexsup.c (parse_args): Set opterr to 0 and detect unparsed long
834 options by checking for a return value of '?' not -1.
835
836 2000-12-28 Nick Clifton <nickc@redhat.com>
837
838 * lexsup.c (struct ld_option): Add new enum value:
839 EXACTLY_TWO_DASHES.
840 (ld_options[]): Change -omagic, -output and -oformat options
841 to be EXACTLY_TWO_DASHES.
842 (OUTPUT_COUNT): Use ARRAY_SIZE.
843 (parse_args): Change parameter 'argc' to unsigned.
844 Place EXACTLY_TWO_DASHES options into new really_longopts
845 array.
846 If getopt_long_only fails, try calling getopt_long using the
847 really_longopts array.
848 (help): Print a double dash for both EXACTLY_TWO_DASHES and
849 TWO_DASHES options.
850
851 * ldlex.h: Fix prototype of parse_args.
852
853 * ld.texinfo: Document that long options starting with 'o'
854 must be preceeded by two dashes. Change example of a single
855 dashed long option from -oformat to -trace-symbol.
856
857 2000-12-26 Danny Smith <danny_r_smith_2001@yahoo.co.nz>
858
859 * emultempl/pe.em (OPTION_NO_DEFAULT_EXCLUDES): Define.
860 (longopts[]): New --no-default-excludes option.
861 (gld_${EMULATION_NAME}_list_options): Document.
862 (gld_${EMULATION_NAME}_parse_args): Handle.
863
864 2000-12-13 Michael Sokolov <msokolov@ivan.Harhan.ORG>
865
866 * ldlang.c (new_stat): Revert the last beautification with "innocent"
867 whitespace, it breaks the K&R C preprocessor.
868
869 2000-12-11 DJ Delorie <dj@redhat.com>
870
871 * ld.texinfo: Add notes about --whole-archive and gcc.
872
873 2000-11-18 Fred Fish <fnf@be.com>
874
875 * lexsup.c (OPTION_ALLOW_SHLIB_UNDEFINED): Define.
876 (ld_options): Entry for --allow-shlib-undefined.
877 (parse_args): Handle OPTION_ALLOW_SHLIB_UNDEFINED.
878 * ldmain.c (main): Initialize link_info.allow_shlib_undefined
879 to false.
880 * ld.texinfo: Document new command line switch.
881
882 2000-12-12 Geoffrey Keating <geoffk@redhat.com>
883
884 * emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS):
885 .fixup is actually read/write.
886 * emulparams/elf32lppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
887 * emulparams/elf32ppcsim.sh (OTHER_READWRITE_SECTIONS): Likewise.
888 * emulparams/elf32lppcsim.sh (OTHER_READWRITE_SECTIONS): Likewise.
889
890 Mon Dec 11 14:50:33 MET 2000 Jan Hubicka <jh@suse.cz>
891
892 * NEWS: Add note about x86_64 architecture.
893
894 2000-12-06 Mark Elbrecht <snowball3@bigfoot.com>
895
896 * scripttempl/i386go32.sc: Use PROVIDE with _etext, _edata, _end.
897 Set DWARF2 sections to a VMA of zero.
898
899 2000-12-01 Joel Sherrill <joel@OARcorp.com>
900
901 * configure.tgt (arm-*-rtems*, a29k-*rtems*, h8300-*-rtems*):
902 New targets.
903 (sparc*-*-rtemself*, sparc*-*-rtemsaout*): New targets.
904 (sparc*-*-rtems*): Switched from a.out to ELF.
905
906 2000-11-30 Jan Hubicka <jh@suse.cz>
907
908 * Makefile.am (ALL_EMULATIONS): Add eelf_x86_64.o
909 (eelf_x86_64.c): New.
910 * Makefile.in: Regenerate.
911 * configure.tgt: Add support for x86_64-*-linux-gnu*.
912 * emulparams/elf_x86_64.sh: New.
913
914 2000-11-30 Hans-Peter Nilsson <hp@axis.com>
915
916 * emulparams/crislinux.sh (ENTRY): Change back to _start.
917 (TEXT_START_SYMBOLS): Remove conditional setting of __start.
918
919 * scripttempl/crisaout.sc: Change all RELOCATING not related to
920 merging non-a.out sections into CONSTRUCTING.
921
922 2000-11-28 Nick Clifton <nickc@redhat.com>
923
924 * ld.1 (COPYING): Mention that the GNU Free Documentation
925 License is present in the sources, but not the output, and
926 also available from the GNU website.
927 (GNU Free Documentation License): Comment out this section.
928
929 2000-11-28 David O'Brien <obrien@dragon.nuxi.com>
930
931 * emulparams/elf64alpha.sh (ENTRY): Remove leading underscore as ELF
932 does not use them.
933
934 2000-11-25 David O'Brien <obrien@FreeBSD.org>
935
936 * ld.1: Remove old date so it does not give the impression the manpage
937 is way out of date.
938
939 2000-11-24 Nick Clifton <nickc@redhat.com>
940
941 * configure.tgt (xscale-coff): Add target.
942 (xscale-elf): Add target.
943
944 2000-11-24 Fred Fish <fnf@be.com>
945
946 * ldmain.c (main): Remove redundant init of config.make_executable
947 to true.
948
949 2000-11-15 Richard Henderson <rth@redhat.com>
950
951 * emulparams/elf64alpha.sh (MAXPAGESIZE): Typo -- 64k, not 1M.
952
953 2000-11-14 Kazu Hirata <kazu@hxi.com>
954
955 * scripttempl/h8300.sc: Fix formatting.
956 * scripttempl/h8300h.sc: Likewise.
957 * scripttempl/h8300s.sc: Likewise.
958
959 Tue Nov 14 00:59:19 2000 Denis Chertykov <denisc@overta.ru>
960
961 * scripttempl/elf32avr.sc: Fix bug in .eeprom segment.
962
963 2000-11-09 Philip Blundell <pb@futuretv.com>
964
965 * emultempl/pe.em: Define ___start_SECNAME and ___stop_SECNAME
966 around orphan sections whose names can be represented in C.
967
968 2000-11-07 Jim Wilson <wilson@redhat.com>
969
970 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): New local
971 hold_sdata. If SEC_SMALL_DATA set, set place to hold_sdata.
972
973 2000-11-06 Nick Clifton <nickc@redhat.com>
974
975 * ld.texinfo: Add GNU Free Documentation License.
976 * ldint.texinfo: Add GNU Free Documentation License.
977 * ld.1: Add GNU Free Documentation License.
978
979 2000-11-05 Alan Modra <alan@linuxcare.com.au>
980
981 * ldlex.l (yy_create_string_buffer): Init yy_is_our_buffer,
982 yy_is_interactive, yy_at_bol, and yy_fill_buffer.
983
984 * Makefile.am (DISTCLEANFILES): Add stringify.sed.
985 Move 2000-11-02 Makefile.in changes to this file.
986 * Makefile.in: Regenerate.
987
988 2000-11-03 Nick Clifton <nickc@redhat.com>
989
990 * scripttempl/h8300.sc: Use ${CONSTRUCTING...} to enclose
991 constructors and destructors.
992 * scripttempl/h8300h.sc: Ditto.
993 * scripttempl/h8300s.sc: Ditto.
994 * scripttempl/h8500.sc: Ditto.
995 * scripttempl/h8500b.sc: Ditto.
996 * scripttempl/h8500c.sc: Ditto.
997 * scripttempl/h8500m.sc: Ditto.
998 * scripttempl/h8500s.sc: Ditto.
999 * scripttempl/v850.sc: Ditto.
1000 * scripttempl/w65.sc: Ditto.
1001 * scripttempl/z8000.sc: Ditto.
1002
1003 2000-11-02 Per Lundberg <plundis@chaosdev.org>
1004
1005 * Makefile.in (e_i386_chaos.c): New rule.
1006 (ALL_EMULATIONS): Added e_i386_chaos.o.
1007 * emulparams/elf_i386_chaos.sh: New file.
1008 * configure.tgt: Recognise i[3456]86-chaosdev-storm-chaos.
1009
1010 2000-10-20 Jakub Jelinek <jakub@redhat.com>
1011
1012 * emulparams/elf64_sparc.sh (TEXT_START_ADDR,
1013 NONPAGED_TEXT_START_ADDR): Set to 4GB for Solaris targets.
1014 Fix sed invocation, so that it coped with '/' in Solaris 64bit
1015 library path suffix.
1016 Based on patch by Andrew Macleod <amacleod@cygnus.com>.
1017
1018 2000-10-18 Hans-Peter Nilsson <hp@axis.com>
1019
1020 * scripttempl/crisaout.sc (.text, .data): Pad, with ALIGN (32),
1021 for consecutive sections.
1022
1023 2000-10-17 Chandrakala Chavva <cchavva@redhat.com>
1024
1025 * lexsup.c: New option OPTION_TARGET_HELP. Prints all target specific
1026 options.
1027 * ld.texinfo: Added notes about this new option.
1028
1029 2000-10-16 Nick Clifton <nickc@redhat.com>
1030
1031 * emultempl/pe.em (_after_open): Add tests of return values from
1032 bfd functions. Emit appropriate error messages if necessary.
1033
1034 2000-10-13 Nick Clifton <nickc@redhat.com>
1035
1036 * emultempl/pe.em (_after_open): Delete 'is2' and 'nsyms'
1037 local variables - they are not used, but leave in the call to
1038 bfd_canonicalize_symtab.
1039 (_open_dynamic_archive): Add #ifdef DLL_SUPPORT around use of
1040 pe_dll_search_prefix.
1041
1042 2000-10-12 Charles Wilson <cwilson@ece.gatech.edu>
1043
1044 * emultempl/pe.em (pe_dll_search_prefix): New variable,
1045 (longopts): New --dll-search-prefix option.
1046 (gld_${EMULATION_NAME}_list_options): Document.
1047 (gld_${EMULATION_NAME}_parse_args): Handle.
1048 (gld_${EMULATION_NAME}_open_dynamic_archive): When linking
1049 dynamically, search for a dll named '<prefix><basename>.dll'
1050 in preference to 'lib<basename>.dll' if --dll-search-prefix
1051 is specified.
1052
1053 2000-10-12 Alan Modra <alan@linuxcare.com.au>
1054
1055 * ldlang.c (section_already_linked): Set kept_section instead of
1056 sec->comdat->sec.
1057
1058 2000-10-10 Kazu Hirata <kazu@hxi.com>
1059
1060 * deffile.h: Fix formatting.
1061 * lexsup.c: Likewise.
1062 * mri.c: Likewise.
1063
1064 2000-10-09 Paul Sokolovsky <Paul.Sokolovsky@technologist.com>
1065
1066 * pe-dll.c (make_one): Do not generate code thunk for DATA
1067 exports.
1068 (process_def_file): deduce DATA flag for auto-export sumbols.
1069
1070 2000-10-09 Kazu Hirata <kazu@hxi.com>
1071
1072 * ld.h: Fix formatting.
1073 * ldcref.c: Likewise.
1074 * ldctor.h: Likewise.
1075 * ldemul.c: Likewise.
1076 * ldemul.h: Likewise.
1077 * ldexp.c: Likewise.
1078 * ldexp.h: Likewise.
1079 * ldfile.c: Likewise.
1080 * ldfile.h: Likewise.
1081 * ldlang.c: Likewise.
1082 * ldlang.h: Likewise.
1083 * ldmain.c: Likewise.
1084 * pe-dll.c: Likewise.
1085
1086 * pe-dll.c: Revert some formatting fixes.
1087
1088 2000-10-08 Kazu Hirata <kazu@hxi.com>
1089
1090 * pe-dll.c: Fix formatting.
1091
1092 2000-10-05 Kazu Hirata <kazu@hxi.com>
1093
1094 * ldlang.c: Fix formatting.
1095
1096 2000-10-03 DJ Delorie <dj@redhat.com>
1097
1098 * pe-dll.c (fill_edata): initialize entire block
1099 (make_one): fill in correct section.
1100
1101 2000-10-03 Kazu Hirata <kazu@hxi.com>
1102
1103 * ldexp.c: Fix formatting.
1104
1105 2000-10-02 DJ Delorie <dj@redhat.com>
1106
1107 * emultempl/pe.em (gld_*_after_open): detect case where there two
1108 import libraries for same dll; rename one to ensure proper link
1109 order.
1110
1111 * pe-dll.c (process_def_file): compare ordinals to -1, not 0; fix
1112 typo
1113 (generate_edata): fix typo
1114
1115 2000-09-29 Hans-Peter Nilsson <hp@axis.com>
1116
1117 * scripttempl/crisaout.sc (ENTRY): Now __start.
1118 (.text): Add default setting for __start.
1119 Remove CONSTRUCTORS handling.
1120 (/DISCARD/): Add .gnu.warning.*.
1121 * emulparams/crislinux.sh (ENTRY): Now __start.
1122 (TEXT_START_SYMBOLS): New; provide __Stext and __start default.
1123 * emulparams/criself.sh (OUTPUT_FORMAT): Now elf32-us-cris.
1124 (ENTRY): Now __start.
1125 (INITIAL_READONLY_SECTIONS): Add KEEP for .startup.
1126 (EXECUTABLE_SYMBOLS): Add default setting for __start.
1127
1128 2000-09-29 Kazu Hirata <kazu@hxi.com>
1129
1130 * deffile.h: Fix formatting.
1131 * ld.h: Likewise.
1132 * ldcref.c: Likewise.
1133 * ldctor.c: Likewise.
1134 * ldctor.h: Likewise.
1135 * ldemul.c: Likewise.
1136 * ldemul.h: Likewise.
1137 * ldexp.c: Likewise.
1138 * ldexp.h: Likewise.
1139 * ldfile.c: Likewise.
1140 * ldfile.h: Likewise.
1141 * ldlang.c: Likewise.
1142 * ldlang.h: Likewise.
1143 * lexsup.c: Likewise.
1144 * mri.c: Likewise.
1145 * pe-dll.c: Likewise.
1146
1147 2000-09-28 Paul Sokolovsky <Paul.Sokolovsky@technologist.com>
1148
1149 * pe-dll.c (process_def_file): Uninitialized data wasn't
1150 exported with --export-all-symbols switch.
1151
1152 2000-09-28 DJ Delorie <dj@redhat.com>
1153
1154 * pe-dll.c (fill_edata): rearrange the data so that ordinals and
1155 noname work properly.
1156
1157 2000-09-28 Alan Modra <alan@linuxcare.com.au>
1158
1159 * ld.texinfo (HPPA ELF32): New section.
1160
1161 * emultempl/hppaelf.em (group_size): New.
1162 (hppaelf_finish): Pass group_size to elf32_hppa_size_stubs.
1163 (PARSE_AND_LIST_PROLOGUE): Add OPTION_STUBGROUP_SIZE.
1164 (PARSE_AND_LIST_LONGOPTS): Add --stub-group-size. Duplicate
1165 options to prevent abbreviations matching.
1166 (PARSE_AND_LIST_OPTIONS): Describe the above. Reformat.
1167 (PARSE_AND_LIST_ARGS_CASES): Handle it.
1168
1169 2000-09-21 Michael Sokolov <msokolov@ivan.Harhan.ORG>
1170
1171 * emultempl/m68kelf.em: Conditionalise the embedded relocs feature
1172 on the m68*-*-elf target. Make it support COFF input objects.
1173
1174 2000-09-21 Kazu Hirata <kazu@hxi.com>
1175
1176 * ldmain.c: Fix formatting.
1177 * ldmisc.c: Likewise.
1178 * ldver.c: Likewise.
1179 * ldwrite.c: Likewise.
1180
1181 2000-09-21 Alan Modra <alan@linuxcare.com.au>
1182
1183 * ldwrite.c (clone_section): Silence gcc warnings.
1184
1185 2000-09-20 Alan Modra <alan@linuxcare.com.au>
1186
1187 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Handle
1188 out of memory failure.
1189
1190 * ldwrite.c (ldwrite): Remove unnecessary einfo arg.
1191 (clone_section): Handle out of memory failures. Rename var to
1192 avoid c++ reserved word.
1193
1194 2000-09-18 Alan Modra <alan@linuxcare.com.au>
1195
1196 * emultempl/hppaelf.em (hppaelf_add_stub_section): Rename
1197 stub_name param to stub_sec_name.
1198 (hppaelf_finish): Modify call to elf32_hppa_size_stubs.
1199
1200 2000-09-10 Michael Sokolov <msokolov@ivan.Harhan.ORG>
1201
1202 * emultempl/m68kelf.em: New file.
1203 * emulparams/m68kelf.sh (EXTRA_EM_FILE): Use it.
1204 * Makefile.am (em68kelf.c): Add dependency on m68kelf.em.
1205 * Makefile.in: Regenerate.
1206
1207 2000-09-15 Alan Modra <alan@linuxcare.com.au>
1208
1209 * emulparams/hppalinux.sh (DATA_START_SYMBOLS): Provide $global$
1210 only as needed.
1211
1212 2000-09-13 Nick Clifton <nickc@redhat.com>
1213
1214 * ldmain.c (multiple_definition): Disable relaxation if
1215 multiple symbol definitions are encountered - otherwise the
1216 linker could abort with an assertion failure.
1217
1218 2000-09-10 Nick Clifton <nickc@redhat.com>
1219
1220 * mri.c: Fix formatting.
1221
1222 2000-09-07 H.J. Lu <hjl@gnu.org>
1223
1224 * configure.in (AC_ISC_POSIX): Put after AC_CANONICAL_SYSTEM.
1225 * configure: Rebuild.
1226
1227 2000-09-07 H.J. Lu <hjl@gnu.org>
1228
1229 * Makefile.am (lexsup.o): Also depend on $(INCDIR)/demangle.h.
1230 * Makefile.in: Rebuild.
1231
1232 2000-09-07 Alan Modra <alan@linuxcare.com.au>
1233
1234 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Fix
1235 broken list handling. Create __start_SECNAME and __stop_SECNAME
1236 when no place-holder. Add some comments. Test both SEC_CODE and
1237 SEC_READONLY for hold_text to prevent .rodata orphan poisoning.
1238 Handle case where no output section statement created.
1239
1240 2000-09-07 Niibe Yutaka <gniibe@m17n.org>, Kaz Kojima <kkojima@rr.iij4u.or.jp>, Alexandre Oliva <aoliva@redhat.com>
1241
1242 * configure.tgt (sh-*-linux*): Added.
1243 * Makefile.am: Added eshelf_linux and eshlelf_linux.
1244 * Makefile.in: Rebuilt.
1245 * emulparams/shelf_linux.sh: New file.
1246 * emulparams/shlelf_linux.sh: New file.
1247
1248 2000-09-06 Alan Modra <alan@linuxcare.com.au>
1249
1250 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
1251 try shuffling sections when the orphan happens to be the place
1252 holder. Keep count of unique section names generated so we speed
1253 the search for a new name.
1254
1255 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
1256
1257 * configure: Rebuilt with new libtool.m4.
1258
1259 2000-09-05 Nick Clifton <nickc@redhat.com>
1260
1261 * Makefile.in: Regenerate.
1262 * aclocal.m4: Regenerate.
1263 * configure: Regenerate.
1264 * config.in: Regenerate.
1265 * po/ld.pot: Regenerate.
1266
1267 * ldint.texinfo: Remove CVS revision marker - it foils local
1268 comparisons.
1269
1270 * emultempl/ticoff.em: Remove extraneous comma.
1271
1272 2000-09-05 Alan Modra <alan@linuxcare.com.au>
1273
1274 * emultempl/hppaelf.em (hppaelf_add_stub_section): Add SEC_RELOC
1275 to stub section flags.
1276 (hppa_for_each_input_file_wrapper): New.
1277 (hppa_lang_for_each_input_file): New.
1278 (lang_for_each_input_file): Define to call above.
1279 (multi_subspace): New.
1280 (hppaelf_finish): Pass multi_subspace to elf32_hppa_size_stubs.
1281 (PARSE_AND_LIST_PROLOGUE): Define.
1282 (PARSE_AND_LIST_LONGOPTS): Define.
1283 (PARSE_AND_LIST_OPTIONS): Define.
1284 (PARSE_AND_LIST_ARGS_CASES): Define.
1285 (hppaelf_finish): Call elf32_hppa_set_gp.
1286 (hppaelf_set_output_arch): Remove.
1287 (LDEMUL_SET_OUTPUT_ARCH): Remove.
1288
1289 * emulparams/hppalinux.sh (ELFSIZE): Define.
1290 (MACHINE): Define.
1291 (OTHER_READONLY_SECTIONS): Define.
1292 (DATA_PLT): Define.
1293 (GENERATE_SHLIB_SCRIPT): Define.
1294
1295 * ldlang.c: Add missing prototypes, and tidy others. Change CONST
1296 to const throughout. Change `void *' to `PTR' throughout.
1297 (lang_memory_default): Function is local to file, add `static'.
1298
1299 * Makefile.am (ehppaelf.c): Depend on emultempl/elf32.em.
1300 (ehppalinux.c): Likewise.
1301 (earmelf.c): Likewise.
1302 (earmelf_linux.c): Likewise.
1303 (earmelf_linux26.c): Likewise.
1304 * Makefile.in: Regenerate.
1305
1306 * ld.h (ld_config_type): Add unique_orphan_sections.
1307 * lexsup.c (OPTION_UNIQUE): Define.
1308 (ld_options): Add "--unique".
1309 (parse_args): Handle it.
1310 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
1311 search for an existing output section if unique_orphan_sections is
1312 set. Make use of bfd_get_unique_section_name rather than
1313 duplicating code here.
1314 * ld.texinfo: Describe --unique.
1315
1316 * lexsup.c (ld_options): Make split-by-reloc arg optional. Add
1317 optional arg to split-by-file.
1318 (parse_args): Handle them.
1319 * ld.texinfo: Update description of these options.
1320 * ldwrite.c (clone_section): Pass in the section name. Replace
1321 local code with bfd_get_unique_section_name.
1322 (split_sections): Tidy code and comments. Use a list traversal
1323 more appropriate to the list construction. Handle cooked section
1324 sizes. Split when split_by_reloc reached rather than exceeded.
1325 Track section size and split when split_by_file reached. Fix
1326 link_order_tail (even though it's not used).
1327 (ldwrite): Modify condition for calling split_sections to suit
1328 changed split_by_reloc and split_by_file.
1329 * ldmain.c (main): Init config.split_by_reloc and
1330 config.split_by_file to -1.
1331 * ld.h (ld_config_type): Change split_by_reloc to unsigned.
1332 Change split_by_file to bfd_size_type.
1333
1334 2000-09-02 Nick Clifton <nickc@redhat.com>
1335
1336 * configure.in: Increase version number to 2.10.91.
1337 * NEWS: Mention new ability to support removal of duplicate DWARF2
1338 debug information.
1339 * configure: Regenerate.
1340 * aclocal.m4: Regenerate.
1341 * config.in: Regenerate.
1342
1343 2000-09-02 Daniel Berlin <dberlin@redhat.com>
1344
1345 * scripttempl/elf.sc: Add .gnu.linkonce.wi.* to .debug_info
1346 sections.
1347 * scripttempl/elf32avr.sc: Ditto.
1348 * scripttempl/elfd10v.sc: Ditto.
1349 * scripttempl/elfd30v.sc: Ditto.
1350 * scripttempl/elfi370.sc: Ditto.
1351 * scripttempl/elfm68hc11.sc: Ditto.
1352 * scripttempl/elfm68hc12.sc: Ditto.
1353 * scripttempl/elfi386beos.sc: Ditto.
1354 * scripttempl/v850.sc: Ditto.
1355
1356 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
1357
1358 * acinclude.m4: Include libtool and gettext macros from the
1359 top level.
1360 * aclocal.m4, configure: Rebuilt.
1361
1362 2000-08-25 Nick Clifton <nickc@redhat.com>
1363
1364 * ldlang.c (open_output): When choosing the target for a
1365 particular endianness, do nothing if the target is not
1366 supported.
1367
1368 2000-08-25 H.J. Lu <hjl@gnu.org>
1369
1370 * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Don't
1371 check -rpath nor LD_RUN_PATH for cross link.
1372 * ld.texinfo: Document the change.
1373
1374 2000-08-24 Hans-Peter Nilsson <hp@axis.com>
1375
1376 * NEWS: Mention support for CRIS.
1377
1378 2000-08-23 H.J. Lu <hjl@gnu.org>
1379
1380 * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Get
1381 the current runpath list from bfd_elf_get_runpath_list ()
1382 before search.
1383
1384 2000-08-22 H.J. Lu <hjl@gnu.org>
1385
1386 * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Search
1387 the DT_RPATH/DT_RUNPATH entries for DT_NEEDED after
1388 LD_LIBRARY_PATH for native linker. Display the needed DSO if
1389 trace_file_tries is non-zero.
1390 (gld${EMULATION_NAME}_try_needed): Report the needed DSO found
1391 if trace_file_tries is non-zero.
1392
1393 * ld.texinfo: Document the usage of DT_RPATH/DT_RUNPATH.
1394 * NEWS: Mention it.
1395
1396 2000-08-14 Jason Eckhardt <jle@cygnus.com>
1397
1398 * NEWS: Mention i860 support.
1399
1400 2000-08-14 Andreas Schwab <schwab@suse.de>
1401
1402 * scripttempl/elf.sc: Fix last change to use correct comment
1403 syntax.
1404
1405 2000-08-10 Geoff Keating <geoffk@cygnus.com>
1406
1407 * scripttempl/elf.sc: Add a comment giving the correspondence
1408 between sections, per-datum sections, and linkonce sections. Make
1409 the comment true even for .bss, .sdata, .sdata2, .sbss, and
1410 .sbss2.
1411
1412 2000-08-10 Jason Eckhardt <jle@cygnus.com>
1413
1414 * emulparams/elf32_i860.sh: New file.
1415 * configure.tgt: Recognize new target i860-stardent-{sysv4*|elf*}.
1416 * Makefile.am (ALL_EMULATIONS): Add eelf32_i860.o.
1417 (eelf32_i860.c): New rule.
1418 * Makefile.in: Regenerate.
1419
1420 2000-08-10 Nick Clifton <nickc@cygnus.com>
1421
1422 * emulparams/mipspe.sh (ENTRY): Add definition.
1423
1424 2000-08-08 Peter Jeremy <peter.jeremy@alcatel.com.au>
1425
1426 * emultempl/elf32.em (_after_close): Refer to -rpath not --rpath
1427 in error message.
1428
1429 2000-08-08 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1430
1431 * scripttempl/elfm68hc11.sc: Define __bss_size symbol to indicate
1432 the final size of .bss section.
1433 * scripttempl/elfm68hc12.sc: Likewise.
1434
1435 2000-08-04 Alan Modra <alan@linuxcare.com.au>
1436
1437 * emultempl/elf32.em (gld_${EMULATION_NAME}_parse_args): Rename to
1438 gld${EMULATION_NAME}_parse_args for consistency. Combine
1439 lastoptind and prevoptind vars, and keep track of last optind.
1440 (gld_${EMULATION_NAME}_list_options): Rename to
1441 gld${EMULATION_NAME}_list_options.
1442
1443 2000-08-03 Rodney Brown <RodneyBrown@pmsc.com>
1444
1445 * configure.tgt: Select targ_emul=elf_i386 for Unixware 7
1446 (i586-sco-sysv5uw7.1.0).
1447
1448 2000-07-27 H.J. Lu <hjl@gnu.org>
1449
1450 * emulparams/elf64alpha.sh (PARSE_AND_LIST_ARGS): Removed.
1451 (PARSE_AND_LIST_PROLOGUE): New.
1452 (PARSE_AND_LIST_LONGOPTS): Likewise.
1453 (PARSE_AND_LIST_OPTIONS): Likewise.
1454 (PARSE_AND_LIST_ARGS_CASES): Likewise.
1455 (PARSE_AND_LIST_EPILOGUE): Likewise.
1456
1457 2000-07-28 Alan Modra <alan@linuxcare.com.au>
1458
1459 * emultempl/armelf.em: Elide functions common to elf32.em,
1460 ie. most of the file.
1461 (arm_elf_after_open): New. Do arm specific things then call
1462 gld${EMULATION_NAME}_after_open.
1463 (arm_elf_before_allocation): New. Call
1464 gld${EMULATION_NAME}_before_allocation then do arm specifics.
1465 (PARSE_AND_LIST_PROLOGUE): Define.
1466 (PARSE_AND_LIST_SHORTOPTS): Define.
1467 (PARSE_AND_LIST_LONGOPTS): Define.
1468 (PARSE_AND_LIST_OPTIONS): Define.
1469 (PARSE_AND_LIST_ARGS_CASES): Define.
1470 (LDEMUL_AFTER_OPEN): Define.
1471 (LDEMUL_BEFORE_ALLOCATION): Define.
1472 (LDEMUL_BEFORE_PARSE): Define.
1473 (LDEMUL_FINISH): Define.
1474
1475 * emultempl/hppaelf.em: Similarly zap most of this file.
1476 (hppaelf_add_stub_section): Prototype.
1477 (hppaelf_layaout_sections_again): Prototype.
1478 (hook_in_stub): Prototype.
1479 (LDEMUL_SET_OUTPUT_ARCH): Define.
1480 (LDEMUL_FINISH): Define.
1481 (LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS): Define.
1482
1483 * emulparams/armelf.sh (TEMPLATE_NAME): Use elf32.
1484 (EXTRA_EM_FILE): New.
1485 * emulparams/armelf_linux.sh: Likewise.
1486 * emulparams/armelf_linux26.sh: Likewise.
1487 * emulparams/hppalinux.sh: Likewise.
1488 * emulparams/hppaelf.sh: Likewise.
1489 (NOP): Define.
1490
1491 * emultempl/elf32.em: Fix formatting.
1492 (EXTRA_EM_FILE): Source it.
1493 (LDEMUL_BEFORE_PARSE, LDEMUL_SYSLIB, LDEMUL_HLL,
1494 LDEMUL_AFTER_PARSE, LDEMUL_AFTER_OPEN, LDEMUL_AFTER_ALLOCATION,
1495 LDEMUL_SET_OUTPUT_ARCH, LDEMUL_CHOOSE_TARGET,
1496 LDEMUL_BEFORE_ALLOCATION, LDEMUL_GET_SCRIPT, LDEMUL_FINISH,
1497 LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS,
1498 LDEMUL_OPEN_DYNAMIC_ARCHIVE, LDEMUL_PLACE_ORPHAN,
1499 LDEMUL_SET_SYMBOLS, LDEMUL_PARSE_ARGS, LDEMUL_UNRECOGNIZED_FILE,
1500 LDEMUL_LIST_OPTIONS, LDEMUL_RECOGNIZED_FILE,
1501 LDEMUL_FIND_POTENTIAL_LIBRARIES): New shell vars. Add code to
1502 allow functions in this file to be overridden.
1503 (PARSE_AND_LIST_SHORTOPTS): Handle it.
1504
1505 * emultempl/m68kcoff.em: Include ldfile.h before ldemul.h.
1506
1507 * emultempl/elf32.em: Reorganize file.
1508
1509 2000-07-27 Ivan Kokshaysky <ink@jurassic.park.msu.ru>
1510
1511 * emulparams/elf64alpha.sh: Implement "-taso" emulation
1512 specific option to fit 64-bit executable in the lower
1513 31-bit address range. This is done by changing start
1514 address of .interp (the very first section of executable)
1515 and then setting EF_ALPHA_32BIT elf header flag.
1516
1517 2000-07-21 Michael Sokolov <msokolov@ivan.Harhan.ORG>
1518
1519 * emultempl/m68kcoff.em: New file.
1520 * emulparams/m68kcoff.sh (TEMPLATE_NAME): Use m68kcoff template.
1521 * Makefile.am (em68kcoff.c): Depend on m68kcoff.em rather than
1522 generic.em.
1523 * Makefile.in: Regenerate.
1524
1525 2000-07-20 H.J. Lu <hjl@gnu.org>
1526
1527 * emultempl/elf32.em (longopts): Duplicate "disable-new-dtags"
1528 and "disable-new-dtags" to stop getopt from treating -d/-e as
1529 abbreviations for these options.
1530
1531 2000-07-20 H.J. Lu <hjl@gnu.org>
1532
1533 * ld.texinfo: Add documentation for --disable-new-dtags and
1534 --enable-new-dtags.
1535
1536 * ldmain.c (main): Initialize link_info.new_dtags to false.
1537
1538 * emultempl/elf32.em (gld_${EMULATION_NAME}_parse_args): Add
1539 --disable-new-dtags and --enable-new-dtags.
1540 (gld_${EMULATION_NAME}_list_options): Likewise.
1541
1542 2000-07-05 Kenneth Block <krblock@computer.org>
1543
1544 * lexsup.c: Add optional style to demangle switch
1545 * ld.texinfo: Document optional style to demangle switch.
1546
1547 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
1548
1549 * Makefile.am (ALL_EMULATIONS): Add ecrisaout.o, ecriself.o,
1550 ecrislinux.o.
1551 (ecrisaout.c, ecriself.c, ecrislinux.c): New rules.
1552 Regenerate dependencies.
1553 * Makefile.in: Rebuild.
1554 * configure.tgt (cris-*-*): New target.
1555 * emulparams/crisaout.sh, emulparams/criself.sh,
1556 emulparams/crislinux.sh, scripttempl/crisaout.sc: New files.
1557 * po/POTFILES.in, po/ld.pot: Regenerate.
1558
1559 2000-07-20 H.J. Lu <hjl@gnu.org>
1560
1561 * emultempl/elf32.em (gld_${EMULATION_NAME}_list_options):
1562 Print out ignored -z options.
1563
1564 2000-07-19 H.J. Lu <hjl@gnu.org>
1565
1566 * emulparams/elf32mcore.sh (PARSE_AND_LIST_ARGS): Removed.
1567 (PARSE_AND_LIST_PROLOGUE): New.
1568 (PARSE_AND_LIST_LONGOPTS): Likewise.
1569 (PARSE_AND_LIST_OPTIONS): Likewise.
1570 (PARSE_AND_LIST_ARGS_CASES): Likewise.
1571
1572 * ldmain.c (main): Clear link_info.flags and link_info.flags_1.
1573
1574 * lexsup.c (ld_options): Comment out 'z'.
1575 (parse_args): Likewise.
1576
1577 * emultempl/elf32.em: Include "elf/common.h".
1578 (gld_${EMULATION_NAME}_parse_args): Defined. Handle some -z
1579 options.
1580 (gld_${EMULATION_NAME}_list_options): Likewise.
1581
1582 * ld.texinfo: Add documentation for the recognized -z options.
1583
1584 2000-07-19 H.J. Lu <hjl@gnu.org>
1585
1586 * emultempl/elf32.em (gld${EMULATION_NAME}_try_needed): Call
1587 bfd_elf_set_dt_needed_soname ().
1588
1589 2000-07-18 DJ Delorie <dj@cygnus.com>
1590
1591 * pe-dll.c (pe_dll_id_target): check object target name also
1592
1593 2000-07-18 Hans-Peter Nilsson <hp@axis.com>
1594
1595 * scripttempl/elf.sc (.init): Only do ${INIT_START} and
1596 ${INIT_END} if relocating.
1597 (.fini): Likewise ${FINI_START} and ${FINI_END}.
1598
1599 2000-07-16 Charles Wilson <cwilson@ece.gatech.edu>
1600
1601 * emultempl/pe.em (gld_*_open_dynamic_archive): New search
1602 order for dynamic library '-lfoo' on pei386: libfoo.dll.a,
1603 foo.dll.a, libfoo.a, libfoo.dll, foo.dll. This fixes compatibility
1604 errors introduced by the old dynamic lib search order.
1605
1606 2000-07-17 DJ Delorie <dj@cygnus.com>
1607
1608 * pe-dll.c (process_def_file): auto-export data items also
1609 (pe_process_import_defs): also see if _imp_ form needed
1610
1611 2000-07-12 Charles Wilson <cwilson@ece.gatech.edu>
1612
1613 * pe-dll.c (make_one): fix a typo in the __imp_ name decoration
1614 for dll import libraries
1615
1616 2000-07-12 Mark Elbrecht <snowball3@bigfoot.com>
1617
1618 * scripttempl/i386go32.sc: Support the g++ attribute init_priority in
1619 gcc 2.95.2 and later.
1620
1621 2000-07-11 Kazu Hirata <kazu@hxi.com>
1622
1623 * ldfile.c (ldfile_try_open_bfd): Output '\n' after an error
1624 message.
1625
1626 2000-07-10 Alan Modra <alan@linuxcare.com.au>
1627
1628 * ldemul.h (struct lang_input_statement_struct): Remove forward
1629 declaration.
1630 (struct search_dirs): Likewise.
1631 * ldfile.h (struct lang_input_statement_struct): Likewise.
1632 Protect file from multiple inclusion.
1633 * ldlang.h (LANG_FOR_EACH_INPUT_STATEMENT): Move file_chain
1634 declaration from macro to file scope.
1635
1636 * ldemul.c: ldexp.h,ldlang.h,ldfile.h,ldemul.h go in this order.
1637 * ldgram.y: Likewise here.
1638 * ldlang.c: And here.
1639 * ldmain.c: And here.
1640 * mpw-elfmips.c: And here.
1641 * mpw-eppcmac.c: And here.
1642 * emultempl/aix.em: And here.
1643 * emultempl/armcoff.em: And here.
1644 * emultempl/armelf.em: And here.
1645 * emultempl/armelf_oabi.em: And here.
1646 * emultempl/beos.em: And here.
1647 * emultempl/elf32.em: And here.
1648 * emultempl/hppaelf.em: And here.
1649 * emultempl/linux.em: And here.
1650 * emultempl/lnk960.em: And here.
1651 * emultempl/pe.em: And here.
1652 * emultempl/sunos.em: And here.
1653 * mpw-esh.c: And here. Include ldexp.h and ldlang.h too.
1654 * mpw-idtmips.c: Ditto.
1655 * emultempl/generic.em: Ditto.
1656 * emultempl/gld960.em: Ditto.
1657 * emultempl/gld960c.em: Ditto.
1658 * emultempl/mipsecoff.em: Ditto.
1659 * emultempl/ticoff.em: Ditto.
1660 * emultempl/vanilla.em: Ditto.
1661
1662 * pe-dll.c: Include ldfile.h
1663 * ldver.c: Include ldexp.h, ldlang.h, ldfile.h
1664
1665 * mpw-elfmips.c: (gldelf32ebmip_before_allocation): Add missing
1666 arguments to bfd_elf32_size_dynamic_sections call.
1667 (gldelf32ebmip_place_orphan): Add missing arguments to
1668 lang_leave_output_section_statement call.
1669
1670 2000-07-10 H.J. Lu <hjl@gnu.org>
1671
1672 * emultempl/pe.em (pe_enable_stdcall_fixup): Protect with
1673 DLL_SUPPORT.
1674 (strhash): Likewise.
1675 (compute_dll_image_base): Likewise.
1676 (pe_undef_found_sym): Likewise.
1677 (pe_undef_cdecl_match): Likewise.
1678 (gld_${EMULATION_NAME}_open_dynamic_archive): Mark the
1679 argument "arch" with ATTRIBUTE_UNUSED.
1680
1681 2000-07-10 Alan Modra <alan@linuxcare.com.au>
1682
1683 * configure.tgt: Remove extraneous hppa*-*-linux-gnu*.
1684
1685 From Ryan Bradetich <rbradetich@uswest.net>
1686 * ldwrite.c (SSIZE): Remove to cure macro redefinition warning.
1687
1688 2000-07-09 Alan Modra <alan@linuxcare.com.au>
1689
1690 Changes to create multiple linker stubs, positioned immediately
1691 before the section where they are required.
1692 * emultempl/hppaelf.em: Include elf32-hppa.h.
1693 (stub_sec, file_chain): Delete.
1694 (hppaelf_create_output_section_statements): Don't make a stub
1695 section here.
1696 (hook_stub_info): New struct.
1697 (hook_in_stub): New function.
1698 (hppaelf_add_stub_section): New function.
1699 (hppaelf_finish): Do nothing for relocateable links. Modify the
1700 call to elf32_hppa_size_stubs. Move code for updating section
1701 layout from here...
1702 (hppaelf_layaout_sections_again): ..to here, a new function.
1703
1704 * emultempl/hppaelf.em (hppaelf_delete_padding_statements): Fix
1705 broken list handling. Pass in a pointer to the list.
1706 (hppaelf_finish): Update call to hppaelf_delete_padding_statements
1707 for above changes.
1708 (hppaelf_before_parse): Prototype.
1709 (hppaelf_set_output_arch): Prototype.
1710 (hppaelf_create_output_section_statements): Prototype.
1711 (hppaelf_delete_padding_statements): Prototype.
1712 (hppaelf_finish): Prototype.
1713
1714 Merge from elf32.em
1715 * emultempl/hppaelf.em: Include ctype.h.
1716 (struct orphan_save): New.
1717 (gld${EMULATION_NAME}_place_orphan): New.
1718 (output_rel_find): New.
1719 (hppaelf_get_script): Update from elf32.em.
1720 (ld_hppaelf_emulation): Rename to ld_${EMULATION_NAME}_emulation.
1721 Change emulation_name field to "${EMULATION_NAME}". Add
1722 gld${EMULATION_NAME}_place_orphan.
1723
1724 * Makefile.am (ALL_EMULATIONS): Reinstate ehppaelf.o, add
1725 ehppalinux.o, sort it. Regenerate dependencies.
1726 (ehppalinux.c): Depend on hppaelf.em
1727 * Makefile.in: Regenerate.
1728
1729 * configure.tgt: targ_emul=hppalinux for hppa*linux
1730
1731 * emulparams/hppalinux.sh: New.
1732 * emulparams/hppaelf.sh (TARGET_PAGE_SIZE): Write in hex.
1733
1734 2000-07-08 Alan Modra <alan@linuxcare.com.au>
1735
1736 * lexsup.c (parse_args): Copy section name.
1737
1738 2000-07-07 Charles Wilson <cwilson@ece.gatech.edu>
1739
1740 * emultempl/pe.em: institute the following search order for
1741 dynamic libraries on pei386: libfoo.dll.a, foo.dll.a (import
1742 libs), libfoo.dll, foo.dll (link direct to dll). Fall back to
1743 static lib (libfoo.a) if none of the above are found.
1744
1745 2000-07-07 Mumit Khan <khan@xraylith.wisc.edu>
1746
1747 * emultempl/pe.em (pe_enable_auto_image_base): New variable.
1748 (longopts): New --{enable,disable}-auto-image-base options.
1749 (gld_${EMULATION_NAME}_list_options): Document.
1750 (gld_${EMULATION_NAME}_parse): Handle.
1751 (strhash): New static function.
1752 (compute_dll_image_base): New static function.
1753 (gld_${EMULATION_NAME}_set_symbols): Use.
1754
1755 2000-07-05 DJ Delorie <dj@redhat.com>
1756
1757 * MAINTAINERS: new
1758
1759 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
1760
1761 * configure.tgt: Add traditional mips (mips*-*-sysv4*) target.
1762 * emulparams/elf32btsmip.sh: New file.
1763 * Makefile.am: Add traditional mips target.
1764 * Makefile.in: Rebuild.
1765
1766 2000-07-01 H.J. Lu <hjl@gnu.org>
1767
1768 * Makefile.am (EXTRA_ld_new_SOURCES): Set to deffilep.y for
1769 automake to use YLWRAP.
1770 * Makefile.in: Rebuild.
1771
1772 2000-07-01 Alan Modra <alan@linuxcare.com.au>
1773
1774 * Makefile.am (DEP): Fix 2000-06-22. grep after running dep.sed
1775 (CLEANFILES): Add DEPA.
1776 * Makefile.in: Regenerate.
1777
1778 2000-06-30 Timothy Wall <twall@ppc>
1779
1780 * scripttempl/tic54xcoff.sc: PAGE N is not implemented, so encode
1781 the page in the upper octet of the address.
1782
1783 2000-06-26 Marek Michalkiewicz <marekm@linux.org.pl>
1784
1785 * emulparams/avrmega161.sh (ARCH): Change to avr:5.
1786
1787 2000-06-24 Alan Modra <alan@linuxcare.com.au>
1788
1789 * NEWS: arm-elf does --gc-sections too.
1790
1791 2000-06-22 Alan Modra <alan@linuxcare.com.au>
1792
1793 * Makefile.am (DEP): grep for leading `/' in DEP1, and fail if we
1794 find one.
1795 * Makefile.in: Regenerate.
1796
1797 2000-06-21 H.J. Lu <hjl@gnu.org>
1798
1799 * Makefile.am: Rebuild dependency.
1800 * Makefile.in: Rebuild.
1801
1802 2000-06-20 H.J. Lu <hjl@gnu.org>
1803
1804 * Makefile.am: Rebuild dependency.
1805 * Makefile.in: Rebuild.
1806
1807 2000-06-20 Timothy Wall <twall@cygnus.com>
1808
1809 * scripttempl/tic54xcoff.sc: New.
1810 * ldlang.c (wild_doit): Propagate SEC_BLOCK flag.
1811 * gen-doc.texi: Add flag for TI COFF.
1812 * ld.texinfo: Add documentation for TI COFF handling switches.
1813 * emultempl/ticoff.em: New. TI COFF handling.
1814 * configure.tgt: Add tic54x target.
1815 * Makefile.am: Add tic54x target.
1816 * Makefile.in: Ditto.
1817
1818 2000-06-20 Alan Modra <alan@linuxcare.com.au>
1819
1820 * ldmain.c (set_scripts_dir): Correct pointer comparison when
1821 checking for backslashes.
1822
1823 2000-06-19 Alan Modra <alan@linuxcare.com.au>
1824
1825 * NEWS: Move entries not in 2.10 above "Changes in version 2.10".
1826
1827 2000-06-18 Alan Modra <alan@linuxcare.com.au>
1828
1829 * NEWS: Update list of targets supporting --gc-sections.
1830
1831 * scripttempl/elf.sc: KEEP .eh_frame contents.
1832 * scripttempl/elfd30v.sc: Same here.
1833
1834 2000-06-18 Stephane Carrez <stcarrez@worldnet.fr>
1835
1836 * Makefile.am (ALL_EMULATIONS): Added new emulation for m68hc12
1837 and m68hc11 (elf).
1838 * Makefile.in: Rebuild.
1839 * configure.tgt: Recognize m68hc12 and m68hc11.
1840 * scripttempl/elfm68hc12.sc: New file.
1841 * emulparams/m68hc12elfb: New emulation.
1842 * emulparams/m68hc12elf: New emulation.
1843 * emulparams/m68hc11elfb.sh: New file. User configurable emulation
1844 (includes a memory.x script to define the ROM and RAM banks).
1845 * scripttempl/elfm68hc11.sc, emulparams/m68hc11elf.sh:
1846 New configuration files for support of Motorola 68hc11
1847
1848 2000-06-15 Alan Modra <alan@linuxcare.com.au>
1849
1850 * ldmain.c (main): Only change SEC_READONLY for final link.
1851
1852 2000-06-13 H.J. Lu <hjl@gnu.org>
1853
1854 * configure: Regenerate.
1855
1856 2000-06-08 David O'Brien <obrien@FreeBSD.org>
1857
1858 * configure.in (VERSION): Update to show this is the CVS mainline.
1859
1860 2000-06-07 Michael Sokolov <msokolov@ivan.Harhan.ORG>
1861
1862 * emultempl/mipsecoff.em (gld{EMULATION_NAME}_after_open): Require all
1863 input objects to be ECOFF.
1864 (check_sections): einfo takes %B, not %P, to print a BFD name.
1865
1866 2000-06-05 Michael Matz <matz@ifh.de>
1867
1868 * ldgram.y (vers_defns): Handle 'extern "C++" { ... }' in
1869 version scripts.
1870
1871 * ldlex.l (V_IDENTIFIER): Accept `::' in symbols.
1872
1873 2000-05-23 Marek Michalkiewicz <marekm@linux.org.pl>
1874
1875 * emulparams/avr1200.sh (STACK): Define as 0.
1876 * emulparams/avr23xx.sh (STACK): Define as last internal SRAM address.
1877 * emulparams/avr4433.sh (STACK): Likewise.
1878 * emulparams/avr44x4.sh (STACK): Likewise.
1879 * emulparams/avr85xx.sh (STACK): Likewise.
1880 * emulparams/avrmega103.sh (STACK): Likewise.
1881 * emulparams/avrmega161.sh (STACK): Likewise.
1882 * emulparams/avrmega603.sh (STACK): Likewise.
1883 * scripttempl/elf32avr.sc (__data_start): Define for gcrt1.
1884 (__stack): Define from ${STACK} for main().
1885
1886 2000-05-26 Alan Modra <alan@linuxcare.com.au>
1887
1888 * Makefile.am: Update dependencies with "make dep-am"
1889 * Makefile.in: Regenerate.
1890
1891 2000-05-26 Eli Zaretskii <eliz@is.elta.co.il>
1892
1893 * ldmain.c: Include filenames.h.
1894 (set_scripts_dir): Support backslashes in program name.
1895
1896 2000-05-22 Igor Shevlyakov <igor@windriver.com>
1897
1898 * ldmain.c (main): When deciding if ".text" section should be
1899 read-only, don't forget to reset SEC_READONLY because it
1900 could be already set.
1901
1902 2000-05-22 Thomas de Lellis <tdel@windriver.com>
1903
1904 * ld.1: Add documentation for new command line option:
1905 --section-start <sectionname>=<sectionorg>
1906 This is a generic version of -Ttext etc. which accepts
1907 any section name as a parameter instead of just text/data/
1908 bss.
1909 * ld.texinfo: More docs.
1910 * NEWS: More docs.
1911 * lexsup.c: (parse_args): Recognize new command line option.
1912 (ld_options): Add new option.
1913
1914 2000-05-18 H.J. Lu <hjl@gnu.org>
1915
1916 * lexsup.c (parse_args): `i' == `r', not `q'.
1917
1918 Thu May 18 10:47:57 2000 Jeffrey A Law (law@cygnus.com)
1919
1920 * configure.tgt (hppa*64*-*-*): Enable PA64 target.
1921
1922 2000-05-17 S. Bharadwaj Yadavalli <sby@scrugs.lkg.dec.com>
1923 Rick Gorton <gorton@scrugs.lkg.dec.com>
1924
1925 Add support for '-q' == '--emit-relocs' switch.
1926 * ldmain.c (main): Default to false.
1927 * lexsup.c (parse_args): Turn on emitrelocations flag if set.
1928 * NEWS: Describe the emitrelocations switch.
1929 * ld.texinfo: Describe the emitrelocations switch.
1930
1931 2000-05-16 Charles Wilson <cwilson@ece.gatech.edu>
1932
1933 * emultempl/pe.em (_open_dynamic_archive): New function: Search
1934 the library path for "foo.dll" and "libfoo.dll" dynamic libraries
1935 before searching for 'libfoo.a' in response to a '-Bdynamic -lfoo'
1936 link options.
1937
1938 2000-05-15 David O'Brien <obrien@FreeBSD.org>
1939
1940 * lexsup.c (parse_args): Update the year in the copyright notice.
1941
1942 2000-05-13 Alan Modra <alan@linuxcare.com.au>
1943
1944 * ld.h (gettext, dgettext, dcgettext, textdomain, bindtextdomain):
1945 Replace defines with those from intl/libgettext.h to quieten gcc
1946 warnings.
1947
1948 2000-05-10 H.J. Lu <hjl@gnu.org>
1949
1950 * ldlang.c (open_input_bfds): Don't load the same file within
1951 a group again if the whole archive has been loaded already.
1952
1953 2000-05-03 Alan Modra <alan@linuxcare.com.au>
1954
1955 From Ulf Carlsson <ulfc@engr.sgi.com> and Andreas Jaeger <aj@suse.de>
1956 * lexsup.c (set_section_start): Use bfd_scan_vma rather than
1957 strtoul.
1958
1959 Mon May 1 17:34:34 2000 Jim Wilson <wilson@cygnus.com>
1960
1961 * configure.host (ia64-*-linux-gnu*): Change gcc to ${CC}.
1962
1963 * configure.host: Added HOSTING_CRT0, HOSTING_LIBS for
1964 host "ia64-*-linux-gnu*".
1965
1966 2000-04-29 Andreas Jaeger <aj@suse.de>
1967
1968 * ld.h: Correctly check GCC version.
1969
1970 Tue Apr 25 11:20:43 2000 Jeffrey A Law (law@cygnus.com)
1971
1972 * Makefile.am: Add PA64 support. Add missing dependencies for
1973 PA32 elf support.
1974 * Makefile.in: Rebuilt.
1975 * configure.tgt: Add PA64 support (currently disabled).
1976
1977 2000-04-25 Alan Modra <alan@linuxcare.com.au>
1978
1979 * emultempl/elf32.em (gld${EMULATION_NAME}_place_section): Delete.
1980 (output_rel_find): New function.
1981 (hold_section, hold_use): Delete.
1982 (hold_text, hold_rodata, hold_data, hold_bss, hold_rel,
1983 hold_interp): Make local to place_orphan.
1984 (gld${EMULATION_NAME}_place_orphan): Use lang_output_section_find
1985 rather than place_section to find possible previous use of orphan.
1986 Similarly find the place-holder output sections. Use returned
1987 value from lang_enter_output_section_statement rather than calling
1988 lang_output_section_statement_lookup.
1989 * emultempl/armelf.em: Same here.
1990 * emultempl/pe.em: Similar to above, but no need for output_rel_find.
1991
1992 * ldlang.c (lang_enter_output_section_statement): Return output
1993 section statement.
1994 * ldlang.h (lang_enter_output_section_statement): Change
1995 declaration too.
1996
1997 * ldlang.h (lang_output_section_statement): Export it.
1998 * ldlang.c (lang_output_section_statement): Ditto.
1999
2000 2000-04-24 Nick Clifton <nickc@cygnus.com>
2001
2002 * ld.texinfo (Output Section Data): Add note that section data
2003 commands cannot appear outside of section directives.
2004
2005 2000-04-2 Matthew Green <mrg@cygnus.com>
2006
2007 * configure.tgt: Add NetBSD/sparc ELF, and NetBSD/sparc64 support.
2008
2009 Fri Apr 21 13:20:53 2000 Richard Henderson <rth@cygnus.com>
2010 David Mosberger <davidm@hpl.hp.com>
2011
2012 * Makefile.am (ALL_64_EMULATIONS): Add eelf64_ia64.o.
2013 (eelf64_ia64.c): New rule.
2014 * Makefile.in: Rebuild.
2015 * configure.tgt (ia64-*-elf*, ia64-*-linux*): New targets.
2016 * emulparams/elf64_ia64.sh: New file.
2017
2018 2000-04-21 Richard Henderson <rth@cygnus.com>
2019
2020 * scripttempl/elfd30v.sc: Place .gcc_except_table.
2021
2022 2000-04-19 Alan Modra <alan@linuxcare.com.au>
2023
2024 * dep-in.sed: Match space at start of file name, not at end.
2025
2026 2000-04-18 H.J. Lu <hjl@gnu.org>
2027
2028 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Call
2029 lang_leave_output_section_statement () after calling
2030 lang_enter_output_section_statement ().
2031 * emultempl/armelf.em: Likewise.
2032
2033 2000-04-18 Alan Modra <alan@linuxcare.com.au>
2034
2035 * emultempl/elf32.em (struct orphan_save): Add section field.
2036 (gld${EMULATION_NAME}_place_orphan): Use above to keep sections in
2037 better order, and place first orphan section as we did before the
2038 2000-04-12 patch. Ignore ~SEC_ALLOC sections when choosing place.
2039 Don't call make_bfd_section here, let wild_doit do the job for us.
2040 Don't build a statement list when we'll only throw it away.
2041 * emultempl/armelf.em: Ditto.
2042 * emultempl/pe.em: Similarly.
2043
2044 2000-04-14 Geoff Keating <geoffk@cygnus.com>
2045
2046 * scripttempl/elfppc.sc: Remove.
2047 * emulparams/elf32ppc.sh: Use elf.sc.
2048 * emulparams/elf32lppc.sh: Use elf.sc.
2049 * emulparams/elf32ppclinux.sh: Use elf.sc.
2050 * emulparams/elf32ppcsim.sh: New file.
2051 * emulparams/elf32lppcsim.sh: New file.
2052 * Makefile.am: Update dependencies. Add elf32ppcsim ad elf32lppcsim.
2053 (ALL_EMULATIONS): Add elf32ppcsim ad elf32lppcsim.
2054 * Makefile.in: Regenerate.
2055 * configure.tgt (powerpc-*): Add elf32ppcsim and elf32lppcsim.
2056
2057 2000-04-14 Alan Modra <alan@linuxcare.com.au>
2058
2059 * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Process
2060 ~SEC_ALLOC sections too. Init start address of debug sections.
2061 * emultempl/armelf.em (gld${EMULATION_NAME}_place_orphan): Ditto.
2062 * emultempl/pe.em (gld${EMULATION_NAME}_place_orphan): Ditto.
2063 Also set all relocateable section start addresses.
2064
2065 2000-04-13 Geoff Keating <geoffk@cygnus.com>
2066
2067 * scripttempl/elf.sc: Add support for .sbss2 and .sdata2 sections.
2068 Add new BSS_PLT variable for when .plt need not be contained in
2069 the file. Move _etext so that it is also after .fini, and provide
2070 both etext and _etext with a leading underscore. Mark the start
2071 and end of .sbss.
2072
2073 2000-04-12 Alan Modra <alan@linuxcare.com.au>
2074
2075 * emultempl/elf32.em (struct orphan_save): New.
2076 (hold_text, hold_rodata, hold_data, hold_bss, hold_rel,
2077 hold_interp): Make them struct orphan_save.
2078 (gld${EMULATION_NAME}_place_section): Modify for new hold_*.
2079 (gld${EMULATION_NAME}_place_orphan): Add new orphan sections to
2080 the end of the relevant section list. Also add associated section
2081 statements to the end of any previous orphan statements.
2082 * emultempl/armelf.em: Similarly.
2083 * emultempl/pe.em: Similarly.
2084
2085 2000-04-11 Alan Modra <alan@linuxcare.com.au>
2086
2087 * ld.texinfo (Simple Example): Remove extraneous paragraph.
2088
2089 Fri Apr 7 15:56:57 2000 Andrew Cagney <cagney@b1.cygnus.com>
2090
2091 * configure.in (WARN_CFLAGS): Set to -W -Wall by default. Add
2092 --enable-build-warnings option.
2093 * Makefile.am (AM_CFLAGS, WARN_CFLAGS): Add definitions.
2094 * Makefile.in, configure: Re-generate.
2095
2096 2000-04-04 Alan Modra <alan@linuxcare.com.au>
2097
2098 * po/ld.pot: Regenerate.
2099
2100 * lexsup.c (help): Restore translated part of bug string.
2101
2102 * Makefile.am (MKDEP): Use gcc -MM rather than mkdep.
2103 (DEP): Quote when passing vars to sub-make. Add warning message
2104 to end.
2105 (DEP1): Rewrite for "gcc -MM".
2106 (CLEANFILES): Add DEP2.
2107 Update dependencies.
2108 * Makefile.in: Regenerate.
2109
2110 2000-04-03 Alan Modra <alan@linuxcare.com.au>
2111
2112 * ld.h: #include "bin-bugs.h"
2113 * lexsup.c (help): Use REPORT_BUGS_TO.
2114
2115 2000-03-27 Denis Chertykov <denisc@overta.ru>
2116
2117 * configure.tgt (avr-*-*): New target support.
2118 * Makefile.am: Likewise.
2119 * scripttempl/elf32avr.sc: New script file.
2120 * emulparams/avr1200.sh: New file.
2121 * emulparams/avr23xx.sh: New file.
2122 * emulparams/avr4433.sh New file.
2123 * emulparams/avr44x4.sh New file.
2124 * emulparams/avr85xx.sh New file.
2125 * emulparams/avrmega103.sh New file.
2126 * emulparams/avrmega161.sh New file.
2127 * emulparams/avrmega603.sh New file.
2128 * Makefile.in: Regenerate.
2129
2130 2000-03-09 Andreas Jaeger <aj@suse.de>
2131
2132 * Makefile.am (check-DEJAGNU): Also unset LANG.
2133 * Makefile.in: Rebuild.
2134
2135 2000-03-06 Ian Lance Taylor <ian@zembu.com>
2136
2137 * ldfile.c (ldfile_try_open_bfd): Don't crash if we see an empty
2138 archive.
2139
2140 2000-03-02 H.J. Lu <hjl@gnu.org>
2141
2142 * emulparams/elf32mcore.sh: Include "getopt.h".
2143
2144 2000-03-01 Ian Lance Taylor <ian@zembu.com>
2145
2146 * configure.tgt: Remove *-*-aout, *-*-coff, and *-*-netware.
2147
2148 2000-03-01 H.J. Lu <hjl@gnu.org>
2149
2150 * emulparams/mipspe.sh: Add SUBSYSTEM and INITIAL_SYMBOL_CHAR.
2151 * emulparams/shpe.sh: Likewise.
2152
2153 2000-03-01 Nick Clifton <nickc@cygnus.com>
2154
2155 * pe-dll.c: Remove unused variables and add ATTRIBUTE_UNUSED
2156 to unused parameters.
2157
2158 * emultempl/pe.em: Add "#ifdef DLL_SUPPORT" around static
2159 functions only used by DLL code.
2160 (_place_orphan): Initialise 'dollar'.
2161
2162 2000-03-01 H.J. Lu <hjl@gnu.org>
2163
2164 * ldmain.c (undefined_symbol): Take one more arg, fatal, to
2165 indicate if the undefined symbol is a fatal error or not.
2166 Don't delete the output file if "fatal" is false.
2167
2168 2000-02-29 H.J. Lu <hjl@gnu.org>
2169
2170 * Makefile.am (check-DEJAGNU): Also pass LIBS="$(LIBS)".
2171 Set LC_COLLATE and LC_ALL to null and export them. It is for
2172 sort which expects the C locale.
2173 Add $(LIBS) to all $(HOSTING_LIBS).
2174 * Makefile.in: Rebuild.
2175
2176 2000-02-29 Alan Modra <alan@spri.levels.unisa.edu.au>
2177
2178 * emultempl/{aix.em, armcoff.em, armelf.em, armelf_oabi.em,
2179 beos.em, elf32.em, generic.em, gld960.em, gld960c.em, hppaelf.em,
2180 linux.em, lnk960.em, mipsecoff.em, sunos.em, vanilla.em}
2181 (ld_emulation_xfer_struct): Add missing NULL initialiser for
2182 find_potential_libraries.
2183
2184 2000-02-28 Jim Blandy <jimb@redhat.com>
2185
2186 * ldgram.y (exclude_name_list): Don't require a comma to separate
2187 list entries; the lexer considers commas to be valid part of a
2188 filename, so in something like `foo, bar' the comma is considered
2189 part of the first filename, `foo,'.
2190 * ld.texinfo: Update section on EXCLUDE_FILE lists.
2191
2192 2000-02-27 Loren J. Rittle <ljrittle@acm.org>
2193
2194 * configure.host: Added HOSTING_CRT0, HOSTING_LIBS for
2195 host "i[3456]86-*-freebsdelf*".
2196
2197 2000-02-27 Mark Elbrecht <snowball3@bigfoot.com>
2198
2199 * scripttempl/i386go32.sc: Move misplaced semicolons.
2200
2201 2000-02-25 Ian Lance Taylor <ian@zembu.com>
2202
2203 * Makefile.am (ALL_EMULATIONS): Remove ehppaelf.o.
2204 (ALL_64_EMULATIONS): Remove eelf64hppa.o.
2205 (eelf64hppa.c, ehppaelf.c): Remove targets.
2206 * Makefile.in: Rebuild.
2207
2208 2000-02-25 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
2209
2210 * configure.tgt (targ_extra_ofiles): Enable elf64_sparc on
2211 GNU/Linux/sparc, but keep the default as 32.
2212
2213 * configure.tgt: Enable elf64_sparc on Solaris7+/sparc. And make
2214 it default if sparcv9 or sparc64.
2215
2216 2000-02-24 Nick Clifton <nickc@cygnus.com>
2217
2218 * Makefile.am: Add rules to build emipspe.o and earmpe.o.
2219 * Makefile.in: Regenerate.
2220 * configure.tgt: Add targets for arm-wince, sh-pe and mips-pe.
2221
2222 * ldemul.h (ld_emulation_xfer_struct): Add new field:
2223 find_potential_libraries.
2224 * ldemul.c (ldemul_find_potential_libraries): New function.
2225
2226 * ldfile.c (ldfile_open_file_search): Allow function to be
2227 exported.
2228 (ldfile_open_file): Call ldemul_find_potential_libraries.
2229 * ldfile.h: Add prototype for ldfile_open_file_search.
2230
2231 * pe-dll.c: Add support for ARM, MIPS and SH targets.
2232
2233 * emulparams/mipspe.sh: New file. Parameters for mips-pe target.
2234 * emulparams/shpe.sh: New file. Parameters for sh-pe target.
2235
2236 * emultempl/pe.em: Add support for ARM, MIPS and SH DLLs.
2237 (gld_X_find_potential_libraries): New function. Search for
2238 libraries called "*.lib".
2239
2240 * scripttempl/pe.sc: Add .pdata section.
2241
2242 2000-02-23 Richard Henderson <rth@cygnus.com>
2243
2244 * scripttempl/elfd10v.sc: Remove dynamic linking hooks.
2245 Add and use memory regions.
2246
2247 2000-02-23 Linas Vepstas (linas@linas.org)
2248
2249 * emulparams/elf32i370.sh, scripttempl/elfi370.sc: New.
2250
2251 * Makefile.am: Add support for Linux/IBM 370.
2252 * configure.tgt: Likewise.
2253
2254 * Makefile.in: Regenerate.
2255
2256 2000-02-21 Alan Modra <alan@spri.levels.unisa.edu.au>
2257
2258 * ldlang.c (print_input_section, print_data_statement,
2259 print_reloc_statement, print_padding_statement, insert_pad,
2260 size_input_section, lang_check_section_addresses,
2261 lang_size_sections, lang_do_assignments, lang_set_startof,
2262 lang_one_common): Change `opb' to unsigned.
2263 (lang_do_assignments): Also change `size' to unsigned.
2264
2265 2000-02-16 Richard Henderson <rth@cygnus.com>
2266
2267 * scripttempl/elf.sc: Place OTHER_PLT_RELOC_SECTION.
2268
2269 2000-02-16 Timothy Wall <twall@cygnus.com>
2270
2271 * mri.c (mri_draw_tree): Add default LMA region argument to call
2272 to lang_leave_output_section_statement.
2273 * ldlang.h: Update prototypes with LMA region arguments.
2274 * ldlang.c (lang_size_sections): Encapsulate region bounds
2275 checking in os_check_region call.
2276 (os_check_region): New function.
2277 (lang_output_section_statement_lookup): Initialize lma_region.
2278 (lang_leave_output_section_statement): Add LMA region argument.
2279 (lang_leave_overlay): Ditto.
2280 * ldgram.y: Handle LMA region syntax.
2281 * ld.texinfo (Output Section Description): Describe LMA region usage.
2282 * emultempl/armelf.em (gld$place_orphan): Add default value for
2283 lma region in call to lang_leave_output_section_statement.
2284 * emultempl/elf32.em (gld$place_orphan): Add default value for
2285 lma region in call to lang_leave_output_section_statement.
2286 * emultempl/pe.em (gld$place_orphan): Add default value for
2287 lma region in call to lang_leave_output_section_statement.
2288
2289
2290 2000-02-04 Timothy Wall <twall@redhat.com>
2291
2292 * ldlang.c (lang_check_section_addresses): Use bytes instead of
2293 octets when calculating section end addresses.
2294
2295 2000-02-04 Timothy Wall <twall@redhat.com>
2296
2297 * ldlang.c (lang_size_sections): Fix typo in ALIGN_N invocation.
2298
2299 2000-02-03 Timothy Wall <twall@redhat.com>
2300
2301 * ldexp.c (fold_name): Make SIZEOF operator return byte count, not
2302 octet count.
2303 * ldlang.c (print_input_section, print_data_statement,
2304 print_reloc_statement, print_padding_statement): Print target
2305 address values and section sizes as bytes, not octets.
2306 (insert_pad) Calculate padding size in octets, and adjust "dot"
2307 by bytes.
2308 (size_input_section) Always adjust "dot" by bytes, not octets.
2309 (lang_check_section_addresses, lang_do_assignments) Adjust
2310 "dot" by bytes, not octets. Use the larger of the directive size
2311 or octets_per_byte for the number of octets actually allocated in
2312 the output section.
2313 (lang_set_startof) Make sure STARTOF returns a target address.
2314 (lang_one_common) Record size changes in octets.
2315 (lang_abs_symbol_at_end_of) Section end symbol's value is
2316 recorded in target bytes.
2317 * ld.texinfo: Updated description of BYTE, SHORT, LONG, etc.
2318 to be clear about behavior when an octet is smaller than one byte.
2319
2320 2000-01-27 Alan Modra <alan@spri.levels.unisa.edu.au>
2321
2322 * ldcref.c (output_cref): Don't pass message strings to printf
2323 as format arg.
2324 Update copyright.
2325
2326 * ldmisc.c (vfinfo): Same here.
2327 Update copyright.
2328
2329 2000-01-23 Alan Modra <alan@spri.levels.unisa.edu.au>
2330
2331 * emultempl/{armcoff.em,armelf.em,armelf_oabi.em,beos.em,
2332 generic.em,gld960.em,gld960c.em,hppaelf.em,linux.em,lnk960.em,
2333 mipsecoff.em,sunos.em,vanilla.em} (ld_emulation_xfer_struct):
2334 Add missing NULL initialisers, and comments.
2335
2336 * testsuite/ld-srec/sr3.cc (__rethrow): New.
2337
2338 2000-01-21 Nick Clifton <nickc@cygnus.com>
2339
2340 * ldlang.c (lang_size_sections): Fix typo in comment.
2341
2342 2000-01-18 H.J. Lu <hjl@gnu.org>
2343
2344 * ldlang.c (lang_size_sections): Also update the current
2345 address of a region if the SEC_NEVER_LOAD bit is not set.
2346
2347 2000-01-10 Philip Blundell <pb@futuretv.com>
2348
2349 * configure.tgt (arm*-*-conix*): New target.
2350
2351 2000-01-07 Nick Clifton <nickc@cygnus.com>
2352
2353 * ld.texinfo (Options): Remind users to preceed linker command
2354 line switches with -Wl, (or whatever is appropriate) if it is
2355 being invoked by a comnpiler driver program.
2356 Fix description of the behaviour of the -n command line switch.
2357
2358 Wed Jan 5 08:02:12 2000 Catherine Moore <clm@cygnus.com>
2359
2360 * ld.h (wildcard_spec): Change exclude_name to exclude_name_list.
2361 (name_list): New.
2362 * ld.texinfo (EXCLUDE_FILE): Update documentation.
2363 * ldgram.y (wildcard_spec): Support a list of excluded_files.
2364 (exclude_name_list): New.
2365 ldlang.c (walk_wild_section): Support list of excluded files.
2366 (print_wild_statement): Likewise.
2367 (lang_add_wild): Likewise.
2368 * ldlang.h (lang_wild_statement_type): Likewise.
2369 * scripttempl/elf.sc (OTHER_EXCLUDE_FILES): Support.
2370
2371 2000-01-04 Mumit Khan <khan@xraylith.wisc.edu>
2372
2373 * pe-dll.c (pe_dll_warn_dup_exports): New variable.
2374 (process_def_file): Use.
2375 (pe_dll_compat_implib): New variable.
2376 (make_one): Use.
2377
2378 * pe-dll.h: Add exports of pe_dll_warn_dup_exports and
2379 pe_dll_compat_implib.
2380
2381 * emultempl/pe.em (longopts): Add warn-duplicate-exports and
2382 compat-implib options.
2383 (gld_${EMULATION_NAME}_list_options): List new options.
2384 (gld_${EMULATION_NAME}_parse_args): Handle.
2385
2386 * pe-dll.c (pe_dll_generate_implib): Use the correct name for output
2387 dll.
2388
2389 * deffilep.y (opt_name): Allow "." in name.
2390
2391 For older changes see ChangeLog-9899
2392 \f
2393 Local Variables:
2394 mode: change-log
2395 left-margin: 8
2396 fill-column: 74
2397 version-control: never
2398 End:
This page took 0.07712 seconds and 5 git commands to generate.