]> Git Repo - binutils.git/blame - ld/ChangeLog
Set Emacs local variables to never use version control.
[binutils.git] / ld / ChangeLog
CommitLineData
0071a731
DM
1Tue Mar 8 04:22:27 1994 David J. Mackenzie ([email protected])
2
3 * config/i386bsd.mh: New file.
4
7f0638d5
ILT
5Mon Mar 7 15:23:24 1994 Ian Lance Taylor ([email protected])
6
7 * elf.sc: Permit TEXT_START_SYMBOLS and DATA_START_SYMBOLS to be
8 defined.
9 * emulparams/elf32mipb.s (TEXT_START_SYMBOLS): Define _ftext.
10 (DATA_START_SYMBOLS): Define _fdata.
11
b897ed67
SS
12Mon Feb 28 10:59:14 1994 Stan Shebs ([email protected])
13
14 * ldlang.c (cat): Define using ANSI style if ALMOST_STDC defined.
15
2e39abdb
JL
16Sun Feb 27 16:29:38 1994 Jeffrey A. Law ([email protected])
17
ff68559e
JL
18 * emultempl/hppaelf.em (hppaelf_finish): Update comments. This
19 works again. Attach some output symbols to the stub file bfd.
20
2e39abdb
JL
21 * emultempl/hppaelf.em: Include elf32-hppa.h.
22 (file_chain): Add decl.
23 (hppa_look_for_stubs_in_section): Delete decl.
24 (hppaelf_finish): Reenable code. Do not pass symbols
25 down to hppa_look_for_stubs_in_section.
26
b495c314
ILT
27Sat Feb 26 10:58:25 1994 Ian Lance Taylor ([email protected])
28
29 * ldmain.c (write_map): Don't define. Removed all references.
30 Just use map_file or map_filename instead.
31 (add_archive_element): Use minfo to write map information, not
32 info_msg.
33 (constructor_callback): Use fprintf to write map information, not
34 info_msg.
35 * ldmain.h (write_map): Don't declare.
36 * ldgram.y (mri_script_command): Removed reference to write_map.
37 * ldlang.c (lang_one_common): Likewise.
38 * lexsup.c (parse_args): Likewise.
39
4725fb48
ILT
40Fri Feb 25 19:12:03 1994 Ian Lance Taylor ([email protected])
41
bff600cf
ILT
42 * scripttempl/elf.sc: Force all sections to be aligned.
43
27baca71
ILT
44 * ldgram.y (section): Reverse the order of memspec_opt and
45 fill_opt to avoid an ambiguity when both are used.
46 * ld.texinfo: Changed accordingly.
47
6232b6c4
ILT
48 * ldgram.y: Move include of ldlex.h back with other includes.
49 * ldlex.h (input_type): Don't initialize enum constants to
50 particular values.
51 * ldlex.l: Use a switch to return the right token based on
52 input_type, rather than knowing that input_type has a value based
53 on a token type.
54
4725fb48
ILT
55 * ldgram.y (dirlist_ptr): Removed; not used.
56 * lexsup.c: Include ldver.h.
57 * Makefile.in: Rebuilt dependencies.
58
fc1dfb71
ILT
59Fri Feb 25 18:55:54 1994 Ted Lemon ([email protected])
60
61 * ldlang.c (lookup_name): don't call bfd_set_gp_size.
62 (ldlang_add_file): call it here instead.
63
ff33a8c1
DM
64Fri Feb 25 18:13:46 1994 David J. Mackenzie ([email protected])
65
66 * ldgram.y: Include ldlex.h after %token decls, for byacc.
67
a62494c4
JL
68Fri Feb 25 10:47:25 1994 Jeffrey A. Law ([email protected])
69
531a5bd1
JL
70 * emultempl/hppaelf.em: First attempt to clean this file up.
71 Add comments in several functions as to their purpose and
72 how they function (or my current best guess). Clean up horrible
73 spacing and indention that never should have been accepted in the
74 first place. Add FIXMEs for issues which need to be resolved.
75 Disable linker-stub generation until it gets fixed. This allows
76 the linker to at least work on simple code for testing purposes.
77
a62494c4
JL
78 * ldlang.c (lang_size_sections): No longer static (PA ELF calls
79 it via hppaelf_finish). Prototype moved into ldlang.h.
80 (lang_process): Move problematic extra call to lang_size_sections
81 into the PA ELF specific code.
82 * emultempl/hppaelf.em (hppaelf_finish): Extra call to
83 lang_size_sections moved here.
84
c361ce46
ILT
85Thu Feb 24 16:47:33 1994 Ian Lance Taylor ([email protected])
86
87 * configure.in (powerpc-*-elf*): New target; use ppc-elf32.
88 * config/ppc-elf32.mt: New file.
89 * emulparams/elf32ppc.sh: New file.
90 * emultempl/ppc.em: New file.
91 * Makefile.in (ALL_EMULATIONS): Added em_elf32ppc.o.
92 (em_elf32ppc.c): New target; uses elf32ppc.sh, ppc.em and elf.sc.
93 (EMULATION_OFILES): Added dependencies on ldexp.h and ldlang.h.
94
d4e5e3c3
DM
95Thu Feb 24 12:27:07 1994 David J. Mackenzie ([email protected])
96
d5b79a89
DM
97 * lexsup.c (parse_args): Use symbolic numbers for long options.
98 Fix misunderstanding in -Y and -call_shared et al.
99
d4e5e3c3
DM
100 Use getopt instead of lex and yacc to parse the command line.
101
102 * ld.texinfo (Options): Document changes to option syntax.
103 * Makefile.in: Update dependencies.
104 * ldver.c (help): Tweak dashes in usage message.
105 * ldgram.y (%union): Remove unused members.
106 Remove %tokens for command line options; add ones for input types.
107 (command_line): Rules removed.
108 (file): Instead of command line, recognize an
109 input type indicator, then use the nonterminal for that type.
110 (defsym_expr): New nonterminal from code formerly in command_line.
111 * ldlex.h: Declare parser input type enum and variable.
112 Don't declare parse_line.
113 * ldlex.l: Remove unused variables. Make some used ones static
114 and comment them.
115 (COMMAND): Start state and its rules removed.
116 At start of yylex, return input state token if at start of input.
117 (lex_redirect): Don't need to set yyout.
118 (ldlex_command): Function removed.
119 * ldmain.c (main): Instead of calling parse_line, set up the
120 redirections and call yyparse directly.
121 * ldmisc.c (vfinfo): If there's no input filename, print nothing, not
122 "command line".
123 * lexsup.c: Remove #if 0'd code.
124 (parse_line): Function removed.
125 (parse_args): Rewrite to use getopt_long_only.
126 (set_default_dirlist): New function from code formerly in
127 ldgram.y:command_line.
128 (set_section_start): New function.
129 * emultempl/generic.em, emultempl/gld960.em, emultempl/hppaelf.em,
130 emultempl/lnk960.em, emultempl/m88kbcs.em: Don't enclose
131 compiled-in link scripts in "{" and "}", as the grammar no longer
132 wants them to be.
133
134Thu Feb 24 08:43:26 1994 Ken Raeburn ([email protected])
135
136 * Makefile.in (ld.dvi): Depend on configdoc.texi, but don't
137 require that it be in $(srcdir).
138
6b8929a1
ILT
139Tue Feb 22 09:21:18 1994 Ian Lance Taylor ([email protected])
140
a733e1d7
ILT
141 * ldlang.c (lang_size_sections): Only align section to alignment
142 required by linker script, not to maximum alignment of input
143 sections.
144
6b8929a1
ILT
145 * ldlang.h (largest_section): Don't declare.
146 * ldlang.c (largest_section): Don't define.
147 (size_input_section): Don't set largest_section; not used.
148
ef76742f
ILT
149Mon Feb 21 15:15:29 1994 Ian Lance Taylor ([email protected])
150
151 * ldlang.c (new_afile): Pass NULL as last argument to concat.
152
42f62ead
ILT
153Thu Feb 17 15:51:23 1994 Ian Lance Taylor ([email protected])
154
155 * ldlang.c, ldmain.c: Include libiberty.h.
156
157 * ldmisc.h (concat): Don't declare.
158 * ldmisc.c (concat): Don't define; just use the one in libiberty.
159
160 * ld.h (as_output_section_statement): Removed; not used.
161
5bcb7f28
DM
162Thu Feb 17 09:32:14 1994 David J. Mackenzie ([email protected])
163
164 * ldlang.c, ldmain.c, ldmisc.c: Use bfd_get_error and
165 bfd_set_error and new error names.
166
7ff6f2da
KR
167Tue Feb 15 20:14:53 1994 Ken Raeburn ([email protected])
168
169 * ldwrite.c (build_link_order): If the cooked size of the section
170 has been set, use it, for determining link_order size.
171 (ldwrite): In the error message displayed if bfd_final_link fails,
172 indicate that it was in fact the final link step that failed.
173
174 * ldlang.c (lang_size_sections): Clear bfd_error before calling
175 bfd_relax_section, in case it returns false but doesn't flag an
176 error. If an error is returned, indicate which one it is in the
177 error message.
178
179 * Makefile.in (install-info): Depend on ld.info, and use "$<*" so
180 it'll get picked up from $(srcdir) if appropriate.
181
182Tue Feb 15 16:32:04 1994 David J. Mackenzie ([email protected])
183
184 * scripttempl/aout.sc: Only pad .text if PAD_TEXT is set.
185 * emulparams/i386mach.sh (PAD_TEXT): Set PAD_TEXT.
186
09aaf97a
DM
187Fri Feb 11 17:02:49 1994 David J. Mackenzie ([email protected])
188
189 * ldlex.l (comment): Increment line number when newline is read.
190
c4e48be3
ILT
191Fri Feb 11 17:36:20 1994 Ian Lance Taylor ([email protected])
192
193 * ldlang.c (lookup_name): Take new argument, force_load. If true,
194 reload the file even if it is already loaded.
195 (wild): Call lookup_name with force_load argument of 0.
196 (open_input_bfds): Call lookup_name with force_load argument of 1.
197 (print_symbol): Remove declaration of non-existent function.
198 (print_one_symbol): Return true rather than falling off end.
199
410945f1
ILT
200Thu Feb 10 11:52:38 1994 Ian Lance Taylor ([email protected])
201
202 * ldmain.c (main): Use %ld when printing long values.
203
204 * scripttempl/elf.sc: Move _edata after the .sdata section.
205 Permit OTHER_BSS_SYMBOLS to be defined.
206 * emulparams/elf32mipb.s (OTHER_BSS_SYMBOLS): Define _fbss.
207
f7d4f6f6
JL
208Mon Feb 7 16:31:15 1994 Jeffrey A. Law ([email protected])
209
210 * Rename all "hppaosf" files to "hppaelf".
410945f1
ILT
211 * Change all "osf" references to "elf" in hppaelf files.
212 * Makefile.in: Likewise.
213 * configure.in: Likewise.
f7d4f6f6 214
f4972135
DM
215Sun Feb 6 20:31:56 1994 David J. Mackenzie ([email protected])
216
6f671266
DM
217 * ldmain.c (main): Call xatexit, not atexit.
218 Call xmalloc_set_program_name.
219
f4972135
DM
220 * ldlang.c (lang_size_sections): Check if bfd_relax_section set
221 bfd_errno.
222
52a8ebfe
DM
223Sat Feb 5 03:54:34 1994 David J. Mackenzie ([email protected])
224
225 * emultempl/lnk960.em (append), emultempl/hppaosf.em
226 (hppaosf_finish): Call xmalloc, not ldmalloc.
227 * ldmain.c (preserve_output): Function removed.
228 (main): Do it here instead.
229
9dd7d585
JL
230Fri Feb 4 23:02:19 1994 Jeffrey A. Law ([email protected])
231
232 * ldlang.h (LANG_FOR_EACH_{INPUT,OUTPUT}_SECTION): Delete (unused)
233 GNU C specific macros.
234
235 * emultempl/hppaosf.em (hppaosf_finish): Expand the only remaining
236 call to LANG_FOR_EACH_INPUT_SECTION.
237
0b2f8d2e
DM
238Fri Feb 4 16:26:08 1994 David J. Mackenzie ([email protected])
239
240 * ldmisc.c (ldmalloc, xmalloc, ldrealloc, xrealloc): Functions
241 deleted; will use libiberty versions instead.
242 * ldctor.c ldfile.c ldlang.c ldmain.c ldmisc.c ldmisc.h lexsup.c
243 mri.c Makefile.in: Change callers.
244
245 * ldmisc.c (vfinfo): Remove cleanup code.
246 * ldmain.c (remove_output): Put it here (new function).
247 (preserve_output): New function.
248 (main): Register remove_output and preserve_output with atexit.
249 * ldmain.c ldgram.y: Call xexit instead of exit.
250 * ldmisc.h: Declare xexit.
251
9e0f78c8
SC
252Fri Feb 4 15:19:01 1994 Steve Chamberlain ([email protected])
253
254 * Makefile.in: Lots of new H8/500 memory models.
255
836dcbcf
KR
256Sun Jan 30 14:33:40 1994 Ken Raeburn ([email protected])
257
258 * ldlex.l: Removed duplicate rules.
259 (yywrap): Provide default definition, needed with some versions of
260 flex.
261
fb55f9b8
DM
262Fri Jan 28 09:12:56 1994 David J. Mackenzie ([email protected])
263
288897f4
DM
264 * ldmisc.c (vfinfo): For `%I', if the file is in an archive, print
265 the archive filename too.
266
fb55f9b8
DM
267 * ldlex.l: Add rule to catch invalid input characters instead of
268 printing them. Include "ldmain.h" for program_name decl.
269 (lex_warn_invalid): New function.
270 * Makefile.in: Add dependency.
271
f3c6455f
KR
272Fri Jan 28 12:58:45 1994 Ken Raeburn ([email protected])
273
274 * Makefile.in (check): Don't bother running any tests of
275 cross-linker until the test suite no longer assumes native mode.
276
804c8601
SC
277Thu Jan 27 17:19:54 1994 Steve Chamberlain ([email protected])
278
279 * ldlang.c (print_one_symbol, print_input_section): Print
280 global symbols in symbol table again.
281
7b40f2b1
DM
282Thu Jan 27 12:35:01 1994 David J. Mackenzie ([email protected])
283
284 * ldmain.c ldmain.h ldgram.y: If -v -V or --version was given,
285 exit successfully instead of complaining if no input files are
286 given.
287
8594f568
SS
288Tue Jan 25 13:19:41 1994 Stan Shebs ([email protected])
289
74e6b793
SS
290 * Makefile.in: Format variable definitions consistently.
291 (LD_PROG): Remove unnecessary variables from link command,
292 change variable LOADLIBES to EXTRALIBS.
293
8594f568
SS
294 * ldmain.c (main): Compute and display total execution time.
295 * ld.texinfo (-stats): Document the option.
296
755f42fe
ILT
297Mon Jan 24 12:56:37 1994 Ian Lance Taylor ([email protected])
298
5dad4c97
ILT
299 * ldmain.c (reloc_overflow): Added name, reloc_name and addend
300 arguments.
301
de08b0b1
ILT
302 * ldlang.c (lookup_name): Set BFD GP size to -G argument value
303 after opening BFD.
304
755f42fe
ILT
305 * ldlang.c (relaxing): Removed global variable.
306 (lang_size_sections): If the canonical symbols have not already
307 been read in, read them in before relaxing.
308 * ldlang.h (relaxing): Removed declaration.
309
5e6cd559
ILT
310Fri Jan 21 00:44:44 1994 Ian Lance Taylor ([email protected])
311
312 * ldlang.c (new_afile): Initialize loaded field to false.
313 (lookup_name): If file was already loaded, don't call the
314 add_symbols entry point again.
315
8de26d62
DM
316Wed Jan 19 13:57:00 1994 David J. Mackenzie ([email protected])
317
318 * ld.texinfo: Clarify what -T option does.
319
a843c817
SC
320Tue Jan 18 16:18:15 1994 Steve Chamberlain ([email protected])
321
322 * scripttempl/m88kbcs.sc: Don't use CREATE_OBJECT_SYMBOLS, that's
323 for a.out.
324
8a432746
ILT
325Fri Jan 14 12:37:16 1994 Ian Lance Taylor ([email protected])
326
327 Motorola Delta sysV68 support from [email protected] (Philippe
328 De Muyter).
329 * configure.in (m68k-motorola-sysv*) New target.
330 * config/delta68.mt: New file.
331 * emulparams/delta68.sh: New file.
332 * scripttempl/delta68.sc: New file.
333 * Makefile.in (ALL_EMULATIONS): Added em_delta68.o.
334 (em_delta68.c): New target.
335
901f3538
ILT
336Tue Jan 11 13:22:04 1994 Ian Lance Taylor ([email protected])
337
8a432746
ILT
338 * ldmain.c (add_archive_element): If trace_files or
339 trace_file_tries, print file name.
340 * ldlang.c (lookup_name): Likewise.
341 (ldlang_add_file): Don't put files on input_bfds list in reverse
342 order.
343
901f3538
ILT
344 * scripttempl/elf.sc: Correct typo.
345
c344d884
DM
346Mon Jan 10 19:49:05 1994 David J. Mackenzie ([email protected])
347
348 * ldgram.y, ldlex.l: Make the space between -e, -u, and -y and
349 their arguments optional, for compatibility with the old GNU ld.
350
267a3ab3
ILT
351Fri Jan 7 20:00:24 1994 Ian Lance Taylor ([email protected])
352
353 * scripttempl/elf.c: Define __bss_start before the .sbss section.
354
3107eb5b
ILT
355Thu Jan 6 00:13:10 1994 Ian Lance Taylor ([email protected])
356
2f84ec0d
ILT
357 * ldmain.c (add_to_set): Add bitsize argument.
358 (constructor_callback): New function.
359 (link_callbacks): Add constructor_callback.
360 * ldctor.c (struct set_info): Add bitsize field.
361 (ldctor_add_set_entry): Add bitsize argument.
362 (ldctor_build_sets): Base the size of the elements of the set on
363 the bitsize, rather than always using LONG.
364 * ldctor.h (ldctor_add_set_entry): Add bitsize to declaration.
365
366 * ld.h (QUAD_SIZE): Define.
367 * ldgram.y (QUAD): New token.
368 (length): Handle it.
369 * ldlex.l: Return QUAD.
370 * lexsup.c (keywords): Add QUAD.
371 * ldwrite.c (build_link_order): Handle QUAD.
372 * ldlang.c (print_data_statement): Handle QUAD.
373 (lang_size_sections): Likewise.
374 (lang_do_assignments): Likewise.
375 * ldexp.c (exp_print_token): Add QUAD to table.
376 * ld.texinfo: Describe QUAD.
377
3107eb5b
ILT
378 * scripttempl/alpha.sc: Don't create .lit4 or .sdata sections,
379 since the Alpha doesn't use them.
380
080d8af0
DM
381Wed Jan 5 17:42:16 1994 David J. Mackenzie ([email protected])
382
383 * ldemul.h (ld_emulation_xfer_struct): Comment the members.
384
385Sat Jan 1 13:39:31 1994 Rob Savoye ([email protected])
386
387 * Makefile.in, configure.in: Add support for VSTa micro-kernel.
388 * config/vsta.mt, emulparams/vsta.sh: New files for VSTa.
389
34f9bf4b
DM
390Sat Jan 1 10:53:35 1994 David J. Mackenzie ([email protected])
391
392 * scripttempl/aout.sc: Pad .text to DATA_ALIGNMENT if relocating;
23fdc6be 393 needed for i386mach. (Should be a no-op on other systems.)
34f9bf4b
DM
394
395 * emulparams/i386mach.sh (SEGMENT_SIZE): Fix again.
396 (PAGE_SIZE): Don't define; not used.
397
1d166443
ILT
398Fri Dec 31 16:12:06 1993 Ian Lance Taylor ([email protected])
399
400 * ldgram.y (yyerror): Make argument const char *, and actually
401 print it out rather than assuming it is a syntax error.
402 * ldmisc.h: Change declaration of yyerror.
403 * ldemul.c, ldwrite.c: Add /*ARGSUSED*/ as appropriate.
404
ae9c8007
DM
405Fri Dec 31 11:37:28 1993 David J. Mackenzie ([email protected])
406
407 * emulparams/i386mach.sh (NONPAGED_TEXT_START_ADDR): Don't include
408 exec header offset, since the exec header isn't loaded.
409 (PAGE_SIZE, SEGMENT_SIZE): Agree with bfd/i386mach3.c.
410
4a6afc88
ILT
411Thu Dec 30 13:01:43 1993 Ian Lance Taylor ([email protected])
412
413 A major rewrite to move the bulk of the linker into BFD so that
414 more efficient backend code can be written for specific object
415 files.
416 * lderror.c, lderror.h, ldindr.c, ldindr.h, ldsym.c, ldsym.h,
417 ldwarn.c, ldwarn.h, relax.c, relax.h: Removed.
418 * ldctor.c, ldctor.h: Complete rewrite.
419 * ldwrite.c, ldwrite.h: Complete rewrite.
420 * ld.h (strip_symbols_type, strip_symbols): Removed. Use
421 link_info.strip instead. Changed all uses.
422 (discard_locals_type, discard_locals): Removed. Use
423 link_info.discard instead. Changed all uses.
424 (ld_config_type): Removed relocateable_output field; use
425 link_info.relocateable instead; changed all uses. Added stats
426 field.
427 (set_asymbol_chain, get_asymbol_chain, get_loader_symbol,
428 set_loader_symbol): Removed.
429 * ldexp.h (node_class): Added etree_rel.
430 (etree_type): Added rel field.
431 * ldexp.c (exp_print_token): Bracketed table initialization.
432 (exp_relop): New function.
433 (fold_name): Use linker hash table rather than ldsym functions.
434 (exp_fold_tree): Likewise. Also, handle etree_rel case.
435 (exp_print_tree): Handle etree_rel.
436 * ldgram.y (strip_symbols, discard_locals): Removed.
437 (OPTION_stats, OPTION_no_keep_memory): New tokens. Handle them.
438 (REL): New token. Does not appear in grammar, but needed for
439 expression code.
440 (file): Don't call lang_final; it's called by main anyhow.
441 * ldlex.l: Accept -stats and -no-keep-memory options.
442 * ldlang.h (fill_type): Make unsigned int, not unsigned short.
443 * ldlang.c: Consistently use fill_type for fill argument.
444 (lang_init_script_file, script_file): Removed.
445 (create_object_symbols): Removed. Use
446 link_info.create_object_symbols_section instead. Changed all
447 uses.
448 (lang_add_keepsyms_file): Removed.
449 (lookup_name): Call bfd_link_add_symbols instead of
450 ldmain_open_file_read_symbol.
451 (wild): Don't iterate over script_file.
452 (open_output): Create link hash table.
453 (lang_place_undefineds): Rewrote.
454 (lang_size_sections): Handle relaxing (doesn't work yet).
455 (lang_relocate_globals): Removed.
456 (lang_finish): Use link hash table rather than ldsym functions.
457 (lang_common): Rewrote.
458 (lang_one_common): New function.
459 (ldlang_add_file): Add file to link_info.input_bfds list. Set
460 usrdata.
461 (create_symbol): Removed.
462 (lang_process): Don't call lang_init_script_file. Call
463 ldctor_build_sets rather than find_constructors. Don't call
464 lang_relocate_globals.
465 (lang_abs_symbol_at_beginning_of): Rewrote.
466 (lang_abs_symbol_at_end_of): Rewrote.
467 * ldmain.c (had_y): Removed.
468 (lprefix, lprefix_len): Removed; use link_info fields instead.
469 Changed all uses.
470 (multiple_def_count, commons_pending, undefined_global_sym_count,
471 total_symbols_seen, total_files_seen): Removed.
472 (link_callbacks, link_info): New variables.
473 (main): Initialize link_info. Don't call init_bfd_error_vector or
474 ldsym_init. Don't set now unused variables. Handle -stats.
475 (get_emulation): Removed obsolete and nonfunctional GNU960 code.
476 (add_ysym): Rewrote.
477 (read_entry_symbols, refize, enter_global_ref, enter_file_symbols,
478 search_library, gnu960_check_format, decode_library_subfile,
479 linear_library, symdef_library, clear_syms, subfile_wanted_p):
480 Removed.
481 (add_keepsyms_file, add_archive_element, multiple_definition,
482 multiple_common, add_to_set, warning_callback, undefined_symbol,
483 reloc_overflow, reloc_dangerous, unattached_reloc, notice_ysym):
484 New functions.
485 * ldmisc.c (vfinfo): Accept a string for %T, not a symbol. Don't
486 require symbols for %C; look them up instead.
487 * emultempl/hppaosf.em: Pass link_info to
488 hppa_look_for_stubs_in_section.
489 * Makefile.in: Rebuilt dependencies.
490 (CFILES): Removed lderror.c, ldindr.c, ldsym.c, ldwarn.c, and
491 relax.c.
492 (HFILES): Removed lderror.h, ldindr.h, ldsym.h, ldwarn.h, and
493 relax.h.
494 (EMULATION_OFILES): Depend on bfdlink.h, ldmain.h, ldexp.h,
495 ldlang.h and ldctor.h.
496
497 * Makefile.in (ldlex.c): Don't depend on ldgram.h. Remove
498 declarations of free and malloc from flex output. Change malloc
499 to ldmalloc in flex output.
500
501Thu Dec 16 21:19:57 1993 Jeffrey A. Law ([email protected])
502
503 * ldmain.c (lprefix): Change default from a char to a string
504 with only one character.
505 (lprefix_len): Set default to one.
506
507 * ldmain.h (lprefix_len): Declare.
508
509 * ldsym.c (write_file_locals): Use strncmp rather than a character
510 comparison for lprefix.
511
512 * emultmpl/m88kbcs.em (before_parse): Set lprefix and lprefix_len
513 correctly.
514
515 * emultmpl/hppaosf.em: Include ldexp.h.
516 (before_parse): Set lprefix and lprefix_len correctly.
517
498fbd3c
ILT
518Tue Dec 14 17:19:03 1993 Ian Lance Taylor ([email protected])
519
553b0021
ILT
520 * ldlex.h: Don't declare yywrap if it is a macro.
521 * ldlex.l: Include sysdep.h.
498fbd3c
ILT
522 * ldlang.c (lang_for_each_statement_worker,
523 lang_for_each_statement): Forgot to use PARAMS.
524
1400cdc5
ILT
525Mon Dec 13 14:30:03 1993 Ian Lance Taylor ([email protected])
526
527 * Makefile.in: Added .PHONY targets where appropriate. Added some
528 comments. Also:
529 (gcclibdir, version): Removed unused variables.
530 (DEP): New variable, set to mkdep.
531 (ALL_CFLAGS): New variable. Used in .c.o target.
532 (CFILES, HFILES, GENERATED_CFILES, GENERATED_HFILES): New
533 variables.
534 (HEADERS, MANSOURCES, LDCSOURCES, GENERATED_SOURCES,
535 GENERATED_HEADERS, LDSOURCES, BFD_SOURCES, SOURCES): Removed
536 mostly obsolete variables. Adjusted remaining uses.
537 (DEF_EMUL): Removed variable.
538 (ldmain.o): Handle undefined EMUL error correctly.
539 (ldemul-list.h): Depend on config.status rather than Makefile.
540 Create via temporary file.
541 (ver960.c, roll, make): Removed obsolete targets.
542 (.dep, .dep1, dep.sed, dep, dep-in): New targets. Used to rebuild
543 dependencies.
544 * dep-in.sed: New file, used when rebuilding dependencies.
545
2c6635a4
ILT
546Sat Dec 11 14:43:44 1993 Ian Lance Taylor ([email protected])
547
fcf276c4
ILT
548 Made many changes to eliminate gcc warnings. Made various
549 cosmetic changes, declared various things in header files, removed
550 various extern declarations from .c files. No substantive
551 changes.
552
2c6635a4
ILT
553 * ldlang.c (lang_process): Ifdef out final call to
554 lang_size_sections again (reverting change of Nove 2), since it
555 breaks the Sun4 linker.
556
557Thu Dec 2 16:31:47 1993 Ian Lance Taylor ([email protected])
558
559 * configure.in (alpha-*-netware*): New target; use alpha.
560
d05ac46b
KR
561Wed Dec 1 14:04:20 1993 Ken Raeburn ([email protected])
562
563 * configure.in: Group targets by CPU. Merge some m68k target
564 entries with different CPU specs that use the same ld_target
565 values.
566
567 * configure.in: Add sparc*-*-coff.
568 * config/coff-sparc.mt, emulparams/coff_sparc.sh: New files.
569 * Makefile.in (ALL_EMULATIONS): Add em_coff_sparc.o.
570 (em_coff_sparc.c): Add dependencies and build rules.
571
572 * ldmisc.c (errno, sys_nerr, sys_errlist): Don't declare.
573
f651733a
ILT
574Wed Dec 1 12:19:55 1993 Ian Lance Taylor ([email protected])
575
8e964b07
ILT
576 * ldgram.y (OPTION_call_shared, OPTION_non_shared, OPTION_Oval):
577 New tokens.
f651733a 578 (command_line_option): Accept and ignore them (for now).
8e964b07
ILT
579 * ldlex.l (<COMMAND>): Handle -non_shared, -call_shared, and -On
580 where n is a number.
f651733a
ILT
581
582Mon Nov 22 14:14:29 1993 Ian Lance Taylor ([email protected])
583
584 * ldmain.c (subfile_wanted_p): If merging a common symbol which is
585 not in bfd_com_section, create the section in the BFD so that it
586 can be placed in the right output section.
587
2332114c
ILT
588Fri Nov 19 14:12:39 1993 Ian Lance Taylor ([email protected])
589
590 * configure.in (mips*-sgi-irix5*): New target. Use mipsb-elf32.
591 * emulparams/elf32mipsb.sh (DATA_ADDR): Define.
592 (OTHER_READONLY_SECTIONS): Define for .reginfo.
593 (EXECUTABLE_SYMBOLS): Define for _DYNAMIC_LINK.
594 * scripttempl/elf.sc: Use EXECUTABLE_SYMBOLS when not relocating.
595 Move OTHER_READONLY_SECTIONS after all the other readonly
596 sections. Don't use DATA_ADDR twice.
597
598 * ldmain.c (enter_file_symbols): Removed duplicate tests of p. If
599 p is in a common section, make sure the BFD has a section of that
600 name.
601
602 * ldlang.c (lang_common): Add newline to error message.
603
604Thu Nov 11 15:54:41 1993 Stan Shebs ([email protected])
605
606 * emulparams/m68klynx.sh (SCRIPT_NAME): Define to use a
607 Lynx-specific script instead of m68kcoff.
608 (OUTPUT_FORMAT): Define as "coff-m68k-lynx".
609 (ENTRY): Define as __main.
610 (TEXT_START_ADDR): Define as 0.
611 (PAGE_SIZE): Define as 0x1000.
612 * emulparams/i386lynx.sh, emulparams/sparclynx.sh: Fix comment.
613 * scripttempl/m68klynx.sc: New file.
614
615Mon Nov 8 12:00:16 1993 Ian Lance Taylor ([email protected])
616
617 * ldmain.c (get_emulation): Ignore -mips1, -mips2 and -mips3
618 arguments rather than treating them as emulation names.
619
b11b3ace
DHW
620Fri Nov 5 09:02:52 1993 D. V. Henkel-Wallace ([email protected])
621
622 * configure.in: Support x86 unixware and netware plus generic netware.
623
2ccb88c0
DM
624Fri Nov 5 21:47:55 1993 David J. Mackenzie ([email protected])
625
626 * emulparams/i386mach.sh (TEXT_START_ADDR, NONPAGED_TEXT_START_ADDR):
627 Correct values (?).
628
3c1af24d
KR
629Wed Nov 3 15:10:15 1993 Ken Raeburn ([email protected])
630
631 * Makefile.in (distclean): Don't delete dvi or info files.
4ecfad79 632 (ld.info): Update dependency list.
2ccb88c0 633 (ld.dvi): Ditto. Extend TEXINPUTS to get bfdsumm.texi.
3c1af24d 634
3c292c5a
DM
635Wed Nov 3 12:07:39 1993 David J. Mackenzie ([email protected])
636
637 * ldlang.c (lang_add_output): Take new arg, FROM_SCRIPT.
638 Set output_filename instead of creating a new node.
639 (open_output): Don't set output_filename.
640 (lang_final): Create the new node here.
641 * ldlang.c, ldlang.h, ldgram.y, mri.c: pass FROM_SCRIPT.
642
97fbbaca
JL
643Tue Nov 2 15:45:51 1993 Jeffrey A. Law ([email protected])
644
f1f6b5e9
JL
645 From Pete Hoogenboom ([email protected]):
646
647 * scripttempl/hppaosf.sc: (___stack_zero, etext, _etext,
648 edata, _edata, end): Add definitions of these symbols.
649 (__end): Remove definition of this symbol.
650 (__data_start): Move definition of this symbol.
651
5f62613e
JL
652 * emultempl/hppaosf.em: Various fixes and support for linker stub
653 generation.
654 (hppaosf_finish, hppaosf_search_for_padding_statements,
655 hppaosf_create_output_section_statements): New functions in
656 support of linker stub generation.
657 (ld_hppaosf_emulation): Redefine to include new
658 emulation-specific routines.
659
97fbbaca
JL
660 * ldlang.c (lang_process): Re-enable last call lang_size_sections.
661 Pass abs_output_section rather than NULL to avoid invalidating
662 absolute symbols.
663
664Thu Oct 28 21:16:42 1993 David J. Mackenzie ([email protected])
665
666 * Makefile.in (ALL_EMULATIONS): Add em_i386mach.o.
667 (em_i386mach.c): New rule.
668 * configure.in (i[34]86-*-mach*): New case.
669 * config/i386-mach.mt: New file.
670 * emulparams/i386mach.sh: New file.
671
c3b34cfd
ILT
672Fri Oct 29 14:55:05 1993 Ian Lance Taylor ([email protected])
673
674 * ld.h (flag_is_*): Removed macros.
675 * ldmain.c (enter_global_ref), ldsym.c (write_file_locals):
676 Consistently check the BFD symbol flags directly, rather than
677 using file_is_* macros.
678
7b95fe96
SS
679Thu Oct 28 19:08:42 1993 Stan Shebs ([email protected])
680
681 * configure.in (sparc*-*-lynxos*): New target.
682 * Makefile.in: Add rule for em_sparclynx.c.
683 (ALL_EMULATIONS): Add Lynx emulations.
684 * config/sparc-lynx.mt: New file.
685 * emulparams/sparclynx.sh: New file.
686 * scripttempl/sparccoff.sc: New file.
687
d17eb3db
ILT
688Thu Oct 28 13:50:25 1993 Ian Lance Taylor ([email protected])
689
690 * Makefile.in: Add dependency for $(EMULATION_OFILES).
691
db4b5ad0
ILT
692Mon Oct 25 16:09:24 1993 Ian Lance Taylor ([email protected])
693
694 * relax.c (write_relax): Check return value of bfd_seclet_link.
695
2fe6619e
KR
696Mon Oct 25 09:31:21 1993 Ken Raeburn ([email protected])
697
698 * ldlang.c (delete_output_file_on_failure): New variable.
699 (open_output): Set it after bfd open succeeds.
700 * ldmisc.c (vfinfo): Test it.
701
702 Changes from Peter Hoogenboom, [email protected]:
703
704 * ldsym.c (write_file_locals): Set the BSF_FILE flag for object
705 symbols.
706
707 * ldemul.c: Support was added to allow emulation-specific
708 processing to occur. This support was added primarily for linker
709 stub generation in the elf32-hppa gld.
710 (ldemul_finish, ldemul_create_output_section_statements): New
711 functions.
712 * ldemul.h: Support was added to allow emulation-specific
713 processing to occur. (As described above.) Added finish and
714 create_output_section_statements fields to
715 ld_emulation_xfer_struct structure.
716 * ldlang.c: Add calls to emulation-specific routines.
717 (lang_process): Add call to
718 ldemul_create_output_section_statements function.
719 (lang_process): Add call to a emulation-specific routine (and
720 some processing after the call).
721
722Fri Oct 22 20:54:13 1993 david d `zoo' zuhn ([email protected])
723
724 * configure.in: mips*- instead of mips-, mips*el changes
725
1c4b3cda
ILT
726Tue Oct 19 15:46:28 1993 Ian Lance Taylor ([email protected])
727
728 * configure.in (alpha-*-osf*): New target; use alpha.mt.
729 * Makefile.in (ALL_EMULATIONS): Added em_alpha.o.
730 (em_alpha.c): New target; use alpha.sh and alpha.sc.
731 * config/alphaosf.mh (NATIVE_LIB_DIRS, HOSTING_CRT0): Define.
732 * config/alpha.mt: New file.
733 * emulparams/alpha.sh: New file.
734 * scripttempl/alpha.sc: New file.
735
736Fri Oct 15 02:20:04 1993 Doug Evans ([email protected])
737
738 * ldlang.c (lang_size_sections, lang_common): ALIGN_N can't handle
739 types of different sizes (eg: 64 and 32 bits), so coerce.
740 * ld.h (ALIGN_N): Add warning about usage.
741
98b5caad
ILT
742Wed Oct 13 16:02:39 1993 Ian Lance Taylor ([email protected])
743
744 * ldmain.c (enter_global_ref): Just ignore any weak symbol for
745 which we already have a definition, rather than checking in
746 several different places whether the symbol is weak.
747
a71da760
ILT
748Tue Oct 12 17:30:51 1993 Ian Lance Taylor ([email protected])
749
750 * configure.in (mips-*-elf*): New target; use mipsb-elf32.
751 * scripttempl/elf.sc: Only use OTHER_READONLY_SECTIONS and
752 OTHER_READWRITE_SECTIONS if relocating. Shell variables are not
753 expanded within them.
754 * config/mipsb-elf32.mt: New file.
755 * emulparams/elf32mipb.sh: New file.
756 * Makefile.in (em_elf32mipb.c): New target.
757
a4aeaacf
RS
758Thu Sep 30 17:00:36 1993 Rob Savoye ([email protected])
759
a4aeaacf
RS
760 * ldgram.y: In input_list, change lang_input_file_is_file_enum to
761 lang_input_file_is_search_file_enum so objects brought in using
762 INPUT() do a path lookup.
763
764Tue Sep 28 13:31:23 1993 Stan Shebs ([email protected])
765
766 * configure.in: Change Lynx ld_target to be {i386,m68k}-lynx
767 instead of {i386,m68k}-coff.
768 * Makefile.in (em_i386lynx.c, em_m68klynx.c): New targets.
769 * config/i386-lynx.mt: New file.
770 * config/m68k-lynx.mt: New file.
771 * emulparams/i386lynx.sh: New file.
772 * emulparams/m68klynx.sh: New file.
773
774 * scripttempl/i386coff.sc: Make ENTRY get its value from ${ENTRY},
775 but defaulting to _start.
776
777 * ldemul.c, ldfile.c, ldlang.c, ldmain.c, ldmisc.c, ldmisc.h,
778 ldsym.c, ldwarn.c: Rename info to info_msg, to avoid conflict with
779 LynxOS libc.
780
781Thu Sep 23 14:51:03 1993 Ian Lance Taylor ([email protected])
782
783 * config/solaris2.mh: New file. Define HOSTING_CRT0 and
784 HOSTING_LIBS for testing.
785
9a467cb2
ILT
786Fri Sep 17 17:52:24 1993 Ian Lance Taylor ([email protected])
787
788 Finish up support for i386-sysv4 (without shared libraries):
789 * ld.h (flag_is_weak): Define.
790 * ldlang.c (print_symbol): Mention whether symbol is weak.
791 (print_input_section): Print weak symbols as globals.
792 * ldmain.c (refize): Do not zero out BSF_WEAK flag.
793 (enter_global_ref): Do not warn if a weak symbol redefines a
794 global symbol. Do not let a weak symbol redefine a common symbol.
795 (enter_file_symbols): Treat weak symbols as global symbols.
796 (subfile_wanted_p): Do not pull in an object file from a archive
797 just to resolve an undefined weak symbol.
798 * ldmisc.c (vfinfo): Don't needlessly malloc space after a fatal
799 error; the error might be that malloc has run out of space.
800 * ldsym.c (write_file_locals): Treat weak symbols as global.
801 * configure.in (i[34]86-*-sysv4*, i[34]86-*-elf*): New targets;
802 use i386-elf.
803 * config/i386v4.mh: New file; set NATIVE_LIB_DIRS to /usr/ccs/lib.
804 * config/i386-elf.mt: New file; set EMUL to elf_i386.
805 * emulparams/elf_i386.sh: New file.
806 * scripttempl/elf.sc: Use ${NOP} as filler (defaults to 0).
807 * Makefile.in (NATIVE_LIB_DIRS): Define to be empty.
808 (ALL_EMULATIONS): Add em_elf_i386.o.
809 (GENSCRIPTS): Pass NATIVE_LIB_DIRS as sixth argument.
810 (em_elf_i386.c): New target, like other em_*.c targets.
811 ($(LD_PROG)): Pass $(CFLAGS) to $(CC).
812 * genscripts.sh: Accept NATIVE_LIB_DIRS as sixth argument. If
813 nonempty, and configured for native, add it to LIB_PATH.
814
4f6d6db9
SS
815Fri Sep 17 13:07:39 1993 Stan Shebs ([email protected])
816
817 * scripttempl/{h8300.sc,h8500.sc,i386coff.sc,m68kcoff.sc,sh.sc}:
818 Added statements to pass stab and stabstr sections through and
819 mark them as NOLOAD, which makes GDB happier.
820
821Wed Sep 15 16:02:29 1993 Stan Shebs ([email protected])
822
823 * configure.in: Accept m68k-lynx-lynxos config.
824
825 * Makefile.in: Use $(SHELL) to run genscripts.sh.
826
1bff7c38
DE
827Sun Sep 12 16:04:40 1993 Doug Evans ([email protected])
828
4f6d6db9
SS
829 * config/coff-h8300.mt: Add EMUL=h8300h.
830
1bff7c38
DE
831 * ldmain.c (main): Call set_scripts_dir after argv has been processed.
832
8a6665ae
JW
833Fri Sep 10 09:36:29 1993 Jeffrey Wheat ([email protected])
834
835 * Makefile.in: Changed CXX back to g++.
836
3a9149a7
JW
837Fri Sep 10 09:34:29 1993 Jeffrey Wheat ([email protected])
838
839 * Makefile.in: Fixed RUNTEST* CXX CXXFLAGS macros and check rule.
840
cbb5c2d1
DM
841Fri Sep 10 07:26:57 1993 David J. Mackenzie ([email protected])
842
843 * Makefile.in (TAGS): Use shell wildcards.
844
959eba20
JO
845Tue Sep 7 18:04:54 1993 Jeffrey Osier ([email protected])
846
847 * Makefile.in: add TEXINPUTS variable and use it in ld.dvi target
848
a0a55af6 849Fri Sep 3 16:46:41 1993 Roland H. Pesch ([email protected])
c1074477 850
a0a55af6
RP
851 * ld.texinfo: re-enable included config file; conditionalize doc
852 for -oformat to interact properly with SingleFormat doc config
853 var; rename @up/@down to @raisesections/@lowersections.
c1074477
DE
854
855Wed Aug 25 16:29:56 1993 K. Richard Pixley ([email protected])
856
857 * configure.in: recognize m88110.
858
4346166b
KR
859Tue Aug 24 18:49:40 1993 Ken Raeburn ([email protected])
860
861 From Peter Hoogenboom <[email protected]>:
862 * emultempl/hppaosf.em (ld_hppaosf_emulation): Correct name for PA
863 ELF emulation is "elf32-hppa" not "elf-big".
864 (hppaosf_before_parse): Remove unneeded processing of environment
865 variables.
866 * scripttempl/hppaosf.sc: Include .hppa_linker_stubs sections in
867 .text segment of output file.
868 * emulparams/hppaosf.sh (OUTPUT_FORMAT): Use elf32-hppa.
869
b98bd3db
RP
870Tue Aug 24 16:17:00 1993 K. Richard Pixley ([email protected])
871
95a2b9d2
RP
872 * ld.h: define BYTE_SIZE, SHORT_SIZE, and LONG_SIZE which are no
873 longer in bfd.h.
874
875 * ldlang.c, ld.h: updated copyright.
b98bd3db 876
ddddcdf0
ILT
877Tue Aug 17 15:22:03 1993 Ian Lance Taylor ([email protected])
878
879 * ldlang.c (open_output, lang_check): Check return value of
880 bfd_set_arch_mach.
881
ea1c0ad2
SC
882Tue Aug 17 07:02:19 1993 Steve Chamberlain ([email protected])
883
884 * scripttempl/h8500.sc: Start all sections in a different segment.
885 * scripttempl/z8ksim.sc: Handle constructors
886
ea1c0ad2
SC
887Thu Aug 12 16:05:37 1993 Jeffrey Wheat ([email protected])
888
889 * Makefile.in: revert earlier changes back to execute runtest
890 with make check. cdtest and bootstrap now function as they
891 did within the Makefile.
892
893Thu Aug 12 10:20:05 1993 David J. Mackenzie ([email protected])
894
895 * Makefile.in: Update dependencies.
896
897 * configure.in: Set EMULATION_OFILES in Makefile based on
898 --with-targets option.
899
d301e438
JW
900Thu Aug 12 08:52:29 1993 Jeffrey Wheat ([email protected])
901
902 * Makefile.in: check targets reimplemented to old way.
903
75fe5471
ILT
904Wed Aug 11 08:26:11 1993 Ian Lance Taylor ([email protected])
905
d62026ad
ILT
906 * config/i386v.mh, config/irix4.mh: Use gcc
907 -print-libgcc-file-name rather than $(libdir)/libgcc.a.
75fe5471
ILT
908 * config/i386sco.mh: New file; copy of i386v.mh to correspond to
909 bfd/configure.host change.
910
911Mon Aug 9 14:25:35 1993 Ken Raeburn ([email protected])
912
913 * scripttempl/elf.sc: Handle .line and .debug* sections.
914
915 * ldlex.l: Use bfd_scan_vma, not strtoul.
916
31f55aa5
DM
917Fri Aug 6 08:57:39 1993 David J. Mackenzie ([email protected])
918
919 * ldexp.c, ldfile.c, ldlang.c, lexsup.c, ldmain.c, ldemul.c:
920 Remove inital caps in some error messages, change "can't" to
921 "cannot", add missing colons.
922 * ldmisc.c (vfinfo): Print "%%" as a single %.
923 For '%' followed by unrecognized character, print them both
924 verbatim instead of expecting a char * arg.
925 For '%C', don't put the function name in parens.
926
927 * ldexp.c (invalid): Pass "%%", not "% ".
928
33536304
ILT
929Fri Aug 6 14:31:22 1993 Ian Lance Taylor ([email protected])
930
931 * scripttempl/mips.sc: Always define _ftext, _fdata, _fbss.
932 (BSS_VAR): Removed; now always define _fbss.
933 * emulparams/mipsidt.sh, emulparams/mipsidtl.sh (BSS_VAR):
934 Removed.
935
936Thu Aug 5 15:55:19 1993 david d `zoo' zuhn ([email protected])
937
938 * configure.in: z8k-coff is the same as z8k-sim
939
7c6a9e79
JW
940Wed Aug 4 21:00:18 1993 Jeffrey Wheat ([email protected])
941
942 * testsuite/lib/ld.exp: new file
943 * testsuite/config/unix-ld.exp: new file
944 * testsuite/ld.bootstrap/bootstrap.exp: new file
945 * Makefile.in: add dejagnu support for make check
946
8bf66be8
DM
947Wed Aug 4 17:52:32 1993 David J. Mackenzie ([email protected])
948
949 * ldlex.l (comment): Add missing newline in message.
950 * ldindr.c (add_indirect): Ditto.
951 * ldexp.c (exp_fold_tree): Ditto.
952
2a28d8b0
DM
953Tue Aug 3 10:57:41 1993 David J. Mackenzie ([email protected])
954
955 * ldgram.y, ldlex.l, mri.c, ldwrite.c: Change multiple commons
956 into externs.
957
958 * ldmisc.c (multiple_warn): New function.
959 * ldmisc.h: Declare it.
960 * ldmain.c (enter_global_ref): Call it.
961 * ld.h (ld_config_type): Add warn_common.
962 * ldlex.l, ldgram.y: Set it with -warn-common option.
963 * ldver.c (help): Document it.
964
94f9d427
KR
965Mon Aug 2 12:04:36 1993 Ken Raeburn ([email protected])
966
967 * scripttempl/elf.sc: Add hooks for .sdata, .sbss, and
968 target-specific sections, and for changing data section vma.
969
6b93d764
KR
970Mon Jul 26 14:00:02 1993 Ken Raeburn ([email protected])
971
972 * ldgram.y (OPTION_Qy, OPTION_Y, OPTION_dn, OPTION_YP): New
973 terminals, for Solaris.
974 (dirlist_ptr): New static variable.
975 (command_line_option): Accept new options.
976
977 * ldlex.l: Accept command-line options "-Qy", "-dn", "-Y", and
978 "-YP,...".
979
980 * config/sun4sol2.mt: Pass emulation name without ".sh".
981
94f9d427
KR
982 * emulparams/elf32_sparc.c: Renamed from elf32-sparc.c.
983 * config/sun4sol2.mt (em_elf32_sparc.c): Adjusted accordingly.
984
6b93d764
KR
985Fri Jul 23 13:51:09 1993 Ken Raeburn ([email protected])
986
987 * scripttempl/elf.sc: Add support for .init, .fini, .ctors,
988 .dtors, .data1, .rodata1 sections, instead of combining them into
989 other sections. For `-r', set all section start addresses to
990 zero.
991
992 * emulparams/elf32-sparc.sh (TEXT_START_ADDR,
993 NONPAGED_TEXT_START_ADDR): Value should be 0x10100.
994 (MAXPAGESIZE): Renamed from PAGE_SIZE.
995
a6152e39
DM
996Wed Jul 21 14:28:42 1993 David J. Mackenzie ([email protected])
997
d59e5a47
DM
998 * genscripts.sh: If this is the default emulation, set
999 COMPILE_IN.
1000 * emultempl/*.em: Use it to determine whether to compile in the
1001 scripts.
1002
a6152e39
DM
1003 * Makefile.in (GENSCRIPTS): Pass the default emulation name to
1004 genscripts.sh. Pass the current emulation name without ".sh" on
1005 the end.
1006 * genscripts.sh: Take an default emulation arg.
d59e5a47 1007 Use the current emulation name as EMULATION_NAME.
a6152e39
DM
1008 Make default lib path for cross-compiling ':', not null.
1009 * emulparams/*.sh: Don't set EMULATION_NAME.
1010 * ldemul.c (ldemul_get_script): Take isfile arg.
1011 Pass it to emulation's get_script function.
1012 * ldemul.h: Adjust get_script prototypes.
1013 * ldfile.c (ldfile_find_command_file): Renamed from find_a_name.
1014 No longer static.
1015 * ldfile.h: Declare it.
1016 * ldgram.y: Accept a script on the command line again,
1017 for parsing compiled-in scripts.
1018 * ldmain.c (main): If ld script is a file, parse it as a -T
1019 option, otherwise parse it directly.
1020 * emultempl/*.em (*get_script): Return the scripts themselves if
1021 this is the default emulation; otherwise return their file names.
18d9a9c5 1022 * emultempl/m88kbcs.em: New file, to take m88kbcs #ifdef out of
a6152e39
DM
1023 generic.em.
1024 * emulparams/m88kbcs.sh: Use it.
1025
18d9a9c5 1026 * ld.h (ld_config_type::unix_relocate): Remove unused element.
a6152e39 1027
0750b974
KR
1028Tue Jul 20 12:01:49 1993 Ken Raeburn ([email protected])
1029
1030 * Makefile.in (ALL_EMULATIONS): Delete em_i386linux.o (for which
1031 there's no change log entry yet, tsk tsk) from the list of
1032 emulations compiled in until Mark gets around to checking in
1033 emulparams/i386linux.sh.
820c446c
KR
1034 (ldemul-list.h): Depend on Makefile, so if EMULATION_OFILES is
1035 changed, this file gets updated.
0750b974 1036
fe619ced
ILT
1037Fri Jul 16 14:14:32 1993 Ian Lance Taylor ([email protected])
1038
1039 * ldgram.y (OPTION_Lfile): New token.
1040 (command_line_option): Accept OPTION_L NAME (whitespace after -L).
1041 * ldlex.l (<COMMAND>): Accept -L without FILENAME.
1042
dd8ca662
DE
1043Fri Jul 16 13:44:26 1993 Doug Evans ([email protected])
1044
1045 * configure.in: h8/300h support needs own .mt file.
1046 config/coff-h8300h.mt: New file.
1047
922018a1
DM
1048Thu Jul 15 12:44:35 1993 David J. Mackenzie ([email protected])
1049
1050 * ldmain.c: Don't include sys/stat.h; it already got included
1051 somewhere along the way.
1052
4ab3a31f
DE
1053Thu Jul 15 14:43:34 1993 Doug Evans ([email protected])
1054
1055 * Makefile.in: Add h8300h support.
dd8ca662
DE
1056 emulparams/h8300h.sh: New file.
1057 scripttempl/h8300h.sc: New file.
4ab3a31f 1058
bbd2521f
DM
1059Thu Jul 15 12:44:35 1993 David J. Mackenzie ([email protected])
1060
1061 * ldfile.c (ldfile_open_file): In error message, use the name the
1062 user gave (e.g., "-lc"), rather than the base file name.
1063
1064 * ldexp.c (exp_fold_tree): Don't assign an int to an enum.
1065
1066 * ldmain.[ch]: Remove initial Q_ from function names.
1067 * ldexp.c, ldindr.c, ldlang.c: Change callers.
1068
1069 * ldfile.c, ldmain.c, ldgram.y: Rename option_v to trace_file_tries.
1070
1071 * ldlang.c (lang_process): Move loading of default script from
1072 here to main. Add a "/" to start of script name to prevent
1073 finding it in "." first.
1074
1075 * ldmain.c (set_scripts_dir): Don't look in "." first.
1076
1077 * ldgram.y, ldlang.c, ldsym.c: Remove traces of unused var
1078 option_longmap.
1079
9edc5b2e
ILT
1080Thu Jul 15 10:55:59 1993 Ian Lance Taylor ([email protected])
1081
1082 * Makefile.in (em_m88kbcs.c): Correct dependency.
b0955bc9
ILT
1083 * scripttempl/m88kbcs.sc: It's ARCH, not arch. Removed TARGET
1084 statement. Changed OUTPUT_FORMAT to use ${OUTPUT_FORMAT}.
1085 * emulparams/m88kbcs.sh: It's coff-m88kbcs, not m88kbcs.
9edc5b2e 1086
cffdcde9
DM
1087Wed Jul 14 21:42:53 1993 David J. Mackenzie ([email protected])
1088
1089 * ldfile.c (ldlang_open_file, ldfile_open_command_file),
1090 main.c (main): Print the errno string in the error message.
1091
ac2c0ee7
DE
1092Tue Jul 13 20:00:30 1993 Doug Evans ([email protected])
1093
1094 * configure.in: Accept h8300h for target cpu.
1095
1096 * ldmisc.c (vfinfo): Have demangle remove leading underscore if
1097 present (demangle is smart enough to know whether to do it or not).
1098
d723cd17
DM
1099Mon Jul 12 11:45:48 1993 David J. Mackenzie ([email protected])
1100
f4208462
DM
1101 * ldmain.c (set_scripts_dir): Check . and <ld bin dir>/../lib for
1102 ldscripts, as well as <ld bin dir> and SCRIPTDIR.
1103
d723cd17
DM
1104 * ldlang.c (lang_process): Use sizeof instead of magic constant.
1105
1106 * ldmain.c (get_emulation, check_for_scripts_dir,
1107 set_scripts_dir): New functions.
1108 (main): Call them.
1109
e7affb09
KR
1110Mon Jul 12 10:57:03 1993 Ken Raeburn ([email protected])
1111
1112 * scripttempl/elf.sc: Include .init, .fini, .rodata sections.
1113 Create symbol "end" instead of "__end". Comment out some parts
1114 that may not be needed (yet) for elf.
1115
1116 * configure.in: Accept sparc-elf and sparc-solaris2 configs.
1117
3cb61417
KR
1118Thu Jul 8 15:33:32 1993 Ken Raeburn ([email protected])
1119
1120 * Makefile.in (ALL_EMULATIONS): Include $(OTHER_EMULATIONS).
1121
1122 * ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro
1123 when no prototype is being supplied.
1124 (ldmalloc, ldrealloc): Size argument is now size_t.
1125
1126 * ldmisc.c (finfo): New function, accepts FILE* argument.
1127 (vfinfo, case 'v'): New format character; displays bfd_vma in hex
1128 without leading zeros.
1129 (vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a
1130 bfd_vma value, instead of fprintf(%x) which won't hold a long long
1131 value.
1132 (concat, buystring): String lengths are size_t.
1133 (ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1134
1135 * ldlang.c (new_statement): Size argument is now size_t. Added
1136 forward declaration with prototype.
1137
de87cdb4
DM
1138Thu Jul 8 10:53:47 1993 David J. Mackenzie ([email protected])
1139
1140 * ldgram.y (OPTION_v): Don't turn on verbose output.
1141
49bfda2c
KR
1142Wed Jul 7 17:10:45 1993 Ken Raeburn ([email protected])
1143
3cb61417
KR
1144 * ldlex.l: Get rid of local typedef for bfd_vma! Get it from
1145 bfd.h instead.
49bfda2c 1146
e357065c
ILT
1147Wed Jul 7 11:33:12 1993 Ian Lance Taylor ([email protected])
1148
1149 * Makefile.in (install): Don't install as $(tooldir)/bin/gld;
1150 collect2 doesn't look for gld any more anyhow.
1151
55636aa7
ILT
1152Mon Jul 5 14:29:48 1993 Ian Lance Taylor ([email protected])
1153
1154 * ldlang.c (lang_relocate_globals): Skip indirect symbols, which
1155 now have a non NULL srefs_chain.
1156
1157 * config/hp300hpux.mt: Use emulation hp3hpux rather than
1158 hp300hpux, since the latter does not exist.
1159
ff76a7db
DM
1160Fri Jul 2 18:06:05 1993 David J. Mackenzie ([email protected])
1161
1162 * genscripts.sh: Put the scripts in the ldscripts directory, not
1163 emulations.
1164 * configure.in (ldscripts): Make, instead of emulations.
1165 * Makefile.in (scriptdir): Take off the "ld" part.
1166 (install, clean, distclean): Use ldscripts, not emulations.
a04f1d00 1167 In tests, don't pass -Lemulations.
ff76a7db
DM
1168 Don't pass tooldir/lib to genscripts.sh.
1169 * genscripts.sh: Don't take tooldir/lib arg.
1170 * ldlang.c (lang_process): Add "ldscripts/" to the name of the
1171 default script file.
1172
7434d4e5
DE
1173Fri Jul 2 17:13:35 1993 Doug Evans ([email protected])
1174
1175 * scripttempl/h8300.sc: Add .tors section for constructor/destructors.
1176
1177Thu Jul 1 16:38:45 1993 Doug Evans ([email protected])
1178
1179 * config/coff-h8300.mt: EMUL=h8300hms -> h8300.
1180
559d7baf
RP
1181Wed Jun 30 15:45:55 1993 K. Richard Pixley ([email protected])
1182
1e787898
RP
1183 * Makefile.in (.y.c): skip default .y.c rules. gnu make can now
1184 run in parallel without colliding on yacc's static file names.
1185 Without the stub rule, make will try to start two yacc's
1186 concurrently which fails because of yacc's static file names.
559d7baf
RP
1187
1188Tue Jun 29 12:20:36 1993 Ian Lance Taylor ([email protected])
1189
1190 * ldmain.c (subfile_wanted_p): Don't dump core if there are no
1191 symbols.
1192
59fb874e
DM
1193Mon Jun 28 12:22:11 1993 David J. Mackenzie ([email protected])
1194
559d7baf
RP
1195 * genscripts.sh (LIB_PATH): Only add /usr/local/lib if it's
1196 different from libdir.
1197
59fb874e
DM
1198 * Makefile.in (scriptdir): Base on tooldir, not datadir.
1199
bf065bfd
DM
1200Sat Jun 26 12:03:57 1993 David J. Mackenzie ([email protected])
1201
1202 * ldver.c (help): New function.
1203 * ldver.h: Declare it.
1204 * ldlex.l, ldgram.y: Recognize new options --help and --version.
1205
304b747a
KR
1206Mon Jun 21 20:39:48 1993 Ken Raeburn ([email protected])
1207
1208 * Makefile.in (INCLUDES): Don't need ../include any more.
1209
2b63dbfe
DM
1210Mon Jun 21 16:38:35 1993 David J. Mackenzie ([email protected])
1211
bf065bfd
DM
1212 * ldlex.l, ldgram.y: Support new -oformat option.
1213 Remove attempt at supporting script fragments on the command line.
1214 * ldlang.c (lang_add_output_format): Take new arg, FROM_SCRIPT.
1215 * mri.c (mri_format), ldgram.y: Change callers.
1216 * ldlang.h: Change prototype.
2b63dbfe 1217
e9b991c6
DZ
1218Thu Jun 17 16:53:56 1993 david d `zoo' zuhn ([email protected])
1219
1220 * Makefile.in: canonicalize install.sh; for use within
1221 this directory (and subdirs)
1222
565c93e9
DM
1223Thu Jun 17 14:33:09 1993 David J. Mackenzie ([email protected])
1224
2de8edce
DM
1225 * ldgram.y: Tweak grammar to make reporting of invalid options work.
1226
565c93e9
DM
1227 * Makefile.in (.cc.o): Restore .SUFFIXES entry for .cc
1228 and .cc.o rule.
1229
8ddef552
DM
1230Wed Jun 16 11:45:32 1993 David J. Mackenzie ([email protected])
1231
1232 * ldfile.c (ldfile_open_command): Don't try .ld extension.
1233 It wasn't documented (or likely used) and wastes time.
1234 (try_open): If EXTEN is empty, don't try it.
1235
1236 * ldctor.c, lderror.c, ldexp.c, ldfile.c, ldindr.c, ldlang.c,
1237 ldlex.l, ldmain.c, ldmisc.c, ldsym.c, ldver.c, ldwarn.c,
1238 ldwrite.c, lexsup.c, mri.c, relax.c: Replace DEFUN macro calls
1239 with normal function declarations.
1240
1241 * Move *.em to emultempl/*.em. Move *.sh to emulparams/*.sh.
1242 Move *.sc-sh to scripttempl/*.sc.
1243 * {emultempl,emulparams,scripttempl}/README: New files.
1244 * sh.em, st2000.em, z8ksim.em, h8300hms.em, h8500hms.em: Files
1245 removed, replaced with generic.em.
1246 * h8300.sh, h8500.sh, h8300.sc, h8500.sc: Renamed from
1247 h8[35]00hms.s[ch]. Change their contents to omit the "hms".
1248
1249 * *.em (*_get_script): Return script name instead of script contents.
1250 * ldlang.c (lang_process): Change caller.
1251
1252 * ldlex.l, ldgram.y: Recognize -m option.
1253 Check for input files after *all* options in grammar.
1254 * ldmain.c (main): Check for -m options. Add default directory
1255 for -m.
1256
1257 * mkscript.c: File removed.
1258 * genscripts.sh: Take two more parameters, tooldirlib and libdir,
1259 to add to the default LIB_PATH.
1260 Look for input files in the new subdirectories.
1261 Create the scripts in emulations subdirectory and don't filter
1262 them through mkscript.
1263 * configure.in: Make the emulations subdirectory.
1264
1265 * Makefile.in: Account for all of the above changes.
1266 Remove unused .SUFFIXES. Get libgcc.a path with gcc
1267 -print-libgcc-file-name instead of $(libdir)/libgcc.a.
1268 Put CFLAGS last in the compilation rules.
1269 Add -I../bfd to INCLUDES so sysdep.h is found.
1270
2a963f1a
KR
1271Tue Jun 15 23:04:46 1993 Ken Raeburn ([email protected])
1272
1273 * Makefile.in (INCLUDES): Look in ../include, not ../bfd.
1274
1275 * aout.sc-sh: Add SHLIB_PATH like STACKZERO. Make STACKZERO
1276 dependent on RELOCATING, not RELOCATION.
1277 * hp3hpux.sh (SHLIB_PATH): Define it.
1278
8ddef552
DM
1279Mon Jun 14 19:06:15 1993 David J. Mackenzie ([email protected])
1280
1281 * ldfile.c (try_open): If opening without the extension fails,
1282 try with the extension even if -v or -V was given.
1283 had_script is imported (from ldgram.y), not exported.
1284
c97b9003
DZ
1285Mon Jun 14 16:26:10 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
1286
1287 * Makefile.in: remove parentdir support, use INSTALL_XFORM
1288
1289Thu Jun 10 14:00:06 1993 Ian Lance Taylor ([email protected])
1290
1291 * ldexp.c (exp_fold_tree): Don't lose the old flag bits.
1292 * ldgram.y (statement_list_opt): New nonterminal, either empty or
1293 statement_list.
1294 (section): Use statement_list_opt, not statement_list.
1295 * m68kcoff.sc-sh: Gather constructors and destructors and define
1296 __CTOR_LIST__ and __DTOR_LIST__ appropriately.
1297 * sa29200.sc-sh: Gather constructors and destructors and define
1298 ___CTOR_LIST__ and ___DTOR_LIST__ appropriately.
1299
7f2649bb
PB
1300Mon Jun 7 12:53:28 1993 Per Bothner ([email protected])
1301
1302 * Makefile.in (INCLUDES): Add -I../bfd for sysdep.h and bfd.h.
1303 * configure.in: No longer need to configure to get sysdep.h.
1304
91b3a2b6
DZ
1305Fri Jun 4 16:18:24 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1306
7f2649bb
PB
1307 * Makefile.in: remove install:all and install-info:info
1308 dependencies (these cause some spurious rebuilds at 'make install'
1309 time)
91b3a2b6 1310
559d1cff
ILT
1311Fri Jun 4 08:50:14 1993 Ian Lance Taylor ([email protected])
1312
98f3d1af
ILT
1313 * configure.in (mips-idt-ecoffl*): New target; use mips-idtl.
1314 (mips-idt-ecoff*): Added trailing '*'.
1315 * config/mips-idtl.mt: New file; use EMUL of mipsidtl.
1316 * mipsidtl.sh: New file; like mipsidt.sh, but little endian.
1317 * Makefile.in (ALL_EMULATIONS): Added em_mipsidtl.o.
1318
559d1cff
ILT
1319 * config/sun3.mh (HOSTING_LIBS, HOSTING_EMU): Removed obsolete and
1320 incorrect definitions.
1321
1cf91c69
PB
1322Tue Jun 1 14:56:10 1993 Per Bothner ([email protected])
1323
1324 * ldsym.c (write_file_locals): Write BSF_CONSTRUCTOR
1325 symbols, unless stripping.
1326
63545898
ILT
1327Tue May 25 15:34:25 1993 Ian Lance Taylor ([email protected])
1328
1329 * Makefile.in: configure looks for ####, so remove lines with many
1330 '#' characters.
1331 * config/irix4.mh, config/i386v.mh: New files; set HOSTING_CRT0
1332 and HOSTING_LIBS correctly so that ``make check'' will work.
1333
1334Thu May 20 13:56:16 1993 Per Bothner ([email protected])
1335
1336 * mips.sc-sh: Define _etext, _edata, and _end, in addition
1337 to etext, edata, and end. Needed for IRIX 4.0.5F.
1338 Patch from [email protected] (Michael Paddon).
1339
2a963f1a
KR
1340 * Version 2.2.1 released.
1341
5266c5ec
KR
1342Thu May 20 11:42:06 1993 Ken Raeburn ([email protected])
1343
1344 * mipsbsd.sc-sh: Renamed from aout-mipsbsd.sc-sh.
1345 * mipsbsd.sh (EMULATION_NAME): Use new file name.
1346
1347Tue May 18 17:10:24 1993 Ken Raeburn ([email protected])
1348
1349 * Makefile.in (LDDISTSTUFF): Remove ld.mm since we can't build it
1350 properly right now.
1351
1352 * Version 2.2 released.
1353
1354Mon May 17 15:37:28 1993 Ken Raeburn ([email protected])
1355
1356 * ldver.c (ldversion): Bump version number to 2.2.
1357
bc3b479c
PB
1358Mon May 17 12:44:31 1993 Per Bothner ([email protected])
1359
1360 * NEWS: New file.
1361
1362Fri May 14 11:26:24 1993 Ian Lance Taylor ([email protected])
1363
1364 * mips.sc-sh: Don't define BSS_VAR unless relocating.
1365
1366Wed May 12 13:33:29 1993 Ian Lance Taylor ([email protected])
1367
1368 * Makefile.in (mkscript.o, mkscript): Build mkscript via
1369 mkscript.o, rather than directly from mkscript.c.
1370
b8fc168d
KR
1371Tue May 4 21:58:56 1993 Ken Raeburn ([email protected])
1372
1373 * configure.in: Look for ${target_makefile_frag} relative to
1374 ${srcdir}, not relative to build directory.
1375
1376 * hppaosf.em, hppaosf.sc-sh, hppaosf.sh: New files.
1377 * configure.in: Recognize hppa*-hp-osf.
1378 * Makefile.in (ALL_EMULATIONS): Include hppaosf emulation.
1379 (em_hppaosf.c): Build it.
bc3b479c 1380 * config/hppaosf.mh, hppaosf.mt: New files.
b8fc168d
KR
1381
1382 * ld.h (ALIGN_N): Renamed from ALIGN, because that conflicted with
1383 some system header files. All uses changed.
1384
1385 * configure.in: Recognize i386-aix configurations as i386-coff
1386 targets.
1387
1388 * configure.in: Recognize m68*-*-hpux.
1389 * aout.sc-sh: If STACKZERO and RELOCATING are both defined, output
1390 the value of STACKZERO.
1391 * Makefile.in (ALL_EMULATIONS): Include hp300-hpux emulation.
1392 (em_hp3hpux.c): Build it.
1393 * hp3hpux.sh, config/hp300hpux.mt: New files.
1394
ef868186
ILT
1395Tue May 4 12:37:35 1993 Ian Lance Taylor ([email protected])
1396
1397 * mips.sc-sh: Put constructors in the .data section.
1398 * Makefile.in (cdtest): Added dependency on ld.new.
1399
034351e3
PB
1400Mon May 3 19:43:39 1993 Per Bothner ([email protected])
1401
1402 * Makefile.in: Change definition of $(tooldir) to match FSF.
1403 * vax.sh, config/vax.mt, configure.in, Makefile.in:
1404 Support VAX Ultrix and BSD.
1405
1406Mon Apr 26 18:35:47 1993 Steve Chamberlain ([email protected])
1407
1408 * sh.em, sh.sh, sh.sc-sh: New files supporting Hitachi SH.
1409
1410Wed Apr 14 21:01:51 1993 John Gilmore ([email protected])
1411
1412 * ldlang.h (struct memory_region): Change `length' and
1413 `old_length' fields to bfd_size_type. Eliminate use of bfd_offset.
1414 * ldlang.c, mri.c: Corresponding changes, plus lint.
1415
1416Thu Apr 8 22:08:18 1993 Ian Lance Taylor ([email protected])
1417
1418 * configure.in: For all i386 targets, accept i486 as well.
1419
1420Mon Apr 5 17:33:39 1993 Ian Lance Taylor ([email protected])
1421
1422 * ldlang.c (wild_doit): Preserve all flags for a
1423 SEC_SHARED_LIBRARY section.
1424 (size_input_section): Consider any SEC_HAS_CONTENTS section when
1425 computing largest_section.
1426
1b8a42f3
ILT
1427Fri Apr 2 14:33:52 1993 Ian Lance Taylor ([email protected])
1428
1429 * ldlang.c (lang_output_section_statement_lookup): Initialize all
1430 fields of newly created structure.
1431
1432Wed Mar 31 18:19:15 1993 Ian Lance Taylor ([email protected])
1433
1434 * ldmain.c (g_switch_value): New variable.
1435 * ldgram.y (OPTION_G, OPTION_Gval): New tokens.
1436 (command_line_option): Accept -G and set g_switch_value.
1437 * ldlex.l (COMMAND): Accept -G.
1438 * ldlang.c (open_output): Call bfd_set_gp_size on new BFD.
1439
29f33467
SC
1440Tue Mar 30 09:40:25 1993 Steve Chamberlain ([email protected])
1441
9fce28ed
SC
1442 Support for linking and loading at different places:
1443
1444 * ldlex.l: Add "AT" keyword.
1445 * ldgram.y: Cleanup, and parse AT.
1446 * ldlang.c (print_output_section_statement): Print output address
1447 of section in map. (lang_size_sections): Fill sections' lma with
1448 load address.
1449 * ldlang.h (lang_output_section_statement_type): Add load_base
1450 information.
1451
29f33467
SC
1452 * ldindr.c (add_indirect): Keep more information in the alias
1453 symbol chain.
1454 * ldlang.c (wild_doit): Don't inherit NEVER_LOAD section
1455 attribute from an input section.
1456 * ldmain.c (Q_enter_file_symbols): Common section is NEVER_LOAD by
1457 default. (Q_enter_file_symbos): Indirect symbols now are known by
1458 their section, not a special symbol flag.
1459 * ldsym.c (write_file_locals): Indirect symbols aren't local.
1460 (write_file_globals): Write the mapping for an indirect symbol.
1461 * relax.c (build_it): When forced to write a NEVER_LOAD section,
1462 fill it with zeros.
1463
1464Tue Mar 23 13:24:10 1993 Jeffrey Osier ([email protected])
1465
1466 * ld.texinfo: changes for q1
1467
f20e9842
DZ
1468Tue Mar 23 00:13:29 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1469
1470 * Makefile.in: add dvi target, define & use TEXI2DVI, add installcheck
1471
1472Mon Mar 8 20:30:35 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1473
1474 * Makefile.in: rename HOST_CC to CC_FOR_BUILD
1475
1476Thu Mar 4 12:44:33 1993 Ian Lance Taylor ([email protected])
1477
1478 * mips.sc-sh: Added variables which may be overridden by a
1479 specific emulation.
1480 * mipsidt.sh: New file; emulation for IDT MIPS board.
1481 * Makefile.in (ALL_EMULATIONS): Added em_mipsidt.o.
1482 (em_mipsidt.c): New target. Uses mipsidt.sh and mips.sc-sh.
1483 * config/mips-idt.mt: New file; sets EMUL to mipsidt.
1484 * configure.in (mips-idt-ecoff): New target; uses mips-idt.
1485
e637dcf0
KR
1486Sat Feb 27 00:00:14 1993 Ken Raeburn ([email protected])
1487
1488 * aout-mipsbsd.sc-sh, mipsbsd.sh: New files from Ralph Campbell,
1489 [email protected].
1490 * i386bsd.sh, config/i386bsd.mt: New files.
1491 * configure.in, Makefile.in: Added support for mipsbsd and 386bsd.
1492
26483cc6
PB
1493Thu Feb 25 15:33:10 1993 Per Bothner ([email protected])
1494
e637dcf0 1495 * mri.c: Add extern declaration of strdup.
26483cc6
PB
1496 * ldsym.c (KEEP macro): Add spaces around '=' for the
1497 sake of old (e.g. PCC) compilers.
1498
05985c77
PB
1499Wed Feb 24 19:49:31 1993 Per Bothner ([email protected])
1500
1501 * ldver.c: Bump to version 2.1.
1502
067e2baa
SC
1503Fri Feb 12 08:09:11 1993 Steve Chamberlain ([email protected])
1504
1505 * ldgram.y: allow section types without address expressions.
1506 * ldlang.c (lang_relocate_globals): avoid possible hang with
1507 undefined but unreferenced symbols.
1508 * relax.c (relax_section): don't complain if the script file isn't
1509 relaxable but -relax is set
1510
fb8ecc3d
DZ
1511Thu Feb 18 17:58:45 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1512
1513 * configure.in: go32 is the 3rd part of the triple, not the 2nd
1514
067e2baa
SC
1515Wed Feb 3 09:05:56 1993 Ian Lance Taylor ([email protected])
1516
1517 * mipsbig.sh: New file. Big endian MIPS emulation.
1518 * config/mips-big.mt: New file. Use mipsbig emulation.
1519 * configure.in (mips-sgi-irix*): Use target mips-big.
1520 * Makefile.in (ALL_EMULATIONS): Added em_mipsbig.o.
1521 (em_mipsbig.c): New target. Uses mipsbig.sh.
1522
e193c31b
ILT
1523Tue Feb 2 11:32:27 1993 Ian Lance Taylor ([email protected])
1524
1525 * mips.sc-sh: Put .scommon sections into .sbss section.
1526
1527 * ldmain.c (subfile_wanted_p): Preserve section of common symbols,
1528 rather than always putting them in bfd_com_section.
1529 * ldlang.c (lang_common): If a common symbol is not in
1530 bfd_com_section, put in a section of the same name, rather than
1531 always putting it in section COMMON.
1532
8a3efe67
ILT
1533Fri Jan 29 09:57:58 1993 Ian Lance Taylor ([email protected])
1534
f31cb329
ILT
1535 * ldmain.c (subfile_wanted_p): If we already have a common
1536 definition of a symbol, don't necessarily pull in an object file
1537 that provides a non-common definition.
1538
8a3efe67
ILT
1539 * ldlex.l (COMMAND): Accept -EB and -EL command line arguments,
1540 returning OPTION_EB and OPTION_EL. gcc passes these to a MIPS
1541 linker.
1542 * ldgram.y (OPTION_EB, OPTION_EL): New tokens.
1543 (command_line_option): Accept and ignore OPTION_EB and OPTION_EL.
1544
af6237a4
ILT
1545Thu Jan 28 15:12:04 1993 Ian Lance Taylor ([email protected])
1546
1547 * Makefile.in (install): Remove $(tooldir)/bin/gld before creating
1548 the link to it.
1549
8a045e50
ILT
1550Tue Jan 26 11:49:50 1993 Ian Lance Taylor ([email protected])
1551
1552 * ldmain.c, ldsym.c: Use new bfd_is_com_section macro rather than
1553 checking for equality to bfd_com_section.
1554
42b5c739
ILT
1555Fri Jan 22 14:22:44 1993 Ian Lance Taylor ([email protected])
1556
1557 * mips.sc-sh: New file. Ultrix, and hopefully other MIPS ECOFF
1558 targets, linker script.
1559 * mipslit.sh: New file. Little endian MIPS emulation.
1560 * config/mips-lit.mt: New file. Use mipslit emulation.
1561 * configure.in (mips-dec-ultrix*): Use target mips-lit.
1562 * Makefile.in (ALL_EMULATIONS): Added em_mipslit.o.
1563 (em_mipslit.c): New target. Uses mipslit.sh.
1564
1565Thu Jan 14 15:30:27 1993 Ian Lance Taylor ([email protected])
1566
1567 * Makefile.in (install): Install ld as both $(tooldir)/bin/ld and
1568 $(tooldir)/bin/gld, so that gcc can find it with or without
1569 collect2.
1570
ac496d4f
ILT
1571Mon Jan 11 18:50:07 1993 Ian Lance Taylor ([email protected])
1572
1573 * ldwrite.c: Removed perform_relocation, copy_and_relocate, and
1574 write_norel. All linking is now done via write_relax. Call
1575 ldsym_write before calling write_relax.
1576 * relax.c: Added copyright.
1577 (write_relax): Renamed from write_relaxnorel. Added relocateable
1578 argument. seclet_dump renamed to bfd_seclet_link.
1579 * relax.h: Added copyright.
1580
0550e9f4
SC
1581Mon Jan 11 15:41:56 1993 Steve Chamberlain ([email protected])
1582
1583 * ldmain.c (decode_library_subfile): Patch from
1584 [email protected], don't reread library symbol tables.
1585
1586Fri Jan 8 18:04:33 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1587
1588 * config/vxworks960.mt renamed to config/i960.mt
1589
1590 * configure.in: sparc-aout emulates a sun4, as does
1591 sparc*-vxworks, i960-nindy uses gld960 emulation
1592
dadd414a
SC
1593Fri Jan 8 14:39:07 1993 Steve Chamberlain ([email protected])
1594
1595 Fix support for NOLOAD, add INCLUDE
1596 * ldfile.c (ldfile_open_command_file): pass file name to
1597 lex_push_file.
1598 * ldlex.l, ldgram.y: tidy up, parse INCLUDE and NOLOAD
1599 * ldlang.c (wild_doit): make output sections inherit NEVER_LOAD
1600 attribute.
1601
1602Thu Jan 7 10:22:19 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1603
1604 * Makefile.in, config.h: no more default emulation. Make the lack
1605 of emulation a compile time error
1606
1607Wed Jan 6 01:08:37 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1608
1609 * configure.in: recognise all sparclite variants, not just 'sparclite'
1610
a70947c1
ILT
1611Mon Dec 28 11:15:35 1992 Ian Lance Taylor ([email protected])
1612
1613 * m68kcoff.sc-sh: define _end as well as end, for consistency with
1614 aout.sc-sh.
1615
1616 * configure.in: accept *-ericsson-ose for any m68k CPU.
1617
1618 * ldwrite.c (write_rel): don't always set SEC_HAS_CONTENTS flag
1619 for each output section.
1620
086c5e37
PB
1621Mon Dec 21 16:06:59 1992 Per Bothner ([email protected])
1622
1623 * ldexp.c, ldlang.c, ldmain.c, ldsym.c, ldwarn.c: Use new
1624 macro bfd_asymbol_bfd as appropriate.
1625 * Makefile.in: Un-duplicate ldlex.c dependency.
1626 * condigure.in: Replace my_host case table by sourcing
1627 ../bfd/configure.host. Allow std-host as the default.
1628 * ldmisc.c: Change logic for C++ name demangling: There is
1629 no initial '_' to remove from stab-derived function names.
1630
1631Sun Dec 13 16:31:26 1992 Steve Chamberlain ([email protected])
1632
1633 * ldlang.c (lang_init_script_file): don't attach the output file
1634 sections to the script file.
1635
1636Wed Dec 9 08:38:05 1992 Steve Chamberlain ([email protected])
1637 * ldlang.c (wild): run expansion loop over command line bfd too.
1638 (lang_ini_script_file): initialize more parts of the command line
1639 bfd.
1640 * ldlex.l: fix DEFINED start states.
8ddef552 1641
85e38cfa
SC
1642Mon Dec 7 08:43:41 1992 Steve Chamberlain ([email protected])
1643 -y support
1644 * ld.texinfo: new doc.
1645 * ldgram.y, ldlex.l: understand -y<symbol>
1646 * ldmain.c (Q_enter_file_symbols): if had -y, lookup symbol and
1647 print info. (add_ysym): new function.
1648 * ldsym.h: (ldsym_type): new define SYM_Y.
1649
e20873a7
JG
1650Sat Nov 21 03:15:27 1992 John Gilmore ([email protected])
1651
1652 * ldctor.h, lderror.h, ldexp.h, ldfile.h, ldindr.h, ldlang.c,
1653 ldlang.h, ldlex.h, ldmain.h, ldmisc.h, ldsym.h, ldver.h, ldwarn.h,
1654 ldwrite.h, relax.h: Replace all uses of EXFUN and PROTO ansi-glue
1655 macros with PARAMS. Recreational cleanup. Update copyrights.
1656
1657Tue Nov 10 00:23:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1658
1659 * Makefile.in: pass down the bfd source directory for includes
1660
22292613
ILT
1661Thu Nov 5 15:41:55 1992 Ian Lance Taylor ([email protected])
1662
1663 * ldlang.c (lang_size_sections): don't change size and address for
1664 SEC_SHARED_LIBRARY sections rather than for SEC_NEVER_LOAD
1665 sections.
1666
85c838d6
SC
1667Thu Nov 5 11:33:57 1992 Steve Chamberlain ([email protected])
1668
1669 * relax.c (build_it): re-enable the processing of data_statements
1670 in scripts, makes counted contructor lists work again.
1671
6e94236a
JG
1672Thu Nov 5 05:43:01 1992 John Gilmore ([email protected])
1673
1674 * ldemul.h: Remove uses of SDEF and PROTO macros (use PARAMS).
1675
1676Tue Oct 20 10:56:06 1992 Ian Lance Taylor ([email protected])
1677
1678 * m68kcoff.sc-sh: don't use initial underscores for etext, edata
1679 and end.
1680
e9b63852
ILT
1681Mon Oct 19 09:45:38 1992 Ian Lance Taylor ([email protected])
1682
1683 * Support for i386-sysv.
1684 configure.in: check for i386-*-sysv* and i386-*-sco*.
1685 i386coff.sc-sh: rewrote to support SVR3 by default.
1686 ldctor.c (find_constructors): preserve stat_ptr.
1687 ldlang.c (wild_doit): initialize vma and size of new output
1688 section to corresponding input section. This is required for
1689 shared library support.
1690 (lang_size_sections): don't modify vma and size of sections which
1691 are never loaded (for shared libraries).
1692 ldwrite.c (copy_and_relocate): copy the contents of any section
1693 which has contents, not just sections which are loaded (for shared
1694 libraries).
1695
ba2c2b1c
SC
1696Thu Oct 15 15:20:26 1992 Steve Chamberlain ([email protected])
1697
1698 * ldlang.c (size_input_section): count the sizes of all sections
1699 we allocate.
1700
a385b38f
SC
1701Thu Oct 8 09:05:25 1992 Steve Chamberlain ([email protected])
1702
1703 * ldmisc.c (demangle,vfinfo): use the new underscore in bfd to
1704 to demangle symbols better
1705
81150d34
ILT
1706Tue Oct 6 13:08:54 1992 Ian Lance Taylor ([email protected])
1707
1708 * ldlang.c (lang_finish): don't warn if -e start symbol does not
1709 exist when linking with -r.
1710
b5ddf942
ILT
1711Mon Oct 5 14:07:37 1992 Ian Lance Taylor ([email protected])
1712
1713 * aout.sc-sh, m68kcoff.sc-sh: set __bss_start to the start of the
1714 .bss segment.
1715
f3739bc3
SC
1716Mon Oct 5 08:55:14 1992 Steve Chamberlain ([email protected])
1717
1718 * ldmain.c (linear_library): don't even think about processing
1719 an object file if it's already been done
1720
1721Thu Oct 1 23:14:59 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1722
1723 * configure.in: the hp9000/300 config file is now hp300
1724
ac0832f3
SC
1725Wed Sep 30 07:34:09 1992 Steve Chamberlain ([email protected])
1726
1727 * config/z8ksim.mt: new file
1728
f3b36ecb
KR
1729Fri Sep 25 13:49:52 1992 Ken Raeburn ([email protected])
1730
1731 * Makefile.in (ldexp.o, ldctor.o, ldlang.o, ldmain.o, ldwrite.o,
1732 lexsup.o, mri.o, relax.o): Indicate dependence on ldgram.h.
1733
1734 * ld.h (strip_symbols_type): Add value STRIP_SOME.
1735 * ldgram.y (OPTION_RETAIN_SYMBOLS_FILE): New terminal token.
ac0832f3 1736 * ldlang.c (lang_add_keepsyms_file): New function.
f3b36ecb
KR
1737 * ldlex.l: Handle "-retain-symbols-file".
1738 * ldsym.c (keepsyms_file, kept_syms): New vars.
1739 (process_keepsyms): New functihon; reads file, marks symbols for
1740 saving.
1741 (write_file_locals): File symbols should always be kept.
1742 (ldsym_write): Warn about "-retain-symbols-file" overriding "-S"
1743 and "-s". Process retain-symbols file before setting symtab.
1744 * ldsym.h (SYM_KEEP): New flag for ldsym_type flags.
1745 (keepsyms_file, kept_syms): Declare them.
1746
1747 * ldmain.c (main): Non-fatal errors should still cause non-zero
1748 exit status even with -r.
1749
22a78f0d
SC
1750Fri Sep 25 11:08:01 1992 Steve Chamberlain ([email protected])
1751
1752 Added initial support for the z8k
1753 * z8ksim.em, z8ksim.sc-sh, z8ksim.sh: new files
1754 * configure.in, Makefile.in: modified to reflect above
1755
1756 * ldlang.c (lang_check): when linking conflicting architectures,
1757 make the output file reflect at least one of the bad inputs.
1758
56409445
ILT
1759Tue Sep 15 15:35:38 1992 Ian Lance Taylor ([email protected])
1760
1761 * Makefile.in (install): if $(tooldir) exists, install ld in
1762 $(tooldir)/bin.
1763
99e6298a
SC
1764Fri Sep 11 10:24:22 1992 Steve Chamberlain ([email protected])
1765
1766 * Makefile.in, configure.in: modified to support i386-coff
1767 * i386coff.sh: new file
1768
ab57b174
ILT
1769Wed Sep 9 11:52:58 1992 Ian Lance Taylor ([email protected])
1770
1771 * Makefile.in, m68kcoff.sh, m68kcoff.sc-sh, config/m68k-coff.mt:
1772 added m68k-coff emulation mode, stolen from a29k emulation.
1773 Almost certainly wrong, but perhaps better than sun3.
1774
8e71a984
PB
1775Thu Sep 3 14:19:30 1992 Per Bothner ([email protected])
1776
ab57b174
ILT
1777 * Makefile.in, Makefile.dos, generic.em, genscripts.sh,
1778 gld960.em, h8300hms.em, h8300xray.em, lnk960.em, st2000.em,
1779 vanilla.em: Rename all (generated) ld__*.c files to em_.c.
1780 This is one character shorter, and lets people build on
1781 SVR3 system. (ld__h8300xray.[co] was the killer there;
1782 h8300xray.sc-sh is also overlong, but seems harmless.)
1783 Based on a patch from Jonathan Ryshpan <hitachi!amito!jon>.
1784 * Makefile.in (clean): Fix typo mostclean -> mostlyclean.
1785 * configure.in: Add host isc.
1786
8e71a984
PB
1787 * ldver.c: Call it version 2.0.
1788
1789Wed Sep 2 00:21:33 1992 Per Bothner ([email protected])
1790
1791 * ldver.c: Bump to version 0.98.
1792 * TODO: New file.
1793
1794 * Makefile.in: Added mostlyclean, distclean, realclean rules.
1795
c52bdfec
PB
1796Tue Sep 1 23:42:16 1992 Per Bothner ([email protected])
1797
1798 * ldmisc.c (xrealloc): New (needed by ../libiberty/cplus.dem.c).
1799 * ldlex.l: Moved comment() to end, since some compilers
1800 otherwise have problems with input() used before it is defined.
1801
2df68136
DZ
1802Tue Sep 1 17:45:51 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1803
1804 * configure.in: added Solaris 2 and Irix 4 host support.
1805
1806Mon Aug 31 19:27:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1807
1808 * Makefile.in: remove -S flag from the FLEX definition
1809
1810 * configure.in: rewrote, using new style case statement. use
1811 m68k.mt for m68k-aout systems
1812
0bb95ac8
ILT
1813Sun Aug 30 21:38:53 1992 Ian Lance Taylor ([email protected])
1814
1815 * Makefile.in: map "ld" through program_transform_name when
1816 installing.
1817
fe2b6209
PB
1818Sun Aug 30 18:12:13 1992 Per Bothner ([email protected])
1819
1820 * cplus-dem.c: Removed. Use the version in libiberty now.
1821 * ldmisc.c: Use new libiberty version of cplus_demangle().
1822
94cc1ee7
ILT
1823Thu Aug 27 16:38:42 1992 Ian Lance Taylor ([email protected])
1824
5f2d9799
ILT
1825 * gld960.em (gld960_choose_target): default to little endian, not
1826 big endian.
94cc1ee7 1827
cd1d8c6d
SC
1828Wed Aug 26 17:28:51 1992 Steve Chamberlain ([email protected])
1829
1830 * ldlang.c (lang_process): don't pass null pointers when
1831 abs_output_section is what is required.
1832 * ldwrite.c (ldwrite): use malloc to allocate the largest space
1833 used, and pass that down.
1834 * relax.c,relax.h (write_relaxnorel): use the passed malloc area rather
1835 than alloca.
1836
afba2b22
ILT
1837Mon Aug 24 14:42:06 1992 Ian Lance Taylor ([email protected])
1838
1839 * configure.in, config/ose68.mt: renamed OSE to ose.
1840
571c4c26
KR
1841Thu Aug 20 19:55:22 1992 Ken Raeburn ([email protected])
1842
1843 * ldsym.c (write_file_locals): Reorder check for common or
1844 undefined symbols so that it works.
1845
b189e892
ILT
1846Tue Aug 18 13:41:36 1992 Ian Lance Taylor ([email protected])
1847
1848 * configure.in: accept all m68K family members.
1849
1850 * Makefile.in: always create installation directories.
1851
6bf2e3a7
SC
1852Thu Aug 13 11:49:34 1992 Steve Chamberlain ([email protected])
1853
1854 * ldlex.l: now parses comment correctly, added ~ to acceptable
1855 chars in filenames
1856
1857 * ldexp.c (exp_unop): pass down abs_output_section - now can have
1858 unary -ve constants.
1859
1860 * ldlang.c (lang_finish): warn when an entry symbol supplied on
1861 the command line can't be found.
1862
ae475b39
SC
1863Fri Aug 7 12:31:10 1992 Steve Chamberlain ([email protected])
1864
1865 * ldlang.h: add new field "loadable" to output_section_statement.
1866 * ldlang.c (lang_output_section_statement_lookup): initilize new
1867 field. (wild_doit): if new field is not set, then stop output
1868 section from being loadable.
1869 (lang_enter_output_section_statement): set the field from the
1870 NOLOAD keyword
1871 * ldgram.y: new synax for NOLOAD. Removes a shift/reduce too.
1872 * h8300hms.sc-sh, h8300hms.em: get -r right.
1873
4b91c519
PB
1874Thu Aug 6 18:35:21 1992 Per Bothner ([email protected])
1875
1876 * ldint.texinfo: New internals manual (beginnings thereof).
1877 * PORTING: Removed, merged into ldint.texinfo.
1878
917bffa7
PB
1879Tue Aug 4 21:12:29 1992 Per Bothner ([email protected])
1880
1881 * cdtest-main.cc, cdtest-func.cc, cdtest-foo.h, cdtest-foo.cc,
1882 cdtest.exp: A test program (copied from libg++/test-install)
1883 that tests that constructor and destructors are handled
1884 corrrectly.
1885
b40f9c73
DZ
1886Mon Aug 3 14:58:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1887
1888 * Makefile.in (install): install from ld.new, renaming during the
1889 copy, or else the next 'make install' needs to re-link ld.
1890
1891Mon Jul 20 03:37:06 1992 D. V. Henkel-Wallace ([email protected])
1892
1893 * configure.in: generalise hp recognition (from sef).
1894
1895Sat Jul 18 14:46:04 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1896
1897 * configure.in: recognize bsd and hpux hppa configurations.
1898 error messages echo to stderr, not stdout
1899
ec467c83
RP
1900Fri Jul 17 22:06:11 1992 K. Richard Pixley ([email protected])
1901
1902 * Makefile.dos, gld.1, ld.texinfo, ldemul.c, ldfile.c, ldlang.c,
1903 ldmisc.c: removed rcsid's.
1904
67cddd9f
SC
1905Tue Jul 14 08:34:34 1992 Steve Chamberlain ([email protected])
1906
1907 * ldlang.c (lang_map): print changes in sizes due to relaxing
1908 (size_input_section): maintain the delta information.
1909 * ldlang.h: add new field to struct to contain delta info.
1910 * relax.c (relax_section): complain if input not relaxable.
1911 * ldlex.l : add '_', ',' and '$' to chars which can appear at the
1912 start of a filename
1913
f7c76897
SC
1914Mon Jul 13 17:33:00 1992 Steve Chamberlain ([email protected])
1915
1916 * ldmain.c(main): prevent -r and -relax from being on at the same
1917 time.
1918
28b6b1ab
SC
1919Wed Jul 1 17:51:19 1992 Steve Chamberlain ([email protected])
1920
1921 * ldmain.c (Q_enter_global_ref), ldindr.c (add_indirect): fix for
1922 aliasing problems
1923
1924
30d1a390
SC
1925Thu Jun 18 09:38:56 1992 Steve Chamberlain ([email protected])
1926
1927 * h8300hms.em, h8300hms.sc-sh: do the right thing for -r
1928 * ldexp.c: lint
1929 * ldlang.c(open_output): set the target arch and machine as soon
1930 as we can. (lang_size_sections): use new macros for setting vma
1931 * ldwrite.c: lint
1932
5bdf878e
MT
1933Mon Jun 15 08:47:43 1992 Michael Tiemann ([email protected])
1934
1935 * configure.in (my_target): Accept m680?0 for wrs as vxworks68.
1936 Also deleted an unreachable path to wrs.
1937
1938Wed May 27 23:24:19 1992 Michael Tiemann ([email protected])
1939
1940 * Makefile.in (install): use -d test for $tooldir before
1941 installing ld there so that $tooldir can be inherited from
1942 top-level Makefile.
1943
1944Wed May 27 16:56:48 1992 Per Bothner ([email protected])
1945
1946 * ldlang.c: Two non-substantial changes for the sake of
1947 the old Portable C Compiler.
1948
5e81edb2
SC
1949Wed May 27 15:15:58 1992 Steve Chamberlain ([email protected])
1950
1951 * ldgram.y, ldlex.l: parse ABSOLUTE
1952 * ldexp.c: add support for ABSOLUTE
1953
7aacc9cc
PB
1954Wed May 27 13:07:20 1992 Per Bothner ([email protected])
1955
1956 * Makefile.in: Added default definitions for HOSTING_CRT0,
1957 HOSTING_LIBS, and HOSTING_EMU, based on those in config/*.mh.
1958 * config/*.mh: Miscellaneous clean-up: Removed definitions
1959 of YACC (since it is not longer used in the Makefile).
1960 Remove HOSTING_* definitions that are subsumed by the
1961 ones added to Makefile.in. Removed most definitions of CC.
1962 * config/{sparc,news,hp300bsd,decstation}.mh: Removed;
1963 These are no longer needed.
1964
91e25b4f
PB
1965Fri May 22 13:47:19 1992 Per Bothner ([email protected])
1966
5ff21fa5
PB
1967 * Makefile.in: Use srcdir instead of VPATH in ldgram/ldlex
1968 rules, since these are used when building a distribution.
1969 * Makefile.in (ldlex.c): Don't re-direct output, since that
1970 leaves a bogus output files if it fails.
1971
91e25b4f
PB
1972 * config/sparc.mh: Fix HOSTING_LIBS so it has a chance of working.
1973 * ldlex.c: Fix some unnecessary flex-specific-isms.
1974
1975Fri May 8 11:49:43 1992 Steve Chamberlain ([email protected])
1976
1977 * ldgram.y: move spurious semicolon
1978 * ldexp.h: fix prototype
1979
82d1666a
RP
1980Thu May 7 17:01:12 1992 Roland H. Pesch ([email protected])
1981
1982 * ld.texinfo: references to linker now say "ld" not "gld".
1983
32846f9c
SC
1984Wed May 6 13:26:19 1992 Steve Chamberlain ([email protected])
1985
1986 changed calling convention for Q_enter_global_ref
1987 * ldexp.c, ldlang.c, ldmain.c: reflect this
1988 * ldver.c: bump version to 1.97.1
1989 * ldindr.c (add_indirect): when an edict declaring an indirect
1990 symbol is found, make sure that any ideas about the symbol being
1991 common are changed if it now known to be defined.
1992 * ldmain.c (linear_library): complain once if archive isn't
1993 ranlibbed.
1994 * ldlang.h, ldlang.c: make room for and initialize the complain
1995 once field.
1996
bf3acf44
RP
1997Wed May 6 11:07:35 1992 K. Richard Pixley ([email protected])
1998
1999 * Makefile.in: use flex & bison from ../ if they exist.
2000
9c99a57e
SC
2001Tue May 5 17:47:33 1992 Steve Chamberlain ([email protected])
2002
2003 * relax.c (build_it): don't allocate space in the output file for
2004 stuff if -R flag applys to it.
7153b2ff
SC
2005 * ldfile.c: merge in VMS filename support
2006 * ldmain.c (main): take out ./ from library path, and close file
2007 before unlinking. Make multiple defs of a symbol create an
2008 unexecable file.
2009 * ldmisc.c: fatal errosrs delete output file
9c99a57e 2010
98377f31
PB
2011Tue May 5 14:05:05 1992 Per Bothner ([email protected])
2012
2013 * ldver.c: Increase version number to 1.97, for consistency
2014 with ../binutils.
2015
3f350eda
RP
2016Tue May 5 12:12:24 1992 K. Richard Pixley ([email protected])
2017
813da1a5
RP
2018 * Makefile.in: FLEX -> LEX.
2019
3f350eda
RP
2020 * ld.texinfo: {} -> @{@}.
2021
e0047d49
RP
2022Mon May 4 17:52:41 1992 Roland H. Pesch ([email protected])
2023
2024 * ld.texinfo: describe alternate, MRI-compatible linker scripts
2025 (and associated change in -c option, now used for these scripts)
2026
bfbdc80f
SC
2027Mon May 4 16:10:10 1992 Steve Chamberlain ([email protected])
2028
2029 * ldver.c: Bumped version to 1.96 - new release, resync with the
2030 bfd too #.
2031 * ldexp.c, ldlang.c: now build memory shape tree in obstacks
2032 rather than with raw malloc, makes it easier to track where memory
2033 is going.
2034 * ldsym.h, ldsym.c: create obstack for all global symbols too.
2035 * ldwrite.c (ldwrite): moved malloc so only used when needed.
2036 * sa29200-sc.sh: added support for .lit, data1 and data2 sections.
2037
2038
d3451fe8
RP
2039Fri May 1 18:17:52 1992 K. Richard Pixley ([email protected])
2040
2041 * config/sparc.mh: use ../gcc/libgcc.a on check if it exists.
2042
2043 * Makefile.in: use bootstrap for check.
2044
dc4726c2
SC
2045Fri May 1 13:03:41 1992 Steve Chamberlain ([email protected])
2046
e14a43bf
SC
2047 * ldgram.y, ldlex.c, mri.c: added more compatible words; BASE, ALIAS and
2048 PUBLIC.
2049 * Makefile.in: now use flex, not lex
dc4726c2
SC
2050 * ldlex.l, ldlang.c, ldctor.c: lint
2051
ee0c4cf7
SC
2052Wed Apr 22 12:48:42 1992 Steve Chamberlain ([email protected])
2053
2054 * ldlex.l: added CMDFILENAMECHAR state so that you can lex
2055 different sorts of filenames on the command line than in a script.
2056
77b19d3d
RP
2057Mon Apr 20 22:37:04 1992 K. Richard Pixley ([email protected])
2058
2059 * Makefile.in: rework CFLAGS so that they can be passed on the
2060 make command line. Remove MINUS_G. Default CFLAGS to -g.
2061
119afd7b
RP
2062Fri Apr 17 08:57:17 1992 Steve Chamberlain ([email protected])
2063
2064 * relax.c: added handling for new "padding" seclet type, used to
2065 fill out gaps between section.
2066 * ldgram.y, ldlex.l: now -defsym on the command line is done
2067 properly.
2068
2069Wed Apr 15 21:20:07 1992 K. Richard Pixley ([email protected])
2070
2071 * Makefile.in: the tooldir copy of ld goes directly in tooldir.
2072
2e38b71d
SC
2073Wed Apr 15 16:09:33 1992 Steve Chamberlain ([email protected])
2074
2075 * mri.c, ldgram.y, ldlex.l: added support for minimal strange link
2076 scripts.
2077
1900f884
KR
2078Thu Apr 9 05:52:02 1992 Ken Raeburn ([email protected])
2079
2080 * Makefile.in (install): Install second copy in $(tooldir)/bin
2081 without $(program_prefix), since that's what gcc expects.
2082
9d1fe8a4
SC
2083Sat Apr 4 17:44:06 1992 Steve Chamberlain ([email protected])
2084
2085 * ldlex.l, ldgram.y, ldlex.h: Rewrote lexer. Now it's much nicer.
2086 * h8300*: fix bit rot and add support for h8300xray target
2087 * go32.sh: target emulation for go32.
2088
9d1fe8a4
SC
2089Mon Mar 16 14:53:29 1992 Steve Chamberlain ([email protected])
2090
2091 * gld960.em, i960.sc-sh. Fix i960 bit rot
2092
f0280cd2
RP
2093Fri Mar 13 19:47:22 1992 K. Richard Pixley ([email protected])
2094
2095 * Makefile.in: install man page.
2096
12fa72d4
SC
2097Fri Mar 13 08:23:59 1992 Steve Chamberlain ([email protected])
2098
2099 * config/mt-<foo> renamed to <foo>.mt
2100 * config/mh-<foo> renamed to <foo>.mt
2101 * configure.in changed to reflect this
2102 * genscripts.sh now make .xbn files rather than .xN files
2103
2104Sat Mar 7 03:40:40 1992 K. Richard Pixley ([email protected])
2105
2106 * ldver.h: fix decl of ldversion.
2107
2108Fri Mar 6 22:00:35 1992 K. Richard Pixley ([email protected])
2109
2110 * Makefile.in: added check target.
2111
fe563ffe
SC
2112Fri Mar 6 06:59:04 1992 Steve Chamberlain ([email protected])
2113
2114 * ldmain.c (Q_enter_file_symbols): now aliases work again
2115
12fa72d4
SC
2116Thu Mar 5 21:39:29 1992 K. Richard Pixley ([email protected])
2117
2118 * Makefile.in: added clean-info target.
2119
fe563ffe
SC
2120Thu Mar 5 16:55:56 1992 Steve Chamberlain ([email protected])
2121
2122 * ldexp.c (exp_print_tree): don't try and follow null pointers
2123 around.
2124 * ldgram.y: remove 11 shift reduce errors
d2861901 2125
12fa72d4
SC
2126Tue Mar 3 15:46:39 1992 K. Richard Pixley ([email protected])
2127
2128 * Makefile.in: added tooldir and program_prefix.
2129
fe563ffe
SC
2130Fri Feb 28 08:17:45 1992 Steve Chamberlain (sac at thepub.cygnus.com)
2131
2132 * ldlang.c (size_input_section): don't move absolute sections
2133 around!
2134
2135
2136Thu Feb 27 09:20:41 1992 Steve Chamberlain (sac at thepub.cygnus.com)
2137
d2861901
SC
2138 * cplus-dem.c: yet another copy of this - maybe it should go into
2139 libiberty ?
2140 * ldgram.y: now -V and -v have different actions
2141 * ldver.c: if -V, prints list of emulations compiled in
2142 * ldmisc.c: support for cplus demangling
2143
2144
12fa72d4
SC
2145Wed Feb 26 18:04:40 1992 K. Richard Pixley ([email protected])
2146
2147 * Makefile.in, configure.in: removed traces of namesubdir,
2148 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
2149 copyrights to '92, changed some from Cygnus to FSF.
2150
d2861901
SC
2151Thu Feb 20 17:43:46 1992 Per Bothner (bothner at cygnus.com)
2152
2153 * Makefile.in: Change mkscript rule into one for ./mkscript
2154 (for the sake of makes that don't realize they're the same).
2155 * PORTING: Add more details.
2156 * genscripts.sh: Add more tailorability of DATA_ALIGNMENT.
2157
1584d069
PB
2158Mon Feb 17 12:04:36 1992 Per Bothner (bothner at cygnus.com)
2159
2160 * Makefile.in, and new files hp300bsd.sh, config/mh-hp300bsd,
2161 config/mt-hp300bsd: New port to hp300 running BSD.
2162
7e5c1057
PB
2163Sat Feb 15 13:59:54 1992 Per Bothner (bothner at cygnus.com)
2164
2165 Major rewrite of how ld is configured. The major idea
2166 is to use shell scripts to generate everything.
2167 * generic.em replaces ldtemplate.
2168 * Other *.em files replace various *.c files.
2169 A *.em file is a shell script that generates the corresponding
2170 ld__*.c file that implements an emulation. This is usually
2171 a straight 'cat' of a here-document, possibly with substitutions.
2172 * Script files (*.sc) are places by *.sc-sh scripts.
2173 Again, these are simple shell scripts that 'cat'
2174 here-documents, usually with some substitutions.
2175 The output a *.sc-sh is a script file.
2176 * Each emulation is defined by a short shell script with
2177 extension *.sh that specifies the emulation-specific
2178 parameters (such as the name of the *.sh-sc and *.em
2179 files to use).
2180 * genscript.sh is the master shell script used to generate
2181 an emulation. It is passed various argument, including
2182 the name a the emulation-speciic *.sh file that it
2183 "sources" to set variables to emulation-specifc parameters.
2184 * config/mt-foo: Changed EMUL=GLDFOO_EMULATION_NAME
2185 to EMUL=foo. (The GLDFOO_EMULATION_NAMEs have bee removed.)
2186 * config/mh-foo: Rename LDEMULATION names as appropriate
2187 (usually 'gldfoo' -> plain 'foo').
2188 * ldwrite.c: Fixed a typo in a comment.
2189 * Makefile.in: Major changes. Removed some the sed
2190 magic to converts scripts, since that is now handled
2191 by genscripts.sh and the *.sc-sh scipt generators.
2192 * config.h: Remove a bunch of macros defining emulations
2193 and targets. This becomes one less file to edit when
2194 adding emulations or targets.
2195 * ldemul.h (struct ld_emulation_xfer_struct): Add
2196 emulation_name and target_name fields.
2197 * ldemul.c, ldemul.h: Define some default functions used
2198 by most emulations (and remove from the *.em scripts).
2199 * ldemul.c (ldemul_choose_target): Search the new
2200 ld_emulations array using a loop (instead of a hardwired
2201 nested if statement).
2202 Define the ld_emulation from the automatically-geenrated
2203 ldemul-list.h. This means you no longer have to edit ldemul.c
2204 to add a new emulation.
2205 * ldmain.c: Replace {GLD,LNK}960_EMULATION_NAME by
2206 their expansions, since the former no longer exist.
2207 * PORTING: A very rough first draft of a porting guide.
2208
2209 * ldgram.y, ldlex.l, lexsup.c: Changes to allow an assignment
2210 to be terminated by a new-line (instead of requiring a semicolon).
2211
2212Mon Feb 10 16:21:02 1992 Steve Chamberlain (sac at rtl.cygnus.com)
2213
2214 * ldexp.c, ldlang.c: added new idea "abs_output_section", removes
2215 tests for NULL pointers all over the place.
2216 * ldlang.c (lang_process): remember to relocate global symbols
2217 *after* relaxing has done it stuff.
2218
2219Thu Feb 6 11:40:15 1992 Steve Chamberlain (sac at rtl.cygnus.com)
2220
2221 * config/mt-coff-h8300: use EMUL like everything else
2222 * ldlang.c: (print_padding_statement): print the right address.
2223 * Makefile.in, config.h, ldemul.c: renamed h8300hds to h8300hms
2224
2225
aa34a7c3
SC
2226Tue Feb 4 15:28:01 1992 Steve Chamberlain (sac at rtl.cygnus.com)
2227
2228 * ldlex.l: Put pack -noinhibit-exec and -sort-common
2229 * ldlang.c (print_data_statement): print the right address.
2230
2231Thu Jan 30 17:51:53 1992 Per Bothner (bothner at cygnus.com)
2232
2233 * Makefile.in: The rule for testing ld by re-linking itself
2234 via an intermediate -r link was moved to the ld1 rule
2235 instead of the ld2 rule. This allows ld2 and ld3 to be identical,
2236 which allows the bootstrap rule to work.
2237 * ldctor.c (find_constructors): Don't create a constructor
2238 list if it is already defined (as would happen if ld is
2239 invoked by collect).
2240
cbbdbb9f
SC
2241Wed Jan 29 08:35:39 1992 Steve Chamberlain (sac at rtl.cygnus.com)
2242
2243 * config/mh-sparc.h: now uses libgcc.a
2244 * ldmain.c: quit using exit
2245 * *sc: use *(COMMON) rather than [COMMON]
2246 * ldlex.l, lexsup.c: much thinking moved from .l and put into .c,
2247 to allow preprocessing of .l file.
2248 * Makefile.in: New ldlex.l mangling
2249 * ldexp.c (fold_binary): perform expressions with % and / in
2250 integer.
2251 * ldfile.c (open_a): open archives on VMS in a special way
2252
2253
870f54b2
SC
2254Tue Jan 28 10:18:16 1992 Steve Chamberlain (sac at rtl.cygnus.com)
2255
2256 * ldgram.y: map -M behave in the same way as -Map (sets file name
2257 to be "-".
2258 * ldsym.c, ldlang.c: remember that size of a section is dependent on
2259 whether or not relaxing has been done.
2260 * ldmain.c: don't open a map file if it doesn't have a name
2261 * relax.c: all the brains have moved into bfd.
2262 * ldwrite.c: ammend comment
2263
2e2bf962
SC
2264Fri Jan 24 14:23:46 1992 Steve Chamberlain (sac at rtl.cygnus.com)
2265
2266 * Makefile.in: added relax, also made three stage go through a
2267 partial link stage.
2268 * relax.c : added
2269 * config.h: if GNU960 defined, then default emulation mode is
2270 GLD960
2271 * ldexp.h, ldexp.c: map to file hooks
2272 * ldlang.c: map to file hooks
2273 * ldgram.y: added -Map -relax
2274 * ldlex.l: added -relax, -Map
2275 * ldmain.c: open map file
2276 * ldmisc.c: support for map file
2277 * ldwrite.c: new relax magic
2278
2279Thu Dec 19 18:49:51 1991 John Gilmore (gnu at cygnus.com)
2280
2281 * Makefile.in, config/tm-*.h: Clean up make output, only
2282 pass DEFAULT_EMULATION to ldmain.c.
2283
2284Wed Dec 18 15:02:47 1991 Per Bothner (bothner at cygnus.com)
2285
2286 * ldver.c: Bump to version 1.94.
2287
2288Tue Dec 10 04:07:23 1991 K. Richard Pixley (rich at rtl.cygnus.com)
2289
2290 * Makefile.in: infodir belongs in datadir.
2291
e06ba18d
PB
2292Mon Dec 9 16:26:43 1991 Per Bothner (bothner at cygnus.com)
2293
2294 * Makefile.in: Pass -y to bison. (Again;
2295 accidentally deleted by Rich.)
2296 * news.sc, ldgld68k.sc: Define __end as well as _end.
2297
2298Sat Dec 7 17:19:26 1991 Steve Chamberlain (sac at rtl.cygnus.com)
2299
2300 * ldindr.h: added to contain prototypes of ldindr.c
2301 * ldfile.c: include ctype.h
2302 * ldmain.c: include the requried prototype headers
2303 * ldwrite.c: get_reloc_upper_bound has been renamed
2304 bfd_get_reloc_upper_bound
2305
818a192a
RP
2306Fri Dec 6 23:29:26 1991 K. Richard Pixley (rich at rtl.cygnus.com)
2307
2308 * Makefile.in: punt "fundamental" mode because it breaks my emacs
2309 macros. install using INSTALL_PROGRAM and INSTALL_DATA. remove
2310 spaces following hyphens, bsd make can't cope. added
2311 standards.text support and made it look like all the other
2312 makefiles.
2313
2314 * configure.in: configure now runs entirely in objdir so make file
2315 existence checks against ${srcdir}. Mark this directory as
2316 target dependent.
2317
2318Thu Dec 5 22:46:16 1991 K. Richard Pixley (rich at rtl.cygnus.com)
2319
2320 * Makefile.in: idestdir and ddestdir go away. Added copyrights
2321 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
2322 and mandir now keyed off datadir by default.
2323
2324Wed Dec 4 23:36:55 1991 Per Bothner (bothner at cygnus.com)
2325
2326 * ldver.c: Bumped version to 1.93.
2327 * Makefile.in: Pass -y to bison.
2328
2329Mon Nov 25 18:28:40 1991 Steve Chamberlain (sac at cygnus.com)
2330
2331 * config.h: h8 is now coff, not ieee
2332 * h8300hds.sc: reflect the same
2333
2334Thu Nov 14 19:55:09 1991 Per Bothner (bothner at cygnus.com)
2335
2336 * ldver.c (ldversion()): Update to 1.92.
2337 * ldctor.c: There are two places constructor sets
2338 can be defined. One of them checked for an existing
2339 duplicate, the other didn't. Unfortunately, the latter
2340 was called after the former ...
2341 So, factor out code for inserting a new element into
2342 constructor_name_list (after checking for a duplicate)
2343 into a new function add_constructor_name, and call
2344 it from both aforementioned places (ldlang_add_constructor
2345 and ldlang_check_for_constructors).
2346
2347Wed Nov 13 15:17:43 1991 Per Bothner (bothner at cygnus.com)
2348
2349 * Makefile.in: Rename .c files generated from ldtemplate
2350 to have names starting with ld__. This helps 'make clean'.
2351
092df318
SC
2352Tue Nov 12 18:36:50 1991 Steve Chamberlain (sac at cygnus.com)
2353
2354 * Makefile.in: Take out the version number for install
2355 * m88kbcs.sc: put in contructor blocks.
2356
1c9e4b15
PB
2357Mon Nov 11 18:47:33 1991 Per Bothner (bothner at cygnus.com)
2358
2359 * ldmisc.c, ldmisc.h: Re-write info() to take a filename
2360 parameter, a format, and an arg pointer, and rename it to
2361 vfinfo(). Write info() in terms of new vfinfo().
2362 New einfo() is the same as info(), except it writes to stderr.
2363 * ldemul.c, ldexp.c, ldlang.c, ldlnk960.c, ldmain.c, ldwrite.c,
2364 ldmisc.c: Replace "error" calls to info() by new einfo().
2365
550e87b5
SC
2366Mon Nov 11 09:57:32 1991 Steve Chamberlain (steve at cygnus.com)
2367
2368 * ldlex.l ldgram.y: made -V option do same as -v
2369 * Makefile.in: Added $(MINUS_G) flag so debugging can be
2370 turned off
2371
2372Sun Nov 3 16:37:37 1991 Steve Chamberlain (steve at cygnus.com)
2373 i386 aout changes from Bob Kukura
2374 * Makefile.in, config.h: added i386aout support
2375 * configure.in: fixed /h-{myhost} typo
2376 * ldgram.y: -MM now gives more boring map.
2377 * ldlang.c: now does D_PAGED flag the right way.
2378 * ldsym.c: -MM flags does the right thing.
2379
aeedc30e
PB
2380Sun Nov 3 15:00:03 1991 Per Bothner (bothner at cygnus.com)
2381
2382 * configure.in: Fixed typo. Also, a fix for hp300bsd.
2383 * ldlang.c (init_os): Compensate for BFD change,
2384 where bfd_make_section now returns NULL for a duplicate
2385 section request, instead of the old section.
2386
2387Thu Oct 17 15:27:13 1991 Per Bothner (bothner at cygnus.com)
2388
2389 * ldver.c: Bump to version 1.91 (consistent with binutils).
2390
2d1a2445
PB
2391Wed Oct 16 12:27:08 1991 Per Bothner (bothner at cygnus.com)
2392
2393 * Makefile.in, config.h, ld.h, ldemul.c, ldexp.c, ldexp.h,
2394 ldgram.y, ldlex.l, ldlnk960.c, ldmain.c, ldmisc.c, ldmisc.h,
2395 ldsym.c, ldsym.h, ldtemplate, ldvanilla.c, ldver.c, ldver.h,
3410447c 2396 ldwarn.c, ldwarn.h, ldwrite.c, ldwrite.h, mkscript.c:
2d1a2445
PB
2397 Add or update copyright notices.
2398
2399Mon Oct 14 23:55:27 1991 Per Bothner (bothner at cygnus.com)
2400
2401 * README: New file.
2402 * Makefile.in: Changed installation directory name scheme
2403 to be consistent with gcc. Also changed 'install'.
2404
954ac2ea
RP
2405Mon Oct 14 17:30:02 1991 Roland H. Pesch (pesch at cygnus.com)
2406
2407 * Makefile.in: new targets ld.mm, ld.me
2408
972e7b4b
PB
2409Mon Oct 14 17:27:24 1991 Per Bothner (bothner at cygnus.com)
2410
2411 * Makefile.in, ldtemplate: Need to use separate scripts
2412 for -n and -N options. Yet more complication.
2413
33ce0085
JG
2414Fri Oct 11 22:40:46 1991 John Gilmore (gnu at cygnus.com)
2415
2416 * Makefile.in: Avoid using $< in explicit Make rules (it doesn't
2417 work). Add some lines to avoid Sun Make VPATH bugs.
2418
b7e24eef
PB
2419Fri Oct 11 16:42:22 1991 Per Bothner (bothner at cygnus.com)
2420
2421 * news.sc: Add alignment for data segment.
2422 * ldtemplate: Add (yet another) script to get for -n or -N
2423 options. (These need different alignment than ZMAGIC files.)
2424 * Makefile.in: Add stuff for new foo.xn scripts.
2425 These are generated by replacing "ALIGN(0x...00)" by ".".
2426
b55e0948
RP
2427Fri Oct 11 15:43:04 1991 Roland H. Pesch (pesch at cygnus.com)
2428
2429 * Makefile.in: new targets ld.ms, ld-index.ms
2430 ld.texinfo: remove tabs, other cleanups for texi2roff
2431
6719c75b
PB
2432Fri Oct 11 13:51:54 1991 Per Bothner (bothner at cygnus.com)
2433
2434 * ldmain.c (main): Make config.magic_demand_paged be true
2435 by default. Don't the WP_TEXT and D_PAGED flags of
2436 output_bfd here; it's too late, so set it when output_bfd
2437 is created (in ldlang.c). Also fix setting of EXEC_P flag
2438 * ldlang.c (ldlang_open_output): Set output_bfd->flags here.
2439 * ldlang.c: Remove some duplicate extern declarations.
2440 * ldgram.y: Fixes to -N and -n options.
2441 * Makefile.in: Recognize upper case letters in sed script
2442 to remove assignments from script files.
2443 * ldtemplate: Don't assukme that -N or -n options
2444 imply use of -r script.
2445 * mkscript.c: Tweaking to correctly handle \n and \\ in input.
2446
8e10cea1
SC
2447Fri Oct 11 10:29:27 1991 Steve Chamberlain (steve at cygnus.com)
2448
2449 * ldtemplate: include bfd.h before sysdep.h.
2450
1f8fc34f
JG
2451Fri Oct 11 04:24:45 1991 John Gilmore (gnu at cygnus.com)
2452
2453 Restructure configuration scheme for bfd, binutils, ld.
2454
2455 * include/sys/h-*.h: Move to bfd/hosts/h-*.h.
2456 * configure.in: Revise to symlink sysdep.h to ../bfd/hosts/h-xxx.h.
2457 Change some config names to match other dirs.
2458 * *.c: Include bfd.h before sysdep.h, so ansidecl and PROTO()
2459 get defined first.
2460 * config/: Rename some config files to match up h-*.h names.
2461 Remove all the HOST_SYS definitions from the config files.
2462
2463Tue Oct 8 16:00:57 1991 Per Bothner (bothner at cygnus.com)
2464
2465 * ldexp.h, ldlang.h: Change enum boolean -> enum bfd_boolean.
2466 * ldtemplate: Remove ldfile_add_library_path calls;
2467 just use the SEARCH_DIR commands in the script files.
2468 * Makefile.in: Add LIB_PATH macro, which if set is used to replace
2469 the SEARCH_DIR commands in the scripts (using ugly sed magic).
2470 This is primarily intended for cross-linking, where you would
2471 place libaries in a different place than native libraries.
2472 Also, emulations made from ldtemplate now use $(srcdir).
2473 * ldglda29k.sc: Change SEARCH_DIR commands to a conventional
2474 form; people can use the Makefile's LIB_PATH to override.
2475
8d317d2a
RP
2476Tue Oct 8 14:51:21 1991 Roland H. Pesch (pesch at cygnus.com)
2477
2478 * Makefile.in: fix target ld.dvi, add target ld.info
2479 ld.texinfo: make info filename ld.info
2480
558175fb
JG
2481Fri Oct 4 21:51:58 1991 John Gilmore (gnu at cygnus.com)
2482
2483 * Makefile.in: Avoid using $< in non-suffix rules (breaks on Sun
2484 Make).
2485 * ldfile.c, ldlang.c, ldmain.c, ldwrite.c: Cope with renames of a
2486 few BFD types & enums.
2487
This page took 0.532578 seconds and 4 git commands to generate.