Change LOCALEDIR to $(datadir)/share.
[deliverable/binutils-gdb.git] / binutils / ChangeLog
1 2004-11-30 Tero Niemela <tero_niemela@yahoo.com>
2
3 * Makefile.am: Change LOCALEDIR to $(datadir)/share.
4 * Makefile.in: Regenerate.
5
6 2004-11-10 Ian Lance Taylor <ian@wasabisystems.com>
7
8 PR binutils/536
9 * stabs.c (stab_demangle_template): Call stab_demangle_count
10 rather than stab_demangle_get_count to get the length of a pointer
11 target.
12
13 2004-11-10 Danny Smith <dannysmith@users.sourceforge.net>
14
15 * defparse.y: Remove unnecessary commas from token list.
16
17 2004-11-08 Aaron W. LaFramboise <aaron98wiridge9@aaronwl.com>
18
19 * doc/binutils.texi (nm): Update description of weak symbols.
20
21 2004-11-03 Nick Clifton <nickc@redhat.com>
22
23 * readelf.c (do_debug_ranges): New variable.
24 (usage): Document new switch: -wR or --debug-dump=Ranges.
25 (parse_args): Handle new switch. Replace switch statement for the
26 long options with a more compact table structure.
27 (process_section_headers): Allow the dumping of .debug_ranges
28 sections if so requested.
29 (debug_displays): Likewise.
30 (load_debug_range): New function: Grabs the contents of a
31 .debug_ranges section.
32 (free_debug_range): New function: Releases the grabbed
33 .debug_ranges section.
34 (decode_64bit_range): New function: Displays a 64-bit range in a
35 .debug_ranges section.
36 (decode_range): New function: Displays a 32-bit range in a
37 .debug_ranges section.
38 (read_and_display_attr_value): Record the value of DW_AT_low_pc
39 attributes. Use decode_ranges() to display a DW_AT_ranges
40 attribute.
41 (display_debug_info): Use load_debug_range() and
42 free_debug_range().
43 (display_64bit_debug_ranges): New function. Displays the contents
44 of a 64-bit format .debug_ranges section.
45 (display_debug_ranges): New function: Displays the contents of a
46 32-bit .debug_ranges section.
47
48 (main): Move cmdline_dump_sects and num_cmdline_dump_sects into the
49 global scope.
50 (process_object): Initialise the dump_sects array from the
51 cmdline_dump_sects array before processing each object file.
52
53 (streq, strneq): New macros. Use them to replace occurrences of
54 strcmp() and strncmp().
55
56 (debug_information): New structure array to replace
57 debug_line_pointer_sizes array.
58 (num_debug_info_entries): New variable to replace
59 num_debug_line_pointers.
60 (get_pointer_size_of_comp_unit): New function: Returns the pointer
61 size of a given compilation unit.
62 (get_debug_info): New function to replace
63 get_debug_line_pointer_sizes.
64 (display_debug_lines): Use the new functions.
65 (display_debug_loc): Likewise.
66
67 (disassemble_section): Change return type to int.
68 (display_debug_lines): Move local variables to their
69 innermost scope.
70 (display_debug_section): Likewise. Also record the return value
71 of functions called and pass this back to the parent. Also only
72 warn about undumped sections when the user explicitly requested
73 their dumping.
74
75 (debug_apply_rela_addends): Allow relocations against STT_OBJECT
76 types as well.
77
78 * NEWS: Mention the support for decoding .debug_ranges sections.
79 * doc/binutils.texi: Document the new command line switch to
80 readelf.
81
82 2004-11-03 Randolph Chung <tausq@debian.org>
83
84 * readelf.c (ia64_unw_aux_info, ia64_unw_table_entry): Rename from
85 unw_aux_info and unw_table_entry.
86 (find_symbol_for_address): Pass symtab and strtab info explicitly.
87 (dump_ia64_unwind): Rename unw_{aux_info,table_entry} with ia64_
88 prefix.
89 (slurp_ia64_unwind_table): Likewise.
90 (ia64_process_unwind): Rename from old process_unwind.
91 (hppa_unw_aux_info): New.
92 (dump_hppa_unwind): New.
93 (slurp_hppa_unwind_table): New.
94 (hppa_process_unwind): New.
95 (process_unwind): Factor out common unwinding checks; dispatch to
96 unwind handler based on machine type.
97
98 2004-11-02 Nick Clifton <nickc@redhat.com>
99
100 * readelf.c (display_debug_lines): Fix typo in error message.
101
102 2004-10-26 Mark Mitchell <mark@codesourcery.com>
103
104 * readelf.c (get_note_type): Handle notes not in core files.
105 (process_note_sections): New function.
106 (process_corefile_contents): Rename to ...
107 (process_notes): ... this.
108 (process_object): Call process_notes, not
109 process_corefile_contents.
110 * doc/binutils.texi: Update readelf -n documentation.
111
112 2004-10-26 Jakub Jelinek <jakub@redhat.com>
113
114 * ar.c (extract_file): Set atime to mtime for ar xo.
115
116 2004-10-25 Ian Lance Taylor <ian@wasabisystems.com>
117
118 * stabs.c (stab_demangle_v3_arglist): New static function, broken
119 out of stab_demangle_v3_argtypes.
120 (stab_demangle_v3_argtypes): Call it.
121 (stab_demangle_v3_arg): Handle DEMANGLE_COMPONENT_FUNCTION_TYPE.
122 If we find an unrecognized component, print out its number.
123
124 2004-10-25 David Mosberger <davidm@hpl.hp.com>
125
126 * readelf.c (slurp_ia64_unwind_table): Support relocations against
127 non-section symbols by adding in the symbol value.
128
129 2004-10-25 Nick Clifton <nickc@redhat.com>
130
131 PR 465
132 * readelf.c (dynamic_strings_length): New global variable.
133 (VALID_DYNAMIC_NAME, GET_DYNAMIC_NAME): New macros for accessing
134 strings in the dynamic string table.
135 (process_section_headers): Initialise dynamic_strings_length.
136 (process_dynamic_section): Likewise.
137 (process_object): Reset dynamic_string_length when the buffer is freed.
138 (dynamic_sections_mips_val): Use the new macros.
139 (process_dynamic_section): Likewise.
140 (process_version_sections): Likewise.
141 (process_symbol_table): Likewise.
142 (process_syminfo): Likewise.
143 (process_mips_specific): Likewise.
144 (dump_relocations): Add a new parameter 'strtablen' and use this
145 to verify that string offset in a given reloc is valid. Print a
146 suitable error message otherwise.
147 (process_relocs): Pass the new argument to dump_relocations.
148
149 2004-10-23 Aaron W. LaFramboise <aaron98wiridge9@aaronwl.com>
150
151 * dlltool.c: Include <assert.h>.
152 (PREFIX_ALIAS_BASE): Define.
153 (struct export): Add member import_name;
154 (def_exports): Set import_name.
155 (make_one_lib_file): Remove prefix alias code, use import_name
156 in .idata$6.
157 (gen_lib_file): Create and delete aliases.
158
159 2004-10-19 H.J. Lu <hongjiu.lu@intel.com>
160
161 * readelf.c (process_section_groups): Free symtab after use.
162
163 2004-10-18 Tommy Pettersson <ptp@lysator.liu.se>
164 Nick Clifton <nickc@redhat.com>
165
166 * strings.c (usage): Place radix values for -t option into the
167 correct order.
168
169 * objcopy.c (add_redefine_syms_file): Change error messages to use
170 <filename>:<linenumber>: format for easier parsing by automatic
171 tools.
172
173 * srconv.c (show_usage): Fix spelling typo.
174
175 * windres.c (format_from_filename): Suggest the use of -J instead
176 of -I if the file type cannot be determined.
177
178 2004-10-18 Aaron W. LaFramboise <aaron98wiridge9@aaronwl.com>
179
180 * strings.c: Include <sys/stat.h>.
181
182 2004-10-18 Alan Modra <amodra@bigpond.net.au>
183
184 * budemang.c (demangle): Fix thinko.
185
186 * budemang.c (demangle): Handle "@plt" suffix.
187
188 2004-10-14 Nick Clifton <nickc@redhat.com>
189
190 * nm.c (usage): Fix description of --special-syms switch.
191
192 2004-10-13 Jakub Jelinek <jakub@redhat.com>
193
194 * strings.c (statbuf): New typedef.
195 (file_stat): Define.
196 (strings_object_file): Avoid using get_file_size, instead do the
197 checks here, using file_stat.
198 * configure.in (HAVE_STAT64): New test.
199 * configure: Rebuilt.
200 * config.in: Rebuilt.
201
202 2004-10-12 Paul Brook <paul@codesourcery.com>
203
204 * readelf.c (decode_ARM_machine_flags): Support EABI version 4.
205
206 2004-10-11 Alan Modra <amodra@bigpond.net.au>
207
208 * objdump.c (dump_symbols): Fix thinko last change. Improve error
209 messages.
210
211 2004-10-08 Nick Clifton <nickc@redhat.com>
212
213 * nm.c: Add a new switch --special-syms which, if enabled, will
214 include the ARM Mapping symbols in nm's output.
215 (usage): Mention the switch.
216 (filter_symbols): Handle the switch.
217 * objdump.c: Add a similar switch.
218 (usage): Mention the switch.
219 (dump_symbols): Handle the switch.
220 * doc/binutils.texi: Document the new switches.
221 * NEWS: Mention the new switches.
222
223 2004-10-08 Daniel Jacobowitz <dan@debian.org>
224
225 * readelf.c (get_x86_64_section_type_name): New function.
226 (get_section_type_name): Use it.
227
228 2004-10-08 Aaron W. LaFramboise <aaron98wiridge9@aaronwl.com>
229
230 * dlltool.c (make_one_lib_file): Revert 2004-09-02 and 2004-09-04
231 patches.
232 * doc/binutils.texi (dlltool): Revert 2004-09-06 patch.
233
234 2004-10-07 Alexandre Oliva <aoliva@redhat.com>
235
236 * readelf.c (get_machine_flags): Don't fall through into m68k cpu
237 types.
238
239 2004-10-01 Paul Brook <paul@codesourcery.com>
240
241 * readelf.c (get_arm_section_type_name): New function.
242 (get_section_type_name): Use it.
243
244 2004-09-28 Nick Clifton <nickc@redhat.com>
245
246 * nm.c: Reorder functions to eliminate most of the static function
247 prototypes.
248
249 2004-09-22 Alan Modra <amodra@bigpond.net.au>
250
251 * readelf.c (process_program_headers): Don't include .tbss in non-TLS
252 segments.
253
254 2004-09-17 Alan Modra <amodra@bigpond.net.au>
255
256 * Makefile.am: Run "make dep-am".
257 * Makefile.in: Regenerate.
258 * config.in: Regenerate.
259 * configure: Regenerate.
260 * doc/Makefile.in: Regenerate.
261 * po/binutils.pot: Regenerate.
262
263 2004-09-12 Alan Modra <amodra@bigpond.net.au>
264
265 * readelf.c (decode_location_expression): Sign extend value for
266 DW_OP_const1s, DW_OP_const2s, DW_OP_const4s, DW_OP_bra, DW_OP_skip.
267
268 2004-09-09 Nick Clifton <nickc@redhat.com>
269
270 PR 363
271 * ar.c (replace_members): Do not use get_file_size as
272 ar_emul_append correctly handles missing files.
273
274 2004-09-07 H.J. Lu <hongjiu.lu@intel.com>
275
276 * configure: Regenerated with autconfig 2.13.
277
278 2004-09-06 Danny Smith <dannysmith@users.sourceforge.net>
279
280 * doc/binutils.texi (dlltool): Update --add-underscore, --kill-at
281 documentation.
282
283 2004-09-06 Michael Wardle <mbw@endbracket.net>
284
285 * doc/binutils.texi (objdump): Document that the -x switch includes
286 the effect of the -p switch.
287
288 2004-09-04 Danny Smith <dannysmith@users.sourceforge.net>
289
290 * dlltool.c (make_one_lib_file): Test if internal_name was
291 specified by user before using it.
292
293 2004-09-02 Carlo Wood <carlo@alinoe.com>
294
295 PR binutils/351
296 * dlltool.c (make_one_lib_file): For IDATA6 take the name from
297 exp->internal_name if it is present.
298
299 2004-09-02 Alexandre Oliva <aoliva@redhat.com>
300
301 * MAINTAINERS: Add self as co-maintainer of FR-V.
302 * readelf.c (get_machine_flags): Print FR-V cpu types.
303
304 2004-08-28 Alan Modra <amodra@bigpond.net.au>
305
306 * nm.c (show_synthetic): New var.
307 (long_options): Add "synthetic".
308 (usage): Here too.
309 (display_rel_file): Handle show_synthetic.
310
311 2004-08-28 Alan Modra <amodra@bigpond.net.au>
312
313 * objdump.c (dump_bfd): Pass both symbol tables to
314 bfd_get_synthetic_symtab.
315
316 2004-08-17 Jakub Jelinek <jakub@redhat.com>
317
318 * objdump.c (dump_bfd): For relocatable objects, pass syms instead
319 of dynsyms to bfd_get_synthetic_symtab.
320
321 2004-08-16 Alan Modra <amodra@bigpond.net.au>
322
323 * readelf.c (debug_apply_rela_addends): New function, extracted from..
324 (display_debug_info): ..here.
325 (display_debug_frames): Call debug_apply_rela_addends. Don't do
326 DW_EH_PE_pcrel adjustment for ET_REL.
327
328 2004-08-06 Andreas Schwab <schwab@suse.de>
329
330 * readelf.c (dump_relocations): Fix typo when calculating
331 sec_index.
332
333 2004-08-02 Jakub Bogusz <qboosh@pld-linux.org>
334
335 * dllwrap.c (deduce_name): Fix typos introduced when program_name
336 was renamed to prog_name.
337
338 2004-07-29 Alexandre Oliva <aoliva@redhat.com>
339
340 * readelf.c (get_machine_flags <EM_SH>): Handle EF_SH2A and
341 EF_SH2A_NOFPU.
342
343 2004-07-28 Alexandre Oliva <aoliva@redhat.com>
344
345 2003-07-08 Alexandre Oliva <aoliva@redhat.com>
346 * readelf.c (get_machine_flags <EM_SH)): Handle EF_SH4_NOFPU and
347 EF_SH4A_NOFPU.
348 2003-06-12 Alexandre Oliva <aoliva@redhat.com>
349 * readelf.c (get_machine_flags <EM_SH>): Print SH ISA name.
350
351 2004-07-21 H.J. Lu <hongjiu.lu@intel.com>
352
353 * objcopy.c (filter_symbols): Use bfd_coff_get_comdat_section
354 to access comdat.
355 * objdump.c (dump_section_header): Likewise.
356
357 2004-07-15 Aravinda PR <aravindapr@rediffmail.com>
358
359 * nlmconv.c (main): Pass map_file argument to link_inputs.
360 (link_inputs): Use map_file argument if it is defined.
361
362 2004-07-13 Nick Clifton <nickc@redhat.com>
363
364 * dllwrap.c: Replace 'program_name' with 'prog_name' to avoid
365 conflicts with exported global defined in bucomm.h.
366 (deduce_name): Rename parameter 'program_name' to 'name' to avoid
367 shadowing the global defined in bucomm.h.
368
369 2004-07-12 Aaron W. LaFramboise <aaron98wiridge9@aaronwl.com>
370
371 * dlltool.c (ext_prefix_alias): New global variable.
372 (make_one_lib_file): Add aliases with prefixes for external
373 and import definitions.
374 (usage): Document -p option.
375 (long_options): Add --ext-prefix-alias option.
376 (main): Handle -p.
377 * doc/binutils.texi: Document new switch.
378 * NEWS: Mention new switch.
379
380 2004-07-09 Aaron W. LaFramboise <aaron98wiridge9@aaronwl.com>
381
382 * binutils/dlltool.c (asm_prefix): Add parameter: name.
383 No underscore for symbols beginning with ?.
384 (ASM_PREFIX): Add parameter: NAME.
385 (gen_exp_file): Use new parameter.
386 (make_label): Likewise.
387 (make_imp_label): Likewise.
388 (make_one_lib_file): Likewise.
389
390 2004-07-07 Tomer Levi <Tomer.Levi@nsc.com>
391
392 * MAINTAINERS: Added myself to the list.
393 * readelf.c: Include "elf/crx.h".
394 (guess_is_rela): Handle EM_CRX.
395 (get_machine_name): Likewise.
396 (dump_relocations): Likewise.
397
398 2004-07-03 Aaron W. LaFramboise <aaron98wiridge9@aaronwl.com>
399
400 * doc/binutils.texi (nm): Clarify weak symbol description.
401
402 2004-06-24 Ben Elliston <bje@au.ibm.com>
403
404 * readelf.c (get_segment_type): Display "GNU_STACK", not just
405 "STACK", when a PT_GNU_STACK segment is encountered.
406
407 2004-06-24 Alan Modra <amodra@bigpond.net.au>
408
409 * objcopy.c (copy_section): Don't set _cooked_size.
410
411 2004-06-22 Alan Modra <amodra@bigpond.net.au>
412
413 * readelf.c (Elf32_Word): Delete.
414 (get_32bit_dynamic_section): Handle SGI ELF dynamic segment.
415 (get_64bit_dynamic_section): Likewise.
416
417 * readelf.c (get_32bit_dynamic_section): Stop at first DT_NULL entry.
418 (get_64bit_dynamic_section): Likewise.
419
420 * readelf.c (dynamic_nent): New variable.
421 (get_32bit_dynamic_section): Set it.
422 (get_64bit_dynamic_section): Here too.
423 (process_dynamic_section): Use it instead of dynamic_size.
424 (process_syminfo): Likewise.
425
426 * readelf.c (get_32bit_dynamic_section): Correct number of entries
427 translated from external to internal form.
428 (get_64bit_dynamic_section): Likewise.
429
430 2004-06-18 Jie Zhang <zhangjie@magima.com.cn>
431
432 * readelf.c (process_program_headers): When locating the dynamic
433 section use the section table if it is present.
434 (dynamic_segment): Renamed to dynamic_section.
435 Replace references to dynamic segment with references to dynamic
436 section, except where appropriate.
437 (dynamic_segment_mips_val): Rename to dynamic_section_mips_val.
438 (dynamic_segment_parisc_val): Rename to dynamic_section_parisc_val.
439 (dynamic_segment_ia64_val): Rename to dynamic_section_ia64_val.
440 (get_32bit_dynamic_segment): Rename to get_32bit_dynamic_section.
441 Remove tag counting code as it is no longer needed.
442 (get_64bit_dynamic_segment): Rename to get_64bit_dynamic_section.
443 Remove tag counting code as it is no longer needed.
444 (process_dynamic_segment): Rename to process_dynamic_section.
445
446 2004-06-15 Alan Modra <amodra@bigpond.net.au>
447
448 * objcopy.c (copy_section): Use bfd_get_section_size instead of
449 _raw_size or bfd_get_section_size_before_reloc. Don't set reloc_done.
450 (compare_section_lma): Likewise.
451 * addr2line.c (find_address_in_section): Likewise.
452 * coffgrok.c (do_sections_p1): Likewise.
453 * dlltool.c (scan_drectve_symbols): Likewise.
454 * nlmconv.c (main): Likewise.
455 (copy_sections): Likewise.
456 (powerpc_mangle_relocs): Likewise.
457 * objdump.c (disassemble_section): Likewise.
458 * prdbg.c (find_address_in_section): Likewise.
459 * size.c (berkeley_sum): Likewise.
460 * srconv.c (wr_ob): Likewise.
461 * strings.c (strings_a_section): Likewise.
462
463 2004-05-28 Ian Lance Taylor <ian@wasabisystems.com>
464
465 * readelf.c (decode_ARM_machine_flags): Add EF_ARM_VFP_FLOAT.
466
467 2004-05-17 David Heine <dlheine@tensilica.com>
468
469 * objcopy.c (setup_bfd_headers): New function.
470 (copy_object): Call setup_bfd_headers.
471
472 2004-05-13 Paul Brook <paul@codesourcery.com>
473
474 * readelf.c (display_debug_frames): Handle dwarf3 format CIE
475 entries.
476
477 2004-05-13 Nick Clifton <nickc@redhat.com>
478
479 * po/fr.po: Updated French translation.
480
481 2004-05-11 Jakub Jelinek <jakub@redhat.com>
482
483 * readelf.c (get_segment_type): Handle PT_GNU_RELRO.
484
485 2004-05-07 H.J. Lu <hongjiu.lu@intel.com>
486
487 * readelf.c (section_groups): New.
488 (group_count): New.
489 (section_headers_groups): New.
490 (process_section_groups): Populate group_count, section_groups
491 and section_headers_groups.
492 (process_unwind): Support section group.
493 (process_object): Always call process_section_groups. Free
494 section_groups and section_headers_groups.
495
496 2004-04-30 H.J. Lu <hongjiu.lu@intel.com>
497
498 * readelf.c (process_section_headers): Use %3lu on sh_info.
499
500 2004-04-30 Michael Deutschmann <michael@talamasca.ocis.net>
501
502 * ranlib.sh: Quote $1 argument in case it contains spaces.
503
504 2004-04-27 John Paul Wallington <jpw@gnu.org>
505
506 * objcopy.c (copy_usage, strip_usage): Fix spelling.
507
508 2004-04-26 H.J. Lu <hongjiu.lu@intel.com>
509
510 * readelf.c (do_section_groups): New.
511 (options): Add --section-groups/-g.
512 (usage): Mention --section-groups/-g.
513 (parse_args): Support --section-groups/-g.
514 (get_group_flags): New.
515 (process_section_groups): New.
516 (process_object): Call process_section_groups.
517
518 2004-04-24 Alan Modra <amodra@bigpond.net.au>
519
520 * objdump.c (disassemble_section): Don't disassemble sections
521 without SEC_HAS_CONTENTS.
522
523 2004-04-22 Jakub Jelinek <jakub@redhat.com>
524
525 * objdump.c (synthsyms, synthcount): New variables.
526 (disassemble_data): Use dynsyms for stripped binaries or libraries.
527 Add synthetized symbols.
528 (dump_bfd): For disassemble, initialize dynsyms always and
529 also synthsyms. Free synthsyms and clear {sym,dynsym,synth}count
530 before returning.
531
532 2004-04-14 Alan Modra <amodra@bigpond.net.au>
533
534 * strings.c (print_strings): Cast file_off to unsigned long in
535 printf arg list.
536
537 2004-04-07 Benjamin Monate <benjamin.monate@cea.fr>
538
539 PR 86
540 * arsup.c (ar_save): Use smart_rename.
541
542 2004-04-01 Dean Luick <luick@cray.com>
543
544 * readelf.c (display_debug_pubnames): Align offset and data
545 columns.
546 (read_and_display_attr_value): Add missing break;
547 (debug_displays): Enable the display of the .debug_pubtypes
548 section.
549
550 2004-03-30 Stan Shebs <shebs@apple.com>
551
552 * mpw-config.in, mpw-make.sed, mac-binutils.r: Remove MPW
553 support files, no longer used.
554
555 2004-03-23 Paul Brook <paul@codesourcery.com>
556
557 * readelf.c (decode_ARM_machine_flags): Add EABI v3.
558
559 2004-03-21 Richard Henderson <rth@redhat.com>
560
561 * readelf.c (display_debug_frames): Don't crash for mismatched
562 DW_CFA_restore_state.
563
564 2004-03-19 Alan Modra <amodra@bigpond.net.au>
565
566 * Makefile.am: Run "make dep-am".
567 * Makefile.in: Regenerate.
568 * aclocal.m4: Regenerate.
569 * config.in: Regenerate.
570 * configure: Regenerate.
571 * po/binutils.pot: Regenerate.
572
573 2004-03-15 Nathan Sidwell <nathan@codesourcery.com>
574
575 * objdump.c (struct SFILE): Replace current pointer with pos
576 offset, rename size to alloc.
577 (objdump_sprintf): Avoid unnecessary copies in the common case
578 (disassemble_bytes): Keep sfile live throughout the
579 function. Adjust usage appropriately.
580
581 2004-03-10 Ben Elliston <bje@gnu.org>
582
583 * MAINTAINERS: Update my mail address.
584
585 2004-03-08 Danny Smith <dannysmith@users.sourceforge.net>
586
587 * deflex.l: Handle "PRIVATE" string.
588 * defparse.y (%token): Add PRIVATE.
589 (%type): Add opt_PRIVATE.
590 (expline): Pass opt_PRIVATE to def_exports.
591 (opt_PRIVATE): Handle PRIVATE token.
592 * dlltool.h (def_exports): Add 7th param for private flag to
593 declaration.
594 * dlltool.c: Add PRIVATE to comment on EXPORTS syntax.
595 (struct export): Add 'private' field.
596 (def_exports): Set 'private' field of struct exports.
597 (scan_drectve_symbols): Adjust calls to def_exports.
598 (scan_filtered_symbols): Likewise.
599 (dump_def_info): Print 'private' field.
600 (gen_def_file): Likewise.
601 (gen_lib_file): Skip generation of lib object if private.
602 Delete tmp object files in same order as they were generated.
603 Don't delete non-existent private object files.
604
605 2004-02-27 Andreas Schwab <schwab@suse.de>
606
607 * ar.c (main): Support POSIX-compatible argument parsing.
608
609 2004-02-23 Daniel Lucq <daniel@lucq.org>
610
611 * readelf.c (process_mips_specific): Print conflictsno as an
612 unsigned long.
613
614 2004-02-21 Dmitry Timoshkov <dmitry@baikal.ru>
615
616 * dlltool.c (gen_exp_file): Always output names for forwarded symbols.
617
618 2004-02-19 Jakub Jelinek <jakub@redhat.com>
619
620 * objcopy.c (copy_section): Avoid warnings.
621
622 2004-02-14 Andrew Cagney <cagney@redhat.com>
623
624 * ar.c (remove_output): Use bfd_cache_close.
625 * arsup.c (ar_end): Ditto.
626
627 2004-01-21 Roland McGrath <roland@redhat.com>
628
629 * readelf.c (get_note_type): Match NT_AUXV.
630
631 2004-01-20 Nick Clifton <nickc@redhat.com>
632
633 * version.c (print_version): Update copyright year to 2004.
634
635 2004-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
636
637 * acinclude.m4: Quote names of macros to be defined by AC_DEFUN
638 throughout.
639 * aclocal.m4: Regenerate.
640 * configure: Regenerate.
641
642 2004-01-12 Jakub Jelinek <jakub@redhat.com>
643
644 * objcopy.c: Include elf-bfd.h.
645 (is_strip_section): Don't strip debugging sections if
646 STRIP_NONDEBUG.
647 (setup_section): If STRIP_NONDEBUG make SEC_ALLOC sections
648 ~(SEC_LOAD | SEC_HAS_CONTENTS) and on ELF targets also SHT_NOBITS.
649
650 * objcopy.c (copy_section): Free relpp if relcount == 0.
651
652 2004-01-12 Ian Lance Taylor <ian@wasabisystems.com>
653
654 * stabs.c (parse_stab_argtypes): Handle g++ ABI version 3 names.
655 (stab_demangle_argtypes): Likewise.
656 (stab_demangle_v3_argtypes): New static function.
657 (stab_demangle_v3_arg): New static function.
658
659 2004-01-12 Nick Clifton <nickc@redhat.com>
660
661 * objcopy.c (copy_object): Make the function boolean, returning
662 FALSE upon failure.
663 (copy_archive): Handle the return value from copy_object.
664 (copy_file): Likewise.
665
666 2004-01-07 Nick Clifton <nickc@redhat.com>
667
668 * readelf.c (find_section): New function. Locates a named
669 section.
670 (get_debug_line_pointer_sizes): New function: Initialises the
671 debug_line_pointer_sizes array.
672 (display_debug_lines): Call get_debug_line_pointer_sizes.
673 (display_debug_loc): Likewise.
674 (load_debug_loc): Use find_section.
675 (load_debug_str): Likewise.
676 (display_debug_info): Likewise.
677 (prescan_debug_info): Delete.
678 (debug_displays): Remove prescan field.
679 (process_section_contents): Do not perform prescans.
680
681 2004-01-03 Alan Modra <amodra@bigpond.net.au>
682
683 * objcopy.c (filter_bytes): Delete. Move code to..
684 (copy_section): ..here. Simplify size adjustment. Divide
685 section lma by interleave.
686
687 2004-01-02 Nick Clifton <nickc@redhat.com>
688
689 * po/ru.po: New file: Russian translation.
690 * configure.in (ALL_LINGUAS): Add ru
691 * configure: Regenerate.
692
693 For older changes see ChangeLog-0203
694 \f
695 Local Variables:
696 mode: change-log
697 left-margin: 8
698 fill-column: 74
699 version-control: never
700 End:
This page took 0.04719 seconds and 4 git commands to generate.