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