PR24499, ignore --add-gnu-debuglink for archives
[deliverable/binutils-gdb.git] / binutils / ChangeLog
CommitLineData
f2032b67
AM
12019-11-19 Alan Modra <amodra@gmail.com>
2
3 PR 24499
4 * objcopy.c (copy_file): Ignore --add-gnu-debuglink for archives.
5
6765ee18
AM
62019-11-19 Alan Modra <amodra@gmail.com>
7
8 PR 24968
9 * objcopy.c (copy_object): For ELF output and non-ELF input without
10 arch, take arch from output file if not given by -B. Don't
11 bfd_get_arch_info when we already have iarch.
12
dd68a12b
AM
132019-11-19 Alan Modra <amodra@gmail.com>
14
15 PR 25191
16 * objcopy.c (is_nondebug_keep_contents_section): Use bfd_get_flavour.
17 (copy_object): Likewise.
18 (setup_section): Likewise. If flavour of input and output files
19 differ, restrict section flags to the intersection of input and
20 output bfd_applicable_section_flags.
21
df56ecde
AM
222019-11-19 Alan Modra <amodra@gmail.com>
23
24 * bucomm.c (bfd_nonfatal_message): Add a space between program
25 name and file.
26
1f67cf98
AM
272019-11-18 Alan Modra <amodra@gmail.com>
28
29 PR 25198
30 * prdbg.c (tg_start_class_type): Correct scope of idbuf.
31
831bd6aa
AM
322019-11-08 Alan Modra <amodra@gmail.com>
33
34 PR 25172
35 * objdump.c (usage): Correct --stop-address description.
36
e264b5b7
NC
372019-11-07 Nick Clifton <nickc@redhat.com>
38
39 * ar.c (open_output_file): Check for filename validity before
40 prefixing with output directory.
41 Display the constructed output filename if in verbose mode.
42 (extract_file): Let open_output_file display the filename.
43
ef07b808
NC
442019-11-07 Nick Clifton <nickc@redhat.com>
45
46 * objcopy.c (copy_object): Skip note sections that do not have
47 an output section. Always copy note sections, even if no
48 changes are made.
49
75802ccb
CE
502019-11-06 Christian Eggers <ceggers@gmx.de>
51
52 * readelf.c (IN_RANGE): Rename parameter OFF to NELEM. Add
53 comment. Catch potential integer overflow and fix off by one
54 error whilst checking reloc location against section size.
55 (apply_relocations): Use IN_RANGE macro.
56
64f52b3e
FS
572019-11-04 Fangrui Song <maskray@google.com>
58
59 * objcopy.c (enum option_values): Add OPTION_KEEP_SECTION.
60 (SECTION_CONTEXT_KEEP): Define. Adjust other SECTION_CONTEXT macros.
61 (copy_usage): Describe --keep-section.
62 (strip_usage): Likewise.
63 (copy_main): Handle SECTION_CONTEXT_KEEP.
64 (strip_main): Likewise.
65 (is_strip_section_1): Likewise.
66 * testsuite/binutils-all/objcopy.exp: Add tests.
67 * testsuite/binutils-all/keep-section-1.d: New test driver file.
68 * testsuite/binutils-all/keep-section-2.d: Likewise.
69 * doc/binutils.texi: Document the new feature.
70 * NEWS: Mention the new feature.
71
a712c56a
NC
722019-10-20 Palmer Dabbelt <palmer@sifive.com>
73
74 * MAINTAINERS: Change palmer@sifive.com to palmer@dabbelt.com.
75
197245e3
FS
762019-10-30 Fangrui Song <i@maskray.me>
77 Nick Clifton <nickc@redhat.com>
78
79 * ar.c (emum long option numbers): Declare. Use to provide
80 numerical values for long options.
81 (long_options): Add --output option.
82 (usage): Mention the --output option.
83 (open_output_file): New function. Create a filepath for an output
84 file and open it.
85 (extract_file): Use open_output_file().
86 (open_output_file):
87 * testsuite/binutils-all/ar.exp: Add a test of the new feature.
88 * doc/binutils.texi: Document the new feature.
89 * NEWS: Mention the new feature.
90
1cc3da76
AM
912019-10-26 Alan Modra <amodra@gmail.com>
92
93 * objcopy.c (sort_gnu_build_notes): Correct sort of deleted
94 note2.
95
760ddef4
L
962019-10-25 H.J. Lu <hongjiu.lu@intel.com>
97
98 * elfedit.c (elf_x86_feature): Report unknown x86 feature.
99
256878f3
L
1002019-10-25 H.J. Lu <hongjiu.lu@intel.com>
101
102 * elfedit.c (update_gnu_property): Replace BYTE_PUT with byte_put.
103
5c49f2cd
NC
1042019-10-25 Nick Clifton <nickc@redhat.com>
105
106 * objcopy.c (struct merged_note_section): New structure. Used to
107 chain together details of mergeable note sections.
108 (is_merged_note_section): Rename to is_megreable_note_section and
109 return true for note sections that use GNU_BUILD_ATTRS_SECTION_NAME
110 as a prefix.
111 (num_bytes): Delete
112 (objcoopy_internal_note): Add padded_namesz field.
113 (DEBUG_MERGE): New macro. Set to non-zero to enable debugging of
114 the note merging code.
115 (gap_exists): Rename to overlaps_or_adjoins and return TRUE for
116 overlapping notes or adjoining notes.
117 (contained_by, is_deleted_note, is_version_note)
118 (compare_gnu_build_notes, sort_gnu_build_notes): New functions.
119 (merge_gnu_build_notes): Rework. Sort notes into a mergeable
120 order first. Merge them. Then sort them into an ascending
121 address order before writing them out.
122 (copy_object): Handle more than one mergeable note section.
123 * testsuite/binutils-all/note-2-32.d: Update for new merging
124 behaviour.
125 * testsuite/binutils-all/note-2-32.s: Likewise.
126 * testsuite/binutils-all/note-2-64.d: Likewise.
127 * testsuite/binutils-all/note-2-64.s: Likewise.
128 * testsuite/binutils-all/note-3-32.d: Likewise.
129 * testsuite/binutils-all/note-3-32.s: Likewise.
130 * testsuite/binutils-all/note-3-64.d: Likewise.
131 * testsuite/binutils-all/note-3-64.s: Likewise.
132 * testsuite/binutils-all/note-4-32.d: Likewise.
133 * testsuite/binutils-all/note-4-32.s: Likewise.
134 * testsuite/binutils-all/note-4-64.d: Likewise.
135 * testsuite/binutils-all/note-4-64.s: Likewise.
136 * testsuite/binutils-all/note-6-32.s: New test source file.
137 * testsuite/binutils-all/note-6-64.s: New test source file.
138 * testsuite/binutils-all/note-6-32.d: New test driver file.
139 * testsuite/binutils-all/note-6-64.d: New test driver file.
140 * testsuite/binutils-all/objcopy.exp: Run the new test.
141
c0c121b0
AM
1422019-10-25 Alan Modra <amodra@gmail.com>
143
144 * readelf.c (process_program_headers): Check PT_PHDR p_offset
145 as well as p_vaddr. Use p_filesz, not p_memsz, in vaddr test.
146
95cc7c16
AM
1472019-10-21 Alan Modra <amodra@gmail.com>
148
149 PR 452
150 PR 25104
151 * ar.c (write_archive): Set BFD_ARCHIVE_FULL_PATH.
152 * doc/binutils.texi (extract from archive): Mention
153 restrictions when extracting from archives with full paths.
154 (ar P): Update to current P support.
155 (ar -X32_64): Fix spelling.
156
6ce9ba7a
AM
1572019-10-14 Alan Modra <amodra@gmail.com>
158
159 * objcopy.c (compare_section_lma): Correct comment. Dereference
160 section pointer earlier and lose unnecessary const. Style fixes.
161 Add final sort by id.
162
4786fbf3
NC
1632019-10-13 Nick Clifton <nickc@redhat.com>
164
165 * README-how-to-make-a-release: Add a note to reset the
166 development flag back to true after making a point release.
167
03d0d46a
NC
1682019-10-12 Nick Clifton <nickc@redhat.com>
169
170 * README-how-to-make-a-release: Tweak a few sections based on the
171 results of the 2.33.1 release.
172
b0531efe
NC
1732019-10-11 Nick Clifton <nickc@redhat.com>
174
175 * po/zh_TW.po: Updated Chinese (traditional) translation.
176
b7d9d3ee
AM
1772019-10-09 Alan Modra <amodra@gmail.com>
178
179 PR 25079
180 * ar.c (decode_options): Don't try for command options if
181 write_armap or mri_mode is selected.
182
c0ea7c52
JL
1832019-10-07 Jozef Lawrynowicz <jozef.l@mittosystems.com>
184
185 * readelf.c (display_msp430_gnu_attribute): New.
186 (process_arch_specific): Use msp430 specific handler for GNU
187 attributes.
188
d344b407
NA
1892019-09-30 Nick Alcock <nick.alcock@oracle.com>
190
191 * objdump.c (main): Fix tabdamage.
192 * readelf.c (CTF_DUMP): Likewise.
193 (options): Likewise.
194 (dump_section_as_ctf): Likewise.
195
fd86991b
NA
1962019-08-03 Nick Alcock <nick.alcock@oracle.com>
197
198 * objdump.c (dump_ctf): Use the default CTF archive member as the
199 parent even when no parent section is specified.
200 (dump_ctf_archive_member): Only import from the parent
201 if this is not the default ".ctf" member.
202
87279e3c
NA
2032019-09-23 Nick Alcock <nick.alcock@oracle.com>
204
205 * Makefile.am (LIBCTF): Mention the .la file.
206 (LIBCTF_NOBFD): New.
207 (readelf_DEPENDENCIES): Use it.
208 (readelf_LDADD): Likewise.
209 * Makefile.in: Regenerated.
210
616febde
NA
2112019-07-13 Nick Alcock <nick.alcock@oracle.com>
212
213 * readelf.c (dump_ctf_symtab_name): Give default value.
214 (dump_ctf_strtab_name): Likewise.
215 (dump_section_as_ctf): Allow for the null string.
216
9b32cba4
NA
2172019-07-08 Nick Alcock <nick.alcock@oracle.com>
218
219 * objdump.c (dump_ctf_archive_member): Dump the CTF header.
220 * readelf.c (dump_section_as_ctf): Likewise.
221
de4859ea
NC
2222019-10-02 Niklas Gürtler <profclonk@gmail.com>
223
224 PR 24942
225 * objcopy.c (copy_usage): Update description of
226 --set-section-alignment.
227 (copy_main): Interpret numeric argument of --set-section-alignment
228 as a byte alignment, not a power of two alignment.
229 * doc/binutils.texi: Update description of
230 --set-section-alignment.
231 * testsuite/binutils-all/set-section-alignment.d: New test.
232 * testsuite/binutils-all/objcopy.exp: Run the new test.
233
663f67df
AM
2342019-09-30 Alan Modra <amodra@gmail.com>
235
236 PR 25046
237 * readelf.c (process_program_headers): Clear dynamic_addr and
238 dynamic_size earlier.
239
352f6bc3
AM
2402019-09-24 Alan Modra <amodra@gmail.com>
241
242 PR 25031
243 * nm.c (print_format_string): New.
244 (get_print_format): Delete saved_format. Move earlier.
245 (set_print_width): Call get_print_format.
246 (print_value): Use print_format_string.
247
aa739c59
AM
2482019-09-23 Alan Modra <amodra@gmail.com>
249
250 * dlltool.c: Include coff-bfd.h.
251
b3fe587e
AM
2522019-09-23 Alan Modra <amodra@gmail.com>
253
254 PR 25018
255 * dwarf.c (get_type_signedness): Delete ineffective pointer
256 comparison check. Properly range check uvalue offset on
257 recursive call.
258 (read_and_display_attr_value): Range check uvalue offset before
259 calling get_type_signedness.
260
00f93c44
AM
2612019-09-20 Alan Modra <amodra@gmail.com>
262
263 * ar.c (write_archive): Use bfd_set_thin_archive.
264
4e28d4cc
TC
2652019-09-18 Tamar Christina <tamar.christina@arm.com>
266
267 * testsuite/binutils-all/objdump.exp (objump -S): Update testcases.
268
fd361982
AM
2692019-09-18 Alan Modra <amodra@gmail.com>
270
271 * addr2line.c, * bucomm.c, * coffgrok.c, * dlltool.c, * nm.c,
272 * objcopy.c, * objdump.c, * od-elf32_avr.c, * od-macho.c,
273 * od-xcoff.c, * prdbg.c, * rdcoff.c, * rddbg.c, * rescoff.c,
274 * resres.c, * size.c, * srconv.c, * strings.c, * windmc.c: Update
275 throughout for bfd section macro and function changes.
276
e6f7f6d1
AM
2772019-09-18 Alan Modra <amodra@gmail.com>
278
279 * nm.c: Update bfd_get_section to bfd_asymbol_section throughout.
280 * objcopy.c: Likewise.
281 * objdump.c: Likewise.
282 * rdcoff.c: Likewise.
283 * objcopy.c (create_new_symbol): Use bfd_set_asymbol_name.
284 (filter_symbols): Likewise.
285
2b44a6a2
SM
2862019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
287
288 * doc/Makefile.am (MOSTLYCLEANFILES): Clean all man pages,
289 cxxfilt.man and binutils.info.
290 (MAINTAINERCLEANFILES): Remove.
291 * doc/Makefile.in: Re-generate.
292
89ae5e69
SM
2932019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
294
295 * doc/Makefile.am: Remove references to binutils_TEXINFOS.
296 * doc/Makefile.in: Re-generate.
297
95103a84
SM
2982019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
299
300 * doc/Makefile.am (install-data-loca): Remove target.
301 (DISTCLEANFILES): Remove variable.
302 * doc/Makefile.in: Re-generate.
303
e0b2a78c
SM
3042019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
305
306 * Makefile.in: Re-generate.
307 * configure: Re-generate.
308 * doc/Makefile.in: Re-generate.
309
bb695960
PB
3102019-09-16 Phil Blundell <pb@pbcl.net>
311
312 * Makefile.in, configure. doc/Makefile.in: Regenerated.
313
1ff5d5c4
TT
3142019-09-11 Tom Tromey <tom@tromey.com>
315
316 * objcopy.c (copy_archive): Update.
317 * bucomm.h (make_tempname, make_tempdir): Make argument const.
318 * bucomm.c (make_tempname, make_tempdir): Make argument const.
319
0a4632b5
AM
3202019-09-11 Alan Modra <amodra@gmail.com>
321
322 PR 24907
323 * objdump.c (disassemble_bytes): Adjust code to avoid overlong
324 lines. Correct max_reloc_offset_into_insn test.
325
aebcfb76
NC
3262019-09-10 Nick Clifton <nickc@redhat.com>
327
328 PR 24907
329 * objdump.c (null_print): New function.
330 (disassemble_bytes): Delete previous_octets local and replace with
331 a test of the max_reloc_offset_into_insn field of the
332 bfd_arch_info structure. If a reloc is a potential match for the
333 next insn, then perform a dummy disassembly in order to calculate
334 its real length.
335
60391a25
PB
3362019-09-09 Phil Blundell <pb@pbcl.net>
337
338 binutils 2.33 branch created.
339
b16c44de
AM
3402019-09-06 Alan Modra <amodra@gmail.com>
341
342 * nm.c (print_object_filename_bsd, print_object_filename_sysv),
343 (print_object_filename_posix, print_archive_filename_bsd),
344 (print_archive_filename_sysv, print_archive_filename_posix),
345 (print_archive_member_bsd, print_archive_member_sysv),
346 (print_archive_member_posix): Constify parameter.
347 (struct output_fns <print_object_filename, print_archive_filename>),
348 (<print_archive_member>): Likewise.
349 * objcopy.c (copy_archive): Add cast for make_tempdir.
350
a85eba51
AM
3512019-08-29 Alan Modra <amodra@gmail.com>
352
353 * dwarf.c (check_uvalue): Remove unnecessary pointer checks.
354
fa463e9f
N
3552019-08-28 Niklas Gürtler <profclonk@gmail.com>
356
357 PR 24942
358 * objcopy.c (SECTION_CONTEXT_SET_ALIGNMENT): New constant.
359 (struct section_list): Add alignment field.
360 (command_line_switch): Add OPTION_SET_SECTION_ALIGNMENT.
361 (copy_options): Add --set-section-alignment.
362 (copy_usage): Describe --set-section-alignment.
363 (find_section_list): Initialise the alignment field.
364 (setup_section): Handle the alignment field.
365 (copy_main): Handle OPTION_SET_SECTION_ALIGNMENT.
366 * doc/binutils.texi: Document the new feature.
367 * NEWS: Mention the new feature.
368
a1c110a3
NC
3692019-08-28 Nick Clifton <nickc@redhat.com>
370
371 PR 24931
372 * objdump.c (source_comment): New static variable.
373 (option_values): Add OPTION_SOURCE_COMMENT.
374 (long_opions): Add --source-comment.
375 (print_line): If source comment is set, use it as a prefix to the
376 source code line.
377 (main): Handle OPTION_SOURCE_COMMENT.
378 * doc/binutils.texi: Document the new option.
379 * NEWS: Mention the new feature.
380 * testsuite/binutils-all/objdump.exp (test_objdump_S): Add tests
381 of the -S and --source-comment options.
382
ec1b0fbb
NC
3832019-08-27 Nick Clifton <nickc@redhat.com>
384
385 PR 24510
386 * dwarf.c (MAX_CU_NESTING): New constant.
387 (level_type_signed): New static array.
388 (skip_attr_bytes): New function.
389 (get_type_signedness): New function.
390 (read_and_print_leb128): New function.
391 (display_discr_list): New function.
392 (read_and_display_attr_value): Add start parameter.
393 Use new functions when handling DW_AT_type and DW_AT_discr_list.
394 (read_and_display_attr): Add start parameter. Pass to
395 read_and_display_attr_value.
396 (process_debug_info): Update call to read_and_display_attr.
397 (display_formatted_table): Likewise.
398 (display_debug_lines_decoded): Likewise. Also add start
399 parameter.
400 (display_debug_lines): Likewise.
401 * testsuite/binutils-all/dwarf-attributes.S: Update discrimination
402 lists.
403 * testsuite/binutils-all/dwarf-attributes.W: Update expected
404 output.
405
37606e67
AM
4062019-08-26 Alan Modra <amodra@gmail.com>
407
408 PR 24938
409 * debug.c (debug_write_type): Call empty_type for NULL type here..
410 (debug_write_type): ..rather than in just one case here.
411
afc72f15
NC
4122019-08-23 Nick Clifton <nickc@redhat.com>
413
414 PR 24829
415 * dwarf.c (check_uvalue): New function. Ensures that a block's
416 size is valid.
417 (read_and_display_attr_value): Use check_value when processsing
418 DW_FORM_block<n> attributes.
419
93d6a337
NC
4202019-08-22 Nick Clifton <nickc@redhat.com>
421
422 PR 24921
423 * dwarf.c (process_cu_tu_index): Handle the case where a table
424 does not have any columns.
425
d292364e
AM
4262019-08-19 Alan Modra <amodra@gmail.com>
427
428 PR 24898
429 * dwarf.c (display_debug_frames): Use the read_cie check and error
430 for augmentation data length.
431
d367307b
AM
4322019-08-17 Alan Modra <amodra@gmail.com>
433
434 PR 24911
435 * dwarf.c (comp_addr_base): Dereference args.
436
0b8b7609
AM
4372019-08-16 Alan Modra <amodra@gmail.com>
438
439 PR 24909
440 PR 23499
441 * readelf.c (get_symbol_version_string): Set sym_info earlier.
442
6ae978f1
NC
4432019-08-15 Nick Clifton <nickc@redhat.com>
444
445 PR 24767
446 * doc/binutils.texi (nm): Document the 'n' symbol type.
447
9177214a
CV
4482019-08-15 Christophe Vidal <support@krizalys.com>
449
450 * docs/binutils.texi: Fixed notice message disassembler options
451 section of the man page.
452
f16a9783
MS
4532019-08-09 Mihailo Stojanovic <mihailo.stojanovic@rt-rk.com>
454
455 * readelf.c (get_mips_dynamic_type): Return MIPS_XHASH dynamic type.
456 (get_mips_section_type_name): Return MI{S_XHASH name string.
457 (dynamic_section_mips_val): Initialize the .MIPS.xhash dynamic
458 info.
459 (process_symbol_table): Initialize the .MIPS.xhash section
460 pointer. Adjust the readelf output to support the new section.
461 (process_object): Set the .MIPS.xhash dynamic info to zero.
462
2b2ed245
TC
4632019-08-09 Tamar Christina <tamar.christina@arm.com>
464
465 * testsuite/binutils-all/arm/in-order-all.d: Skip on pe, wince, coff.
466 * testsuite/binutils-all/arm/in-order.d: Likewise.
467 * testsuite/binutils-all/arm/out-of-order-all.d: Likewise.
468 * testsuite/binutils-all/arm/out-of-order.d: Likewise.
469
dbe15e4e
NC
4702019-08-08 Nick Clifton <nickc@redhat.com>
471
472 PR 24887
473 * readelf.c (process_notes_at): Left justify the "Data size"
474 column heading.
475 * testsuite/binutils-all/i386/empty.d: Adjust for new output format.
476 * testsuite/binutils-all/i386/ibt.d: Likewise.
477 * testsuite/binutils-all/i386/pr21231a.d: Likewise.
478 * testsuite/binutils-all/i386/pr21231b.d: Likewise.
479 * testsuite/binutils-all/i386/shstk.d: Likewise.
480 * testsuite/binutils-all/note-2-32.d: Likewise.
481 * testsuite/binutils-all/note-2-64.d: Likewise.
482 * testsuite/binutils-all/x86-64/empty-x32.d: Likewise.
483 * testsuite/binutils-all/x86-64/empty.d: Likewise.
484 * testsuite/binutils-all/x86-64/ibt-x32.d: Likewise.
485 * testsuite/binutils-all/x86-64/ibt.d: Likewise.
486 * testsuite/binutils-all/x86-64/pr21231a.d: Likewise.
487 * testsuite/binutils-all/x86-64/pr21231b.d: Likewise.
488 * testsuite/binutils-all/x86-64/pr23494a-x32.d: Likewise.
489 * testsuite/binutils-all/x86-64/pr23494a.d: Likewise.
490 * testsuite/binutils-all/x86-64/pr23494c-x32.d: Likewise.
491 * testsuite/binutils-all/x86-64/pr23494c.d: Likewise.
492 * testsuite/binutils-all/x86-64/pr23494d-x32.d: Likewise.
493 * testsuite/binutils-all/x86-64/pr23494d.d: Likewise.
494 * testsuite/binutils-all/x86-64/pr23494e-x32.d: Likewise.
495 * testsuite/binutils-all/x86-64/pr23494e.d: Likewise.
496 * testsuite/binutils-all/x86-64/shstk-x32.d: Likewise.
497 * testsuite/binutils-all/x86-64/shstk.d: Likewise.
498
7d55c1d6
NC
4992019-08-08 Nick Clifton <nickc@redhat.com>
500
501 * testsuite/gentestdlls.c (main): Move declaration of loop
502 variable outside of the for() statement.
503
178d8719
JR
5042019-08-08 Jordan Rupprecht <rupprecht@google.com>
505
506 * readelf.c (process_note): Mask unknown description data bytes.
507
7c1c1904
AM
5082019-08-08 Alan Modra <amodra@gmail.com>
509
510 * readelf.c (get_data): Improve overflow checks.
511
f927cc8f
NC
5122019-08-07 Nick Clifton <nickc@redhat.com>
513
514 PR 24777
515 * doc/binutils.texi: Ensure consistent formating of title strings
516 for man pages. Extend the title of the size man page to be more
517 informative.
518
7cd00957
OM
5192019-08-07 Omair Majid <omajid@redhat.com>
520
521 * testsuite/binutils-all/objdump.exp
522 (test_objdump_dotnet_assemblies): Fix test to distinguish errors
523 in parsing simple pei-i386 and pei-x86-64 vs parsing the newly
524 introduced machine types.
525 * testsuite/gentestdlls.c (write_simple_dll): New function.
526 (main): Generate simple and Linux-specific variants of pei-i386
527 and pei-x86-64 files so both can be used by tests.
528
90679903
AM
5292019-08-07 Alan Modra <amodra@gmail.com>
530
531 PR 24876
532 * readelf.c (dump_ia64_unwind): Check that buffer is large
533 enough for "stamp" before reading.
534
276cbbdf
NC
5352019-08-05 Nick Clifton <nickc@redhat.com>
536
537 PR 24874
538 * objcopy.c (merge_gnu_build_notes): Do not insist on the first
539 note being a version note.
540 Remove spurious debugging fprintf.
541
e17869db
NC
5422019-08-05 Nick Clifton <nickc@redhat.com>
543
544 PR 24829
545 * readelf.c (apply_relocations): Catch potential integer overflow
546 whilst checking reloc location against section size.
547
97c0a079
AM
5482019-08-02 Alan Modra <amodra@gmail.com>
549
550 PR 24871
551 * readelf.c (ABSADDR): Delete.
552 (dump_ia64_unwind): Expand ABSADDR. Check validity of info.section.
553
cc5277b1
ML
5542019-07-29 Martin Liska <mliska@suse.cz>
555
556 PR 24768
557 * nm.c (filter_symbols): Set report_plugin_err if
558 error is reported.
559 (display_rel_file): Report error for a missing LTO plugin.
560
8e2e3c6c
AM
5612019-07-26 Alan Modra <amodra@gmail.com>
562
563 PR 24798
564 * dwarf.c (process_cu_tu_index): Avoid integer overflow on 64-bit
565 systems by casting ncols and nslots expressions to size_t. Display
566 number of columns and slots before giving up due to buffer overflow.
567 Use %u to display unsigned ints. Perform more pointer wrap tests.
568
d079b9c0 5692019-07-25 Tom Tromey <tromey@adacore.com>
48467cb9
TV
570
571 PR 24809
572 * dwarf.c (display_debug_names): Display the contents of the
573 augmentation string, if it is printable.
574
2e6be59c
NC
5752019-07-25 Nick Clifton <nickc@redhat.com>
576
577 PR 24837
578 * readelf.c (process_mips_specific): Check for buffer overflow
579 before reading reginfo information.
580
2f86d559
NC
5812019-07-24 Nick Clifton <nickc@redhat.com>
582
583 PR 13256
584 * ar.c (decode_options): Restart option scanning if no operation
585 is detected and argument remain to be scanned.
586
2e8136f9
NC
5872019-07-23 Nick Clifton <nickc@redhat.com>
588
589 PR 24818
590 * objdump.c (is_relocateable): Delete.
591 (load_specific_debug_section): Test the abfd for relocations
592 directly, rather than relying upon is_relocateable.
593 (dump_dwarf): Delete initlialization of is_relocateable.
594
df3a023b
AM
5952019-07-23 Alan Modra <amodra@gmail.com>
596
597 * readelf.c (get_parisc_segment_type): Split off hpux entries..
598 (get_ia64_segment_type): ..and these..
599 (get_hpux_segment_type): ..to here.
600 (get_segment_type): Condition GNU_MBIND on osabi. Use
601 get_hpux_segment_type.
602 (get_symbol_binding): Do not print UNIQUE for ELFOSABI_NONE.
603 (get_symbol_type): Do not print IFUNC for ELFOSABI_NONE.
604
acea835f
AM
6052019-07-23 Alan Modra <amodra@gmail.com>
606
607 * testsuite/binutils-all/objcopy.exp (elf64): Correct object
608 file used to set this variable.
609
1dd1bc4d
OM
6102019-07-23 Omar Majid <omajid@redhat.com>
611
612 * Makefile.am (AUTOMAKE_OPTIONS): Add subdir-objects
613 (GENTESTDLLSPROG): Define.
614 (TEST_PROGS): Add GENTESTDLLSPROG.
615 * Makefile.in: Regenerate.
616 * testsuite/binutils-all/objdump.exp
617 (test_objdump_dotnet_assemblies): New proc.
618 Run the new proc.
619 * testsuite/gentestdlls.c: New source file.
620
781152ec
NC
6212019-06-28 Nick Clifton <nickc@redhat.com>
622
623 PR 24707
624 * objdump.c (slurp_symtab): Fail with a helpful error message if
7e56c51c
NC
625 the symbol table is too large. Skip this check for MMO format
626 files.
781152ec 627
a68aa5d3
NC
6282019-06-26 Nick Clifton <nickc@redhat.com>
629
630 PR 24703
631 * bucomm.c (bfd_nonfatal): If no bfd error code has been set then
632 indicate this in the output.
633 (bfd_nonfatal_message): Likewise.
634
3e50a591
JB
6352019-06-25 Jan Beulich <jbeulich@suse.com>
636
637 * readelf.c (dump_ctf_indent_lines): Rename local variable
638 "spaces" to "blanks".
639
63160fc9
JB
6402019-06-25 Jan Beulich <jbeulich@suse.com>
641
642 * objdump.c (dump_ctf_indent_lines): Rename local variable
643 "spaces" to "blanks".
644
3a3a077c
AM
6452019-06-14 Alan Modra <amodra@gmail.com>
646
647 * Makefile.in: Regenerate.
648 * aclocal.m4: Regenerate.
649 * doc/Makefile.in: Regenerate.
650
9abca702
CZ
6512019-06-12 Christos Zoulas <christos@zoulas.com>
652
653 PR 24663
654 * readelf.c (process_netbsd_elf_note): Add support for
655 NT_NETBSD_PAX.
656 (process_note): Add support for PaX notes.
657
c0d38b0e
CZ
6582019-06-12 Christos Zoulas <christos@zoulas.com>
659
660 PR 24665
661 * readelf.c (get_netbsd_elfcore_note_type): Add support for SH
662 core notes.
663
540e6170
CZ
6642019-06-12 Christos Zoulas <christos@zoulas.com>
665
666 PR 24664
667 * readelf.c (get_netbsd_elfcore_note_type): Add support for NetBSD
668 auxv notes.
669
2057d69d
CZ
6702019-06-11 Christos Zoulas <christos@zoulas.com>
671
672 PR 24662
673 * readelf.c (get_alpha_symbol_other): New function.
674 (get_symbol_other): Use for Alpha symbols.
675 (is_32bit_pcrel_reloc): Add R_VAX_PCREL32.
676
c93dbb25
CZ
6772019-06-11 Christos Zoulas <christos@zoulas.com>
678
679 PR 24661
680 * readelf.c (decode_arm_unwind): Ensure that the local variable
681 'addr' is always initialised.
682
c6a636ce
NC
6832019-06-10 Christos Zoulas <christos@zoulas.com>
684
685 PR 24651
686 * strings.c (print_strings): Use %u to print unsigned values in
687 decimal.
688
2e02f296
CZ
6892019-06-10 Christos Zoulas <christos@zoulas.com>
690
691 PR 24649
692 * arsup.c (ar_open): Use asprintf in place of xmalloc and
693 sprintf.
694
79b377b3
NC
6952019-06-03 Nick Clifton <nickc@redhat.com>
696
697 Revert:
698 2019-05-29 Nick Clifton <nickc@redhat.com>
699
700 * configure.ac (LIBCTF): Export. Set to empty for non-ELF based
701 targets.
702 (HAVE_LIBCTF): Define if libctf support is available.
703 * Makefile.am (LIBCTF): Set value to @LIBCTF@.
704 * objdump.c: Make CTF code conditional upon HAVE_LIBCTF being
705 defined.
706 * readelf.c: Likewise.
707 * configure: Regenerate.
708 * Makefile.in: Regenerate.
709 * config.in: Regenerate.
710
a0486bac
JM
7112019-05-30 Nick Alcock <nick.alcock@oracle.com>
712
713 * objdump.c (make_ctfsect): Drop cts_type, cts_flags, and
714 cts_offset.
715 * readelf.c (shdr_to_ctf_sect): Likewise.
716
ae9ac79e
NC
7172019-05-30 Nick Clifton <nickc@redhat.com>
718
719 PR 24627
720 * readelf.c (process_version_sections): Add 0x prefix to address
721 display. Correct indentation.
722
6ff185b8
AM
7232019-05-30 Alan Modra <amodra@gmail.com>
724
725 * testsuite/lib/binutils-common.exp (supports_gnu_unique): Add
726 s12z to targets not supporting this feature.
727
1336939d
AM
7282019-05-30 Alan Modra <amodra@gmail.com>
729
730 * testsuite/lib/binutils-common.exp (run_dump_test): Support
731 tcl procedures for xfail args.
732
e33f2313
NC
7332019-05-29 Nick Clifton <nickc@redhat.com>
734
735 * README-how-to-make-a-release: Add libctf to list of directories
736 that need updates in their ChangeLogs.
737
90bd5423
NC
7382019-05-29 Nick Clifton <nickc@redhat.com>
739
740 * configure.ac (LIBCTF): Export. Set to empty for non-ELF based
741 targets.
742 (HAVE_LIBCTF): Define if libctf support is available.
743 * Makefile.am (LIBCTF): Set value to @LIBCTF@.
744 * objdump.c: Make CTF code conditional upon HAVE_LIBCTF being
745 defined.
746 * readelf.c: Likewise.
747 * configure: Regenerate.
748 * Makefile.in: Regenerate.
749 * config.in: Regenerate.
750
88981b15
NA
7512019-05-28 Nick Alcock <nick.alcock@oracle.com>
752
753 * MAINTAINERS: Add myself as CTF maintainer.
754
7d9813f1
NA
7552019-05-28 Nick Alcock <nick.alcock@oracle.com>
756
757 * objdump.c (ctf-api.h): New include.
758 (dump_ctf_section_info): New variable.
759 (dump_ctf_section_name): Likewise.
760 (usage): Describe new options.
761 (enum option_values): Add OPTION_CTF and OPTION_CTF_PARENT.
762 (main): Use them to add --ctf and --ctf-parent.
763 (read_section_stabs): Add new parameter, entsize_ptr.
764 (find_stabs_section): Adjust accordingly.
765 (make_ctfsect): New.
766 (dump_ctf_indent_lines): New.
767 (dump_ctf_archive_member): New.
768 (dump_ctf): New.
769 (dump_bfd): Call it. Free resources afterwards.
770 * readelf.c (ctf-api.h): New include.
771 (CTF_DUMP): New.
772 (static bfd_boolean do_ctf): Likewise.
773 (dump_ctf_parent_name): Likewise.
774 (dump_ctf_symtab_name): Likewise.
775 (dump_ctf_strtab_name): Likewise.
776 (OPTION_CTF_DUMP): Likewise.
777 (OPTION_CTF_PARENT): Likewise.
778 (OPTION_CTF_SYMBOLS): Likewise.
779 (OPTION_CTF_STRINGS): Likewise.
780 (options): Add them.
781 (usage): Likewise.
782 (parse_args): Handle the new options, requesting CTF_DUMP.
783 (process_section_contents): Handle CTF_DUMP.
784 (shdr_to_ctf_sect): New.
785 (dump_ctf_indent_lines): New.
786 (dump_section_as_ctf): New.
787 (main): Free resources.
788 * Makefile.am (LIBCTF): New variable.
789 (objdump_DEPENDENCIES): Use it.
790 (readelf_DEPENDENCIES): Likewise.
791 (objdump_LDADD): Likewise.
792 (readelf_LDADD): Likewise.
793 * aclocal.m4: Regenerated.
794 * Makefile.in: Likewise.
795
796 * doc/binutils.texi (objdump): Document the new options.
797 (readelf): Likewise.
798 * doc/ctf.options.texi: New.
799 * doc/Makefile.in: Regenerated.
800 * NEWS: Mention the new feature.
801
61dd8e19
AM
8022019-05-27 Alan Modra <amodra@gmail.com>
803
804 * readelf.c (process_section_groups): Continue processing groups
805 when sh_entsize exceeds group size.
806
2301ed1c
SN
8072019-05-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
808
809 * readelf.c (get_aarch64_dynamic_type): Handle DT_AARCH64_VARIANT_PCS.
810 (get_aarch64_symbol_other): New, handles STO_AARCH64_VARIANT_PCS.
811 (get_symbol_other): Call get_aarch64_symbol_other.
812
dd7efa79
PB
8132019-05-24 Alan Modra <amodra@gmail.com>
814
815 * objdump.c (disassemble_bytes): Set WIDE_OUTPUT in flags.
816
27830e0d
JM
8172019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
818
819 * MAINTAINERS: Add myself as the maintainer for BPF.
820
aca4efc7
JM
8212019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
822
823 * readelf.c: Include elf/bpf.h.
824 (guess_is_rela): Hanle EM_BPF.
825 (dump_relocations): Likewise.
826 (is_32bit_abs_reloc): Likewise.
827 * testsuite/binutils-all/nm.exp: Add bpf-*-* to the list of
828 ELF targets.
829
fab7c86e
TC
8302019-05-21 Tamar Christina <tamar.christina@arm.com>
831
832 * dwarf.c (dwarf_regnames_aarch64): Add SVE registers.
833 * testsuite/binutils-all/aarch64/sve-dwarf-registers.d: New test.
834 * testsuite/binutils-all/aarch64/sve-dwarf-registers.s: New test.
835
d8734380
FS
8362019-05-20 Faraz Shahbazker <fshahbazker@wavecomp.com>
837
838 PR 14798
839 * testsuite/binutils-all/readelf.ss-mips: Update reference output.
840 * testsuite/binutils-all/readelf.ss-tmips: Likewise.
841
999b073b
NC
8422019-05-20 Nick Clifton <nickc@redhat.com>
843
844 * po/ca.po: Updated Catalan translation.
845
514bbb0f
AV
8462019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
847
848 * NEWS: Mention Armv8.1-M Mainline and MVE.
849
a7ad558c
AV
8502019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
851
852 * readelf.c (arm_attr_tag_MVE_arch): New array for Tag_MVE_arch values.
853 (arm_attr_public_tag arm_attr_public_tags): Add case for Tag_MVE_arch.
854
37d0d091
JH
8552019-05-14 Jamey Hicks <jamey.hicks@gmail.com>
856
857 PR 19921
858 * objcopy.c: Add new option --verilog-data-width. Use it to set
859 the value of VerilogDataWidth.
860 * doc/binutils.texi: Document the new option.
861 * testsuite/binutils-all/objcopy.exp: Run tests of new option.
862 * testsuite/binutils-all/verilog-1.hex: New file.
863 * testsuite/binutils-all/verilog-2.hex: New file.
864 * testsuite/binutils-all/verilog-4.hex: New file.
865 * testsuite/binutils-all/verilog-8.hex: New file.
866 * NEWS: Mention the new feature.
867
391bf891
AM
8682019-05-10 Alan Modra <amodra@gmail.com>
869
870 * testsuite/binutils-all/objdump.exp (test_objdump_disas_limited),
871 (test_objdump_content_limited): Add text arg, use in place of .text.
872 (bintest_signed.o): Call get_standard_section_names for name of
873 text section.
874
2379f9c4
FS
8752019-05-08 Faraz Shahbazker <fshahbazker@wavecomp.com>
876
877 * objdump.c (sign_extend_address): New function.
878 (dump_bfd): Sign-extend user-specified start/stop addresses
879 for targets that need it.
880 * testsuite/binutils-all/objdump.exp: Add tests for objdump
881 with start and stop addresses in higher address ranges.
882
2ecde2b6
MM
8832019-05-01 Matthew Malcomson <matthew.malcomson@arm.com>
884
885 * testsuite/binutils-all/objdump.exp: Correct executable
886 spelling.
887 * testsuite/binutils-all/compress.exp: Likewise.
888
25a02744
NC
8892019-05-01 Nick Clifton <nickc@redhat.com>
890
891 PR 24507
892 * nm.c: (print_format): New variable.
893 (value_format_32bit, value_format_64bit): Delete.
894 (set_print_radix): Remove code to alter value_format strings.
895 (set_output_format): Record chosen format in print_format.
896 (get_print_format): New function - constructs a printf formatting
897 string according to the requirements of size, radix, and output
898 format.
899 (print_value): Use get_print_format.
900 * testsuite/binutils-all/nm.exp: Add tests of "nm --format=posix"
901 and "nm -t d".
902
8107ddce
AM
9032019-04-30 Alan Modra <amodra@gmail.com>
904
905 * wrstabs.c (stab_start_class_type): Add assert to work around
906 gcc9 warning. Tidy.
907
1b8dd643
NC
9082019-04-24 Nick Clifton <nickc@redhat.com>
909
910 * objcopy.c (strip_main): Do not enable note merging by default if
911 just stripping debug or dwo information.
912 * doc/binutils.texi (strip): Update documentation.
913
624a2451
NC
9142019-04-23 Nick Clifton <nickc@redhat.com>
915
916 * README-how-to-make-a-release: Add note to update the symbolic
917 link from "docs" to "docs-2.x" on the sourceware website.
918
a0fb9615
AM
9192019-04-16 Alan Modra <amodra@gmail.com>
920
921 * testsuite/binutils-all/copy-2.d: Don't run for ns32k-*-*.
922 * testsuite/binutils-all/copy-3.d: Likewise.
923
031254f2
AV
9242019-04-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
925
926 * readelf.c (arm_attr_tag_CPU_arch): Add entry for Armv8.1-M Mainline.
927
462cac58
L
9282019-04-08 H.J. Lu <hongjiu.lu@intel.com>
929
930 * readelf.c (decode_x86_isa): Handle
931 GNU_PROPERTY_X86_ISA_1_AVX512_BF16.
932 * testsuite/binutils-all/i386/pr21231b.d: Updated.
933 * testsuite/binutils-all/x86-64/pr21231b.d: Likewise.
934
82b53593
L
9352019-04-08 H.J. Lu <hongjiu.lu@intel.com>
936
937 * testsuite/binutils-all/nm.exp: Count i386-moss as ELF.
938
05805feb
TC
9392019-03-26 Tamar Christina <tamar.christina@arm.com>
940
941 * testsuite/binutils-all/aarch64/in-order-all.d: Update.
942 * testsuite/binutils-all/aarch64/in-order.d: Likewise.
943 * testsuite/binutils-all/aarch64/out-of-order-all.d: Likewise.
944 * testsuite/binutils-all/aarch64/out-of-order.d: Likewise.
945 * testsuite/binutils-all/aarch64/out-of-order.s: Likewise.
946 * testsuite/binutils-all/arm/in-order-all.d: Likewise.
947 * testsuite/binutils-all/arm/in-order.d: Likewise.
948 * testsuite/binutils-all/arm/out-of-order-all.d: Likewise.
949 * testsuite/binutils-all/arm/out-of-order.d: Likewise.
950 * testsuite/binutils-all/arm/out-of-order.s: Likewise.
951
5fb812fc
NC
9522019-03-26 Nick Clifton <nickc@redhat.com>
953
954 * MAINTAINERS: Take over Dave Brolley's maintainerships for FR30,
955 FRV and MEP.
956
e8fba7f6
AM
9572019-03-26 Alan Modra <amodra@gmail.com>
958
959 * objdump.c (dump_relocs_in_section): Warning fix.
960
796d6298
TC
9612019-03-25 Tamar Christina <tamar.christina@arm.com>
962
963 * testsuite/binutils-all/arm/in-order-all.d: New test.
964 * testsuite/binutils-all/arm/in-order.d: New test.
965 * testsuite/binutils-all/arm/objdump.exp: Support .d tests.
966 * testsuite/binutils-all/arm/out-of-order-all.d: New test.
967 * testsuite/binutils-all/arm/out-of-order.T: New test.
968 * testsuite/binutils-all/arm/out-of-order.d: New test.
969 * testsuite/binutils-all/arm/out-of-order.s: New test.
970
971
60df3720
TC
9722019-03-25 Tamar Christina <tamar.christina@arm.com>
973
974 * testsuite/binutils-all/aarch64/in-order-all.d: New test.
975 * testsuite/binutils-all/aarch64/out-of-order-all.d: New test.
976 * testsuite/binutils-all/aarch64/out-of-order.d:
977
51457761
TC
9782019-03-25 Tamar Christina <tamar.christina@arm.com>
979
980 * testsuite/binutils-all/aarch64/in-order.d: New test.
981 * testsuite/binutils-all/aarch64/out-of-order.d: Disassemble data as
982 well.
983
53b2f36b
TC
9842019-03-25 Tamar Christina <tamar.christina@arm.com>
985
986 * objdump.c (disassemble_bytes): Pass stop_offset.
987 * testsuite/binutils-all/aarch64/out-of-order.T: New test.
988 * testsuite/binutils-all/aarch64/out-of-order.d: New test.
989 * testsuite/binutils-all/aarch64/out-of-order.s: New test.
990
63455780
NC
9912019-03-19 Nick Clifton <nickc@redhat.com>
992
993 PR 24360
994 * objdump.c (load_specific_debug_section): Check that the amount
995 of memory to be allocated matches the size of the section.
996
1dbade74
SD
9972019-03-13 Sudakshina Das <sudi.das@arm.com>
998
999 * readelf.c (get_aarch64_dynamic_type): Add case for
1000 DT_AARCH64_PAC_PLT.
1001 (dynamic_section_aarch64_val): Likewise.
1002
37c18eed
SD
10032019-03-13 Sudakshina Das <sudi.das@arm.com>
1004 Szabolcs Nagy <szabolcs.nagy@arm.com>
1005
1006 * readelf.c (get_aarch64_dynamic_type): New.
1007 (get_dynamic_type): Use above for EM_AARCH64.
1008 (dynamic_section_aarch64_val): New.
1009 (process_dynamic_section): Use above for EM_AARCH64.
1010
cd702818
SD
10112019-03-13 Sudakshina Das <sudi.das@arm.com>
1012
1013 * readelf.c (decode_aarch64_feature_1_and): New.
1014 (print_gnu_property_note): Add case for AArch64 gnu notes.
1015
7a6e0d89
AM
10162019-03-12 Alan Modra <amodra@gmail.com>
1017
1018 * objdump.c (load_specific_debug_section): Don't compare section
1019 size against file size.
1020 (dump_relocs_in_section): Don't compare reloc size against file size.
1021 Print "failed to read relocs" on bfd_get_reloc_upper_bound error.
1022
88c9190b
NC
10232019-03-05 Nick Clifton <nickc@redhat.com>
1024
1025 PR 24295
1026 * doc/binutils.texi (ar cmdline): Fix spelling mistake.
1027
4933ff73
NC
10282019-03-05 Nick Clifton <nickc@redhat.com>
1029
1030 * po/sv.po: Updated Swedish translation.
1031
093f70cc
MM
10322019-03-05 Matthew Malcomson <matthew.malcomson@arm.com>
1033
1034 PR 24287
1035 * testsuite/lib/binutils-common.exp (run_dump_test): Replace a use
1036 of "lmap" with a "foreach" loop.
1037
f5f20315
NC
10382019-03-04 Nick Clifton <nickc@redhat.com>
1039
1040 PR 24281
1041 * objcopy.c (copy_archive): Do not copy thin archives.
1042
52d6f3ee
MM
10432019-02-27 Matthew Malcomson <matthew.malcomson@arm.com>
1044
1045 * testsuite/lib/binutils-common.exp: Allow multiple "as" lines.
1046
39f0547e
NC
10472019-02-25 Nick Clifton <nickc@redhat.com>
1048
1049 * objdump.c (sym_ok): New function.
1050 (find_symbol_for_address): Use new function.
1051 (disassemble_section): Compare sections by name, not pointer.
1052 (dump_dwarf): Move code to initialise byte_get pointer and iterate
1053 over separate debug files from here to ...
1054 (dump_bfd): ... here. Add parameter indicating that a separate
1055 debug info file is being dumped. For main file, pull in the
1056 symbol tables from all separate debug info files.
1057 (display_object): Update call to dump_bfd.
1058 * doc/binutils.texi: Document extened behaviour of the
1059 --dwarf=follow-links option.
1060 * NEWS: Mention this new feature.
1061 * testsuite/binutils-all/objdump.WK2: Update expected output.
1062 * testsuite/binutils-all/objdump.exp (test_follow_debuglink): Add
1063 options and dump file parameters.
1064 Add extra test.
1065 * testsuite/binutils-all/objdump.WK3: New file.
1066 * testsuite/binutils-all/readelf.exp: Change expected output for
1067 readelf -wKis test.
1068 * testsuite/binutils-all/readelf.wKis: New file.
1069
24841daa
NC
10702019-02-22 Nick Clifton <nickc@redhat.com>
1071
1072 PR 23843
1073 * dwarf.h (struct separate_info): New structure for containing
1074 information on separate debug info files.
1075 * dwarf.c (struct dwo_info): New structure for containing dwo
1076 links.
1077 (first_dwo_info): Chain of dwo_info structures.
1078 (first_separate_file): Chain of separate_info structures.
1079 (separate_debug_file, separate_debug_filename): Delete.
1080 (fetch_alt_indirect_string): Scan all separate debug info files
1081 for the requested string.
1082 (add_dwo_info): New function.
1083 (add_dwo_name): New function.
1084 (add_dwo_dir): New function.
1085 (add_dwo_id: New function.
1086 (free_dwo_info): New function.
1087 (read_and_display_attr_value): Store DWO data using the new
1088 functions.
1089 (load_debug_section_with_follow): If necessary, scan the list of
1090 separate debug info files for the requested section.
1091 (add_separate_debug_file): New function.
1092 (load_separate_debug_info): Call add_separate_debug_file to store
1093 the information on the newly loaded file.
1094 (load_dwo_file): Likewise.
1095 (load_separate_debif_file): Rename to load_separate_debug_files.
1096 Change return type to boolean. If following links then attempt to
1097 load all separate debug info files, not just the first one.
1098 (free_debug_memory): Release memory in dwo_info and separate_info
1099 chains.
1100 * objdump.c (dump_dwarf): Iterate over all loaded debg info files.
1101 * readelf.c (process_object): Likewise.
1102 * doc/debug.options.texi: Update descriptions of links and
1103 follow-links options.
1104 * testsuite/binutils-all/objdump.WK2: Update expected output.
1105 * testsuite/binutils-all/readelf.k2: Likewise.
1106 * NEWS: Announce the new feature.
1107
5cacf1c8
NC
11082019-02-21 Nick Clifton <nickc@redhat.com>
1109
1110 PR 24247
1111 * unwind-ia64.c: Include sysdep.h.
1112 (unw_decode_x1): Check current pointer against end pointer before
1113 accessing memory.
1114 (unw_decode_x2): Likewise.
1115 (unw_decode_x3): Likewise.
1116 (unw_decode_x4): Likewise.
1117 (unw_decode_r2): Likewise.
1118 (unw_decode_p2_p5): Likewise.
1119 (unw_decode_p7_p10): Likewise.
1120 (unw_decode): Likewise.
1121
8d18bf79
NC
11222019-02-20 Nick Clifton <nickc@redhat.com>
1123
3ca60c57
NC
1124 PR 24246
1125 * readelf.c (print_stapsdt_note): Harden against corrupt notes.
1126
171375c6
NC
1127 PR 24244
1128 * unwind-ia64.c (unw_decode_uleb128): Add end parameter, use it to
1129 prevent walking off the end of the buffer.
1130 (unw_decode_x1): Add end paramter, pass it to unw_decode_uleb128.
1131 (unw_decode_x2): Likewise.
1132 (unw_decode_x3): Likewise.
1133 (unw_decode_x4): Likewise.
1134 (unw_decode_r2): Pass the end parameter to unw_decode_uleb128.
1135 (unw_decode_r3): Likewise.
1136 (unw_decode_p7_p10): Likewise.
1137 (unw_decode_b2): Likewise.
1138 (unw_decode_b3_x4): Likewise.
1139
7fc0c668
NC
1140 PR 24243
1141 * readelf.c (process_mips_specific): Check for an options section
1142 that is too small to even contain a single option.
8d18bf79 1143
171375c6
NC
1144 PR 24242
1145 * readelf.c (print_ia64_vms_note): Harden against corrupt notes.
1146
c22b42ce
AM
11472019-02-20 Alan Modra <amodra@gmail.com>
1148
1149 PR 24132
1150 PR 24138
1151 * readelf.c (get_data): Avoid possibility of overflow when
1152 checking for a read that may extend past end of file.
1153 (process_program_headers): Likewise.
1154
7d272a55
AM
11552019-02-20 Alan Modra <amodra@gmail.com>
1156
1157 PR 24233
1158 * objdump.c (dump_bfd_private_header): Print warning if
1159 bfd_print_private_bfd_data returns false.
1160
04d7fa21
NC
11612019-02-12 Nick Clifton <nickc@redhat.com>
1162
1163 PR 23440
1164 * README-how-to-make-a-release: Use git clean to delete spurious
1165 files from the local source repository.
1166
46cbf38d
AB
11672019-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
1168
1169 * size.c (berkeley_format): Delete.
1170 (enum output_format): New enum.
1171 (selected_output_format): New variable.
1172 (usage): Update to mention GNU format.
1173 (main): Update to extract options, and select format as needed.
1174 Handle GNU format where needed.
1175 (berkeley_sum): Renamed to...
1176 (berkeley_or_gnu_sum): ...this, and updated to handle both formats.
1177 (berkeley_format): Renamed to...
1178 (berkeley_or_gnu_format): ...this, and updated to handle both
1179 formats.
1180 (print_sizes): Handle GNU format.
1181 * doc/binutils.texi (size): Document new GNU format.
1182 * testsuite/binutils-all/size.exp: Add test of extended
1183 functionality.
1184 * NEWS: Mention new functionality.
1185
96fd92af
AB
11862019-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
1187
1188 * doc/binutils.texi (size): Update example output for Berkeley
1189 format output.
1190
2012bf01
NC
11912019-02-07 Nick Clifton <nickc@redhat.com>
1192
1193 * README-how-to-make-a-release: Add a note about updating the
1194 obsolete targets in the bfd/config.bfd file.
1195
082cbd3b
NC
11962019-02-04 Nick Clifton <nickc@redhat.com>
1197
1198 * README-how-to-make-a-release: Add more notes on making a release.
1199
18344509
NC
12002019-01-25 Nick Clifton <nickc@redhat.com>
1201
1202 PR 24131
1203 * readelf.c (process_notes_at): Prevent an illegal memory access
1204 when the note's namesize is zero.
1205 (decode_tic6x_unwind_bytecode): Add code to handle the case where
1206 no registers are specified in a frame pop instruction.
1207
9ed1348c
NC
12082019-01-25 Nick Clifton <nickc@redhat.com>
1209
1210 * po/bg.po: Updated Bulgarian translation.
1211
d9938630
NC
12122019-01-23 Nick Clifton <nickc@redhat.com>
1213
1214 * po/fr.po: Updated French translation.
1215 * po/pt.po: Updated Portuguese translation.
1216
375cd423
NC
12172019-01-21 Nick Clifton <nickc@redhat.com>
1218
1219 * po/uk.po: Updated Ukranian translation.
1220
f48dfe41
NC
12212019-01-19 Nick Clifton <nickc@redhat.com>
1222
1223 * configure: Regenerate.
1224 * binutils/po/binutils.pot.
1225
1226 * README-how-to-make-a-release: Update description on how to make
1227 a branch.
1228
f974f26c
NC
12292018-06-24 Nick Clifton <nickc@redhat.com>
1230
1231 2.32 branch created.
1232
baae986a
NC
12332019-01-17 Nick Clifton <nickc@redhat.com>
1234
1235 * objdump.c (disassemble_section): When disassembling from a
1236 symbol only stop at the next symbol if the original symbol was not
1237 a function symbol. Otherwise continue disassembling until a new
1238 function is reached.
1239 * testsuite/binutils-all/objdump.exp: Add tests of extended
1240 functionality.
1241 * testsuite/binutils-all/disasm.s: New test source file.
1242
2dc8dd17
JW
12432019-01-16 Kito Cheng <kito@andestech.com>
1244 Nelson Chu <nelson@andestech.com>
1245
1246 * readelf.c (get_riscv_section_type_name): New function.
1247 (get_section_type_name): Add handler for RISC-V.
1248 (riscv_attr_tag_t): Declare.
1249 (riscv_attr_tag): New.
1250 (display_riscv_attribute): New function.
1251 (process_attributes): Add handler for RISC-V.
1252 * testsuite/binutils-all/strip-3.d: Remove .riscv.attribute
1253 section.
1254
12add40e
NC
12552019-01-10 Nick Clifton <nickc@redhat.com>
1256
1257 PR 23963
1258 * objdump.c (sanitize_string): New function. Removes control
1259 characters from symbol names.
1260 (dump_section_header): Use new function.
1261 (objdump_print_symname): Likewise.
1262 (objdump_print_addr_with_sym): Likewise.
1263 (show_line): Likewise.
1264 (disassemble_bytes): Likewise.
1265 (disassemble_section): Likewise.
1266 (load_specific_debug_section): Likewise.
1267 (read_section_stabs): Likewise.
1268 (print_section_stabs): Likewise.
1269 (dump_section): Likewise.
1270 (dump_reloc_set): Likewise.
1271 (dump_relocs_in_section): Likewise.
1272 (dump_bfd): Likewise.
1273 (display_any_bfd): Likewise.
1274
28e817cc
NC
12752019-01-09 Nick Clifton <nickc@redhat.com>
1276
c0b0b1c2 1277 PR 24049
28e817cc
NC
1278 * readelf.c (process_archive): Use arch.file_name in error
1279 messages until the qualified name is available.
1280
3107326d
AP
12812019-01-09 Andrew Paprocki <andrew@ishiboo.com>
1282
1283 * configure: Regenerate.
1284
923c6a75
AM
12852019-01-09 Alan Modra <amodra@gmail.com>
1286
1287 * testsuite/binutils-all/cxxfilt.exp: Pass --no-strip-underscores
1288 unconditionally to tests needing the option rather than via a
1289 list of targets.
1290
236f4ebe
NC
12912019-01-08 Nick Clifton <nickc@redhat.com>
1292
1293 PR 24044
1294 * cxxfilt.c (hp_symbol_characters): Delete.
1295 (main): Remove depcreated demangling styles.
1296 * stabs.c (parse_stab_argtypes): Remove support for old gnu v2
1297 demangling opnames.
1298 * testsuite/binutils-all/cxxfilt.exp: Use the
1299 --no-strip-underscore option for targets that do prefix their
1300 symbols with underscores.
923c6a75 1301 Update tests to eliminate those that use gnu v2 encoding.
236f4ebe 1302
e3ecd631
TC
13032019-01-08 Tamar Christina <tamar.christina@arm.com>
1304
1305 PR 24065
1306 * testsuite/binutils-all/copy-6.d: New test.
1307 * testsuite/binutils-all/objcopy.exp: Use it.
1308
171b8e19
AM
13092019-01-08 Alan Modra <amodra@gmail.com>
1310
1311 * testsuite/lib/binutils-common.exp (run_dump_test): Don't prepend
1312 $srcdir/$subdir to source file name if it starts with "./".
1313
13142019-01-05 Yoshinori Sato <ysato@users.sourceforge.jp>
1315
f87673e0
YS
1316 * readelf.c (get_machine_flags): Add RXv3 output.
1317
11fa9f13
NC
13182019-01-04 Nick Clifton <nickc@redhat.com>
1319
1320 PR 24005
1321 * objdump.c (load_specific_debug_section): Check for integer
1322 overflow before attempting to allocate contents.
1323
cf0ad5bb
NC
13242019-01-04 Nick Clifton <nickc@redhat.com>
1325
1326 PR 24001
1327 * objcopy.c (copy_object): Free dhandle after writing out the
1328 debug information.
1329 * objdump.c (dump_bfd): Free dhandle after printing out the debug
1330 information.
1331
11fa9f13 1332
82704155
AM
13332019-01-01 Alan Modra <amodra@gmail.com>
1334
1335 Update year range in copyright notice of all files.
1336
d5c04e1b 1337For older changes see ChangeLog-2018
3499769a 1338\f
d5c04e1b 1339Copyright (C) 2019 Free Software Foundation, Inc.
3499769a
AM
1340
1341Copying and distribution of this file, with or without modification,
1342are permitted in any medium without royalty provided the copyright
1343notice and this notice are preserved.
1344
1345Local Variables:
1346mode: change-log
1347left-margin: 8
1348fill-column: 74
1349version-control: never
1350End:
This page took 0.236705 seconds and 4 git commands to generate.