* debug.h (struct debug_write_fns): Remove ellipsis_type. Add int
[platform/upstream/binutils.git] / binutils / ChangeLog
1 Fri Jan 19 12:31:57 1996  Ian Lance Taylor  <ian@cygnus.com>
2
3         * debug.h (struct debug_write_fns): Remove ellipsis_type.  Add int
4         and boolean parameters to function_type.  Add boolean parameter to
5         method_type.
6         (debug_make_ellipsis_type): Don't declare.
7         (debug_make_function_type): Add debug_type * and boolean
8         parameters.  Change all callers.
9         (debug_make_method_type): Add boolean parameter.  Change all
10         callers.
11         (debug_get_parameter_types): Add boolean * parameter.  Change all
12         callers.
13         (debug_get_target_type): Declare.
14         * debug.c (struct debug_function_type): Add fields arg_types and
15         varargs.
16         (struct debug_method_type): Add field varargs.
17         (debug_ellipsis_type, ELLIPSIS_P): Remove.
18         (debug_make_ellipsis_type): Remove.
19         (debug_make_function_type): Add arg_types and varargs parameters.
20         (debug_make_method_type): Add varargs parameter.
21         (debug_get_parameter_types): Add pvarargs parameter.
22         (debug_get_target_type): New function.
23         (debug_write_type): In case DEBUG_KIND_FUNCTION, push argument
24         types and pass count to function_type.  In DEBUG_KIND_METHOD, use
25         a signed int for the count, don't call ellipsis_type, and pass
26         varargs to method_type.
27         * stabs.c (struct stab_demangle_info): Add varargs field.
28         (stab_demangle_argtypes): Add pvarargs parameter.  Change all
29         callers.
30         (stab_demangle_args): Likewise.
31         (stab_demangle_type): In case 'F', pick up argument types.
32         * prdbg.c (pr_ellipsis_type): Remove.
33         (pr_function_type): Add argcount and varargs parameters.
34         (pr_method_type): Add varargs parameter.
35         * ieee.c (ieee_ellipsis_type): Remove.
36         (ieee_function_type): Add argcount and varargs parameters.
37         (ieee_method_type): Add varargs parameter.  Remove most of
38         function body, and just call ieee_function_type.
39
40         * stabs.c: Include "demangle.h".  Added several new static
41         functions not listed below to demangle argument types; they are
42         all called via stab_demangle_argtypes.
43         (finish_stab): If the kind of an undefined tag is
44         DEBUG_KIND_ILLEGAL, use DEBUG_KIND_STRUCT instead.  Warn if there
45         are any pending variable.
46         (parse_stab): Don't close the function when the block depth goes
47         to zero.  Pass value to debug_end_function.
48         (parse_stab_string): In case 'T', pass the name to
49         parse_stab_type.
50         (parse_stab_type): In case 'x', use stab_find_tagged_type.  In
51         case '#', handle functions with variable numbers of arguments.
52         (parse_stab_struct_type): Add tagname parameter.  Change all
53         callers.
54         (parse_stab_members): Add tagname and typenums parameters.  Change
55         all callers.  If the type of a method is a stub, call
56         parse_stab_argtypes to demangle the argument types and get the
57         physical name of the function.
58         (parse_stab_argtypes): New static function.
59         (stab_record_variable): For a DEBUG_GLOBAL or DEBUG_STATIC
60         variable, call debug_record_variable immediately.
61         (stab_find_tagged_type): New static function.
62
63         * debug.h (enum debug_type_kind): Add DEBUG_KIND_ILLEGAL.
64         (struct debug_write_fns): Add field ellipsis_type.  Add id
65         parameter to start_struct_type, start_class_type, and tag_type.
66         (debug_make_ellipsis_type): Declare.
67         (debug_find_named_type): Declare.
68         (debug_get_type_kind): Declare.
69         (debug_get_return_type): Declare.
70         (debug_get_parameter_types): Declare.
71         (debug_get_fields): Declare.
72         (debug_get_field_type): Declare.
73         * debug.c (struct debug_handle): Add fields class_id and base_id.
74         (struct debug_class_type): Add field id.
75         (struct debug_method_variant): Rename argtypes to physname.
76         Change all uses.
77         (debug_ellipsis_type): New static variable.
78         (ELLIPSIS_P): New macro.
79         (debug_make_ellipsis_type): New function.
80         (debug_make_method_variant): Rename argtypes to physname.
81         (debug_make_static_method_variant): Likewise.
82         (debug_name_type): Always put types in the global namespace.
83         (debug_find_named_type): New function.
84         (debug_find_tagged_type): Treat DEBUG_KIND_ILLEGAL specially,
85         rather than DEBUG_KIND_VOID.
86         (debug_get_real_type): New static function.
87         (debug_get_type_kind): New function.
88         (debug_get_return_type): New function.
89         (debug_get_parameter_types): New function.
90         (debug_get_fields): New function.
91         (debug_get_field_type): New function.
92         (debug_write): Initialize base_id.
93         (debug_write_type): Pass new id argument to tag_type.  Handle
94         DEBUG_KIND_ILLEGAL.  Use id for DEBUG_KIND_STRUCT and
95         DEBUG_KIND_UNION.  Handle ellipsis for method arguments.
96         (debug_write_class_type): Don't dereference kclass if it is NULL.
97         Use id.
98         * prdbg.c (pr_fns): Add pr_ellipsis_type.
99         (pr_ellipsis_type): New static function.
100         (pr_pointer_type): If this is a pointer to an array, parenthesize
101         it correctly.
102         (pr_start_struct_type): Add id parameter.
103         (pr_start_class_type): Likewise.
104         (pr_tag_type): Likewise.
105         (pr_fix_visibility): Add the visibility to the top of the stack,
106         not the second element on the stack.
107         (pr_struct_field): Pop the stack before calling pr_fix_visibility.
108         (pr_class_static_member): Likewise.
109         (pr_class_start_method): Don't push a type, just set the method
110         name in the type on the top of the stack.
111         (pr_class_end_method): Don't pop the stack.
112         (pr_class_method_variant): Rename argtypes parameter to physname.
113         Append const and volatile rather than prepending them.  Add a
114         space after the physname.
115         (pr_class_static_method_variant): Likewise.
116         * ieee.c (ieee_fns): Add ieee_ellipsis_type.
117         (ieee_define_named_type): Use DEBUG_KIND_ILLEGAL rather than
118         DEBUG_KIND_VOID.
119         (write_ieee_debugging_info): Likewise.
120         (ieee_typdef): Likewise.
121         (ieee_ellipsis_type): New static function.
122         (ieee_start_struct_type): Add id parameter.
123         (ieee_start_class_type): Likewise.
124         (ieee_tag_type): Likewise.
125         (ieee_class_method_variant): Rename name to physname.
126         (ieee_class_static_method_variant): Likewise.
127
128         * Makefile.in (DEBUG_OBJS): Remove prdbg.o.
129         ($(OBJDUMP_PROG)): Depend upon, and link against, prdbg.o.
130
131 Thu Jan 18 17:35:06 1996  Kim Knuttila  <krk@cygnus.com>
132
133         * dlltool.c (make_tail): Changed the order of the sections to avoid
134         an alignment problem.
135
136 Wed Jan 17 14:23:00 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
137
138         * srconv.c (wr_du): Set du.stackfrmt to 0.
139         (wr_un, wr_sc): Emit all sections, even those with 0 size.
140
141 Tue Jan 16 16:15:49 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
142
143         * srconv.c (wr_hd): Space size within segment was being
144         stored in segment identifier field.
145
146 Tue Jan 16 12:07:25 1996  Stan Shebs  <shebs@andros.cygnus.com>
147
148         * mpw-config.in (BUILD_NLMCONV, BUILD_SRCONV, SYSINFO_PROG,
149         BUILD_DLLTOOL): Put definitions for these into makefile when
150         configuring, instead of always clearing in mpw-make.sed.
151         * mpw-make.sed: Edit out any host_alias or target_alias settings,
152         fix pathname to BFD internal include files, remove dependency
153         calculation rules.
154
155 Thu Jan 11 17:31:38 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
156
157         * objdump.c (dump_section_header): Add new section flags
158         SEC_{EXCLUDE,SORT_ENTRIES}.
159
160 Thu Jan 11 11:45:34 1996  Ian Lance Taylor  <ian@cygnus.com>
161
162         * objcopy.c (filter_symbols): NULL terminate the output symbols.
163         (copy_object): Allocate space for a possible extra NULL pointer.
164
165         * debug.c (debug_make_undefined_tagged_type): Make sure we are
166         given a kind of type we can handle.
167         (debug_write_type): Handle undefined enums and structs.
168         (debug_write_class_type): Handle undefined classes.
169         * prdbg.c (pr_enum_type): Handle an undefined enum.
170         * ieee.c (ieee_enum_type): Likewise.
171
172 Wed Jan 10 15:33:18 1996  Ian Lance Taylor  <ian@cygnus.com>
173
174         * Makefile.in: Updated dependencies.
175         (ALLOCA, MALLOC): Remove variables.
176         (ADDL_LIBS): Remove $(MALLOC) from definition.
177         * alloca.c, gmalloc.c: Remove.
178
179 Mon Jan  8 18:02:29 1996  Ian Lance Taylor  <ian@cygnus.com>
180
181         * ieee.c: Add global function write_ieee_debugging_info and a
182         bunch of static functions and structs used to write out IEEE
183         debugging information.
184         * budbg.h (write_ieee_debugging_info): Declare.
185
186         * ieee.c (struct ieee_type): Add pslot field.
187         (enum builtin_types): Define.
188         (ieee_builtin_type): For a pointer, return a pointer to the named
189         type.  Use enum values rather than numbers.
190         (ieee_alloc_type): New static function.
191         (ieee_read_type_index): Use ieee_alloc_type.
192         (parse_ieee_bb): Likewise.
193         (parse_ieee_ty): Likewise.  Use ieee_builtin_type for array range,
194         rather than making a new integer type.  Store the new type in the
195         slot, if there is one.
196         (parse_ieee_atn): Treat ATN10 as defining a register variable.
197         (ieee_regno_to_genreg): Rename from ieee_regno_to_gen.  Change all
198         callers.
199         (ieee_genreg_to_regno): New static function.
200
201         * stabs.c (parse_stab_type): Add new typename parameter.  Change
202         all callers.
203         (parse_stab_range_type): Add new typename parameter.  Change all
204         callers.
205
206         * debug.h (struct debug_write_fns): Add tag parameter to
207         enum_type, start_struct_type, and start_class_type.
208         * debug.c (debug_write_type): Pass any tag name to
209         start_struct_type, debug_write_class_type, and enum_type.  If
210         DEBUG_KIND_TAGGED, pass the name in the recursive call.
211         (debug_write_class_type): Accept a new tag parameter, and pass it
212         to start_class_type.
213         * prdbg.c (pop_type): Don't remove '+' character.
214         (pr_enum_type): Accept and use tag parameter.
215         (pr_start_struct_type): Likewise.
216         (pr_start_class_type): Likewise.
217         (pr_class_baseclass): Adjust algorithm used to find where to put
218         the baseclass name.
219         (pr_tag): Don't bother to insert the tag name.
220
221         * objcopy.c: Include budbg.h.
222         (convert_debugging): New static variable.
223         (OPTION_DEBUGGING): Define.
224         (copy_options): Add "debugging".
225         (copy_usage): Mention --debugging.
226         (is_strip_section): Skip debugging sections if convert_debugging.
227         (setup_section, copy_section): Likewise.
228         (filter_symbols): Skip debugging symbols if convert_debugging.
229         (copy_object): If convert_debugging, read and write debugging
230         information.
231         (write_debugging_info): New static function.
232         (copy_main): Handle --debugging.
233         * Makefile.in (DEBUG_OBJS): New variable.
234         ($(OBJCOPY_PROG)): Depend upon and link against $(DEBUG_OBJS).
235         ($(STRIP_PROG)): Likewise.
236         (OBJDUMP_OBJS): Remove variable.
237         ($(OBJDUMP_PROG)): Use objdump.o $(DEBUG_OBJS) rather than
238         $(OBJDUMP_OBJS).
239         * binutils.texi, objcopy.1: Document --debugging.
240
241 Thu Jan  4 16:31:21 1996  Ian Lance Taylor  <ian@cygnus.com>
242
243         * ieee.c: New file with code to read IEEE debugging information.
244         * budbg.h (parse_ieee): Declare.
245         * rddbg.c (read_debugging_info): Handle IEEE flavour files.
246         (read_ieee_debugging_info): New static function.
247         * Makefile.in: Rebuild dependencies.
248         (CFILES): Add ieee.c.
249         (OBJDUMP_OBJS): Add ieee.o.
250
251         * bucomm.h (xrealloc): Change type of first parameter from char *
252         to PTR.
253
254 Tue Jan  2 17:44:07 1996  Ian Lance Taylor  <ian@cygnus.com>
255
256         * Makefile.in: Add targets to automatically rebuild dependencies.
257         Remove targets which just listed dependencies of .o files.
258         (DEP): New variable.
259         (HFILES, GENERATED_HFILES): New variables.
260         (CFILES, GENERATED_CFILES): New variables.
261         (underscore.c): Don't do anything, just depend upon stamp-under.
262         (stamp-under): New target; do what underscore.c used to do.
263         (nlmconv.o): Depend upon sym.h and ecoff.h.
264         (.dep, .dep1, dep.sed, dep, dep-in): New targets.
265         (stage1, stage2, stage3, against, comparison): Remove.
266         (de-stage1, de-stage2, de-stage3): Remove.
267         (clean, distclean): Remove stamp-under and dep.sed.
268         * dep-in.sed: New file.
269
270         Implement generic debugging support.  Implement a stabs reader and
271         a generic printer.
272         * budbg.h, debug.c, debug.h, prdbg.c, rddbg.c, stabs.c: New files.
273         * objdump.c: Include "debug.h" and "budbg.h".
274         (dump_debugging): New global variable.
275         (usage): Mention --debugging.
276         (long_options): Add "debugging".
277         (display_bfd): Handle --debugging.
278         * Makefile.in (OBJDUMP_OBJS): New variable.
279         ($(OBJDUMP_PROG)): Use $(OBJDUMP_OBJS).
280         * binutils.texi, objdump.1: Document --debugging.
281
282 Sat Dec 30 09:59:51 1995  Jeffrey A Law  (law@cygnus.com)
283
284         * nm.c ( long_options): Add "--defined-only" option.
285         (usage): Update for new "--defined-only" option.
286         (filter_symbols): Handle "--defined-only".
287
288 Fri Dec 29 16:04:56 1995  Ian Lance Taylor  <ian@cygnus.com>
289
290         * arparse.y: Include "bucomm.h", not <sysdep.h>.
291         * nlmheader.y: Don't include "sysdep.h".
292
293 Tue Dec 26 18:23:18 1995  Ian Lance Taylor  <ian@cygnus.com>
294
295         * nm.c (print_symdef_entry): Check return value of
296         bfd_get_elt_at_index.
297
298 Sat Dec 23 11:03:16 1995  Michael Meissner  <meissner@tiktok.cgynsu.com>
299
300         * configure.in (DLLTOOL_DEFS): Build dlltool for PowerPC if target
301         is powerpc*-*-win* in addition to powerpc*-*-*pe*.
302
303 Fri Dec 15 16:30:57 1995  Ian Lance Taylor  <ian@cygnus.com>
304
305         * objdump.c (endian_string): New static function.
306         (display_target_list): Use it.
307         * nlmconv.c (main): Use new bfd_big_endian macro.
308
309 Fri Dec 15 07:51:34 1995  steve chamberlain  <sac@slash.cygnus.com>
310
311         * dlltool.c (fill_ordinals): Start from 1 if no other instructions
312         given.
313
314 Tue Dec 12 12:05:21 1995  Ian Lance Taylor  <ian@cygnus.com>
315
316         * Makefile.in (clean): Remove $(DEMANGLER_PROG).1.  From Ronald
317         F. Guilmette <rfg@monkeys.com>.
318
319 Mon Dec 11 14:33:05 1995  Stan Shebs  <shebs@andros.cygnus.com>
320
321         * mac-binutils.r: Fix copyright and version strings.
322
323         * Makefile.in (version): Remove, no longer used.
324
325 Fri Dec  1 14:41:56 1995  Stan Shebs  <shebs@andros.cygnus.com>
326
327         * mpw-make.sed (install, install-only): Edit in Mac-specific
328         install procedure.
329
330 Thu Nov 30 20:26:02 1995  Kim Knuttila  <krk@cygnus.com>
331
332         * dlltool.c (ppc_jtab): The binary glue for PowerPC dll linkage,
333         including the return instruction.
334         sinfo: added a preferred alignment field.
335         (secdata): section data for the PowerPC version.
336         (make_one_lib_file): More symbols, More sections (pdata, rdata)
337         (make_tail): Use idata$6 instead of idata$7 for ppc. Also added a 
338         NULL idata$3 descriptor (temporary).
339
340 Tue Nov 28 17:23:44 1995  Doug Evans  <dje@canuck.cygnus.com>
341
342         * dlltool.c (fill_ordinals): Don't reference d_export_vec if
343         there are no exported functions.
344
345 Mon Nov 27 13:05:59 1995  Ian Lance Taylor  <ian@cygnus.com>
346
347         * configure: Regenerate with autoconf 2.7.
348
349 Wed Nov 22 13:17:15 1995  Ian Lance Taylor  <ian@cygnus.com>
350
351         * dlltool.c (fill_ordinals): Start assigning ordinals at 1.
352
353         * Makefile.in (EXPECT): Use $$r, not $${rootme}.
354         (check): Set r, not rootme.
355
356 Tue Nov 21 18:04:09 1995  Ian Lance Taylor  <ian@cygnus.com>
357
358         * configure.in: Use BFD_NEED_DECLARATION.
359         * acconfig.h: Put NEED_DECLARATION_FPRINTF in @TOP@ section.
360         * configure, config.in: Rebuild with autoconf 2.6.
361
362 Fri Nov 17 10:34:37 1995  Ian Lance Taylor  <ian@cygnus.com>
363
364         * Makefile.in (CC_FOR_TARGET): Use @host@ and @target@, not
365         $(host_canonical) and $(target_canonical).
366
367 Thu Nov 16 03:39:20 1995  Ken Raeburn  <raeburn@cygnus.com>
368
369         Version 2.6 released.
370         * Makefile.in (VERSION): Update to 2.6.
371
372 Wed Nov 15 12:14:17 1995  Ian Lance Taylor  <ian@cygnus.com>
373
374         * Makefile.in (CC_FOR_TARGET): Define.
375         (check): Pass CC and CFLAGS to runtest.
376
377         * nm.c (display_rel_file): Don't require a DYNAMIC object when
378         dumping the dynamic symbol table.
379
380         * objdump.c (compare_symbols): Sort global symbols before local
381         symbols before debugging symbols.
382         (objdump_print_address): Don't futz around looking for a global
383         symbol with the same value.
384
385 Tue Nov 14 17:19:11 1995  Ian Lance Taylor  <ian@cygnus.com>
386
387         * dlltool.c: Use FOPEN_* macros rather than "r" or "w".
388
389         * dlltool.c (fill_ordinals): Correct memset call.
390
391 Sun Nov 12 12:56:05 1995  Stan Shebs  <shebs@andros.cygnus.com>
392
393         * mpw-make.sed (DEMANGLER_PROG): Edit out attempts to do anything
394         with the man page.
395
396 Fri Nov 10 11:41:22 1995  Ian Lance Taylor  <ian@cygnus.com>
397
398         * objcopy.c (setup_section): Copy the section lma independently of
399         the vma.
400
401 Wed Nov  8 11:33:00 1995  Ian Lance Taylor  <ian@cygnus.com>
402
403         * arsup.c (ar_open): Cast malloc return value.
404
405 Tue Nov  7 09:01:26 1995  Kim Knuttila  <krk@cygnus.com>
406
407         * configure.in, configure (DLLTOOL_DEFS): Added ppc target.
408         * dlltool.c (MPPC): Added basic PPC definitions.
409
410 Tue Nov  7 14:02:57 1995  Ian Lance Taylor  <ian@cygnus.com>
411
412         * configure.in: Don't treat rs6000-*-lynx* specially.
413         * configure: Rebuild.
414         * config/rslynx: Remove.
415         * Makefile.in: Remove @target_makefile_fragment@.
416
417 Mon Nov  6 15:00:50 1995  Ian Lance Taylor  <ian@cygnus.com>
418
419         * bucomm.h: Include <sys/types.h>.
420         * ar.c: Don't include <sys/types.h> or <stdio.h>.
421         * bucomm.c, dlltool.c, nlmconv.c, objcopy.c, objdump.c: Likewise.
422
423 Fri Nov  3 12:38:09 1995  Ian Lance Taylor  <ian@cygnus.com>
424
425         * objdump.c: Include <sys/types.h>.
426
427         Permit user to override DEMANGLER_PROG from command line.  From
428         Manfred Hollstein <manfred@lts.sel.alcatel.de>.
429         * Makefile.in ($(DEMANGLER_PROG)): Depend upon
430         $(DEMANGLER_PROG).1.
431         (install): Don't depend upon $(DEMANGLER_PROG).1.  Only install
432         $(DEMANGLER_PROG).1 if $(DEMANGLER_PROG) is not empty.
433
434 Wed Nov  1 15:04:57 1995  Manfred Hollstein KS/EF4A 60/1F/110 #40283  <manfred@lts.sel.alcatel.de>
435
436         * Makefile.in (syslex.o): add -I$(srcdir) if compiling in a
437         separate directory.
438
439 Mon Oct 30 14:24:18 1995  Ian Lance Taylor  <ian@cygnus.com>
440
441         * objdump.c (objdump_print_value): New static function.
442         (objdump_print_address): Use it.  If we need the right section for
443         the symbol, and we can't find it, print an offset from the section
444         rather than using a symbol from some other section.
445
446 Thu Oct 26 10:23:14 1995  steve chamberlain  <sac@slash.cygnus.com>
447
448         * dlltool.c (no_idata4, no_idata5): New.
449         (arm_jtab): Use correct encoding of jump instruction.
450         (usage, main, make_head, make_tail): Act on no_idata4, no_idata5.
451
452 Wed Oct 25 12:10:07 1995  Stan Shebs  <shebs@andros.cygnus.com>
453
454         * mpw-make.sed: Edit paths to generated y.tab.[ch] files.
455
456 Fri Oct 20 18:40:34 1995  Ian Lance Taylor  <ian@cygnus.com>
457
458         * binutils.texi: Change --with-targets to --enable-targets.
459
460 Thu Oct 19 17:47:41 1995  Fred Fish  <fnf@cygnus.com>
461
462         * Makefile.in:  Remove extraneous tab on otherwise empty line,
463         which confuses many non-GNU versions of "make".
464
465 Wed Oct 18 16:31:58 1995  steve chamberlain  <sac@slash.cygnus.com>
466
467         * dlltool.c (i386_jtab, arm_jtab): New
468         (gen_lib_file): Rewritten to use bfd.
469
470 Fri Oct 13 16:10:07 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
471
472         * Makefile.in (install): Don't give error message if dlltool
473         wasn't built.
474
475 Fri Oct 13 11:04:37 1995  steve chamberlain  <sac@slash.cygnus.com>
476
477         * deflex.l: Allow quoting of IDs.
478         * defparse.y (%union): string deleted.
479         (command): DESCRIPTION takes ID.
480         * dlltool.c (gen_def_file): Quote outgoing name if
481         necessary.  Preserve NONAME.
482         (gen_lib_file): Run ranlib.
483         (workout_prefix): Deleted.
484         (main, usage, long_options): Add --as, --ranlib, --ar options.
485
486 Wed Oct 11 13:36:13 1995  steve chamberlain  <sac@slash.cygnus.com>
487
488         * dlltool.c (mtable): HOW_ALIGN_LONG, new.
489         (d_ord): Deleted.
490         (d_low_ord, d_high_ord, d_named_funcs): New.
491         (gen_exp_file): Create noname entries correctly.
492         (gen_lib_file): Dump exports alphabetically.
493         (process_duplicates):  Count nonamed functions.
494         (fill_ordinals): Keep track of highest ord too.
495         (mangle_defs): Create alphabetically ordered list of names.
496
497 Tue Oct 10 09:39:09 1995  steve chamberlain  <sac@slash.cygnus.com>
498
499         * Makefile.in (TOOL_PROGS): Include DLLTOOL_PROG.
500
501 Mon Oct  9 13:06:31 1995  steve chamberlain  <sac@slash.cygnus.com>
502
503         * dlltool.c (add_underscore): New.
504         (xlate): Use new name.
505         (main, usage): Update.
506
507 Fri Oct  6 14:08:51 1995  Ken Raeburn  <raeburn@cygnus.com>
508
509         * sysinfo.y: Eliminate unused terminals "[" and "]" and unused
510         nonterminal "name".  One s/r conflict remains.
511
512         Mon Sep 25 22:49:32 1995  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
513
514         * nm.c (print_symname): Don't try to demangle an empty
515         name.
516         * objdump.c (slurp_symtab): Reset symcount if there are
517         no symbols.
518         (slurp_dynamic_symtab): Likewise, for dynsymcount.
519         (disassemble_data): Fix memory leak: free sorted_syms when done.
520         (display_bfd): Likewise, for syms and dynsyms.
521         (dump_relocs): Don't print header before possibly generating an
522         error message.
523         (dump_dynamic_relocs): Likewise.
524
525         * ar.1, nm.1, objdump.1, size.1, strings.1, strip.1: Fix typos and
526         formatting bugs.
527
528 Fri Oct  6 12:00:25 1995  Ian Lance Taylor  <ian@cygnus.com>
529
530         * ar.c (do_quick_append): Comment out.
531         (replace_members): Add quick argument.
532         (main): Don't call do_quick_append.
533         (open_inarch): Don't call quick_append to create an empty archive.
534         Instead call bfd_openw/bfd_set_format/bfd_close.
535
536 Thu Oct  5 20:53:08 1995  Ken Raeburn  <raeburn@cygnus.com>
537
538         * bucomm.c: Always include time.h.
539
540 Thu Oct  5 17:25:21 1995  Ian Lance Taylor  <ian@cygnus.com>
541
542         * objdump.c (compare_symbols): Sort gnu_compiled and gcc2_compiled
543         symbols after other symbols with the same value.  Likewise for
544         symbols which look like file names.
545         (objdump_print_address): Always chose the first reasonable symbol
546         with a given value.
547
548 Tue Oct  3 22:38:55 1995  Ian Lance Taylor  <ian@cygnus.com>
549
550         * arsup.c (ar_save): Use rename, not unlink/link/unlink.
551
552 Mon Oct  2 12:10:25 1995  Ian Lance Taylor  <ian@cygnus.com>
553
554         * strings.c (main): Exit with zero status if no files are given
555         and standard input is read.
556
557 Thu Sep 28 20:03:07 1995  Stan Shebs  <shebs@andros.cygnus.com>
558
559         * mpw-config.in: Calculate underscore and put into makefile
560         fragment, generate config.h.
561         * mpw-make.sed: New file, sed commands to edit Unix makefile
562         into MPW syntax.
563         * mpw-make.in: Remove.
564         * mac-binutils.r: New file, Mac resources.
565
566 Thu Sep 28 15:49:00 1995  steve chamberlain  <sac@slash.cygnus.com>
567
568         * dlltool.c: (gen_exp_file): Always emit a .reloc section if
569         relocatable.
570         (imp_name_lab): New.
571         (gen_def_file): New.
572         (gen_lib_file): Use imp_name_lab.
573         (main): Initialize imp_name_lab.
574
575 Mon Sep 25 12:05:34 1995  Ian Lance Taylor  <ian@cygnus.com>
576
577         * configure.in: Call AC_HEADER_SYS_WAIT.
578         * configure: Rebuild.
579         * config.in: Rebuild.
580         * dlltool.c: Include "libiberty.h" and "bucomm.h".  Don't include
581         <stdio.h>, <stdlib.h>, or <string.h>.  Don't include <wait.h>.
582         Include <sys/types.h>.  Use HAVE_SYS_WAIT_H to control whether to
583         include <sys/wait.h> or define the wait macros by hand.  Don't
584         declare xmalloc.
585         (gen_lib_file): Don't assume that sprintf returns the number of
586         characters; use strlen instead.
587
588 Fri Sep 22 17:16:41 1995  Ian Lance Taylor  <ian@cygnus.com>
589
590         * objdump.c (disassemble_data): Don't use the old BFD based
591         disassembler interface.  Make info a const pointer.
592
593 Wed Sep 13 18:33:44 1995  Ian Lance Taylor  <ian@cygnus.com>
594
595         * objdump.c (start_address): New variable.
596         (stop_address): New variable.
597         (usage): Mention --start-address and --stop-address.
598         (OPTION_START_ADDRESS, OPTION_STOP_ADDRESS): Define.
599         (long_options): Add "start-address" and "stop-address".
600         (disassemble_data): Handle start_address and stop_address.
601         (dump_data, dump_reloc_set): Likewise.
602         (main): Don't set seenflag for -l.  Handle OPTION_START_ADDRESS
603         and OPTION_STOP_ADDRESS.
604         * objcopy.c (parse_vma): Move to bucomm.c.
605         * bucomm.c (parse_vma): New function, moved in from objcopy.c.
606         * bucomm.h (parse_vma): Declare.
607         * binutils.texi, objdump.1: Document new objdump options.
608
609 Tue Sep 12 12:37:39 1995  Ian Lance Taylor  <ian@cygnus.com>
610
611         * Makefile.in (maintainer-clean): New target.
612
613         * ar.c (replace_members): Don't call write_archive if nothing
614         changed.
615
616         * objdump.c (disassemble_data): Add casts to avoid gcc warnings.
617
618 Thu Sep  7 12:12:17 1995  Ian Lance Taylor  <ian@cygnus.com>
619
620         * config.in: Rename from config.h.in.
621         * configure.in: Call AC_CONFIG_HEADER with config.h:config.in.
622         Check for config.h:config.in when creating stamp-h.
623         * configure: Rebuild.
624         * Makefile.in (stamp-h): Depend upon config.in rather than
625         config.h.in.  Set CONFIG_HEADERS to config.h:config.in when
626         calling config.status.
627
628         * Makefile.in (distclean): Remove config.h, stamp-h, and
629         config.log.
630
631         * nm.c (value_format): Initialize based on BFD64 and
632         BFD_HOST_64BIT_LONG.
633         (print_radix): New static variable.
634         (set_print_radix): Set print_radix.  Adjust changes to
635         value_format.
636         (print_value): New static function, to print 64 bit octal and
637         decimal values correctly.
638         (print_symbol_info_bsd): Check BFD64, not BFD_HOST_64_BIT.  Use
639         print_value.
640         (print_symbol_info_sysv): Use print_value.
641         (print_symbol_info_posix): Likewise.
642
643 Wed Sep  6 15:02:55 1995  Ian Lance Taylor  <ian@cygnus.com>
644
645         * Makefile.in (*.o): Remove incorrect dependencies on
646         $(BFDDIR)/hosts/std-host.h.
647
648         * Makefile.in (INSTALL_DATA): Add -m 644.
649         (INSTALL_XFORM1): Likewise.
650         (CC_FOR_BUILD): Set to @CC_FOR_BUILD@ rather than $(CC).
651         (mostlyclean): Remove config.log.
652         (distclean): Remove config.cache.
653
654         * configure.in: Call BFD_CC_FOR_BUILD and BFD_BINARY_FOPEN.
655         * configure: Rebuild.
656
657 Tue Sep  5 20:22:42 1995  Ian Lance Taylor  <ian@cygnus.com>
658
659         * configure.in: Rewrite to use autoconf.
660         * aclocal.m4: New file.
661         * configure: New file, built by autoconf.
662         * acconfig.h: New file.
663         * config.h.in: New file, built by autoheader.
664         * Makefile.in: Various changes for new configure script.  Also:
665         (PROGS): Remove $(SYSINFO_PROG).
666         (ALL_CFLAGS): Remove $(TDEFINES).
667         (version.o): Use $(ALL_CFLAGS).
668         (cplus-dem.o, dlltool.o, nlmconv.o): Likewise.
669         (sysdump.o): Depend upon bucomm.h and config.h.
670         (srconv.o, arsup.o, strings.o): Depend upon config.h.
671         (filemode.o): Don't depend upon ../bfd/sysdep.h.
672         (bucomm.o): Depend upon config.h, not ../bfd/sysdep.h.
673         (size.o, objdump.o, nm.o, ar.o, objcopy.o): Likewise.
674         (nlmheader.o, nlmconv.o): Likewise.
675         (distclean): Don't remove sysdep.h.
676         * bucomm.h: Include "ansidecl.h", <stdio.h>, and "config.h".
677         Include "fopen-same.h" or "fopen-bin.h", based on
678         USE_BINARY_FOPEN.  Include <errno.h>, and declare errno if it is
679         not a macro.  Include <unistd.h>, <string.h>, <strings.h>,
680         <stdlib.h>, and <fcntl.h> if they are present.  Declare strchr,
681         strrchr, and strstr if no string header file exists.  Include
682         <sys/file.h> if it exists and <fcntl.h> does not.  Define
683         O_RDONLY and O_RDWR if necessary.
684         * ar.c:  Don't include "sysdep.h".  Do include <sys/types.h> and
685         <sys/stat.h>.  Use HAVE_GOOD_UTIME_H rather than POSIX_UTIME.  Use
686         HAVE_UTIMES rather than !USE_UTIME.  Don't include <errno.h>, and
687         don't declare errno.
688         * arsup.c: Don't include <sysdep.h>.
689         * bucomm.c: Don't include "sysdep.h".  Include <stdio.h>,
690         <sys/types.h>, and <sys/stat.h>.  Include <time.h> if it defines
691         time_t.  Define time_t if necessary.
692         * coffdump.c: Don't include "sysdep.h".
693         * coffgrok.c, filemode.c, nlmconv.c, size.c: Likewise.
694         * srconv.c, strings.c: Likewise.
695         * nm.c: Don't include "sysdep.h".  Don't try to define HAVE_SBRK.
696         * objcopy.c: Don't include "sysdep.h".  Include <sys/types.h> and
697         <sys/stat.h>.
698         (simple_copy): Use creat rather than assuming that O_CREAT is
699         defined.
700         * objdump.c: Don't include "sysdep.h".  Use
701         NEED_DECLARATION_PRINTF rather than !FPRINTF_ALREADY_DECLARED.
702         * sysdump.c: Include "bfd.h" and "bucomm.h".  Don't include
703         "sysdep.h" or <stdlib.h>.
704         (dump_symbol_info): Rename from symbol_info.  Change all callers.
705         
706 Mon Sep  4 14:30:00 1995  Ian Lance Taylor  <ian@cygnus.com>
707
708         * configure.in (host_makefile_frag): Don't set.  Substitute for
709         @CC@, @CFLAGS@, @HDEFINES@ and @LDFLAGS@ in Makefile.
710         * Makefile.in (AR_FLAGS): Set to rc rather than qv.
711         (CC): Define as @CC@.
712         (CFLAGS): Set to @CFLAGS@.
713         (LDFLAGS): Define as @LDFLAGS@.
714         (ALL_CFLAGS): Use @HDEFINES@ rather than $(HDEFINES).
715
716         * configure.in: Don't bother to call config.bfd for each target.
717         Just call it for the default target, and use the shell variable to
718         decide whether underscores are used.
719
720 Thu Aug 31 19:21:48 1995  Jason Molenda    (crash@phydeaux.cygnus.com)
721
722         * configure.in: match i[3-6]86-*-win32, not just i386-*-win32.
723
724 Thu Aug 31 16:30:22 1995  steve chamberlain  <sac@slash.cygnus.com>
725
726         * dlltool.c (add_indirect): New.
727         (asm_prefix): New
728         (gen_exp_file): Timestamp should be 0. Insert prefix when
729         needed. New code for indirection.
730         (gen_lib_file): Timestamp should be 0. Insert prefix
731         when needed.
732         (usage): Document --add-indirect.
733         (main): Cope with new option.
734
735         * objdump.c (dump_private_headers): New.
736         (usage): Document new option.
737         (long_option): Add private-headers.
738         (dump_bfd_private_header): New.
739         (main): Cope with new option.
740
741 Thu Aug 31 04:09:16 1995  Doug Evans  <dje@canuck.cygnus.com>
742
743         * dlltool.c (run): Add missing 3rd arg to waitpid.
744
745 Wed Aug 30 11:02:11 1995  steve chamberlain  <sac@slash.cygnus.com>
746
747         * Makefile.in (TOOL_PROGS): Include dlltool if needed.
748
749 Tue Aug 29 13:25:21 1995  steve chamberlain  <sac@slash.cygnus.com>
750
751         * dlltool.c (rva): Deleted.
752         (rvaafter, rva_before): Use new assembler pseudo.
753         (flush_page, gen_exp_file, gen_lib_file): Use new way of RVAing.
754         (gen_exp_file): Don't generate .edata if no need.
755         (gen_lib_file): Don't make timestamp.
756         Put _iname in idata$7.
757         (workout_prefix): Fix memory initialization bug.
758         (usage): Tidy up, delete many single char options.
759         (main): rva option is gone.
760
761 Mon Aug 21 18:41:28 1995  steve chamberlain  <sac@slash.cygnus.com>
762
763         * dlltool.c (options): image-base is a synonym for rva.
764         (gen_lib_file): Put dll name into ibase$7.
765
766 Sun Aug 20 09:59:00 1995  steve chamberlain  <sac@slash.cygnus.com>
767
768         Modified to generate archives and objects rather than .s files.
769         * dlltool.c (run) New function.
770         (gen_exp_file, gen_lib_file): Use run.
771         (workout_prefix): New.
772         (usage): Document new options.
773         (main): Parse new options.
774
775 Wed Aug 16 16:26:52 1995  steve chamberlain  <sac@slash.cygnus.com>
776
777         * dlltool.c (gen_exp_file): Fix RVA handling.
778         (rva_s, rva_n): Delete.
779
780 Fri Aug 11 18:27:18 1995  Ian Lance Taylor  <ian@cygnus.com>
781
782         * nm.c (main): Ignore -e.
783
784 Thu Aug 10 17:35:00 1995  Ken Raeburn  <raeburn@cygnus.com>
785
786         * Makefile.in (config.texi): New target.  Write out a setting for
787         texinfo variable VERSION.
788         (binutils.dvi, binutils.info): Depend on it.
789         * binutils.texi: Include it, and reference @value{VERSION} instead
790         of explicitly specifying 2.2(!).
791
792 Thu Aug 10 16:07:53 1995  Ian Lance Taylor  <ian@cygnus.com>
793
794         * coffgrok.c (do_type): Handle array dimensions the same way gdb
795         does.
796
797 Tue Aug  8 17:10:42 1995  steve chamberlain  <sac@slash.cygnus.com>
798
799         * dlltool.c (mtable): New fields.
800         (ASM_RVA_BEFORE, ASM_RVA_AFTER): New.
801         (flush_page): Use new macros.
802
803 Sat Aug  5 00:16:37 1995  Jeff Law  (law@snake.cs.utah.edu)
804
805         * objcopy.c (mark_symbols_used_in_relocations): Handle sections
806         with no relocations.
807         * coffgrok.c (do_sections_p1): Likewise.
808
809 Mon Jul 31 12:51:06 1995  Ian Lance Taylor  <ian@cygnus.com>
810
811         * strings.c (print_strings): For compatibility with existing
812         strings programs, print strings which are not terminated with a
813         null byte or a newline.
814         * binutils.texi, strings.1: Update documentation accordingly.
815
816         * ar.c (replace_members): For compatibility with existing ar
817         programs, permit users to add the same file multiple times.
818
819 Tue Jul 25 11:21:53 1995  Ian Lance Taylor  <ian@cygnus.com>
820
821         * strings.c (DATA_FLAGS): Remove SEC_DATA.
822         (main): If no file names are given, scan standard input.
823         * binutils.texi, strings.1: strings now scans non-data sections by
824         default.
825
826 Mon Jul 24 13:52:28 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
827
828         * srconv.c (wr_hd): Set afl field to 4 for bfd_arch_sh.
829         (writeINT): When size == -2, use 2 bytes for the h8300 and 4 bytes 
830         for the sh.
831
832         * sysdump.c (fillup): Return size - 1, the last byte is a checksum
833         and shouldn't be counted.
834         * sysroff.info (hd): Changed segment identifier from a byte to a 1
835         bit field.  The sysroff 2.0-01 specification seems to be in error
836         here.  Reduce width of following "spare" field from 4 to 3 bits.
837         (rl): Changed order and width of first 4 bitfields to correspond
838         to sysroff specification.
839         (dln_head, dln_inside, dln_tail): Removed.
840
841 Tue Jul 18 23:00:03 1995  Fred Fish  <fnf@cygnus.com>
842
843         * nm.c (sort_symbols_by_size):  Enclose expression being casted
844         in parens so result is casted, not just first operand.  Can't
845         do pointer arithmetic on void* pointers.
846
847 Fri Jul 14 13:42:42 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
848
849         * sysdump.c (dh): Changed format of output to be 16 hex digits
850         followed by 16 ascii characters, similar to Emacs' hexl-mode,
851         to make it easier to read.
852         (xcalloc): fix typo.
853
854 Thu Jul 13 15:27:44 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
855
856         * srconv.c (wr_tr): Write out handcrafted tr block.
857         (walk_tree_symbol): Use evallen and evalue instead of
858         vallen & value because of corresponding changes in
859         sysroff.info.
860
861         * sysdump.c (sysroff_swap_tr_in, sysroff_print_tr_out): New
862         functions.
863
864         * sysroff.info (tr): the tr block is a special case --- a block
865         without contents --- which can't be handled by generated code.
866         (den, dpp): only first byte is present for DENend, DPPend.
867         (dsy): describe a conditional portion of block, rename some fields.
868         (dps): describe a conditional portion of block.
869         (dfl): removed.
870
871         * sysinfo.y (yyerror): write error message to standard error.
872
873 Thu Jul 13 10:43:59 1995  Ian Lance Taylor  <ian@cygnus.com>
874
875         * Makefile.in (DISTSTUFF): Add arparse.h and sysinfo.h.
876         (mostlyclean): Remove y.output.
877         (clean): Remove sysroff, sysroff.c, sysroff.h, and sysinfo.
878
879         * nlmconv.c (powerpc_mangle_relocs): Cast memset arg to size_t.
880         * objcopy.c (copy_object): Likewise.
881
882         * nm.c (HAVE_SBRK): Define execpt on amigados and WINDOWS_NT.
883         (struct size_sym): Define.
884         (show_stats): New static variable.
885         (long_options): Add undocumented option "stats".
886         (main): Print memory stats if requested.
887         (sort_bfd, sort_dynamic, sort_x, sort_y): New static variables.
888         (numeric_forward): Use minisymbols rather than asymbols.
889         (non_numeric_forward): Likewise.
890         (size_forward1): Rename from size_forward.  Use minisymbols.
891         (size_forward2): New static function.
892         (sort_symbols_by_size): Take new arguments dynamic, size, and
893         symsizep.  Use minisymbols.  Don't store the size back in the
894         symbol; store in a newly allocate struct size_sym array.
895         (display_rel_file): Read minisymbols rather than asymbols.  Set
896         sort_* variables.  Call print_size_symbols if sorting by size.
897         (filter_symbols): Take new arguments dynamic and size.  Use
898         minisymbols.
899         (print_symbols): Likewise.  Call print_symbol for actual printing.
900         (print_size_symbols): New static function.
901         (print_symbol): New static function.
902
903 Wed Jul 12 10:43:05 1995  Ian Lance Taylor  <ian@cygnus.com>
904
905         * objdump.c (dump_section_stabs): Only print each stabs section
906         once.
907         (compare_relocs): Make it clear to gcc that this always returns a
908         value.
909
910 Wed Jul 12 10:40:23 1995  H.J. Lu  <hjl@nynexst.com>
911
912         * objcopy.c (simple_copy): Preserve errno on failure.
913         (smart_rename): Print error mesage if simple_copy fails.
914
915 Tue Jul 11 13:10:52 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
916
917         * sysdump.c: re-indented file.  
918         (module): read blocks sequentially instead of trying to parse
919         them, as that would require changing the parser recognize the
920         difference between a DPSstart and DPSend block.
921         (getone): Add break's between switch blocks as appropriate.
922         (object_body_list): parse blocks according to sysroff spec.
923
924 Mon Jul 10 12:37:25 1995  J.T. Conklin  <jtc@poseidon.cygnus.com>
925
926         * sysroff.info: re-indented file, prior formatting was confusing
927         because it was indentation did not reflect nesting of conditional
928         records.  Change "space size within segment" record in hd record
929         from bit to byte.
930
931         * sysinfo.y (cond_it_field): Use xcalloc instead of calloc.
932
933         * srconv.c (wr_cs): Reformatted cs header array, tag each byte
934         with a comment describing the field.
935         (wr_unit_info): Use SEEK_SET macro instead of constant 0.
936         (main): Use FOPEN_WB macro instead of literal "wb".
937         * sysroff.info: Remove fdl (dfl) field from cs block.  Compare
938         ptr->type with ED_TYPE_CONST instead of constant 2 in ed block.
939
940 Tue Jul  4 14:48:42 1995  Ian Lance Taylor  <ian@cygnus.com>
941
942         * nm.c (size_forward): Check yf against yn, not xn.
943
944         * objcopy.c (copy_archive): Record all output BFD's, and close
945         them before unlinking them and removing the temporary directory,
946         to avoid NFS problems.
947
948         * ar.c (replace_members): In verbose messages, use 'r' when
949         replacing a member, and 'a' when adding one.
950
951         * ar.c (ar_truncate): New static variable.
952         (normalize): Change return type to const char *.  Add abfd
953         argument.  Change all callers.  If ar_truncate, chop the filename
954         to abfd->ar_max_namelen.
955         (main): For the 'f' modifier, set ar_truncate to true.  Don't
956         change quick_append to replace if ar_truncate is true.
957         (do_quick_append): If ar_truncate, set BFD_TRADITIONAL_FORMAT.
958         (write_archive): Likewise.
959         * binutils.texi, ar.1: Document 'f' modifier.
960
961         * objcopy.c (enum strip_action): Define strip_unneeded.
962         (OPTION_STRIP_UNNEEDED): Define.
963         (strip_options): Add "strip-unneeded".
964         (copy_options): Likewise.
965         (copy_usage): Mention --strip-unneeded.
966         (strip_usage): Likewise.
967         (is_strip_section): Strip debugging sections if strip_unneeded.
968         (filter_symbols): If strip_unneeded, only keep BSF_KEEP symbols.
969         (copy_object): If strip_all, discard symbols without checking
970         discard_locals.
971         (copy_object): Call filter_symbols if strip_unneeded.
972         (setup_section): Strip debugging sections if strip_unneeded.
973         (copy_section): Likewise.
974         (strip_main): Handle OPTION_STRIP_UNNEEDED.
975         (copy_main): Likewise.
976         * binutils.texi, objcopy.1, strip.1: Document --strip-unneeded.
977
978 Mon Jul  3 14:16:47 1995  Steve Chamberlain  <sac@slash.cygnus.com>
979
980         * configure.in (i386-*-win32): New configuration.
981         * dlltool.c (killat, xlate, usage, long_options, main): 
982         Understand and cope with -k option.
983
984 Sat Jul  1 12:25:15 1995  Fred Fish  <fnf@cygnus.com>
985
986         * ar.c: (extract_file):  Change "#if POSIX_UTIME" to
987         "#ifdef POSIX_UTIME" to match other tests of POSIX_UTIME
988         and avoid lossage when POSIX_UTIME is not defined at all.
989
990 Wed Jun 28 17:51:24 1995  Steve Chamberlain  <sac@slash.cygnus.com>
991
992         * ar.c: (print_contents.c, extract_file, do_quick_append):
993         Malloc buffers rather than allocate on stack (so it works
994         on NT).
995         * deflex.l: Names can have an @ in them.
996         * dlltool.c: Loads of stuff. Can now generate .imp files which
997         work with NT .dlls.
998
999 Thu Jun 22 19:10:50 1995  Stan Shebs  <shebs@andros.cygnus.com>
1000
1001         * mpw-make.in (demangle.c.o): Remove.
1002         (arparse.h): Depend on arparse.c instead of arparse.y.
1003
1004 Wed Jun 21 17:32:45 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
1005
1006         * Makefile.in (DISTSTUFF): Don't include info here.
1007         (diststuff): Include it here.
1008         (realclean): Remove *.info.
1009
1010         * objdump.c (compare_relocs): If relocation entries have the same
1011         address, keep them in file order.
1012
1013 Mon Jun 19 09:06:49 1995  Steve Chamberlain  <sac@slash.cygnus.com>
1014
1015         * dlltool.c: Change names of generated files. .*.s-> -*.s
1016
1017         * objdump.c (dump_section_stabs):  Check for names
1018         which are supersets of selected names.
1019
1020 Wed Jun 14 19:43:52 1995  Doug Evans  <dje@canuck.cygnus.com>
1021
1022         * dlltool.c (mtable, ARM jump): Must redirect via pc offsetable ptr.
1023
1024 Wed Jun 14 13:27:22 1995  Steve Chamberlain  <sac@slash.cygnus.com>
1025
1026         * deflex.l, defparse.y, dlltool.c: New files.
1027         * Makefile.in, configure.in: Support for them.
1028
1029 Mon Jun 12 11:27:54 1995  Steve Chamberlain  <sac@slash.cygnus.com>
1030
1031         * sysdump.c: Include sysdep.h
1032         (main): Open input with FOPEN_RB.
1033
1034 Fri Jun  9 17:26:11 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
1035
1036         * objdump.c (wide_output): New flag variable.
1037         (usage): Print new -w, --wide options.
1038         (long_options): Add --wide support.
1039         (dump_section_header): If --wide, don't print a newline between
1040         the section's first line and the flags.
1041         (objdump_print_address): Use unsigned comparisons for the binary
1042         search, not signed.
1043         (disassemble_data): If --wide, don't put a \n between the
1044         disassembly output and relocation information.
1045         (main): Support -w option being the same as --wide.
1046
1047 Thu Jun  1 17:09:27 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
1048
1049         Sat May  6 08:52:24 1995  H.J. Lu (hjl@nynexst.com)
1050
1051         * objcopy.c (smart_rename): make it smarter, clean up
1052           if rename () fails.
1053
1054 Tue May 30 14:24:15 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
1055
1056         * Makefile.in: Delete lines with lots of #### because four or more
1057         indicate a point for makefile fragment substitution.
1058
1059 Tue May  9 17:17:05 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
1060
1061         * configure.in: Don't build nlmconv on PowerPC eabi any more, it
1062         is not needed.
1063
1064 Thu Apr 27 20:21:24 1995  Doug Evans  <dje@canuck.cygnus.com>
1065
1066         * Makefile.in (EXPECT): Define.
1067         (RUNTEST): Use one in source tree if present.
1068         (check): Set `rootme' for $(EXPECT).
1069
1070 Wed Apr 26 18:26:21 1995  Steve Chamberlain  <sac@slash.cygnus.com>
1071
1072         * srconv.c (main): Add support for -n option which disables
1073         prescan of common symbols.
1074         (wr_ob): If reading past the end of a section, fill with zeros.
1075
1076 Tue Apr 25 19:14:37 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
1077
1078         * objdump.c (dump_section_header): Display load address after
1079         virtual memory (run-time) address.
1080
1081 Wed Apr 19 09:44:06 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
1082
1083         * Makefile.in (cplus-dem.o): Pass -DVERSION='"$(VERSION)"' to the
1084         compile.
1085         (DEMANGLER_PROG): No longer uses version.o.
1086
1087 Mon Apr 10 13:29:49 1995  Stan Shebs  <shebs@andros.cygnus.com>
1088
1089         Merge in support for Mac MPW as a host.
1090         (Old change descriptions retained for informational value.)
1091
1092         * mpw-config.in (TDEFINES): Define as empty in makefile frag.
1093
1094         * mpw-config.in: Create mk.tmp, define ARCHDEFS in it.
1095
1096         * mpw-config.in: New file, MPW configure fragment for binutils.
1097         * mpw-make.in (install-only): New target.
1098         (install): Also depend on install-only.
1099
1100         * mpw-make.in (cplusfilt): Renamed from c++filt.
1101         (INCLUDES): Add more paths.
1102
1103         * mpw-make.in: New file, MPW makefile fragment for binutils.
1104         (Normally automatically generated from Makefile.in.)
1105
1106 Mon Mar 27 11:52:57 1995  Ian Lance Taylor  <ian@cygnus.com>
1107
1108         * ar.c (write_archive): Call make_tempname to get output file
1109         name, rather than using a fixed name based on the input file.
1110
1111         * objcopy.c (make_tempname): Copy from here...
1112         * bucomm.c (make_tempname): ...to here, and make global.
1113         * bucomm.h (make_tempname): Declare.
1114
1115 Fri Mar 24 11:47:42 1995  Ian Lance Taylor  <ian@cygnus.com>
1116
1117         * strings.c: Include "bfd.h" before other headers.  Include
1118         "sysdep.h".
1119         * bucomm.c (print_arelt_descr): Cast st_uid and st_gid to long,
1120         and print them with %ld.
1121
1122 Fri Mar 10 13:09:42 1995  Ian Lance Taylor  <ian@cygnus.com>
1123
1124         * objcopy.c (strip_options): Add --keep-symbol.
1125         (copy_options): Likewise.
1126         (copy_usage): Mention --keep-symbol and -K.
1127         (strip_usage): Likewise.
1128         (keep_symbols): New static variable.
1129         (is_strip_symbol): Adjust the return value according to
1130         keep_symbols.
1131         (strip_main): Handle -K.  For -N, check that -K was not given.
1132         (copy_main): Likewise.
1133         * binutils.texi, objcopy.1, strip.1: Document -K.
1134
1135 Mon Mar  6 13:33:47 1995  Stan Shebs  <shebs@andros.cygnus.com>
1136
1137         * objcopy.c (copy_archive): Check result of mkdir.
1138         (copy_main): Cast an xmalloc result.
1139
1140         * objdump.c (usage): Break long format string into shorter ones.
1141
1142 Mon Mar  6 13:46:12 1995  Ian Lance Taylor  <ian@cygnus.com>
1143
1144         * bucomm.c (list_supported_targets): New function.
1145         * bucomm.h (list_supported_targets): Declare.
1146         * ar.c (usage): Call list_supported_targets.
1147         * nm.c (usage): Likewise.
1148         * objcopy.c (copy_usage, strip_usage): Likewise.
1149         * objdump.c (usage): Likewise.
1150         * size.c (usage): Likewise.
1151         * strings.c (usage): Likewise.
1152
1153 Tue Feb 28 15:13:58 1995  Ian Lance Taylor  <ian@cygnus.com>
1154
1155         * bucomm.c (print_arelt_descr): Cast st_size to long before
1156         passing it to fprintf.
1157
1158 Fri Feb 17 13:36:45 1995  Ian Lance Taylor  <ian@cygnus.com>
1159
1160         * objcopy.c (struct section_list): Add fields remove, set_flags,
1161         and flags.  Change adjust from boolean to enum.
1162         (remove_sections): Remove static variable.
1163         (sections_removed): New static variable.
1164         (copy_options): Add --set-section-flags.
1165         (copy_usage): Mention --set-section-flags.
1166         (parse_flags): New static function.
1167         (find_section_list): New static function.
1168         (is_strip_symbol): Change return type from int to boolean.
1169         (is_strip_section): New static function.
1170         (filter_symbols): Call is_strip_section.
1171         (copy_object): When adding sections, check for specified flags or
1172         VMA.  Call filter_symbols if any sections are being removed.
1173         (setup_section): Use find_section_list function rather than
1174         looking through remove_sections and adjust_sections.  Handle
1175         --set-section-flags.
1176         (copy_section): Use find_section_list rather than looking through
1177         remove_sections.
1178         (strip_main): Use find_section_list instead of adding items to
1179         sections_removed.
1180         (copy_main): Use find_section_list instead of adding items to
1181         sections_removed and adjust_sections.  Handle --set-section-flags.
1182         * binutils.texi, objcopy.1: Document --set-section-flags.
1183
1184 Tue Feb 14 18:03:03 1995  Ian Lance Taylor  <ian@cygnus.com>
1185
1186         * objdump.c (with_source_code): New global variable.
1187         (usage): Mention -S/--source.
1188         (long_options): Add --source.
1189         (prev_functionname, prev_line): New static variables.
1190         (struct print_file_list): Define.
1191         (print_files): New static variable.
1192         (skip_to_line, show_line): New static functions.
1193         (disassemble_data): Call show_line to handle -l and -S.
1194         (main): Handle -S.
1195         * binutils.texi, objdump.1: Document -S/--source.
1196
1197 Thu Feb  9 16:11:53 1995  Ian Lance Taylor  <ian@cygnus.com>
1198
1199         * objcopy.c (copy_usage): Rename parameter to avoid shadowing.
1200         (strip_usage): Likewise.
1201
1202         * objcopy.c (struct section_add): Define.
1203         (add_sections): New static variable.
1204         (copy_options): Accept --add-section.
1205         (copy_usage): Mention --add-section.
1206         (copy_object): Add sections from the add_sections list.
1207         (copy_main): Handle --add-section.
1208         * binutils.texi, objcopy.1: Document --add-section.
1209
1210 Wed Feb  1 15:04:57 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
1211
1212         * objdump.c (disassemble_data): Pass section offset, not absolute
1213         address, to bfd_find_nearest_line.
1214
1215         * nlmconv.c (powerpc_mangle_relocs): Don't use const with
1216         reloc_howto_type.
1217
1218 Thu Jan 26 18:50:06 1995  Ian Lance Taylor  <ian@cygnus.com>
1219
1220         * objdump.c (compare_symbols): Use bfd_asymbol_value (VAR) rather
1221         than VAR->value.
1222         (objdump_print_address): Likewise.
1223         (disassemble_data): Don't change the symbol values.  It can
1224         confuse bfd_canonicalize_reloc.
1225
1226 Thu Jan 26 12:03:56 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
1227
1228         * configure.in: Add support for powerpc-*-ebai.
1229
1230 Wed Jan 18 10:02:12 1995  Steve Chamberlain  <sac@splat>
1231
1232         * coffdump.c: Include sysdep.h.
1233         (dump_coff_type): Handle coff_secdef_type.
1234         * coffgrok.c : Include sysdep.h.
1235         * srconv.c: Include libiberty.h
1236         (absolute_p, dty_start, dty_end, dump_tree_structure): Remove.
1237
1238 Wed Jan 18 12:24:14 1995  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1239
1240         * coffdump.c (dump_coff_scope): Cast pointer to unsigned long for
1241         printf.
1242         * coffgrok.c: Include bucomm.h.  Don't declare xmalloc.
1243         (push_scope): Declare type of parameter link.
1244         * size.c: Include libiberty.h.
1245         * srconv.c: Include bucomm.h.
1246         (find_base): Declare at top of file.
1247         (wr_hd): Add default case to architecture switch.
1248         (wr_dps_start): Declare type of parameter nest.
1249         (wr_du): Comment out variables used only in commented out blocks.
1250         (wr_dus): Remove unused variable i.
1251         (wr_sc): Remove unused variables myinfo, low, and high.
1252         * strings.c: Include libiberty.h.
1253         * sysdump.c: Include <ctype.h>.
1254
1255 Tue Dec 20 19:13:44 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1256
1257         * ar.c (main): Ignore 'f' modifier used on HP/UX 9.
1258
1259 Thu Dec 15 17:34:12 1994  Stan Shebs  <shebs@andros.cygnus.com>
1260
1261         * ar.c, nm.c, objcopy.c, objdump.c: Include progress.h.
1262         * ar.c, nm.c, objcopy.c, objdump.c (main): Add START_PROGRESS
1263         and END_PROGRESS.
1264         * ar.c (map_over_members, open_inarch): Call PROGRESS.
1265         * nm.c (main, display_archive, filter_symbols, print_symbols):
1266         Call PROGRESS.
1267
1268         * objcopy.c (copy_usage): Break up long usage string.
1269
1270 Wed Dec 14 15:51:56 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
1271
1272         * objcopy.c (copy_object): Don't bother setting status after
1273         nonfatal() "call", because it won't return.
1274
1275 Fri Dec  9 00:22:54 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1276
1277         * nlmconv.c (powerpc_mangle_relocs): Don't switch a reloc to use
1278         the section symbol if the symbol is undefined.
1279
1280 Thu Dec  8 14:45:50 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
1281
1282         * objcopy.c (add_strip_symbol): Cast return value of xmalloc.
1283
1284 Wed Nov 30 11:05:43 1994  Ian Lance Taylor  <ian@rtl.cygnus.com>
1285
1286         * ar.c (replace_members): Pass current->filename to normalize when
1287         checking for duplicates, because the filename of a newly added
1288         file will not have been normalized yet.
1289
1290 Thu Nov 17 15:00:13 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1291
1292         * ar.c (main): Don't call do_quick_append if any of the archive
1293         names are longer than 14 characters.
1294
1295         * objcopy.c (main): Fix is_strip test.  From
1296         pirker@eiunix.tuwien.ac.at (Martin Pirker).
1297
1298 Thu Nov 17 15:37:19 1994  Mark W. Eichin  <eichin@cygnus.com>
1299
1300         * objcopy.c (add_strip_symbol): New function, adds a name to an
1301         explicit list of symbols to strip.
1302         (is_strip_symbol): New function, reports whether the name argument
1303         is in the explicit list.
1304         (filter_symbols): Check against is_strip_symbol above all.
1305         (strip_main): Recognize -N option. If used, don't default to
1306         strip_all.
1307         (copy_main): Recognize -N option.
1308         (strip_usage): Document -N and --strip-symbol options.
1309         (copy_usage): Ditto.
1310         * objcopy.1, strip.1, binutils.texi: Document -N and
1311         --strip-symbol options.
1312
1313 Tue Nov  8 13:12:54 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1314
1315         * objdump.c (display_target_list, display_info_table): Pass an
1316         array to tmparg, rather than NULL, since some systems can't handle
1317         NULL.
1318
1319         * objcopy.c (copy_archive): Keep a list of the names of the
1320         temporary files we created.  Close each input BFD after we open
1321         its successor.
1322
1323 Mon Nov  7 15:48:39 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
1324
1325         * Makefile.in (VERSION): Bump to 2.5.3.
1326
1327 Thu Nov  3 19:04:34 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
1328
1329         * Makefile.in (install-info): Install info files from whatever
1330         directory they were found in.
1331
1332         Patch from DJ Delorie:
1333         * configure.bat: do c++filt -> cxxfilt right
1334
1335         * sysinfo.y: Include system header files early, so any potential
1336         declaration of abort() occurs before its use.
1337
1338         * strings.c (strings_file): Try opening the file in binary mode
1339         first.
1340
1341 Wed Nov  2 15:44:13 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1342
1343         * ar.c (main): Treat ar qs like ar rs.
1344
1345 Tue Oct 25 16:19:25 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1346
1347         * objcopy.c (gap_fill): Explicitly initialize, for clarity.
1348         (pad_to_set, pad_to): New static variables.
1349         (copy_options): Accept --pad-to.
1350         (copy_usage): Mention --pad-to.
1351         (copy_object): Support --pad-to.
1352         (compare_section_vma): Sort non loadable sections to the front.
1353         Sort sections with the same VMA by size.
1354         (copy_main): Handle --pad-to.
1355         * binutils.texi, objcopy.1: Document --pad-to.
1356
1357 Thu Oct 20 13:51:31 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1358
1359         * objcopy.c (gap_fill_set, gap_fill): New static variables.
1360         (copy_options): Accept --gap-fill.
1361         (copy_usage): Mention --gap-fill.
1362         (copy_object): Support --gap-fill.
1363         (get_sections, compare_section_vma): New static functions.
1364         (copy_main): Handle --gap-fill.
1365         * binutils.texi, objcopy.1: Document --gap-fill.
1366
1367 Wed Oct 19 14:09:16 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1368
1369         * Makefile.in (check): Add a dummy else clause to the if
1370         statement.
1371
1372         * objcopy.c (copy_object): Revert yesterday's change.
1373         * binutils.texi, objcopy.1: Remove special mention of --set-start
1374         and `binary' output format.
1375
1376 Tue Oct 18 11:12:01 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1377
1378         * objcopy.c (copy_object): If the output file format is `binary',
1379         and the start address was not set using --set-start, default the
1380         start address to zero.  This hack is because the `binary' output
1381         file format uses the start address to set the virtual address of
1382         the first byte in the file.
1383         * binutils.texi, objcopy.1: Add some notes on generating S-records
1384         and binary files.
1385
1386         * nm.c (print_symdef_entry): Call print_symname to print the
1387         symbol name, so that --demangle works.
1388
1389         * Makefile.in (mostlyclean): Remove tmpdir.
1390
1391         * objcopy.c (struct section_list): Add fields used, adjust, val.
1392         (adjust_start, set_start_set, set_start): New static variables.
1393         (adjust_section_vma, adjust_sections): New static variables.
1394         (copy_options): Add --adjust-start, --adjust-vma,
1395         --adjust-section-vma, --adjust-warnings, --no-adjust-warnings,
1396         --set-start.
1397         (parse_vma): New static function.
1398         (copy_usage): Mention new options.
1399         (copy_object): Handle --set-start and --adjust-start.
1400         (setup_section): Correct type of last argument to PTR.  Set used
1401         field if section is removed.  Handle --adjust-vma and
1402         --adjust-section-vma.
1403         (copy_section): Correct type of last argument to PTR.
1404         (mark_symbols_used_in_relocations): Likewise.
1405         (strip_main): Clear used field when handling -R.
1406         (copy_main): Handle new options.
1407         * binutils.texi (objcopy): Document new options.
1408         * objcopy.1: Document new options.
1409
1410 Fri Oct 14 14:38:13 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1411
1412         * configure.in (configdirs): Remove definition--testsuite is no
1413         longer configured.
1414         * Makefile.in (testsuite): Remove target.
1415         (site.exp): New target.
1416         (check): Rewrite.
1417         (clean, distclean): Don't recur into testsuite directory.
1418
1419 Thu Oct 13 19:24:09 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
1420
1421         * Makefile.in (VERSION): Updated to 2.5.
1422         * Version 2.5 released.
1423
1424 Tue Oct 11 15:26:42 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1425
1426         * Makefile.in (sysdump.o): Depends upon sysroff.c.
1427
1428 Mon Oct 10 13:50:30 1994  J.T. Conklin  (jtc@rtl.cygnus.com)
1429
1430         * nlmconv.c (link_inputs): Pass -Ur flag to ld so that the
1431           ctor/dtor tables needed by C++ programs are built.
1432
1433 Sun Oct  9 18:04:00 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
1434
1435         * Makefile.in (srconv.o): Add dependence on sysroff.c.
1436
1437 Tue Oct  4 12:19:51 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
1438
1439         * configure.in: Use ${config_shell} when running config.bfd.
1440
1441         * Makefile.in (sysroff.h): Split target away from sysroff.c.
1442         (srconv.o, sysdump.o): New targets.
1443         (srconv, sysdump): Don't depend upon sysroff.c.
1444
1445 Wed Sep 28 13:04:34 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1446
1447         * Makefile.in (arparse.c): Don't ignore errors from mv.
1448         (sysinfo.c): Likewise.  Also, depend upon arparse.c, to prevent a
1449         parallel make from trying to build both arparse.c and sysinfo.c
1450         simultaneously.
1451         (nlmheader.c): Similar change.
1452         (arparse.h): Separate target from arparse.c, so that a parallel
1453         make does not try to build both at once.  Depend upon arparse.c.
1454         (sysinfo.h): Similar change.
1455
1456         * objdump.c (disassemble_data): Pass the reloc buffer to free, not
1457         the pointer used to loop over the relocs.
1458
1459 Sat Sep 24 16:16:57 1994  Stan Shebs  (shebs@andros.cygnus.com)
1460
1461         * objdump.c (disassemble_data): Cast result of xmalloc.
1462
1463 Wed Sep 21 19:30:35 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1464
1465         * objdump.c (sorted_syms, sorted_symcount): New global variables.
1466         (objdump_print_address): Use sorted_syms and sorted_symcount
1467         instead of syms and symcount.
1468         (disassemble_data): Don't bother to get the relocs before looping
1469         over the sections.  Before filtering and sorting the symbol table,
1470         copy it into sorted_syms.
1471
1472 Fri Sep 16 11:27:39 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1473
1474         * objdump.c (struct objdump_disasm_info): Add field require_sec.
1475         (objdump_print_address): If aux->require_sec, require that the
1476         symbol be in aux->sec even if HAS_RELOC is not set.  If we can't
1477         find a smaller symbol in the right section, look for a larger one.
1478         (disassemble_data): Set aux.require_sec around the
1479         objdump_print_address call for the instruction address.
1480
1481 Thu Sep 15 21:43:17 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1482
1483         * ar.c: Call xexit rather than exit.
1484         (output_filename, output_file, output_bfd): New static variables.
1485         (remove_output): New static function.
1486         (main): Call xatexit (remove_output).  Call xexit rather than
1487         returning.
1488         (extract_file): Set output_filename and output_file while output
1489         file is open.
1490         (write_archive): Likewise, but use output_bfd, not output_file.
1491         * arsup.c: Include libiberty.h.  Call xexit rather than exit.
1492         * bucomm.c: Likewise.
1493
1494         * objdump.c (disassemble_all): New global variable.
1495         (usage): Document --disassemble-all.
1496         (long_options): Add disassemble-all as a synonym for -D.
1497         (compare_symbols): Make pointers const.
1498         (compare_relocs): New static function.
1499         (disassemble_data): Rename disassemble to disassemble_fn to avoid
1500         shadowing.  If dump_reloc_info, print relocs along with
1501         disassembly.  Skip sections which are not SEC_CODE unless
1502         disassemble_all or only is set.
1503         (display_bfd): Don't call dump_relocs if disassemble is set.
1504         (main): Accept and handle -D.
1505         * binutils.texi: Document -D/--disassemble-all.
1506         * objdump.1: Likewise.
1507
1508 Wed Sep 14 12:19:07 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1509
1510         * objdump.c (disassemble_data): Initialize prevline to 0.  Make
1511         prev_function non const.  Copy functionname into an malloc buffer
1512         when setting prev_function, instead of assuming that the string
1513         will last forever.
1514
1515         * nm.c: Include libiberty.h.
1516         (sort_by_size): New static variable.
1517         (long_options): Add --size-sort.
1518         (usage): Mention --size-sort.
1519         (numeric_forward): Make static.  Change from void * to PTR.
1520         (numeric_reverse): Likewise.
1521         (non_numeric_forward, non_numeric_reverse): Likewise.
1522         (sorters): Change declaration from void * to PTR.
1523         (size_forward, sort_symbol_by_size): New static functions.
1524         (display_rel_file): Handle sort_by_size.
1525         (filter_symbols): If sort_by_size, discard absolute and undefined
1526         symbols.
1527         * binutils.texi (nm): Document --size-sort.
1528         * nm.1: Document --size-sort.
1529
1530 Tue Sep 13 21:06:06 1994  Jeff Law  (law@snake.cs.utah.edu)
1531
1532         * objcopy.c (copy_main): Initialize input_filename and
1533         output_filename to NULL.
1534
1535 Tue Sep 13 14:17:24 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1536
1537         * Makefile.in (version.o): Depend upon Makefile, so that version.o
1538         gets rebuilt when make variable VERSION is changed.
1539
1540         * objdump.c (dump_section_header): Print the SEC_NEVER_LOAD flag.
1541
1542 Wed Aug 24 12:40:09 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1543
1544         * configure.in: Change i[34]86 to i[345]86.
1545
1546 Tue Aug 23 11:00:40 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1547
1548         * ar.c (ranlib_touch): Don't update the archive map if there isn't
1549         one.
1550
1551 Mon Aug 22 16:02:18 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1552
1553         * ar.c: Include libiberty.h.
1554         (inarch): Remove variable.
1555         (map_over_members): Make static.  Add arch argument, and use it
1556         instead of inarch.  Change all callers.
1557         (main): Treat --version as -v.  Accept -t argument.  Accept any
1558         number of archive arguments.  Catch and use open_inarch return
1559         value, rather than using inarch.
1560         (open_inarch): Return newly opened BFD, rather than using inarch.
1561         (do_quick_append): Make archive_filename const.
1562         (write_archive): Add iarch argument, and use it instead of inarch.
1563         Change all callers.
1564         (delete_members, move_members, replace_members): Likewise.
1565         (ranlib_only): Don't exit on success.  Catch and use open_inarch
1566         return value.
1567         (ranlib_touch): New function.
1568         * arsup.h (map_over_members): Don't declare.
1569         (ar_end, ar_extract): Declare.
1570         (open_inarch): Change return value in declaration to bfd *.
1571         * arsup.c (map_over_list): Make static. Always pass two arguments
1572         to function.  Add arch argument, and use it instead of inarch.
1573         Change all callers.
1574         (ar_directory_doer): Make static.  Add ignored second argument.
1575         Change all callers.
1576         (ar_directory): Use open_inarch return value rather than inarch.
1577         (ar_addlib_doer): Make static.
1578         (ar_addlib): Use open_inarch return value rather than inarch.
1579         (ar_extract): Remove unused local variable abfd.
1580
1581 Thu Aug 11 14:55:57 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1582
1583         Add support for removing named sections to objcopy and strip.
1584         * objcopy.c (struct section_list): Define.
1585         (remove_sections): New static variable.
1586         (strip_options, copy_options): Add remove-section.
1587         (copy_usage, strip_usage): Mention -R and --remove-section.
1588         (setup_section): If section is in remove_sections list, ignore it.
1589         (copy_section): Likewise.
1590         (strip_main, copy_main): Handle -R.
1591         * binutils.texi, objcopy.1, strip.1: Document new options.
1592
1593 Wed Aug 10 10:19:55 1994  Stan Shebs  (shebs@andros.cygnus.com)
1594
1595         * nlmconv.c (powerpc_mangle_relocs): Rename symvalue to sym_value,
1596         so as not to conflict with the symvalue typedef in bfd.h.
1597
1598 Mon Aug  1 13:19:09 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1599
1600         * nlmheader.y: Per current NetWare docs, accept a revision number
1601         of 0 and treat a revision number greater than 26 as 0.
1602
1603 Mon Jul 25 12:58:36 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1604
1605         * objdump.c (objdump_print_address): Correct handling of end of
1606         symbols when looking for next symbol with a different value.
1607
1608 Fri Jul 22 16:48:34 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
1609
1610         * nm.c (numeric_forward): Treat undefined symbols as "less than"
1611         defined symbols with zero values.  If numeric values are equal, or
1612         both symbols are undefined, sort alphabetically.  Don't assume
1613         that the difference of two bfd_vma values will truncate to "int"
1614         and still have the same sign.
1615         (numeric_reverse): Call numeric_forward and negate the result.
1616         (print_symbol_info_bsd): For undefined symbols, print leading
1617         spaces equivalent to the width of a printed bfd_vma, rather than
1618         assuming that 8 will look right.
1619
1620 Fri Jul 22 10:36:50 1994  Steve Chamberlain  (sac@jonny.cygnus.com)
1621
1622         * coffgrok.c (doit):  Zero all fields of new structure. 
1623         * srconv.c (sysroff_swap_*_out): Remove redundant trailing arg. 
1624         * sysinfo.y: Generate sysroff_swap_*_out without requiring extra
1625         arg.
1626
1627 Fri Jul 22 10:09:53 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
1628
1629         * nlmheader.y: Make "stack" and "stacksize" synonyms in the lexer
1630           rather than the parser.
1631
1632 Thu Jul 21 10:25:09 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1633
1634         * config/mh-alphaosf, config/mh-apollo68v, config/mh-delta88:
1635         Remove; obsolete.
1636
1637 Sat Jul 16 22:34:39 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1638
1639         * objdump.c (slurp_dynamic_symtab): Try to get the dynamic symbols
1640         even if the bfd is not marked DYNAMIC.  ELF executables are not
1641         marked DYNAMIC, but do have dynamic symbols.
1642
1643 Fri Jul 15 01:41:35 1994  Steve Chamberlain  (sac@jonny.cygnus.com)
1644
1645         * coffgrok.c (do_where): Make data with no type 'int'.
1646         (do_define):  Keep info on source file of a symbol.
1647         * coffgrok.h (coff_symbol): New field.
1648         * srconv.c (PROGRAM_VERSION): Now 1.3
1649         (wr_rl): Use external ref number for symbol.
1650         (wr_dus): Only keep one source file per debug unit.
1651         (wr_dln): Always emit line numbers for first source file,
1652         (wr_globals):  Emit globals in the du of their owning source file.
1653
1654 Mon Jul 11 15:59:03 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
1655
1656         * nlmheader.y: Null terminate var_hdr->threadName.
1657
1658 Fri Jul  8 17:33:22 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
1659
1660         * Makefile.in (syslex.o, sysinfo.o): Permit C source files to be
1661         in $(srcdir), as they will be for FSF releases.
1662
1663 Wed Jul  6 01:13:14 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1664
1665         * nlmconv.c (setup_sections): Preserve existing section flags when
1666         copying in flags from a new section.
1667
1668 Tue Jul  5 15:56:01 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1669
1670         * objcopy.c: Include libiberty.h.
1671         (copy_file): If output_target is NULL, set it to the target of the
1672         input file.
1673
1674 Wed Jun 29 17:17:14 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
1675
1676         * nlmconv.c (link_inputs): Fixed memory allocation bug.
1677
1678 Thu Jun 23 12:52:46 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
1679
1680         * configure.in: Change --with-targets to --enable-targets.
1681
1682 Tue Jun 21 12:53:21 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1683
1684         * Makefile.in (sysinfo): Does not depend upon $(ADDL_LIBS).
1685
1686         * nlmconv.c (powerpc_build_stubs): Don't generate the PowerPC
1687         NetWare custom header; no longer needed.
1688         (powerpc_mangle_relocs): Convert relocs against the uninitialized
1689         data section into relocs against the data section.
1690
1691         * configure.in: Set nlmconv_defs to -DNLMCONV_cputype for all the
1692         netware targets.  Write it into Makefile as NLMCONV_DEFS.
1693         * Makefile.in (nlmconv.o): Pass $(NLMCONV_DEFS) to $(CC).
1694         * nlmconv.c: Only compile code for specific CPU types if
1695         NLMCONV_cputype is defined.
1696
1697         * nlmconv.c (main): Change uses of bfd_abs_section, etc., to use
1698         bfd_abs_section_ptr or bfd_is_abs_section, etc.
1699         (i386_mangle_relocs, alpha_mangle_relocs): Likewise.
1700         (powerpc_build_stubs): Likewise.
1701         * nm.c (filter_symbols, print_symbols): Likewise.
1702         * objcopy.c (filter_symbols): Likewise.
1703         (mark_symbols_used_in_relocations): Likewise.
1704         * objdump.c (remove_useless_symbols, dump_relocs): Likewise.
1705         * size.c (sysv_internal_printer): Likewise.
1706
1707 Mon Jun 20 16:43:03 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
1708
1709         * Makefile.in (MANPAGES): Remove $(DEMANGLER_PROG).
1710         (install): Install it explicitly, from build dir, not srcdir.
1711
1712 Mon Jun 20 16:29:54 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
1713
1714         * objdump.c: Don't include elf/internal.h.
1715         (bfd_elf_find_section): Don't declare.
1716         (read_section_stabs): No special handling for ELF.  Always read
1717         using BFD sections.
1718
1719 Thu Jun 16 17:25:20 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1720
1721         * configure.in: Set UNDERSCORE in Makefile based on result of
1722         invoking config.bfd with a second argument of ``_''.
1723         * Makefile.in (underscore.c): Depend upon Makefile.  Don't try to
1724         run $(CC) and $(NM), just use $(UNDERSCORE).  Create via temporary
1725         file.
1726         (demangle.o): Remove target.
1727         ($(NM_PROG)): Don't depend upon demangle.o, and don't link against
1728         demangle.o.  It's in libiberty anyhow.
1729         (cplus-dem.o): Don't depend upon demangle.o.
1730         * binutils.texi: Mention -n and --no-strip-underscores arguments
1731         to c++filt.
1732
1733 Wed Jun 15 12:10:31 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1734
1735         * nm.c (long_options): Add --no-demangle to turn off --demangle,
1736         and --no-cplus for Linux compatibility.
1737         (usage): Mention --no-demangle.
1738         * binutils.texi: Document --no-demangle.
1739
1740 Fri Jun 10 15:41:25 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1741
1742         * nm.c: HOST_64_BIT was renamed to BFD_HOST_64_BIT.
1743
1744         * objcopy.c (copy_archive): Make the temporary directory in the
1745         same directory as the output BFD, since we may not have write
1746         permission on the current directory.  Set the permissions of the
1747         new directory to 0700, not 0777.
1748
1749 Mon Jun  6 21:36:43 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
1750
1751         * configure.in: if this is an rs6000 (and we're not building for
1752         any other bfd targets) then build only nm (collect needs it on
1753         rs6000-lynx).
1754
1755         * Makefile.in: define TOOL_PROGS which the list of programes to
1756         install in $tooldir -- replaces a hard-coded list.
1757
1758 Fri Jun  3 10:59:18 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1759
1760         * objdump.c (display_target_list): Remove unused local ok.
1761
1762 Thu May 26 18:05:52 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
1763
1764         * config/mh-alphaosf (CFLAGS): Don't specify both -g and -O;
1765         they're not compatible under native cc.  Use -O1 instead.
1766
1767         * Makefile.in (VERSION): Updated to cygnus-2.4.1.
1768
1769         Changes from binutils-2.4 net release:
1770
1771         * Makefile.in (MANPAGES): Use $(DEMANGLER_PROG).
1772         ($(DEMANGLER_PROG).1): Build from cxxfilt.man, using sed.
1773         * cxxfilt.man: Renamed from c++filt.1, replaced "c++filt" with
1774         magic token to be replaced by sed.
1775
1776         Wed May 11 22:32:00 1994  DJ Delorie (dj@ctron.com)
1777
1778         * configure.bat: update for latest makefile.in
1779
1780 Fri May 13 23:25:13 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1781
1782         * bucomm.c: Check ANSI_PROTOTYPES rather than __STDC__.
1783
1784 Tue May 10 18:22:06 1994  Jason Molenda    (crash@sendai.cygnus.com)
1785
1786         * objcopy.c (copy_section): Set section size correctly if using
1787         interleave.
1788
1789 Sat May  7 16:49:36 1994  Steve Chamberlain  (sac@cygnus.com)
1790
1791         * Makefile.in: Add rule for sysinfo.h
1792
1793 Fri May  6 12:18:33 1994  Steve Chamberlain  (sac@cygnus.com)
1794
1795         * Makefile.in (SRCONV_PROG): Define.
1796         (PROGS): Use $(SRCONV_PROG) too.
1797
1798 Thu May  5 19:41:43 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
1799
1800         * Makefile.in (DISTSTUFF): Add sysinfo.c, syslex.c, in case
1801         someone configures with `targets=all'.
1802         (distclean): Remove y.*.
1803         (syslex.o): Depend on sysinfo.h.
1804         (sysinfo.c): Rename y.tab.h to sysinfo.h.
1805         (install-info): Don't try to install into $(infodir)/$(srcdir).
1806         * syslex.l: Include sysinfo.h, not y.tab.h.
1807
1808 Thu May  5 11:50:55 1994  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
1809
1810         * syslex.l (yywrap): Define as function if not defined as a macro.
1811
1812         * Makefile.in (objdump.o): Deleted special rule.
1813         * configure.in: Don't bother building ARCHDEFS variable for
1814         Makefile.
1815         * objdump.c (ARCH_*): Deleted handling.
1816         (disassemble_data): Call `disassembler' from opcodes library.
1817
1818 Thu May  5 13:28:42 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1819
1820         * Makefile.in (install): Correct handling of $(tooldir) and
1821         $(bindir) being on different devices.
1822
1823 Fri Apr 29 09:50:38 1994  Steve Chamberlain  (sac@cygnus.com)
1824
1825         * sysdump.c (h8300, sh): Add declarations.
1826
1827 Wed Apr 27 11:25:18 1994  Steve Chamberlain  (sac@cygnus.com)
1828
1829         * Makefile.in (syslex, sysinfo): Use CC_FOR_BUILD.
1830         * coffdump.c, coffgroc.c, coffgrog.h, srconv.c, sysdump.c,
1831         sysroff.info: Major changes.
1832
1833 Tue Apr 26 18:18:24 1994  Stan Shebs  (shebs@andros.cygnus.com)
1834
1835         * objdump.c (print_section_stabs): Indicate the stab header symbol
1836         more clearly, print numbers of unrecognized stab n_type values.
1837
1838 Tue Apr 26 16:22:55 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1839
1840         * nlmconv.c (copy_sections): Copy arelent pointers, not arelents.
1841
1842 Mon Apr 25 16:14:32 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1843
1844         * Makefile.in (distclean): Remove $(PROGS) and underscore.c.
1845
1846 Fri Apr 22 11:14:19 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1847
1848         * nlmconv.c (setup_sections): Remove special handling of .reginfo
1849         section.
1850         (copy_sections): Likewise.
1851         (alpha_mangle_relocs): Use bfd_ecoff_get_gp_value rather than the
1852         special ECOFF .reginfo section.
1853
1854         * objcopy.c (copy_object): Call bfd_copy_private_bfd_data after
1855         copying everything else, to let it fiddle with the file in its
1856         final state.
1857
1858         * objdump.c: Include libiberty.h.
1859         (display_target_list): If a format fails, just go on to the next
1860         one.  Check return value of bfd_set_format.
1861         (display_info_table): Likewise.  Don't increment loop variable in
1862         for loop test, since that skips the first element.
1863         (display_target_tables): Rewrite loop for clarity.  Ensure that it
1864         always prints at least one element.
1865
1866         * nlmconv.c (main): Use CyGnUsEx rather than CyGnUsSeCs for
1867         sections header.  Rename from cygnus_sections to cygnus_ext.
1868
1869 Thu Apr 21 12:12:26 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1870
1871         * objdump.c (_DUMMY_NAME_): Don't define.
1872         (display_target_list): Use tmpnam to get a file name rather than
1873         using _DUMMY_NAME_.  Unlink it when done.
1874         (display_info_table): Likewise.
1875
1876         * nlmconv.c (secsec): New static variable.
1877         (main): Create .nlmsections section in output BFD.  Store
1878         information about it in sections header.
1879         (setup_sections): Allocate space in sections header.
1880         (copy_sections): Copy zero sized sections.  Put information about
1881         each section in the sections header.
1882
1883 Wed Apr 20 14:34:51 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1884
1885         * nlmconv.c (powerpc_build_stubs): Take new outbfd argument.
1886         Change caller.  Create custom header for new PowerPC NetWare
1887         format.
1888
1889         * Makefile.in (nlmheader.o, nlmconv.o): Update dependencies.
1890         * nlmconv.c: Include bfd.h and libiberty.h with "", not <>.
1891         * nlmheader.y: Include bfd.h with "", not <>.
1892
1893 Wed Apr 13 10:52:50 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1894
1895         * objdump.c: Do an ifdef on __GO32__, not unix.
1896
1897 Wed Apr  6 21:54:49 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1898
1899         Added -D (--dynamic) option to nm and -T (--dynamic-syms) and -R
1900         (--dynamic-reloc) arguments to objdump.
1901         * nm.c (dynamic): New static variable.
1902         (long_options): Added "dynamic".
1903         (usage): Mention -D and --dynamic.
1904         (main): Add D to getopt string.  Handle -D by setting dynamic.
1905         (display_rel_file): If dynamic is non-zero, read dynamic symbols
1906         rather than normal symbols.
1907         * nm.1: Updated for -D (--dynamic) option.
1908         * objdump.c (dump_dynamic_symtab): New global variable.
1909         (dump_dynamic_reloc_info): New global variable.
1910         (dynsyms, dynsymcount): New global variables.
1911         (usage): Mention -R, -T, --dynamic-syms and --dynamic-reloc.
1912         (long_options): Added "dynamic-reloc" and "dynamic-syms".
1913         (slurp_symtab): If no symbols, return rather than exit.
1914         (slurp_dynamic_symtab): New function.
1915         (display_bfd): Handle dump_dynamic_symtab and
1916         dump_dynamic_reloc_info.
1917         (dump_symbols): Take new dynamic argument, indicating whether to
1918         display dynamic symbols.
1919         (dump_relocs): Move most printing into dump_reloc_set.
1920         (dump_dynamic_relocs): New function.
1921         (dump_reloc_set): New function, extracted from dump_relocs.
1922         (main): Add R and T to getopt string.  Handle -T by setting
1923         dump_dynamic_symtab and -R by setting dump_dynamic_reloc_info.
1924         * objdump.1: Updated for -R (--dynamic-reloc) and -T
1925         (--dynamic-syms) options.
1926         * binutils.texi: Updated for new nm and objdump options.
1927
1928 Wed Mar 30 15:52:40 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1929
1930         Update for recent BFD changes to symbol and reloc reading.  Rename
1931         all uses of get_symtab_upper_bound to bfd_get_symtab_upper_bound.
1932         Also:
1933         * coffgrok.c (symcount): Change to long.
1934         (do_sections_p1): Check for error return from
1935         bfd_get_reloc_upper_bound.  Change relcount to long, and check for
1936         error from bfd_canonicalize_reloc.
1937         (coff_grok): Change storage to long.  Check for error from
1938         bfd_get_symtab_upper_bound and bfd_canonicalize_symtab.
1939         * nlmconv.c (main): Change symcount, newsymalloc, newsymcount, and
1940         i to long.  Check for error from bfd_get_symtab_upper_bound and
1941         bfd_canonicalize_symtab.
1942         (copy_sections): Change reloc_size and reloc_count to long.  Check
1943         for error from bfd_get_reloc_upper_bound and
1944         bfd_canonicalize_reloc.
1945         (mangle_relocs, i386_mangle_relocs, alpha_mangle_relocs): Change
1946         reloc_count_ptr argument to long *.  Make corresponding changes to
1947         variables loaded from *reloc_count_ptr.
1948         * nm.c (display_rel_file): Change storage and symcount to long.
1949         Check for errors from bfd_get_symtab_upper_bound and
1950         bfd_canonicalize_symtab.
1951         * objcopy.c (filter_symbols): Change symcount, src_count and
1952         dst_count to long.
1953         (copy_object): Change symcount to long.  Pass another argument to
1954         fprintf.  Check for errors from bfd_get_symtab_upper_bound and
1955         bfd_canonicalize_symtab.
1956         (copy_section): Change relcount to long.  Check for errors from
1957         bfd_get_reloc_upper_bound and bfd_canonicalize_reloc.
1958         (mark_symbols_used_in_relocations): Change relcount and i to long.
1959         Check for errors form bfd_get_reloc_upper_bound and
1960         bfd_canonicalize_reloc.
1961         * objdump.c (storage): Remove global variable.
1962         (symcount): Changed to long.
1963         (slurp_symtab): New local variable storage.  Check for errors from
1964         bfd_get_symtab_upper_bound and bfd_canonicalize_symtab.
1965         (remove_useless_symbols): Change return value and count to long.
1966         (objdump_print_address): Change min, max, thisplace and i to long.
1967         (disassemble_data): Change i to long.
1968         (dump_symbols): Change count to long.
1969         (dump_relocs): Change relcount to long.  Check for errors from
1970         bfd_ret_reloc_upper_bound and bfd_canonicalize_reloc.
1971         (display_info_table): Add casts when passing LONGEST_ARCH for
1972         printf %* argument.
1973
1974 Tue Mar 29 14:59:04 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1975
1976         * nm.c (display_archive): Close each archive element after it has
1977         been displayed.
1978         * objdump.c (display_file): Likewise.
1979
1980 Mon Mar 28 13:04:08 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1981
1982         * configure.in: Change error message to refer to bfd/config.bfd
1983         rather than bfd/configure.in.
1984
1985 Sun Mar 27 16:23:39 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
1986
1987         * More fixes for object formats which allow multiple sections
1988         with the same name:
1989         * objcopy.c (setup_section): Make a new output section even if
1990         one already exists with the given name.
1991         (copy_section): Use isection->output_section rather than trying
1992         to look the output section up by its (possibly non-unique) name.
1993
1994         * Makefile.in (install-info): Look for binutils.info in the
1995         current directory, then in $(srcdir).  Don't use $<.
1996
1997 Mon Mar 21 12:55:45 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
1998
1999         * objdump.c (objdump_print_address): Make static.  Declare with
2000         prototype.  Change vardiff from int to bfd_signed_vma.  Correct
2001         binary search termination condition.  When looking for same
2002         section symbol in relocatable file, handle final symbol correctly.
2003
2004 Sun Mar 20 11:26:36 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
2005
2006         * Makefile.in: Avoid bug in hpux sed.
2007
2008         * objcopy.c: Changes to keep it from stripping symbols used
2009         in output relocations.
2010         (mark_symbols_used_in_relocations): New function.  Mark symbols
2011         used in output relocations with BSF_KEEP.
2012         (filter_symbols): Do not strip symbols marked with BSF_KEEP.
2013         (copy_object): Reorder actions.  First setup sections, then
2014         build the output symbol table, then copy the section contents.
2015
2016 Fri Mar 18 10:53:55 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2017
2018         * ar.c (write_archive): Allocate space for the null byte.  From
2019         Robert Lipe <robertl@arnet.com>.
2020
2021 Thu Mar 17 16:20:28 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2022
2023         * Makefile.in: Built nm.new and strip.new to avoid problems with
2024         collect when . is in PATH.
2025         (STRIP_PROG): Change from strip to strip.new.
2026         (NM_PROG): Change from nm to nm.new.
2027         (install): Remove the .new when installing.
2028
2029 Wed Mar 16 16:27:05 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2030
2031         * nlmconv.c (powerpc_build_stubs): Set BSF_DYNAMIC flag for each
2032         symbol for which we build a stub.
2033         (powerpc_mangle_relocs): Only reset TOC pointer for a call to a
2034         symbol with BSF_DYNAMIC flag set.
2035
2036 Tue Mar 15 23:04:13 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
2037
2038         * objcopy.c (filter_symbols): Use bfd_is_local_label to determine
2039         if a symbol represents a compiler-generated local label.
2040         (copy_object): Give the BFD backends a chance to copy any private
2041         bfd data from the input BFD to the output BFD.
2042         (setup_section): Give the BFD backends a chance to copy any private
2043         section data from the input section to the output section.
2044
2045 Mon Mar 14 11:15:58 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
2046
2047         * objcopy.c (mangle_section): Delete unused function.
2048         (setup_section): Set osection here instead of calling
2049         mangle section to do it.
2050
2051 Mon Mar 14 12:11:01 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2052
2053         * ar.c (write_archive): Close inarch before unlinking it.
2054
2055 Fri Mar 11 22:20:48 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2056
2057         * nlmconv.c (main): For PowerPC, call powerpc_build_stubs and
2058         powerpc_resolve_stubs.  Use __GOT0, not __toc_start.  Handle it if
2059         the start and end symbols are not in the text section.
2060         (struct powerpc_stub): New struct definition.
2061         (powerpc_stubs, powerpc_stub_insns): New static variables.
2062         (powerpc_initial_got_size): New static variable.
2063         (powerpc_build_stubs): New function.
2064         (powerpc_resolve_stubs): New function.
2065         (powerpc_mangle_relocs): Clear extraneous data in .got section.
2066         Rearrange reloc handling to handle ELF relocs that are not
2067         partial_inplace.  Resolve PC relative relocs.
2068
2069 Wed Mar  9 13:48:11 1994  Steve Chamberlain  (sac@jonny.cygnus.com)
2070
2071         * ar.c (move_members): Fix it so that the abi positional modifiers
2072         don't delete all archive members following the insert point.
2073
2074 Tue Mar  8 13:14:43 1994  Steve Chamberlain  (sac@jonny.cygnus.com)
2075
2076         * coffgrok.[ch]: New files, understand coff objects.
2077         * coffdump.c: Uses coffgrok to dump out the debug info of a coff
2078         file.
2079         * sysroff.info: Description of a SYSROFF object file.
2080         * sysinfo.y, syslex.l: Parse info file, generate a reader, writer,
2081         header files and a printer.
2082         * srconv.c: Uses coffgrok.c and sysroff.info to convert a coff
2083         file to a SYSROFF file.
2084
2085 Sat Feb 26 13:35:26 1994  Stan Shebs  (shebs@andros.cygnus.com)
2086
2087         * ar.c (do_quick_append): Pad with a genuine character 10,
2088         rather than whatever '\n' might happen to be.
2089
2090 Tue Feb 22 18:25:52 1994  Ian Lance Taylor  (ian@cygnus.com)
2091
2092         * nlmconv.c (main): Ignore debugging symbols when looking for
2093         special symbols by name.
2094
2095 Sun Feb 20 18:47:42 1994  Ian Lance Taylor  (ian@lisa.cygnus.com)
2096
2097         * nlmconv.c: Include libiberty.h.
2098
2099         Support for PowerPC NetWare.
2100         * nlmconv.c (main): For PowerPC NetWare, automatically define the
2101         special symbols __toc_start.
2102         (select_output_format): Handle bfd_arch_powerpc.
2103         (mangle_relocs): Likewise.
2104         (powerpc_mangle_relocs): New function.
2105
2106 Thu Feb 17 09:28:23 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2107
2108         * ar.c, bucomm.c, nlmconv.c, nm.c, objcopy.c, objdump.c, 
2109         size.c: Use bfd_get_error and bfd_set_error and new error names.
2110
2111 Fri Feb 11 15:54:51 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2112
2113         * objcopy.c (strip_main, copy_main): Add missing 'break' in switch.
2114
2115 Mon Feb  7 19:45:52 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2116
2117         * objdump.c (disassemble_data): Handle bfd_arch_powerpc.
2118
2119 Sun Feb  6 22:08:20 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2120
2121         * strings.c objdump.c nlmconv.c objcopy.c nm.c ar.c size.c (main):
2122         Call xmalloc_set_program_name.
2123
2124 Fri Feb  4 10:46:01 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2125
2126         * objcopy.c (filter_bytes): Make MEMHUNK a char *, not PTR, so we
2127         can do arithmetic on it.
2128
2129 Thu Feb  3 14:06:41 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2130
2131         * objdump.c (dump_section_stabs, read_section_stabs,
2132         print_section_stabs): Functions broken out of dump_stabs_1.
2133         Free the stabs and strings when done with them.
2134
2135 Wed Feb  2 13:42:23 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2136
2137         * nlmconv.c (main): Use bfd_get_flavour instead of struct member.
2138         * ar.c (print_contents, extract_file), size.c
2139         (print_berkeley_format, print_sysv_format): Use bfd_get_filename and 
2140         bfd_my_archive instead of dereferencing the structs directly.
2141
2142         * ar.c: Use bfd_fatal and bfd_nonfatal instead of bfd_perror and exit.
2143         Indent.  Remove DEFUNs.
2144
2145         * nlmconv.c (main), objcopy.c (copy_file): Print matching formats
2146         if ambiguous match.
2147         * nm.c (display_file, display_archive), size.c (display_bfd):
2148         Eliminate gotos.
2149         Print matching formats if there is an ambiguous match.  Use
2150         bfd_nonfatal instead of hardcoded error message if nothing matches.
2151
2152         * arsup.c, ar.c, objdump.c: Use bfd_get_filename instead of
2153         abfd->filename. 
2154
2155         * nm.c (display_archive): New function, from code in display_file.
2156         (display_rel_file): Renamed from do_one_rel_file.
2157
2158         * size.c: Indent.
2159         (display_archive): New function from code in display_file.
2160         (display_file): Check bfd_close error return.
2161
2162         * strings.c (strings_object_file): Check bfd_check_format
2163         error return.
2164
2165         * strings.c, objdump.c, size.c: Use bfd_nonfatal instead of bfd_perror.
2166
2167         * bucomm.c: Delete references to exit_handler.  It wasn't set
2168         anywhere, and now that we're using the libiberty xmalloc, it
2169         wouldn't always get called before exiting.
2170         (list_matching_formats): Function moved from objdump.c.
2171         * bucomm.h: Declare it.
2172
2173         * objdump.c (disassemble_data): Move some variable decls closer to
2174         their use.  Add some comments.  Replace a nested block with a
2175         return. 
2176
2177 Mon Jan 31 18:50:41 1994  Stan Shebs  (shebs@andros.cygnus.com)
2178
2179         * objdump.c (display_target_list, display_info_table): Check that
2180         the bfd of the dummy output file is not null.
2181
2182 Wed Jan 26 13:13:18 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2183
2184         * objcopy.c (filter_bytes): New function.
2185         (copy_section): Call it.
2186         (copy_options, copy_usage, copy_main): Add --byte option to
2187         activate it.  Appropriate the -b option (which was an undocumented
2188         synonym for -F) for it, also.  Add --interleave, -i option for
2189         additional control.
2190         (setup_section, copy_section, mangle_section): Renamed with no `s'
2191         on the end.
2192         * objcopy.1, binutils.texi: Document the new options.
2193
2194         * objdump.c (display_target_tables, display_target_list):
2195         New functions broken out of display_info.
2196         Eliminate some magic constants.  Use more meaningful variable names.
2197         (dump_bfd_header): New function broken out of display_bfd.
2198         (dump_section_header): New function broken out of dump_headers.
2199         (remove_useless_symbols): Don't shadow global variable name with
2200         parameter. 
2201         (objdump_print_address): Fix backward test.
2202
2203 Tue Jan 25 19:40:54 1994  Stan Shebs  (shebs@andros.cygnus.com)
2204
2205         * bucomm.c (print_arelt_descr): Change decl of `when' to time_t.
2206         * objdump.h: Removed.
2207
2208 Mon Jan 24 13:29:02 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2209
2210         * objdump.c (display_file): Remove call to list_matching_formats.
2211         It would never be called.
2212         (list_matching_formats): Take an arg giving the list of matching
2213         formats.
2214         (display_bfd): Pass the arg, and get it filled in by calling
2215         bfd_check_format_matches instead of bfd_check_format.
2216         (display_info, display_info_table): target_vector was renamed to
2217         bfd_target_vector. 
2218
2219         * binutils.texi (objdump): Note some limitations of -h section
2220         address printing.
2221
2222 Sat Jan 22 16:20:46 1994  Stan Shebs  (shebs@andros.cygnus.com)
2223
2224         * Makefile.in (MALLOC): Set to emptiness by default.
2225         (ALL_CFLAGS): Add and use.
2226         (arparse.h): Make it depend on arparse.y.
2227         * ar.c (libbfd.h): Don't require to be in ../bfd.
2228         * objdump.c (comp): Rename to compare_symbols.
2229
2230 Fri Jan 21 20:22:30 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2231
2232         * objdump.c (list_matching_formats): If the file format is ambiguous,
2233         print the matching names so the user can choose one.
2234         (display_bfd): Call it.
2235         (display_file): Call it.
2236
2237 Fri Jan 21 19:17:25 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2238
2239         * objdump.c (disassemble_data): Support bfd_arch_rs6000.
2240
2241 Mon Jan 17 13:57:25 1994  Stan Shebs  (shebs@andros.cygnus.com)
2242
2243         * objdump.c (stab_name): Allocate dynamically.
2244         (stab_print): Use pointers to strings instead of char arrays.
2245         (dump_stabs): Change alloc and init of arrays appropriately.    
2246         (dump_stabs_1): Always decide whether to print stab_name or
2247         the stab's type number, if unnamed.
2248
2249 Fri Jan 14 14:42:48 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2250
2251         * objcopy.c (strip_main, copy_main): Don't clobber the input file
2252         if copy_file fails.
2253
2254         * nlmconv.c (main): Warn about an attempt to use a shared library
2255         with uninitialized data.
2256
2257         * nlmconv.c (setup_sections): Make sure that we align the
2258         output_offset of each input section appropriately.
2259
2260 Thu Jan 13 17:32:44 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2261
2262         * objdump.c (dump_relocs): Don't crash if section name is NULL.
2263
2264 Tue Jan 11 19:46:33 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2265
2266         * filemode.c (filemodestring): Commented out; not used.
2267         (mode_string): Use POSIX definitions.
2268         (ftypelet): Likewise.
2269         (rwx): Removed; no longer used.
2270         * bucomm.c: Include bucomm.h.
2271         (bfd_nonfatal, bfd_fatal): Argument is const.
2272         (fatal): Make __STDC__ version.
2273         * bucomm.h (mode_string): Declare.
2274         * Makefile.in (bucomm.o): Depend upon bucomm.h
2275
2276 Sun Jan  9 12:03:20 1994  Ken Raeburn  (raeburn@rtl.cygnus.com)
2277
2278         * bucomm.c (xmalloc, xrealloc): Deleted.
2279         * bucomm.h (xmalloc, xrealloc): Fix prototypes, to correspond to
2280         libiberty version of functions.
2281
2282 Thu Jan  6 06:18:15 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2283
2284         * binutils.texi: Add a chapter summarizing the ways to select
2285         aspects of the target for each program.
2286
2287         * objdump.c (long_options, usage): Add long equivalents for all
2288         remaining short options that lacked them.
2289         * binutils.texi objdump.1: Document them.
2290
2291         * size.c (usage): Tweak usage message.
2292         * size.1: Add missing `=' in examples.
2293
2294         * binutils.texi strip.1 objcopy.1 nlmconv.1 objcopy.c nlmconv.c:
2295         Use "--target=bfdname" as the option to select the BFD target,
2296         like nm and size already do.
2297         Reserve "--format=format" for textual output selection options, but
2298         for now keep old option names as obsolete for backward compatibility.
2299
2300         * strings.c (main, strings_object_file, usage): Add --target option.
2301         * binutils.texi strings.1: Document it.
2302
2303 Sat Jan  1 13:58:24 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
2304
2305         * ar.c (main): Add \n in error message.
2306
2307 Thu Dec 23 12:23:11 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2308
2309         gcc -Wall lint:
2310         * ar.c (main): Put parens around assignment used as truth value.
2311         * objcopy.c (strip_main): Remove unused variables.  Return 0.
2312         (copy_main): Remove unused variables.  Return 0.
2313         * objdump.c (display_bfd): Declare return value as void.
2314         (stab_print): Use "" instead of 0 to initialize array.
2315         (dump_stabs_1): Print vma using printf_vma.
2316         (display_info): Put parens around assignment used as truth value.
2317         * strings.c (print_strings): Cast printf arguments.
2318
2319         * objcopy.c (copy_main): Use copy_options, not strip_options.
2320
2321         * nlmheader.y (command): Warn about illegal date values.
2322
2323 Wed Dec 15 11:18:03 1993  David J. MacKenzie  (djm@frosty.eng.umd.edu)
2324
2325         * bucomm.c bucomm.h: Run through indent.  De-ansidecl-ify.
2326         (bfd_nonfatal): New function.
2327         (bfd_fatal): Call it.
2328
2329         * objcopy.c (smart_rename): Do a copy if the dest file has
2330         multiple hard links.  Remove source file on successful copy.
2331         Try to preserve mode and owner on successful rename.
2332
2333         * objcopy.c: Run through indent.  Clean up a bit.
2334         Make global variables static.
2335         Make {input,output}_{target,filename}, show_version local
2336         to various functions.
2337         New global variable `status' for exit status.
2338         (strip_main, copy_main): New functions with code from main.
2339         (nonfatal): New macro.  Use it globally instead of bfd_perror and
2340         bfd_fatal.
2341
2342         (copy_object): Call mangle_sections with bfd_map_over_sections.
2343         (mangle_sections): Adjust for new calling convention.
2344
2345 Fri Dec 10 11:28:11 1993  Ian Lance Taylor  (ian@deneb.cygnus.com)
2346
2347         * nlmheader.y (command): Accept MAP and FULLMAP without arguments.
2348         * nlmconv.c (main): Change error message for MAP and FULLMAP.
2349
2350 Thu Dec  9 17:47:19 1993  Ian Lance Taylor  (ian@deneb.cygnus.com)
2351
2352         * nlmconv.c (main): Warn about imported symbols that are not in
2353         the IMPORT list even if the IMPORT keyword is not used.
2354
2355         * nlmconv.c (debug, unlink_on_exit): New static variables.
2356         (long_options): Add "debug" and "linker".
2357         (main): Handle -d and -l arguments.  Make command line input and
2358         output files optional.  Parse the command file before opening the
2359         BFD's, which requires storing more information in local variables.
2360         If INPUT names multiple files, link them together.  Use OUTPUT for
2361         the output file name if not named on command line.
2362         (show_usage): Changed for new options.
2363         (link_inputs): New function to automatically invoke linker to
2364         handle multiple INPUT files.
2365         (choose_temp_base_try, choose_temp_base, pexecute): New functions,
2366         mostly copied from gcc/gcc.c.
2367         * nlmconv.h (input_files, output_file): Declare.
2368         * nlmheader.y (input_files, output_file): Define.
2369         (command): Support INPUT with a string_list argument.  Support
2370         OUTPUT.
2371         (string_list): Renamed from module_list.
2372         * Makefile.in (nlmconv.o): Define LD_NAME based on
2373         program_transform_name.
2374
2375 Wed Dec  8 10:09:04 1993  Ian Lance Taylor  (ian@deneb.cygnus.com)
2376
2377         * nlmheader.y (nlmheader_identify): New function.  Use it to print
2378         the program name just once, instead of with every error message.
2379
2380 Mon Dec  6 16:11:32 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2381
2382         * nlmconv.c (long_options): Changed --header-info to --header-file
2383         to match documentation and usage message.
2384
2385 Sun Dec  5 01:31:01 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)
2386
2387         * objdump.c (dump_relocs): Avoid dereferencing a NULL sym_ptr_ptr
2388         in a relocation.
2389
2390 Thu Dec  2 16:00:06 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2391
2392         * nlmconv.c (main): Change various types from bfd_size_type to
2393         size_t, since they have to be arguments to fread and fwrite.
2394         Change set from char * to unsigned char *.
2395         (select_output_format): Make mach argument unsigned.  Handle
2396         bfd_arch_alpha.
2397         (setup_sections): Don't copy the .reginfo section of an ECOFF
2398         file.  Call bfd_set_reloc to initialize the relocation fields.
2399         (copy_sections): Don't copy the .reginfo section of an ECOFF file.
2400         Combine all relocs for a section.
2401         (mangle_relocs): Change type of relocs to permit specific
2402         functions to change it.  Call alpha_mangle_relocs for alpha,
2403         default_mangle_relocs for other architectures.
2404         (default_mangle_relocs): New function.  Adjust the address of all
2405         relocs by the output_offset.
2406         (i386_mangle_relocs): Change type of relocs argument.  Cast length
2407         argument to memmove to size_t.
2408         (alpha_mangle_relocs): New function.    
2409
2410 Wed Nov 17 17:38:58 1993  Sean Eric Fagan  (sef@cygnus.com)
2411
2412         * nlmconv.c (select_output_format): Use nlm32-sparc for
2413         bfd_arch_sparc.
2414
2415 Wed Nov 17 14:41:35 1993  Jeffrey Osier  (jeffrey@thepub.cygnus.com)
2416
2417         * nlmconv.1:   added man page
2418         * objcopy.1:   fixed format errors
2419
2420 Wed Nov 17 12:03:41 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2421
2422         * Makefile.in: Use CFLAGS as well as LDFLAGS when linking.
2423
2424 Wed Nov 17 04:50:55 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2425
2426         * strings.1: Fix typo.
2427
2428 Mon Nov 15 12:03:20 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
2429
2430         * Makefile.in (DISTSTUFF): Build "info".
2431         (VERSION): Updated to cygnus-2.3.1; 2.3 has gone out.
2432
2433 Sun Nov 14 00:27:24 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)
2434
2435         * objdump.c (dump_stabs): Handle stabs-in-som as implemented
2436         by the new BFD SOM assembler.
2437
2438 Sat Nov 13 07:14:05 1993  David J. Mackenzie  (djm@rtl.cygnus.com)
2439
2440         * ar.1 c++filt.1 nm.1 objcopy.1 objdump.1 ranlib.1 size.1
2441         strings.1 strip.1: Replace \(em in NAME section with \- so
2442         makewhatis can grok it.
2443
2444 Tue Nov  9 15:22:12 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2445
2446         * nlmconv.c (i386_mangle_relocs): Adjust reloc address by
2447         section output_offset.
2448
2449 Fri Nov  5 12:11:52 1993  Jeffrey Osier  (jeffrey@thepub.cygnus.com)
2450
2451         * binutils.texi:  added nlmconv chapter
2452
2453 Wed Nov  3 16:10:50 1993  Jeffrey Wheat  (cassidy@cygnus.com)
2454
2455         * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
2456
2457 Wed Nov  3 15:09:23 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
2458
2459         * Makefile.in (distclean): Don't get rid of dvi or info files.
2460
2461 Tue Nov  2 13:29:59 1993  David J. Mackenzie  (djm@rtl.cygnus.com)
2462
2463         * objcopy.c (S_ISLNK): Define as 0 if there's no S_IFLNK.
2464
2465 Fri Oct 29 16:02:34 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2466
2467         * binutils.texi: Move objcopy docs into alphabetical order.
2468
2469         * objdump.c: Use xmalloc instead of malloc.
2470
2471 Fri Oct 29 11:11:14 1993  Stan Shebs  (shebs@rtl.cygnus.com)
2472
2473         * objdump.c (info): Rename to formats_info.
2474         (dump_stabs_1): Better comments and formatting.
2475
2476 Thu Oct 28 19:43:16 1993  Stan Shebs  (shebs@rtl.cygnus.com)
2477
2478         * ar.c (main): Always create the archive when quick appending,
2479         even if no input files have been given.
2480
2481 Wed Oct 27 12:03:06 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2482
2483         * nlmconv.c (main): Set sharedDebugRecordOffset and
2484         sharedDebugRecordCount fields in extended header.
2485
2486         * nlmconv.c (main): Force moduleName field to upper case.
2487
2488 Mon Oct 25 16:45:42 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2489
2490         * objcopy.c (main): Give a usage message if there are too many
2491         arguments.
2492
2493 Mon Oct 25 10:37:08 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
2494
2495         * Makefile.in (install-info): Rewrite to take advantage of VPATH,
2496         so FSF distributions (with info files in $(srcdir)) install
2497         properly.
2498         (DISTSTUFF): Build nlmheader.c too.
2499
2500 Fri Oct 22 11:43:23 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
2501
2502         * ar.c (program_name): Don't define here.
2503         * objdump.c: Include "bucomm.h".
2504         (xmalloc): Don't declare here.
2505         (program_name): Don't define here.
2506         (program_version): Fixed type in declaration.
2507         * size.c: Include "bucomm.h".
2508         (program_name): Don't declare here.
2509
2510 Fri Oct 22 14:10:41 1993  Mark Eichin  (eichin@cygnus.com)
2511
2512         * objdump.c (fprintf): hide declaration in FPRINTF_ALREADY_DECLARED
2513
2514 Fri Oct  1 12:43:00 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2515
2516         * nlmconv.c (i386_mangle_relocs): Resolve and remove PC relative
2517         relocs against defined symbols in the same section.
2518
2519 Thu Sep 30 16:46:26 1993  Roland H. Pesch  (pesch@fowanton.cygnus.com)
2520
2521         * Makefile.in (binutils.dvi): use TEXIDIR to find texinfo.tex
2522
2523 Sat Sep 25 18:09:29 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2524
2525         * objcopy.c (simple_copy, smart_rename): New functions.
2526         (main): Use them.
2527
2528 Fri Sep 24 15:38:29 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2529
2530         * Makefile.in (clean, distclean): Recurse into testsuite.
2531
2532 Thu Sep 23 01:05:06 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2533
2534         * objcopy.c (setup_sections, copy_sections): If stripping, don't
2535         copy SEC_DEBUGGING sections.
2536         * objdump.c (dump_headers): Print SEC_DEBUGGING flag.
2537
2538         * objdump.c (usage): Mention --stabs.
2539
2540         * objcopy.c (copy_object): Copy all applicable file flags.
2541         (copy_file): Don't copy EXEC_P specially here.
2542
2543 Mon Sep 20 19:28:57 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2544
2545         * nlmconv.c (main): Adjust data section size to correspond to bss
2546         alignment adjustment.  Clear BSF_SECTION_SYM if symbol is moved to
2547         a different section.  Use time_t for time variable.
2548         (setup_sections): Only put sections with contents in output NLM.
2549         (i386_mangle_relocs): No symbols are common at this point.  Add
2550         casts to avoid warnings.        
2551
2552 Fri Sep 10 11:00:40 1993  Stan Shebs  (shebs@rtl.cygnus.com)
2553
2554         * objdump.c: Made the --stabs option work for stabs-in-coff.
2555         (ELF_STAB_DISPLAY): Removed.
2556         (dump_elf_stabs): Renamed to dump_stabs, changed to run for
2557         any object file format.
2558         (dump_elf_stabs_1): Renamed to dump_stabs_1, added calls to
2559         generic BFD routines for non-ELF case, changed format of message
2560         for no-section-found case.
2561         (display_bfd): Always call dump_stabs if requested.
2562         (dump_data): Call bfd_section_size to get section size.
2563
2564 Fri Sep 10 08:12:23 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2565
2566         * Makefile.in (install): Don't put strings in tooldir/bin.
2567
2568 Mon Sep  6 15:39:04 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2569
2570         * nlmconv.c (total_bss_size): Removed.
2571         (main): Set the bss vma to always follow the data section.  Move
2572         symbols into new sections, and adjust values by output_offset.
2573         (setup_sections): Don't copy all sections, but instead point all
2574         text sections to .text, all data sections to .data, and all bss
2575         sections to .bss.
2576         (copy_sections): Adjust accordingly.
2577
2578 Thu Sep  2 12:34:03 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2579
2580         Only build nlmconv if configured for a NetWare target.
2581         * configure.in: If we have some *-*-netware* target, or are using
2582         all targets, set BUILD_NLMCONV to $(NLMCONV_PROG) in Makefile.
2583         * Makefile.in (PROGS): Use $(BUILD_NLMCONV) rather than
2584         $(NLMCONV_PROG).
2585
2586 Tue Aug 31 14:13:35 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
2587
2588         * objdump.c (ARCH_all): Define ARCH_hppa too.
2589         (dump_headers): Don't test for SEC_BALIGN if it's not defined by
2590         bfd.h.
2591
2592 Tue Aug 31 13:29:12 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2593
2594         * nlmconv.c (main): Force creation of .bss section.  Set up the
2595         sections before looking at the symbols.  Move all common symbols
2596         into .bss section.  Automatically define _edata and _end.  Only
2597         export symbols in the export list, with multiple prefixes if
2598         necessary.  Warn if no version.  Always create extended header.
2599         Set date automatically if not already set.
2600         (setup_sections): Count size of bss sections.
2601         (mangle_relocs, i386_mangle_relocs): Accept section argument, and
2602         take reloc_count as a changeable pointer; changed callers.
2603         (i386_mangle_relocs): Remove PC relative relocs within a section,
2604         as they require no adjustment.
2605         * nlmheader.y: Fixed memory allocation throughout: token STRING is
2606         now allocated on the heap, and freed if not needed.  Null
2607         terminated copyright message.  Accept version with only two
2608         strings.
2609         (symbol_list_opt): New nonterminal, either symbol_list or empty.
2610         (symbol_list): Use left recursion to avoid overflowing parser
2611         stack.
2612         (yylex): Rearranged beginning of line check.  Accept quoted
2613         strings using single quotes.  End generic argument at comment
2614         character or parentheses.
2615         (string_list_append): Fixed.
2616         (string_list_append1): New function.
2617
2618         * bucomm.h: The first argument to xrealloc is PTR, not char *.
2619         * bucomm.c (xrealloc): Use PTR rather than char *.
2620         * Makefile.in (objdump.o): Depend upon config.status to notice
2621         --with-targets changes.
2622         (nlmconv.o): Depend upon bucomm.h.
2623
2624 Tue Aug 17 09:46:01 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2625
2626         * configure.in: Don't pass cpu to config.bfd.
2627
2628 Thu Aug 12 16:43:04 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2629
2630         * Makefile.in ($(NM_PROG)): Depend on demangle.o.
2631         (demangle.o): New target.
2632         (cplus-dem.o): Depend on it, to force compilation order when doing
2633         parallel compiles.
2634
2635         * nm.c (print_symbol_info_{bsd,sysv,posix}): Take a bfd arg.
2636         (struct output_fns print_symbol_info): Ditto.
2637         (long_options, usage, main): Add -C --demangle option.
2638         (print_symname): New function, demangling if requested.
2639         (print_symbols, print_symbol_info_{bsd,sysv,posix}): Use it.
2640
2641 Wed Aug 11 22:57:23 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2642
2643         * Makefile.in: Put CFLAGS last in compilation rules and omit from
2644         linking rules.  Use ARCHDEFS to compile objdump.c.
2645         Update dependencies.
2646         * configure.in: Construct ARCHDEFS based on the BFD target makefile
2647         fragments.
2648         * objdump.c: Conditionalize calls to the print_insn_ARCH functions
2649         according to ARCHDEFS.
2650
2651 Thu Aug 12 08:06:15 1993  Ian Lance Taylor  (ian@cygnus.com)
2652
2653         * ar.c: Removed obsolete and non-functional GNU960 code.
2654
2655 Wed Aug 11 13:08:26 1993  Ian Lance Taylor  (ian@cygnus.com)
2656
2657         * size.c (berkeley_sum): New function.
2658         (bsssize, datasize, textsize): New global variables.
2659         (bss_section_name, data_section_name, text_section_name): Removed.
2660         (print_berkeley_format): Map berkeley_sum over all the sections,
2661         rather than only reporting sizes of specifically named sections.
2662         * Makefile.in ($(OBJDUMP_PROG)): Removed dependency on size.o.
2663
2664 Tue Aug 10 10:46:01 1993  Ian Lance Taylor  (ian@cygnus.com)
2665
2666         * nlmconv.c, nlmconv.h, nlmheader.y: New files for program to
2667         convert object files into NetWare Loadable Modules.
2668         * Makefile.in (NLMCONV_PROG): New macro, define to be nlmconv.
2669         (PROGS): Add NLMCONV_PROG.
2670         (nlmheader.c, nlmheader.o, nlmconv.o, $(NLMCONV_PROG)): New
2671         targets.
2672
2673 Thu Aug  5 15:48:32 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
2674
2675         * Makefile.in: define MAKEOVERRIDES to an empty string
2676
2677 Wed Aug  4 17:08:08 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2678
2679         * objcopy.c (copy_file): Make failures to process a file nonfatal.
2680
2681 Mon Aug  2 11:28:23 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2682
2683         * nm.c: Add -B option, like --format=bsd.
2684
2685 Tue Jul 27 16:29:54 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2686
2687         * objcopy.c (copy_file): If the file is neither an object nor an
2688         archive, give an error rather than returning success.
2689
2690 Mon Jul 19 16:13:40 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
2691
2692         * objdump.c (objdump_print_address): Prefer non-local symbols over
2693         local ones, and especially discriminate against debugging symbols.
2694         Also, for relocateable files, try to find a symbol in the current
2695         section, instead of picking one from some random section with a
2696         convenient value (read, section offset).
2697         (disassemble_data): Cast argument to malloc to size_t first.
2698         (dump_data): Likewise.
2699         (dump_relocs): If a single section name is specified, show relocs
2700         only for that section.  Otherwise, silently omit sections without
2701         relocs.  Format table nicely even if values are printed using 16
2702         digits instead of 8.
2703
2704 Fri Jul 16 15:19:59 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2705
2706         * nm.c: Changes for final version of POSIX.2.
2707         (print_symbol_filename_{bsd,sysv,posix}): New functions.
2708         (formats): Add an element for a pointer to them.
2709         (print_symbols): Call it.
2710         (print_object_filename_posix, print_archive_member_posix): Produce
2711         output according to new POSIX.2 spec.
2712
2713         * strings.c (print_strings): Handle STREAM being NULL.
2714         (strings_a_section): Pass a NULL.
2715         (main): Don't open /dev/null.
2716
2717 Thu Jul 15 12:44:09 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
2718
2719         * objdump.c (disassemble_data): Handle the m88k.
2720         (display_bfd): Use bfd_errmsg, rather than just claiming that the
2721         bfd is not an object file.
2722
2723 Mon Jul 12 17:55:34 1993  K. Richard Pixley  (rich@cygnus.com)
2724
2725         * Makefile.in (TAGS): make work again by naming directories
2726           explicitly rather than depending on undefined macros.
2727           (INSTALL_XFORM): correct bad install target.
2728
2729 Fri Jul  2 16:58:34 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2730
2731         * strings.c: Doc fixes.
2732
2733 Sun Jun 27 13:35:24 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2734
2735         * Makefile.in: Note dependencies on bucomm.h.
2736         (cplus-dem.o): Link c++filt with version.o.
2737
2738         * strings.c: Include bucomm.h and add prototypes to other decls.
2739         Remove -h option.
2740
2741         * bucomm.h: Declare xrealloc.
2742
2743         * nm.c, objcopy.c, objdump.c, size.c, strings.c (main, usage): Add
2744         --help option.  Put "GNU" in the version message.
2745         (usage): Take stream and exit status as args.
2746         (main): Pass new args to usage.
2747
2748 Fri Jun 25 23:12:12 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
2749
2750         * strings.c, strings.1: New files.
2751         * binutils.texi: Document strings.
2752         * Makefile.in: Add rules for it.
2753
2754 Fri Jun 25 20:44:43 1993  Ken Raeburn  (raeburn@poseidon.cygnus.com)
2755
2756         * objdump.c: Use size-independent bfd elf section names.
2757
2758 Sun Jun 20 23:09:06 1993  Ken Raeburn  (raeburn@poseidon.cygnus.com)
2759
2760         * objdump.c (objdump_print_address): Handle wide offsets by
2761         calling sprintf_vma.
2762
2763 Fri Jun 18 14:29:12 1993  Per Bothner  (bothner@deneb.cygnus.com)
2764
2765         * objdump.c (syms2):  Removed unused variable.
2766         * objdump.c (remove_useless_symbols):  New function.
2767         * objdump.c (comp):  Simplify.
2768         * objdump.c (dis-assemble_data):  Make simpler and more
2769         efficient how we filter out useless symbols:  Just filter
2770         BEFORE the sort (using remove_useless_symbols).
2771         * objdump.c (objdump_print_address):  Simplify.
2772         Change output syntax to match gdb.
2773
2774 Thu Jun 17 16:53:56 1993  david d `zoo' zuhn (zoo@cygnus.com)
2775         
2776         * Makefile.in: canonicalize install.sh; for use within
2777         this directory (and subdirs)
2778
2779 Mon Jun 14 12:13:22 1993  david d `zoo' zuhn  (zoo at rtl.cygnus.com)
2780
2781         * Makefile.in (install, install-info): remove parentdir support,
2782         use INSTALL_XFORM; define INSTALL_XFORM
2783
2784 Thu Jun 10 17:29:21 1993  Per Bothner  (bothner@cygnus.com)
2785
2786         * objcopy.c (copy_object):  Fix bad size passed to xmalloc().
2787
2788 Mon Jun  7 12:41:12 1993  Per Bothner  (bothner@rtl.cygnus.com)
2789
2790         * Makefile.in (INCLUDES):  Add -I../bfd for sysdep.h and bfd.h.
2791         * configure.in:  No longer need to configure to get sysdep.h.
2792         * objcopy.c (copy_object):  Fix symbol table handling.
2793
2794 Fri Jun  4 17:20:03 1993  Per Bothner  (bothner@cygnus.com)
2795
2796         * objcopy.c (filter_symbols):  Cannot filter the symbols
2797         in place, because that confuses the relocs, so take separate
2798         parameter for output array.
2799         * objcopy.c (sympp):  Make two variables: isympp and osympp.
2800         * objcopy.c (copy_object):  Allocate separate array (osympp)
2801         for filtered symbols.
2802
2803 Fri Jun  4 10:51:44 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
2804
2805         * Makefile.in: change recursion test to presence of a configured
2806         testsuite directory
2807
2808 Thu Jun  3 14:05:57 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
2809
2810         * Makefile.in (underscore.c): Hack the backquoted command so it
2811         doesn't cause Solaris make to bomb.
2812
2813 Thu Jun  3 10:40:19 1993  Jeffrey Osier  (jeffrey@cygnus.com)
2814
2815         * Makefile.in:  added c++filt and objcopy to MANPAGES variable
2816         * .Sanitize:  keep c++filt.1 and objcopy.1
2817
2818 Thu Jun  3 00:32:52 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
2819
2820         * Makefile.in: rename LOADLIBES to EXTRALIBS
2821
2822 Wed Jun  2 18:30:24 1993  Jeffrey Osier  (jeffrey@cygnus.com)
2823
2824         * c++filt.1, objcopy.1:  new man pages
2825
2826 Fri May 28 15:01:24 1993  Per Bothner  (bothner@rtl.cygnus.com)
2827
2828         * Makefile.in (install):  Also install ar and ranlib in
2829         $(tooldir)/bin;  needed for building libgcc.a.
2830         * objdump.c (objdump_print_address):  Fix the check
2831         "coincidental" label matches by dis-allowing undefined
2832         or com symbols.
2833
2834 Thu May 27 16:58:31 1993  Jeffrey Osier  (jeffrey@cygnus.com)
2835
2836         * biutils.texi:  revised c++filt chapter
2837
2838 Wed May 26 17:24:17 1993  Ian Lance Taylor  (ian@cygnus.com)
2839
2840         * Makefile.in (FLAGS_TO_PASS): Pass down CC and CFLAGS.
2841
2842 Tue May 25 00:26:47 1993  Ken Raeburn  (raeburn@cygnus.com)
2843
2844         * objdump.c (slurp_symtab): Print warning for bad symbol table.
2845         (bfd_elf32_find_section, Elf32_Internal_Shdr): Updated
2846         declarations and uses.
2847
2848         * Makefile.in (DISTSTUFF): Don't build binutils.mm.
2849
2850 Fri May 21 10:51:19 1993  David J. Mackenzie  (djm@rtl.cygnus.com)
2851
2852         * nm.c: Add -f/--format, -P/--portability, -t/--radix options.
2853         Make global variables static.
2854         (main): Make -v like -n, not -V, and make -A like -o, for POSIX.2.
2855         (set_print_radix, set_output_format,
2856         print_{object_filename,archive_filename,archive_member,symbol_info}
2857         {bsd,sysv,posix}): New functions.
2858         (display_file, print_symbols): Call them.
2859
2860         * ar.c: Improve error messages.
2861
2862         * nm.c (main): Handle long options that just set a flag.
2863
2864         * nm.c (main), ar.c (do_show_version), objcopy.c (main), size.c
2865         (main): Exit after printing the version number, per the GNU coding
2866         standards.
2867
2868 Mon May 17 13:20:25 1993  Per Bothner  (bothner@cygnus.com)
2869
2870         * README, Makefile.in:  Minor updates for 2.2.
2871
2872 Fri May 14 11:12:26 1993  Per Bothner  (bothner@cygnus.com)
2873
2874         * Makefile.in (underscore.c):  Automatically generate
2875         (using nm) a file with the variable prepends_underscore.
2876         * Makefile.in (c++filt):  Link underscore.o with cplus-dem.o
2877         so that initial underscores get removed iff appropriate.
2878         * binutils.texi:  Preliminary documentation for c++filt.
2879         * Makefile.in, binutils.texi:  Set to version 2.2.
2880
2881         * NEWS:  Mention copy->objcopy renaming and new c++filt program.
2882
2883 Wed May 12 12:05:36 1993  Ian Lance Taylor  (ian@cygnus.com)
2884
2885         * Makefile.in (cplus-dem.o, $(DEMANGLER_PROG)): Build the
2886         demangler via cplus-dem.o, rather than directly from the .c file.
2887
2888         * objcopy.c: Renamed from copy.c, updated comments accordingly.
2889         * Makefile.in, binutils.texi: Renamed copy to objcopy.
2890         * is-strip.c, maybe-strip.c, not-strip.c: Updated comments for
2891         rename of copy to objcopy.
2892
2893 Mon May 10 17:20:18 1993  Per Bothner  (bothner@cygnus.com)
2894
2895         * binutils.texi (strip, -v option):  Fix typo.
2896
2897 Fri May  7 13:57:50 1993  Ian Lance Taylor  (ian@cygnus.com)
2898
2899         * Makefile.in (RUNTEST): Define.
2900         (FLAGS_TO_PASS): Pass down RUNTEST.
2901
2902 Tue May  4 10:06:50 1993  Ian Lance Taylor  (ian@cygnus.com)
2903
2904         * Makefile.in (DEMANGLER_PROG): Name it c++filt.
2905         (PROG): Also build and install COPY_PROG.
2906
2907 Mon May  3 19:11:48 1993  Per Bothner  (bothner@cygnus.com)
2908
2909         * Makefile.in:  Change definition of $(tooldir) to match FSF.
2910
2911 Wed Apr 28 23:41:32 1993  David J. Mackenzie  (djm@rtl.cygnus.com)
2912
2913         * size.c (usage): Add missing options.
2914         (main): Clean up option parser.
2915
2916         * objdump.c (usage): Add missing options.
2917         (display_file): Print program name before calling
2918         bdf_perror. 
2919
2920         * nm.c (usage): Add missing options.
2921         (main): Clean up option parser.
2922         (display_file): Print program name before calling
2923         bdf_perror. 
2924
2925         * copy.c (copy_usage, strip_usage): Add missing options.
2926
2927         * ar.c (usage): New function.
2928         (main): Call it.
2929         (open_inarch, do_quick_append): Print program name before calling
2930         bdf_perror. 
2931
2932 Thu Apr 22 15:01:35 1993  Ian Lance Taylor  (ian@cygnus.com)
2933
2934         * nm.c (main): Accept and ignore -A and -B for MIPS compatibility.
2935
2936 Mon Apr 19 14:06:59 1993  Rob Savoye  (rob@cygnus.com)
2937
2938         * Makefile.in: Added FLAGS_TO_PASS so tests get run on freshly
2939         built binaries if they exist. (otherwise the path)
2940
2941 Wed Apr  7 22:22:50 1993  Rob Savoye  (rob@cygnus.com)
2942
2943         * Makefile.in: Changed check target to use DejaGnu.
2944
2945 Thu Apr  1 12:37:13 1993  Jim Kingdon  (kingdon@cygnus.com)
2946
2947         * Makefile.in: Remove am29k-pinsn.c, i960-pinsn.c.
2948         objdump.c: a29k and i960 are `disassemble' not `print'.
2949
2950         * objdump.c: Rename print_address to objdump_print_address
2951         and change parameters.
2952         (disassemble_data): Use objdump_print_address.
2953
2954 Wed Mar 31 10:25:29 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
2955
2956         * objdump.c (disassemble_data): print_insn_sparc is now a
2957         `disassemble' not a `print'.
2958         Makefile.in: Remove sparc-pinsn.c (now in libopcodes.a).
2959
2960         * objdump.c (disassemble_data): Use new read_memory_func stuff.
2961
2962 Thu Mar 25 10:38:11 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
2963
2964         * objdump.c (fprintf): Declaration of variadic function had better
2965         be a prototype for ANSI C systems.
2966
2967 Mon Mar 22 23:19:46 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
2968
2969         * Makefile.in: rename test-install to install-check
2970
2971 Fri Mar 19 14:40:08 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
2972
2973         * objdump.c (disassemble_data): Add H8500.
2974
2975 Fri Mar 19 10:56:51 1993  Jim Kingdon  (kingdon@cygnus.com)
2976
2977         * objdump.c (usage): Mention long options.
2978
2979 Thu Mar 18 14:22:17 1993  Per Bothner  (bothner@rtl.cygnus.com)
2980
2981         * nm.c:  Modify behavior of -o flag for archives to match
2982         BSD4.4 and Sunos 4:  Prefix archive name before each line.
2983
2984         * m68k-pinsn.c:  Removed.  Subsumed by ../opcodes/m68k-dis.c.
2985         * i386-pinsn.c:  Removed.  Subsumed by ../opcodes/i386-dis.c.
2986         * Makefile.in:  Adjust accordingly.
2987         * objdump.c:  Support new-style disassemblers (ones that use
2988         the interface of ../include/dis-asm.h).
2989
2990 Thu Feb 25 15:57:00 1993  Per Bothner  (bothner@rtl.cygnus.com)
2991
2992         * Makefile.in:  When making tar file, remove texinfo/*,
2993         except for texinfo/texinfo.tex.
2994         * ardup.c:  Add extern declaration of strdup.
2995         * Makefile.in (testsuite):  Add 'else true' since otherwise
2996         Ultrix /bin/sh complains.
2997
2998 Wed Feb 24 19:44:18 1993  Per Bothner  (bothner@rtl.cygnus.com)
2999
3000         * Makefile.in:  Set VERSION to 2.1.
3001         * README, NEWS: Updates.
3002         * nm.c:  Add -v as a synonym for -V.
3003
3004 Tue Feb 23 19:00:50 1993  Mike Werner  (mtw@poseidon.cygnus.com)
3005
3006         * configure.in: added testsuite to configdirs.
3007         * Makefile.in: added support for building testsuite.
3008
3009 Mon Feb 22 22:52:10 1993  Per Bothner  (bothner@rtl.cygnus.com)
3010
3011         * objdump.c (disassemble_data):  Print function names when
3012         given by bfd_find_nearest_line.  If not - still print
3013         line numbers.
3014
3015 Mon Feb 22 07:54:03 1993  Mike Werner  (mtw@poseidon.cygnus.com)
3016
3017         * binutils/testsuite: made modifications to testcases, etc., to allow
3018         them to work properly  given the reorganization of deja-gnu and the
3019         relocation of the testcases from deja-gnu to a "tool" subdirectory.
3020
3021 Mon Feb 22 10:27:24 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
3022
3023         * objdump.c (dump_data): Free up section contents each time
3024         through the loop.  Reported by minyard@bnr.ca.
3025
3026 Sun Feb 21 10:55:55 1993  Mike Werner  (mtw@poseidon.cygnus.com)
3027
3028         * binutils/testsuite: Initial creation of binutils/testsuite.
3029         Migrated dejagnu testcases and support files for testing nm to
3030         binutils/testsuite from deja-gnu.  These files were moved "as is"
3031         with no modifications.  This migration is part of a major overhaul
3032         of dejagnu.  The modifications to these testcases, etc., which
3033         will allow them to work with the new version of dejagnu will be
3034         made in a future update.
3035
3036 Fri Feb 12 10:05:20 1993  Fred Fish  (fnf@cygnus.com)
3037
3038         * Makefile.in (LIBIBERTY_SRC_DIR, LIBIBERTY_BIN_DIR): New macros.
3039         * Makefile.in (LIBIBERTY):  Use LIBIBERTY_BIN_DIR.
3040         * Makefile.in (DEMANGLER_PROG):  New program to build.  Add macro
3041         and rule.
3042         * Makefile.in (PROGS):  Add DEMANGLER_PROG.
3043
3044 Tue Jan 26 11:56:33 1993  Ian Lance Taylor  (ian@cygnus.com)
3045
3046         * copy.c, nm.c, objdump.c, size.c: Use new bfd_is_com_section
3047         macro rather than checking for equality to bfd_com_section.
3048
3049 Fri Jan  8 15:50:05 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
3050
3051         * objdump.c (disassemble_data): Fix code to find first useless
3052         symbol.
3053
3054 Thu Jan  7 13:13:31 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
3055
3056         * objdump.c (disassemble_data): Use mips_print_insn for MIPS.
3057         Don't core dump if bfd_find_nearest_line returns false.
3058
3059 Wed Jan  6 17:14:01 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
3060
3061         * objdump.c (disassemble_data): know how to disassemble z8000s
3062         too.
3063
3064 Wed Jan  6 15:16:27 1993  Per Bothner  (bothner@cygnus.com)
3065
3066         * arsup.h (interactive), bucomm.h (program_name):  Prefix
3067         with 'extern', to avoid warnings from some compilers.
3068
3069 Wed Jan  6 15:14:11 1993  Per Bothner  (bothner@rtl.cygnus.com)
3070
3071         * arparse.y: fix unnecessary shift/reduce
3072
3073 Tue Dec 22 15:46:56 1992  Per Bothner  (bothner@rtl.cygnus.com)
3074
3075         * Makefile.in:  Make check depend on all.
3076         * Makefile.in (distclean): Remove sysdep.h.
3077         * size.c:  Use %u format where appropriate.
3078         * objdump.c:  Standardize:  L_SET -> SEEK_SET.
3079         * objdump.c:  Use new macro bfd_asymbol_bfd.
3080         * configure.in:  Allow std-host as the default ${mys_host}.
3081
3082 Thu Dec 17 19:38:19 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
3083
3084         * Makefile.in: added dvi target, define and use TEXI2DVI
3085
3086 Tue Dec 15 18:05:07 1992  Per Bothner  (bothner@cygnus.com)
3087
3088         * Makefile.in (dist):  Fix permissions before release.
3089         * size.c:  Use bfd_size_type (and long) where appropriate.
3090         * ar.c:  Make writing a map the default, to be compatible
3091         with SYSV and Posix.2.  Remove some bogus kludges that
3092         handled __.SYMDEF directly.
3093         * NEWS:  New file.
3094
3095 Mon Nov  9 13:36:53 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
3096
3097         * Makefile.in: flex no longer needs the -S flag
3098
3099 Sat Nov  7 15:06:13 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
3100
3101         * ar.c (extract_file): utime needs a pointer to a utimbuf
3102
3103         * Makefile.in: handle -I includes better, adding $(BASEDIR)/bfd to
3104         the list (since some of the bfd/hosts/*.h files include other
3105         files from that directory)
3106
3107 Fri Nov  6 00:12:51 1992  John Gilmore  (gnu@cygnus.com)
3108
3109         * i960-pinsn.c (MEM_MAX, MEM_SIZ):  Set upper bound properly.
3110
3111 Thu Nov  5 03:37:15 1992  John Gilmore  (gnu@cygnus.com)
3112
3113         Clean up some old BFD ansification macros.
3114
3115         * arsup.h, bucomm.h, objdump.h:  Remove EXFUN from binutils.
3116         It still remains as a local macro in gmalloc.c, which is derived
3117         from some other copy of GNU Malloc somewhere (FIXME).
3118
3119         * ar.c, objdump.c, size.c:  Replace EXFUN with PROTO.  Make static
3120         fns really static.
3121         * arsup.h:  Declare extract_files.
3122
3123 Mon Nov  2 12:42:11 1992  Ian Lance Taylor  (ian@cygnus.com)
3124
3125         * ar.c (extract_file): instead of checking USG: if POSIX_UTIME,
3126         use utime and utimbuf structure, otherwise if USE_UTIME use utime
3127         and array of two longs, otherwise use utimes.
3128
3129 Thu Oct 15 13:57:35 1992  Per Bothner  (bothner@cygnus.com)
3130
3131         * binutils.tex:  Document yesterday's changes to strip and copy.
3132
3133 Wed Oct 14 13:22:14 1992  Per Bothner  (bothner@cygnus.com)
3134
3135         * copy.c:  Re-do command-line parsing to use getopt_long().
3136         Add long option names.  Re-think option letters to be more
3137         consistent.
3138         * copy.c:  New function filter_symbols() for stripping only
3139         debug-symbols and/or local symbols.  Use these to support
3140         the previously-missing options of the old FSF strip.
3141
3142 Tue Oct 13 01:24:20 1992  John Gilmore  (gnu@cygnus.com)
3143
3144         * configure.in (host):  Use ${srcdir}/../bfd/configure.host rather
3145         than repeating a copy of it here.
3146
3147 Wed Oct  7 12:53:52 1992  Ken Raeburn  (raeburn@cygnus.com)
3148
3149         * copy.c (main): Even if is_strip, accept -d argument indicating
3150         alternate output format.  Needed by gdb for Nindy.
3151
3152         * m68k-pinsn.c (print_insn_arg): Handle new "`" operand type.
3153
3154 Tue Oct  6 16:33:56 1992  Jeffrey Osier  (jeffrey@cygnus.com)
3155
3156         * binutils.texi:  added documentation for "copy"
3157
3158 Tue Oct  6 14:22:56 1992  Per Bothner  (bothner at PersSony)
3159
3160         * Makefile.in (*clean rules): Some cleaning up.
3161         * Makefile.in (dist): Make diststuff in gprof for a dist.
3162
3163         * ar.c (do_show_version):  New function.
3164         * ar.c (main):  Fix so "ar -V" works.
3165
3166 Thu Oct  1 22:44:45 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
3167
3168         * configure.in: now uses the cpu-vendor-os triple instead of
3169         nested cases.
3170
3171 Fri Sep 25 22:41:08 1992  John Gilmore  (gnu@cygnus.com)
3172
3173         * i960-pinsn.c:  Change bzero to memset.
3174         * sparc-pinsn.c:  Change index to strchr.
3175
3176 Mon Sep 21 14:39:56 1992  Ian Lance Taylor  (ian@cygnus.com)
3177
3178         * m68k-pinsn (print_insn_arg, fetch_arg): added support for
3179         operands to memory management instructions, from WRS.
3180
3181 Tue Sep 15 15:26:38 1992  Ian Lance Taylor  (ian@cygnus.com)
3182
3183         * Makefile.in (install): if $(tooldir) exists, install nm and
3184         strip in $(tooldir)/bin.
3185
3186 Thu Sep  3 11:57:40 1992  Per Bothner  (bothner@rtl.cygnus.com)
3187
3188         * Makefile.in:  Let's call it version 2.0.
3189
3190 Wed Sep  2 00:25:13 1992  Per Bothner  (bothner@rtl.cygnus.com)
3191
3192         * Makefile.in:  Bump to version 0.98.
3193         * TODO, README:  Minor updates.
3194
3195         * Makefile.in:  Added mostlyclean, distclean rules,
3196         and cleaned up clean, realclean.
3197
3198 Sun Aug 30 21:18:59 1992  Ian Lance Taylor  (ian@cygnus.com)
3199
3200         * Makefile.in: map program names through program_transform_name
3201         when installing.
3202
3203 Sun Aug 30 18:09:03 1992  Per Bothner  (bothner@rtl.cygnus.com)
3204
3205         * Makefile.in:  Bump to versions 1.97.90.
3206         * cplus-dem.c:  Removed.  Was nowhere used - and if some
3207         programs are changed to to demangling should now use the
3208         versions in libiberty.
3209
3210 Thu Aug 27 12:58:09 1992  Brendan Kehoe  (brendan@cygnus.com)
3211
3212         * configure.in: add we32k
3213
3214 Mon Aug 24 14:53:42 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
3215
3216         * ar.c (map_over_members): if the element of the archive has a
3217         null name, fill it in.
3218
3219         * nm.c (do_one_rel_file): only warn if a bfd's flags say there
3220         will be symbols and there aren't any.
3221
3222 Wed Aug 19 11:20:25 1992  Ian Lance Taylor  (ian@cygnus.com)
3223
3224         * m68k-pinsn.c: handle new operand type 'r', introduced for cas2.
3225
3226 Tue Aug 18 20:45:48 1992  Rob Savoye  (rob@cygnus.com)
3227
3228         * nm.c objdump.c: Added support for a +version (-V)
3229         to print the version number.
3230
3231         * ar.c, copy.c: Added support for a -V option to print
3232         the version number.
3233
3234 Tue Aug 18 13:28:44 1992  Ian Lance Taylor  (ian@cygnus.com)
3235
3236         * config/mh-apollo68v: removed -g from CC definition.
3237
3238         * Makefile.in: always create installation directories.
3239
3240 Mon Aug 17 18:33:41 1992  Per Bothner  (bothner@rtl.cygnus.com)
3241
3242         * m68k-pinsn.c:  Minor fix in style of output (don't use
3243         range to indicate floating point control registers).
3244
3245 Tue Aug 11 23:42:21 1992  Per Bothner  (bothner@cygnus.com)
3246
3247         * ar.c (main):  Don't *always* set the verbose flag!
3248
3249 Wed Aug  5 11:25:27 1992  Per Bothner  (bothner@rtl.cygnus.com)
3250
3251         * copy.c:  When is_strip (because it is invoked as the strip
3252         program), follow traditional argv processing:
3253         'strip file1 file2' now strips file1 and file2, rather
3254         than stripping file1 (as input), leaving output in file2.
3255
3256 Mon Jul 27 16:28:08 1992  Per Bothner  (bothner@rtl.cygnus.com)
3257
3258         * objdump.c (display_info, display_info_table):  Call
3259         bfd_set_format() on dummy bfd before using it (twice).
3260         * ar.c:  Make sure archive is created on command 'r'
3261         even when no elements are inserted.  (Clean up and
3262         simplify some non-working related code.)
3263
3264 Mon Jul 20 02:48:38 1992  D. V. Henkel-Wallace  (gumby@cygnus.com)
3265
3266         * configure.in: hppa support doesn't assume hp OS (from sef).
3267
3268 Sat Jul 18 14:35:22 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
3269
3270         * configure.in: recognize hppa hosts (bsd & hpux), error messages
3271         to stderr, not stdout
3272
3273 Fri Jul 17 18:39:44 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
3274
3275         * ar.1, binutils.texi, i960-pinsn.c, nm.1, objdump.1, ranlib.1,
3276           size.1, sparc-pinsn.c, strip.1: removed rcsid's.
3277
3278 Thu Jul 16 16:55:24 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
3279
3280         * Makefile.dos: removed rcsid.
3281
3282 Thu Jul 16 08:23:07 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
3283
3284         * objdump.c (display_bfd): print state of BFD_IS_RELAXABLE too
3285
3286 Tue Jun 30 20:26:15 1992  D. V. Henkel-Wallace  (gumby@cygnus.com)
3287
3288         * Makefile.in: Add program_suffix (parallel to program_prefix)
3289
3290 Thu Jun 25 04:52:45 1992  John Gilmore  (gnu at cygnus.com)
3291
3292         * nm.c (sorters):  Lint.  Remove excess whitespace.
3293
3294 Wed Jun 24 13:48:07 1992  Per Bothner  (bothner@cygnus.com)
3295
3296         * nm.c (valueof macro):  Add missing parentheses.
3297         (Their lack screwed up numeric_forward().)
3298
3299 Sun Jun 14 10:33:27 1992  John Gilmore  (gnu at cygnus.com)
3300
3301         * objdump.c (dump_elf_stabs):  Also dump .stab.index and
3302         .stab.excl sections.
3303         (dump_elf_stabs_1):  Split out main body of old dump_elf_stabs.
3304         * objdump.1, binutils.texi:  Document new sections dumped.
3305
3306 Fri Jun 12 22:23:35 1992  John Gilmore  (gnu at cygnus.com)
3307
3308         * size.c, objdump.c, bucomm.c:  Lint.
3309
3310 Thu Jun 11 01:19:06 1992  John Gilmore  (gnu at cygnus.com)
3311
3312         * objdump.c (dump_elf_stabs): New feature: --stabs prints out a
3313         .stab section from an ELF file.  Installed under #ifdef
3314         ELF_STAB_DISPLAY so it can be easily disabled, since it requires
3315         bfd-internals header files and such.
3316         * objdump.1, binutils.texi:  Update for --stabs.  Also fix
3317         objdump's doc to use -- rather than + for long options.
3318         (FIXME:  Not yet fixed everywhere in binutils.texinfo.)
3319
3320 Wed Jun 10 07:53:24 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
3321
3322         * objdump.c(display_info), patches from
3323         mohring@informatik.tu-muenchen.de to print the table much more
3324         nicely.
3325
3326 Thu May 28 13:36:16 1992  Per Bothner  (bothner@rtl.cygnus.com)
3327
3328         * objdump.c:  Add another enum->int cast, for the sake of
3329         old compilers (such as PCC).
3330
3331 Wed May 27 13:01:44 1992  Per Bothner  (bothner@rtl.cygnus.com)
3332
3333         * arlex.l:  Don't include <sysdep.h> (unneeded conflicts).
3334         Add declaration of strdup().
3335
3336 Fri May 22 13:40:37 1992  Per Bothner  (bothner@cygnus.com)
3337
3338         * Makefile.in:  Use srcdir instead of VPATH in ldgram/ldlex
3339         rules, since these are used when building a distribution.
3340         * Makefile.in (arlex.c):  Don't re-direct output, since that
3341         leaves a bogus output files if it fails.
3342
3343         * arlex.l:  Make work with lex, for what it's worth.
3344         * Makefile.in:  Better lex support.
3345         * Makefile.in (dist):  Generate flex and bison outputs
3346         for distribution.
3347
3348 Thu May 14 17:17:59 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
3349
3350         * Makefile.in: get BISON definition right.
3351
3352 Fri May  8 07:47:08 1992  K. Richard Pixley  (rich@cygnus.com)
3353
3354         * sanity.sh: default TMPDIR to ".".
3355
3356 Thu May  7 12:34:50 1992  Roland H. Pesch  (pesch@fowanton.cygnus.com)
3357
3358         * binutils.texi: add doc for ar command language.
3359
3360 Wed May  6 18:05:36 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
3361
3362         * arparse.y: make END call ar_end
3363         * arsup.c (ar_end): added, deletes temp file if archive session
3364         aborted.
3365
3366
3367 Wed May  6 11:08:53 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
3368
3369         * Makefile.in: use bison & flex from ../ if they exist.  Also,
3370           FLEX->LEX.
3371
3372         * sanity.sh: remove temporary directory when finished.
3373
3374 Tue May  5 12:00:58 1992  Per Bothner  (bothner@rtl.cygnus.com)
3375
3376         * Makefile.in:  Bump to version 1.97.
3377         * ar.c:  Declare errno for machines that need it.
3378
3379 Mon May  4 23:29:51 1992  John Gilmore  (gnu@cygnus.com)
3380
3381         * objdump.c (display_info):  Handle error cases without coredump.
3382         Close the dummy temporary file we open in the loop.
3383         * Makefile.in (arsup.o):  Add kludge to build with Sun Make.
3384
3385 Fri May  1 16:20:23 1992  K. Richard Pixley  (rich@cygnus.com)
3386
3387         * Makefile.in: added test-install target.
3388
3389         * sanity.sh: new file.
3390
3391         * Makefile.in: use sanity test on make check.
3392
3393 Tue Apr 21 13:38:37 1992  K. Richard Pixley  (rich@cygnus.com)
3394
3395         * Makefile.in: rework CFLAGS so that they can be passed on the
3396           command line to make.  Remove MINUS_G.  Default CFLAGS to -g.
3397
3398 Wed Apr 15 14:33:07 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
3399
3400         * arsup.c, arsup.h, arparse.y, arlex.l: support for archive
3401         scripting language.
3402
3403 Fri Mar  6 21:54:53 1992  K. Richard Pixley  (rich@cygnus.com)
3404
3405         * Makefile.in: added check target.
3406
3407 Thu Mar  5 21:35:49 1992  K. Richard Pixley  (rich@cygnus.com)
3408
3409         * Makefile.in: added clean-info target.
3410
3411 Tue Mar  3 15:36:37 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
3412
3413         * Makefile.in: remove $(COPY_PROG) from PROGS.  It shouldn't be
3414           installed. added tooldir and program_prefix.
3415
3416 Wed Feb 26 18:04:40 1992  K. Richard Pixley  (rich@cygnus.com)
3417
3418         * Makefile.in, configure.in: removed traces of namesubdir,
3419           -subdirs, $(subdir), $(unsubdir), some rcs triggers.  Forced
3420           copyrights to '92, changed some from Cygnus to FSF.
3421
3422 Sun Feb 16 12:53:02 1992  Per Bothner  (bothner at cygnus.com)
3423
3424         * Makefile.in:  Bump version to 1.96, and remove -beta
3425         suffix from distribution name.
3426         * m68k-pinsn.c:  New macro COERCE_SIGNED_CHAR to extract
3427         the signed value of a character (even if chars are unsigned).
3428         * sparc-pinsn.c:  Add new operand types.
3429
3430 Thu Feb  6 12:14:19 1992  Steve Chamberlain  (sac at rtl.cygnus.com)
3431
3432         * objdump.c (disassemble_data): don't print a section's contents
3433         if it's not loadable (eg bss)
3434
3435 Tue Jan 28 11:11:06 1992  Steve Chamberlain  (sac at rtl.cygnus.com)
3436
3437         * m68k-pinsn.c (print_insn_arg): fixed so that -ve branch
3438         displacements don't get printed as large +ve ones.
3439
3440 Fri Jan 24 14:47:53 1992  Steve Chamberlain  (sac at rtl.cygnus.com)
3441
3442         * copy.c, nm.c, objdump.c, size.c : changed to use the
3443         new reloc scheme.
3444
3445
3446 Mon Dec 30 18:34:41 1991  Per Bothner  (bothner at cygnus.com)
3447
3448         * bucomm.c (print_arelt_descr):  Tweek the output format
3449         so that 'ar tv' output follows Posix 1003.2/D11.
3450         Output is now also identical to Sun's (except __.SYMDEF).
3451
3452 Mon Dec 30 06:09:53 1991  John Gilmore  (gnu at cygnus.com)
3453
3454         * Makefile.in:  Make `make' output more readable.
3455
3456 Wed Dec 18 15:04:45 1991  Per Bothner  (bothner at cygnus.com)
3457
3458         * Makefile.in:  Bump to version 1.94.
3459
3460 Wed Dec 11 16:48:09 1991  Steve Chamberlain  (sac at cygnus.com)
3461
3462         * ar.c: added "b" to fopens for dos
3463         * configdj.bat, makefile.dos new files from DJ
3464
3465 Tue Dec 10 04:07:26 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
3466
3467         * Makefile.in: infodir belongs in datadir.
3468
3469 Sat Dec  7 17:09:37 1991  Steve Chamberlain  (sac at rtl.cygnus.com)
3470
3471         * bucomm.h: created to hold prototypes of bucomm.c
3472         * objdump.h: created to hold prototyes of objdump.c
3473         * am29k-pinsn.c: include objdump.h
3474         * ar.c: include bucomm.h, get ar.h from the right place and
3475         include libbfd.h
3476         * bucomm.c: defunize bfd_fatal
3477         * copy.c: include bucomm.h, lint.
3478         * i960-pinsn.h: include bucomm.h
3479         * m68k-pinsn.h: lint
3480         * nm.c: include bucomm.h, lint
3481         * objdump.c: lint
3482         * sparc-pinsn.c: include objdump.h
3483
3484         
3485
3486 Fri Dec  6 23:02:14 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
3487
3488         * Makefile.in: added standards.text support.  install using
3489           INSTALL_PROGRAM and INSTALL_DATA.
3490
3491         * configure.in: configure now does all of it's work from objdir so
3492           make file existence tests against ${srcdir}.
3493
3494 Thu Dec  5 22:46:22 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
3495
3496         * Makefile.in: idestdir and ddestdir go away.  Added copyrights
3497           and shift gpl to v2.  Added ChangeLog if it didn't exist. docdir
3498           and mandir now keyed off datadir by default.
3499
3500 Wed Dec  4 22:42:03 1991  Per Bothner  (bothner at cygnus.com)
3501
3502         * Makefile.in:  Bump to version 1.93.
3503         * Makefile.in:  Add make-strip.o:maybe-strip.c dependency
3504         for make versions that provide half-baked VPATH-support (e.g. Sun's).
3505         * size.c:  Improvements suggested by
3506         "david d [zoo] zuhn" <zoo@aps1.spa.umn.edu>:
3507         - Don't emit (Berkeley) headers if no files were found.
3508         - Return a non-zero return code on failure.
3509
3510 Sat Nov 30 21:34:19 1991  Steve Chamberlain  (sac at rtl.cygnus.com)
3511
3512         Changes due to include file renaming:
3513         * am29k-pinsn.c: a29k-opcode.h  -> opcode/a29k.h
3514         * sparc-pinsn.c: sparc-opcode.h -> opcode/sparc.h
3515         * m68k-pinsn.c:  m68k-opcode.h  -> opcode/m68k.h
3516         * nm.c:          stab.gnu.h     -> aout/stab_gnu.h
3517
3518 Tue Nov 19 19:20:43 1991  Per Bothner  (bothner at cygnus.com)
3519
3520         * README:  Mention MINIMIZE flag for bfd's make.
3521
3522 Mon Nov 18 12:05:37 1991  Per Bothner  (bothner at cygnus.com)
3523
3524         * README:  Various improvements.
3525
3526 Sun Nov 17 23:40:59 1991  Per Bothner  (bothner at cygnus.com)
3527
3528         * Makefile.in:  Bump to version 1.92.
3529         * version.c, Makefile.in:  Get version string from Makefile.
3530         * copy.c, is-strip.c, not-strip.c, maybe-strip.c, Makefile.in:
3531         Make the same change that we earlier did for ar/ranlib:
3532         Generate two different binaries for strip and copy and use
3533         a global variable with different values to distinguish
3534         ostrip from copy.  (-1 means to use argv[0] to decide,
3535         so you can get the old behavior, but it is no longer the default).
3536         * copy.c (copy_file):  Set EXEC_P of output bfd if input is so.
3537         * copy.c (main):  If is_strip==-1, compare last 5 chars
3538         of argv[0], not the whole path.
3539         * copy.c (main): Return 0, not 1.
3540         * copy.c (setup_sections):  Fix due to change in bfd_make_section
3541         now failing if asked for a duplicate section.
3542         * strip.c, ostrip.c:  Removed obsolete files.
3543         * ar.c, not-ranlib.c, maybe-ranlib.c:
3544         Change encoding of is_ranlib variable to be consistent
3545         with is_strip for strip.copy (i.e -1 to means use argv[0]).
3546
3547 Thu Nov 14 20:11:02 1991  Per Bothner  (bothner at cygnus.com)
3548
3549         * version.c (program_version): Update to version 1.92.
3550
3551 Tue Nov 12 16:17:53 1991  Per Bothner  (bothner at cygnus.com)
3552
3553         * ar.c (get_pos_bfd):  Previous fix was missing a "break".
3554
3555 Thu Nov  7 08:55:56 1991  Steve Chamberlain  (sac at cygnus.com)
3556
3557         * am29k-pinsn.c: Fixed bug in mtacc, dmac and fmac instruction
3558         encodings. (Thaks to David Wood)
3559
3560 Sun Nov  3 14:50:23 1991  Per Bothner  (bothner at cygnus.com)
3561
3562         * Makefile.in ($(DIST_NAME).tar.Z), TODO:  Various fixes.
3563         * ar.c (get_pos_bfd): Fix to handling of before/after
3564         positioning options.
3565         * bucomm.c (fatal):  MISSING_VFPRINTF is no longer an issue,
3566         since libiberty contains vfprintf etc if otherwise missing.
3567         * m68k-pinsn.c (print_insn_arg):  Support BB/BW/BL
3568         type operands, as used by branch instructions.
3569         * nm.c:  Delegate printing of symbols to BFD,
3570         by using bfd_print_symbol to do the formatting.
3571
3572 Mon Oct 28 11:20:47 1991  Steve Chamberlain  (steve at cygnus.com)
3573
3574         * ar.c (write_archive.c): added unlink before rename since some
3575         systems can't rename onto an existant file.
3576
3577 Mon Oct 21 09:47:23 1991  Steve Chamberlain  (steve at rtl.cygnus.com)
3578
3579         * nm.c: now doesn't crash if a symbol with no section and no
3580         SEC_ABS appears.
3581
3582 Thu Oct 17 15:25:50 1991  Per Bothner  (bothner at cygnus.com)
3583
3584         * Makefile.in, version.c:  Bump to version 1.91.
3585
3586 Wed Oct 16 11:45:36 1991  Per Bothner  (bothner at cygnus.com)
3587
3588         * Makefile.in, ar.c, bucomm.c, copy.c, cplus-dem.c, filemode.c,
3589         i960-pinsn.c, m68k-pinsn.c, nm.c, objdump.c, size.c, sparc-pinsn.c,
3590         * strip.c: Add or update Copyright notice.
3591         * TODO:  Add note on 'nm -a'.   
3592         * version.c: Update version number to 1.90.
3593         * Makefile.in: Fix making of documentation for dist.
3594
3595 Tue Oct 15 00:17:17 1991  Per Bothner  (bothner at cygnus.com)
3596
3597         * README: New file.
3598         * Makefile.in: New kludgy rules for making a tarfile.
3599         * Makefile.in: Fix bindir path.
3600
3601 Mon Oct 14 17:34:29 1991  Roland H. Pesch  (pesch at cygnus.com)
3602
3603         * Makefile.in: add targets binutils.mm, binutils.me
3604
3605 Fri Oct 11 22:44:21 1991  John Gilmore  (gnu at cygnus.com)
3606
3607         * Makefile.in:  Avoid Sun Make VPATH bugs by adding dependencies.
3608
3609 Fri Oct 11 12:51:33 1991  Roland H. Pesch  (pesch at cygnus.com)
3610
3611         * Makefile.in: add target "binutils.ms"
3612
3613         * binutils.texinfo: minor restructuring for texi2roff comfort.
3614
3615 Fri Oct 11 04:12:28 1991  John Gilmore  (gnu at cygnus.com)
3616
3617         Restructure configuration scheme for bfd, binutils, ld.
3618
3619         * include/sys/h-*.h:  Move to bfd/hosts/h-*.h.
3620         * configure.in:  Revise to symlink sysdep.h to ../bfd/hosts/h-xxx.h.
3621         Change some config names to match other dirs.
3622         * *.c:  Include bfd.h before sysdep.h, so ansidecl and PROTO()
3623         get defined first.
3624         * Makefile.in:  Use -I. to get sysdep.h.
3625
3626 Wed Oct  9 22:42:56 1991  Per Bothner  (bothner at cygnus.com)
3627
3628         * nm.c (print_symbols):  Handle NULL name field of symbol.
3629         * Makefile.in: Removed spurious comment.
3630
3631 Tue Oct  8 16:55:03 1991  Roland H. Pesch  (pesch at cygnus.com)
3632
3633         * binutils.texinfo: minor typos, phrasing, formatting fixes.
3634
3635 Tue Oct  8 15:13:20 1991  Per Bothner  (bothner at cygnus.com)
3636
3637         * configure.in: Get host file from ../bfd/config, not config.
3638         * config/*: Remove config directory and its files.
3639
3640 Tue Oct  8 13:58:59 1991  Roland H. Pesch  (pesch at cygnus.com)
3641
3642         * Makefile.in: new targets binutils.dvi, binutils.info
3643
3644         * binutils.texinfo: remove most remaining FIXME's, delete
3645         references to __.SYMDEF by name
3646
3647
3648 Tue Oct  8 10:23:44 1991  Steve Chamberlain  (steve at cygnus.com)
3649
3650         * objdump.c (print_address) Print addresses nicely.
3651
3652 Mon Oct  7 11:31:05 1991  Per Bothner  (bothner at cygnus.com)
3653
3654         * ar.c, Makefile.in, new files {is,not,maybe}-ranlib.c:
3655         Make two different binaries for ar and ranlib, instead of
3656         distinguishing them at run time using argv[0].
3657         (Old behavior is still available if you "make ar_with_ranlib",
3658         but it is not the default.)
3659         * ranlib.sh (new):  An alternative one-line
3660         shell implementation of ranlib.
3661
3662 Fri Oct  4 21:49:44 1991  John Gilmore  (gnu at cygnus.com)
3663
3664         * objdump.c:  Cope with renames of a few BFD types & enums.
3665
3666 Fri Oct  4 19:08:09 1991  Roland H. Pesch  (pesch at cygnus.com)
3667
3668         * binutils.texinfo: add new file (rudimentary docn)
3669
3670 Mon Sep 30 12:30:39 1991  Per Bothner  (bothner at cygnus.com)
3671
3672         * config/hmake-news: Add new file (for Sony NEWSOS3).
3673         * bucomm.c (fatal):  Conditionally compile fatal() depending on
3674         MISSING_VFPRINTF, and don't confuse the issue with NO_VARARGS.
3675         * objdump.c (dump_headers):  Trivial output format change.
3676         * objdump.c (display_info): Loop over integers, not enums,
3677         to appease old compilers.
3678
3679 Mon May 20 16:14:07 1991  Steve Chamberlain  (steve at cygint.cygnus.com)
3680
3681         *objdump.c *nm.c *copy.c :hanged some types to work with 64 bit object files
3682
3683 Thu May 16 16:06:55 1991  Steve Chamberlain  (steve at cygint.cygnus.com)
3684      from bother
3685         * objdump.c (print_address): Make disasembled output more
3686         consistent with gdb and as: Add 0x when printing hex.
3687         Don't print extra leading zeros.
3688         Attempt to not print "filename.o".
3689         * objdump.c: Add some enum-to-int casts to accomodate old compilers.
3690
3691
3692 Fri May  3 22:21:44 1991  John Gilmore  (gnu at cygint.cygnus.com)
3693
3694         * copy.c:  Change =& constructs to = &, since they confuse older
3695         C compilers.
3696
3697 \f
3698 Local Variables:
3699 mode: indented-text
3700 left-margin: 8
3701 fill-column: 74
3702 version-control: never
3703 End: