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