Add support for the WebAssembly file format and the wasm32 ELF conversion to gas...
[deliverable/binutils-gdb.git] / binutils / ChangeLog
1 2017-03-30 Pip Cet <pipcet@gmail.com>
2
3 * readelf.c: Add support for wasm32 ELF format WebAssembly files.
4 (guess_is_rela): Likewise.
5 (dump_relocations): Likewise.
6 (is_32bit_abs_reloc): Likewise.
7 (is_none_reloc_): Likewise.
8 * NEWS: Mention the new support.
9 * testsuite/lib/binutils-common.exp (is_elf_format): Mark wasm32
10 as ELF target.
11 (supports_gnu_unique): Mark wasm32 as supporting STB_GNU_UNIQUE.
12 * testsuite/binutils-all/nm.exp: Mark wasm32 as requiring .size annotations.
13 * testsuite/binutils-all/wasm32: New directory.
14 * testsuite/binutils-all/wasm32/create-wasm.d: New file.
15 * testsuite/binutils-all/wasm32/create-wasm.s: Likewise.
16 * testsuite/binutils-all/wasm32/custom-section.d: Likewise.
17 * testsuite/binutils-all/wasm32/custom-section.s: Likewise.
18 * testsuite/binutils-all/wasm32/invalid-wasm-1.d: Likewise.
19 * testsuite/binutils-all/wasm32/invalid-wasm-1.s: Likewise.
20 * testsuite/binutils-all/wasm32/long-sections.d: Likewise.
21 * testsuite/binutils-all/wasm32/long-sections.s: Likewise.
22 * testsuite/binutils-all/wasm32/parse-wasm.d: Likewise.
23 * testsuite/binutils-all/wasm32/parse-wasm.s: Likewise.
24 * testsuite/binutils-all/wasm32/parse-wasm-2.d: Likewise.
25 * testsuite/binutils-all/wasm32/parse-wasm-2.s: Likewise.
26 * testsuite/binutils-all/wasm32/prepared-section.d: Likewise.
27 * testsuite/binutils-all/wasm32/prepared-section.s: Likewise.
28 * testsuite/binutils-all/wasm32/wasm32.exp: New file, run tests.
29
30 2017-03-29 Alan Modra <amodra@gmail.com>
31
32 * doc/binutils.texi (objdump): Document PowerPC -M options.
33
34 2017-03-21 Andi Kleen <ak@linux.intel.com>
35
36 * objdump.c (unwind_inlines): Add.
37 (option_values): Add OPTION_INLINES.
38 (show_line): Unwind inlines if requested.
39 (main): Parse OPTION_INLINES.
40 (usage): Document --inlines.
41 * doc/binutils.texi: Document --inlines.
42 * NEWS: Likewise.
43
44 2017-03-21 Nick Clifton <nickc@redhat.com>
45
46 * readelf.c (print_gnu_build_attribute_name): Allow stack
47 protection notes to contain numeric values. Use a colon rather
48 than a space to separate a string name from its values. Decode
49 the numeric value of a stack protection note.
50 * objcopy.c (merge_gnu_build_notes): Allow version notes to
51 contain extra text after the protocol version number.
52
53 2017-03-20 Mark Wielaard <mark@klomp.org>
54
55 * readelf.c (process_program_headers): Move dynamic_addr check
56 after .dynamic section cross check.
57
58 2017-03-17 Nick Clifton <nickc@redhat.com>
59
60 * readelf.c (print_gnu_build_attribute_name): Fix off by one error
61 printing the value for a build note with an ascii name.
62
63 2017-03-16 Nick Clifton <nickc@redhat.com>
64
65 * readelf.c (print_gnu_build_attribute_name): Add support for
66 GNU_BUILD_ATTRIBUTE_SHORT_ENUM.
67
68 2017-03-14 Nick Clifton <nickc@redhat.com>
69
70 * readelf.c (print_gnu_build_attribute_description): Move symbol
71 printing code to...
72 (print_symbol_for_build_attribute): New function. ...here.
73 Add to find the best symbol to associate with an OPEN note.
74 Add code to cache the symbol table and string table, so that they
75 are not loaded every time a note is displayed.
76 * testsuite/binutils-all/note-2-32.s: Add a function symbol.
77 * testsuite/binutils-all/note-2-64.s: Likewise.
78 * testsuite/binutils-all/note-2-32.d: Update expected note output.
79 * testsuite/binutils-all/note-2-64.d: Likewise.
80
81 2017-03-13 Alan Modra <amodra@gmail.com>
82 Taeung Song <treeze.taeung@gmail.com>
83
84 * objdump.c (update_source_path): Add abfd param. Add struct
85 stat var. Pass to try_print_file_open. Warn if source is more
86 recent than object.
87 (try_print_file_open, slurp_file): Add struct stat param to
88 return fstat.
89 (show_line): Call update_source_path with bfd.
90
91 2017-03-10 Chia-Hao Lo <fcamel@gmail.com>
92
93 PR binutils/21235
94 * objdump.c (main): Set do_wide with --wide.
95
96 2017-03-10 Nick Clifton <nickc@redhat.com>
97
98 * readelf.c (get_machine_name): Rearrange switch table in order of
99 increasing machine number. Add missing entries.
100
101 2017-03-08 H.J. Lu <hongjiu.lu@intel.com>
102
103 PR binutils/21231
104 * readelf.c (decode_x86_isa): Change argument to unsigned int.
105 (print_gnu_property_note): Retrieve property type and datasz as
106 4-byte integer. Consolidate property datasz check. Check
107 GNU_PROPERTY_LOPROC and GNU_PROPERTY_LOUSER.
108 * testsuite/binutils-all/i386/pr21231a.d: New file.
109 * testsuite/binutils-all/i386/pr21231a.s: Likewise.
110 * testsuite/binutils-all/i386/pr21231b.d: Likewise.
111 * testsuite/binutils-all/i386/pr21231b.s: Likewise.
112 * testsuite/binutils-all/x86-64/pr21231a.d: Likewise.
113 * testsuite/binutils-all/x86-64/pr21231a.s: Likewise.
114 * testsuite/binutils-all/x86-64/pr21231b.d: Likewise.
115 * testsuite/binutils-all/x86-64/pr21231b.s: Likewise.
116
117 2017-03-06 Nick Clifton <nickc@redhat.com>
118
119 * readelf.c (print_gnu_build_attribute_name): Read byte values
120 from the name string as unsigned bytes.
121 (process_notes_at): Use memcpy to copy an unterminated name
122 string.
123
124 2017-03-06 Sam Thursfield <sam.thursfield@codethink.co.uk>
125
126 * configure.ac (AC_CHECK_DECLS): Add asprintf.
127 * config.in: Regenerate.
128 * configure: Regenerate.
129
130 2017-03-02 Nick Clifton <nickc@redhat.com>
131
132 * readelf.c (print_gnu_build_attribute_description): Use global
133 symbols for OPEN attributes if at all possible.
134 * objcopy.c (is_merged_note_section): Support build note sections
135 without the SHF_GNU_BUILD_NOTE section flag set.
136
137 2017-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
138
139 * dwarf.c (debug_displays_assert): New static assertion.
140
141 2017-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
142
143 * dwarf.h (enum dwarf_section_display_enum): Add loclists and rnglists.
144
145 2017-03-01 Nick Clifton <nickc@redhat.com>
146
147 * readelf.c (get_note_type): Add support for GNU_BUILD_NOTEs.
148 (get_gnu_elf_note_type): Add support for GNU_PROPERTY_NOTEs.
149 (decode_x86_isa): New function.
150 (print_gnu_property_note): New function.
151 (print_gnu_note): Handle GNU_PROPERTY_NOTEs.
152 (print_gnu_build_attribute_description): New function.
153 (print_gnu_build_attribute_name): New function.
154 (process_note): Add support for GNU_BUILD_NOTEs.
155 * objcopy.c (--merge-notes): New command line option.
156 (copy_options): Add merge-notes.
157 (copy_usage): Likewise.
158 (is_merge_note_section): New function.
159 (merge_gnu_build_notes): New function.
160 (copy_object): Merge note sections if asked to do so.
161 (skip_section): Add skip_copy parameter. Add support for skipping
162 merged note sections.
163 (copy_relocations_in_section): Update call to skip_section.
164 (copy_section): Likewise.
165 (copy_main): Add support for merge-notes option.
166 * doc/binutils.texi: Document the new option to objcopy.
167 * NEWS: Mention the new feature.
168 * testsuite/binutils-all/note-2-32.d: New test. Checks note
169 merging on 32-bit targets.
170 * testsuite/binutils-all/note-2-32.s: New test source file.
171 * testsuite/binutils-all/note-2-64.d: New test. Like note-2-32.d
172 but for 64-bit targets.
173 * testsuite/binutils-all/note-2-64.s: New test source file.
174 * testsuite/binutils-all/objcopy.exp: Run the new test.
175
176 2017-02-28 Peter Bergner <bergner@vnet.ibm.com>
177
178 * objdump.c (main): Use remove_whitespace_and_extra_commas.
179
180 2017-02-27 Jan Kratochvil <jan.kratochvil@redhat.com>
181
182 Fix compilation with GCC 4.4.7.
183 * dwarf.c (display_loclists_list, display_debug_rnglists_list):
184 Initialize begin and end.
185
186 2017-02-25 Alan Modra <amodra@gmail.com>
187
188 * testsuite/binutils-all/dw5.S: Replace .string with .asciz.
189 Support hpux .comm variant.
190 * testsuite/binutils-all/readelf.exp: Define HPUX when assembling
191 dw5 test for hppa64-hpux.
192
193 2017-02-24 Nick Clifton <nickc@redhat.com>
194
195 * readelf.c (show_name, do_dynamic, do_syms, do_dyn_syms,
196 (do_reloc, do_sections, do_section_groups, do_section_details,
197 (do_segments, do_unwind, do_using_dynamic, do_header, do_dump,
198 (do_version, do_histogram, do_debugging, do_arch, do_notes,
199 (do_archive_index, is_32bit_elf, decompress_dumps): Use
200 bfd_boolean type.
201 (parse_args): Treat the do_* variables as booleans.
202 (print_vma): Return an unsigned int.
203 (print_symbol): Change width parameter to signed int.
204 (is_ia64_vms): Change return type to bfd_boolean.
205 (guess_is_rela): Likewise.
206 (slurp_rela_relocs): Likewise.
207 (slurp_rel_relocs): Likewise.
208 (dump_relocations): Likewise.
209 (process_file_header): Likewise.
210 (get_program_headers): Likewise.
211 (process_program_headers): Likewise.
212 (process_section_headers): Likewise.
213 (process_section_groups): Likewise.
214 (dump_ia64_vms_dynamic_fixups): Likewise.
215 (dump_ia64_vms_dynamic_relocs): Likewise.
216 (process_ia64_vms_dynamic_relocs): Likewise.
217 (process_relocs): Likewise.
218 (dump_ia64_unwind): Likewise.
219 (ia64_process_unwind): Likewise.
220 (dump_hppa_unwind): Likewise.
221 (slurp_hppa_unwind_table): Likewise.
222 (hppa_process_unwind): Likewise.
223 (decode_arm_unwind_bytecode): Likewise.
224 (decode_tic6x_unwind_bytecode): Likewise.
225 (decode_arm_unwind): Likewise.
226 (dump_arm_unwind): Likewise.
227 (arm_process_unwind): Likewise.
228 (process_unwind): Likewise.
229 (get_32bit_dynamic_section): Likewise.
230 (get_64bit_dynamic_section): Likewise.
231 (process_dynamic_section): Likewise.
232 (process_version_sections): Likewise.
233 (process_symbol_table): Likewise.
234 (process_syminfo): Likewise.
235 (apply_relocations): Likewise.
236 (disassemble_section): Likewise.
237 (dump_section_as_strings): Likewise.
238 (dump_section_as_bytes): Likewise.
239 (load_specific_debug_section): Likewise.
240 (load_debug_section): Likewise.
241 (display_debug_section): Likewise.
242 (process_section_contents): Likewise.
243 (process_attributes): Likewise.
244 (process_nds32_specific): Likewise.
245 (process_gnu_liblist): Likewise.
246 (print_core_note): Likewise.
247 (print_gnu_note): Likewise.
248 (print_v850_note): Likewise.
249 (process_netbsd_elf_note): Likewise.
250 (print_stapsdt_note): Likewise.
251 (print_ia64_vms_note): Likewise.
252 (process_note): Likewise.
253 (process_notes_at): Likewise.
254 (process_corefile_note_segments): Likewise.
255 (process_v850_notes): Likewise.
256 (process_note_sections): Likewise.
257 (process_notes): Likewise.
258 (process_arch_specific): Likewise.
259 (get_file_header): Likewise.
260 (process_object): Likewise.
261 (process_archive): Likewise.
262 (process_file): Likewise.
263 (section_subset): Make static.
264 (get_mips_reg_size): Return a signed integer.
265 (process_object): Reverse the logic of the return value.
266 (process_archive): Likewise.
267 (process_file): Likewise.
268 (process_program_headers): Fix snafu - if the program headers are
269 not available then this is not a cause to fail.
270 (process_corefile_note_segments): Likewise.
271
272 2017-02-24 Maciej W. Rozycki <macro@imgtec.com>
273
274 * readelf.c (get_ver_flags): Tidy the formatting of the string
275 returned
276
277 2017-02-24 Maciej W. Rozycki <macro@imgtec.com>
278
279 * readelf.c (process_version_sections) <SHT_GNU_verdef>: Make
280 `isum' unsigned.
281 <SHT_GNU_verneed>: Likewise.
282
283 2017-02-24 Maciej W. Rozycki <macro@imgtec.com>
284
285 * readelf.c (process_version_sections) <SHT_GNU_verdef>: Limit
286 the number of entries processed by the section size. Don't
287 break out of the loop if `ent.vd_next' is 0.
288
289 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
290
291 * testsuite/binutils-all/dw5.S: New file.
292 * testsuite/binutils-all/dw5.W: New file.
293 * testsuite/binutils-all/readelf.exp (readelf -wiaoRlL): New test.
294
295 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
296
297 * dwarf.c (read_and_display_attr_value): Support DW_FORM_data16.
298
299 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
300
301 * dwarf.c (display_debug_macro): Support DWARF-5. Rename
302 DW_MACRO_GNU_*.
303
304 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
305
306 * dwarf.c (decode_location_expression): Support DW_OP_implicit_pointer,
307 DW_OP_const_type, DW_OP_regval_type, DW_OP_deref_type, DW_OP_convert
308 and DW_OP_reinterpret.
309 (read_and_display_attr_value): Support DW_AT_call_value,
310 DW_AT_call_data_value, DW_AT_call_target and
311 DW_AT_call_target_clobbered.
312
313 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
314
315 * dwarf.c (fetch_indirect_line_string): New function.
316 (abbrev_attr): New field implicit_const.
317 (add_abbrev_attr): New parameter implicit_const.
318 (process_abbrev_section): Support DW_FORM_implicit_const.
319 (decode_location_expression): Support DW_OP_entry_value.
320 (read_and_display_attr_value): Add parameter implicit_const. Support
321 DW_FORM_line_strp and DW_FORM_implicit_const.
322 (read_and_display_attr): Add parameter implicit_const.
323 (process_debug_info): Support line_str and DWARF-5.
324 (read_debug_line_header): Support DWARF-5.
325 (display_formatted_table): New function.
326 (display_debug_lines_raw): New parameter file. Support DWARF-5.
327 (display_debug_lines_decoded): New parameter fileptr. Support DWARF-5.
328 (display_debug_lines): Pass file parameter.
329 (display_debug_macro): Update read_and_display_attr_value caller.
330 (display_debug_abbrev): Support DW_FORM_implicit_const.
331 (display_loclists_list): New function.
332 (display_loc_list): Support .debug_loclists.
333 (display_debug_ranges_list): New function from display_debug_ranges.
334 (display_debug_rnglists_list): New function.
335 (display_debug_ranges): Support .debug_rnglists.
336 (debug_displays): Add .debug_line_str, .debug_loclists and
337 .debug_rnglists.
338 * dwarf.h: Include dwarf2.h
339 (DWARF2_Internal_LineInfo): Add li_offset_size.
340 (DWARF2_Internal_CompUnit): Add cu_unit_type.
341 (enum dwarf_section_display_enum): Add line_str.
342 * readelf.c (process_section_headers): Add rnglists and loclists.
343
344 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
345
346 * dwarf.c (display_block): Add parameter delimiter.
347 (decode_location_expression): Update display_block callers.
348 (read_and_display_attr_value): Add parameter delimiter.
349 (read_and_display_attr, display_debug_macro): Update
350 read_and_display_attr_value caller.
351
352 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
353
354 * dwarf.c (display_loc_list): Use dwarf_vma for offset, base_address
355 and off.
356 (display_loc_list_dwo): Use dwarf_vma for offset.
357 (display_debug_loc): Use dwarf_vma for offset, base_address.
358 (struct range_entry, range_entry_compar): Use dwarf_vma for
359 ranges_offset.
360 (display_debug_ranges): Use dwarf_vma for ranges_offset, offset and
361 base_address.
362
363 2017-02-23 Nick Clifton <nickc@redhat.com>
364
365 * readelf.c (display_tag_value): Use an explicit signed type for
366 the tag parameter.
367 (display_gnu_attributes): Use an unsigned integer type for
368 attribute tags.
369 (display_power_gnu_attribute): Likewise.
370 (display_s390_gnu_attribute): Likewise.
371 (display_sparc_hwcaps): Likewise.
372 (display_sparc_hwcaps2): Likewise.
373 (display_sparc_gnu_attribute): Likewise.
374 (display_mips_gnu_attribute): Likewise.
375 (display_tic6x_attribute): Likewise.
376 (display_raw_attribute): Likewise.
377 (process_attributes): Likewise.
378 (process_arm_specific): Delete redundant function.
379 (process_power_specific): Likewise.
380 (process_s390_specific): Likewise.
381 (process_sparc_specific): Likewise.
382 (process_tic6x_specific): Likewise.
383 (process_msp430x_specific): Likewise.
384 (display_public_gnu_attributes): New function. Displays known
385 information about an unknown gnu attribute.
386 (display_generic_attribute): New function. Calls
387 display_tag_value for non-nul tags.
388 (process_arch_specific): Call process_attributes even for
389 architectures not known to specifically support gnu attributes.
390
391 2017-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
392
393 * dwarf.c (decode_location_expression): Display also OP.
394
395 2017-02-22 Maciej W. Rozycki <macro@imgtec.com>
396
397 * readelf.c (process_version_sections) <SHT_GNU_verdef>: Print a
398 new line between the heading and the first version definition
399 entry.
400
401 2017-02-20 Nick Clifton <nickc@redhat.com>
402
403 PR binutils/21156
404 * dwarf.c (cu_tu_indexes_read): Move into...
405 (load_cu_tu_indexes): ... here. Change the variable into
406 tri-state. Change the function into boolean, returning
407 false if the indicies could not be loaded.
408 (find_cu_tu_set): Return NULL if the indicies could not be
409 loaded.
410
411 2017-02-17 Nick Clifton <nickc@redhat.com>
412
413 PR binutils/21156
414 * readelf.c (find_section_in_set): Test for invalid section
415 indicies.
416
417 2017-02-17 Nick Clifton <nickc@redhat.com>
418
419 * readelf.c (get_section_type_name): Add decoding of GNU section
420 types.
421
422 2017-02-15 Nick Clifton <nickc@redhat.com>
423
424 * MAINTAINERS: (MIPS, MN10300): Move Eric Christopher to Past
425 Maintainers section.
426
427 2017-02-14 Nick Clifton <nickc@redhat.com>
428
429 PR binutils/21159
430 * readelf.c (dump_section_as_strings): Reset the start address if
431 no decompression is perfromed.
432 (dump_section_as_bytes): Likewise.
433
434 2017-02-14 Nick Clifton <nickc@redhat.com>
435
436 PR binutils/21158
437 * rddbg.c (read_symbol_stabs_debugging_info): Check for a null or
438 empty symbol name.
439
440 2017-02-14 Nick Clifton <nickc@redhat.com>
441
442 PR binutils/21157
443 * stabs.c (parse_stab_enum_type): Check for corrupt NAME:VALUE
444 pairs.
445 (parse_number): Exit early if passed an empty string.
446
447 2017-02-14 Nick Clifton <nickc@redhat.com>
448
449 PR binutils/21155
450 * readelf.c (IN_RANGE): New macro. Tests for an address + offset
451 being within a given range.
452 (target_specific_reloc_handling): Use macro to test for underflow
453 as well as overflow of reloc offset.
454
455 2017-02-13 Nick Clifton <nickc@redhat.com>
456
457 PR binutils/21150
458 * nm.c (file_symbol): Add test of string length before testing
459 string characters.
460
461 2017-02-13 Nick Clifton <nickc@redhat.com>
462
463 PR binutils/21135
464 * readelf.c (dump_section_as_bytes): Handle the case where
465 uncompress_section_contents returns false.
466 (dump_section_as_bytes, load_specific_debug_section): Likewise.
467
468 2017-02-13 Nick Clifton <nickc@redhat.com>
469
470 PR binutils/21149
471 * readelf.c (get_compression_header): Add size parameter. Check
472 size against sizeof compression header before attempting to
473 extract the header.
474 (process_section_headers): Pass size to get_compression_header.
475 (dump_section_as_strings): Likewise.
476 (dump_section_as_bytes): Likewise.
477 (load_specific_debug_section): Likewise.
478
479 2017-02-13 Nick Clifton <nickc@redhat.com>
480
481 PR binutils/21148
482 * readelf.c (process_version_sections): Include size of auxillary
483 version information when checking for buffer overflow.
484
485 2017-02-13 Nick Clifton <nickc@redhat.com>
486
487 PR binutils/21147
488 * readelf.c (process_section_contents): Fix off by one error
489 reporting un-dumped sections.
490
491 2017-02-13 Nick Clifton <nickc@redhat.com>
492
493 PR binutils/21139
494 * readelf.c (target_specific_reloc_handling): Add num_syms
495 parameter. Check for symbol table overflow before accessing
496 symbol value. If reloc pointer is NULL, discard all saved state.
497 (apply_relocations): Pass num_syms to target_specific_reloc_handling.
498 Call target_specific_reloc_handling with a NULL reloc pointer
499 after processing all of the relocs.
500
501 2017-02-13 Nick Clifton <nickc@redhat.com>
502
503 PR binutils/21137
504 * readelf.c (target_specific_reloc_handling): Add end parameter.
505 Check for buffer overflow before writing relocated values.
506 (apply_relocations): Pass end to target_specific_reloc_handling.
507
508 2017-01-27 Dilyan Palauzov <dilyan.palauzov@aegee.org>
509 Nick Clifton <nickc@redhat.com>
510
511 PR 20343
512 * doc/binutils.texi (ar): Extend documentation of the --plugin
513 option. Include a description of where the plugins should be
514 located.
515 (nm): Likewise.
516
517 2017-01-23 Nick Clifton <nickc@redhat.com>
518
519 * MAINTAINERS: Add Bernd to Past Maintainers section.
520 (SCORE): Remove Mei Ligang as maintainer. Add to Past Maintainers
521 section.
522
523 2017-01-23 Bernd Schmidt <bschmidt@redhat.com>
524
525 * MAINTAINERS (BFIN): Remove myself as Blackfin maintainer.
526
527 2017-01-20 Andrew Burgess <andrew.burgess@embecosm.com>
528
529 * objdump.c (dump_section_header): Extract max section name length
530 from data parameter, use this when formatting output.
531 (find_longest_section_name): New function.
532 (dump_headers): Calculate longest section name when in wide mode,
533 reformat to unify printing of header line.
534
535 2017-01-18 Bernhard Rosenkranzer <bero@lindev.ch>
536
537 PR 21059
538 * arlex.l: Support processing with flex 2.6.3.
539 * deflex.l: Likewise.
540
541 2017-01-17 Dmitry Timoshkov <dmitry@baikal.ru>
542
543 * resbin.c: Optional dialog control data immediately follows
544 the control description without alignment.
545 * testsuite/binutils-all/windres/controldata.rc: New test.
546 source.
547 * testsuite/binutils-all/windres/controldata.rsd: New test.
548
549 2017-01-12 Nick Clifton <nickc@redhat.com>
550
551 PR binutils/20876
552 * NEWS: Mention the new feature.
553 * testsuite/binutils-all/objdump.exp (test_build_id_debuglink):
554 New proc to test the location of separate debug info files using
555 the build-id method.
556
557 2017-01-10 Nick Clifton <nickc@redhat.com>
558
559 PR 21034
560 * stabs.c (parse_stab_members): Fix thinko checking for g++
561 version 1 stabs information.
562
563 2017-01-09 Nick Clifton <nickc@redhat.com>
564
565 * objdump.c (display_file): Add new parameter 'last_file'. If
566 last_file is true, do not call bfd_close at the end of the
567 function.
568 (main): Set the value of the last_file parameter when calling
569 display_file.
570
571 2017-01-09 Alan Modra <amodra@gmail.com>
572
573 * readelf.c (process_section_headers): Correct .rel.dyn/.rela.dyn
574 comment.
575
576 2017-01-06 Nick Clifton <nickc@redhat.com>
577
578 * MAINTAINERS: Move Paul Brook to the Past Maintainers section.
579
580 2017-01-04 Dilan Palauzov <dilyan.palauzov@aegee.org>
581
582 PR 20958
583 * syslex.l (option): Add noyywrap
584 (yywrap): Delete.
585
586 2017-01-02 Alan Modra <amodra@gmail.com>
587
588 Update year range in copyright notice of all files.
589
590 For older changes see ChangeLog-2016
591 \f
592 Copyright (C) 2017 Free Software Foundation, Inc.
593
594 Copying and distribution of this file, with or without modification,
595 are permitted in any medium without royalty provided the copyright
596 notice and this notice are preserved.
597
598 Local Variables:
599 mode: change-log
600 left-margin: 8
601 fill-column: 74
602 version-control: never
603 End:
This page took 0.042723 seconds and 5 git commands to generate.