1 2016-09-29 Alan Modra <amodra@gmail.com>
3 * readelf.c (process_arch_specific): Call process_power_specific
6 2016-09-26 Vlad Zakharov <vzakhar@synopsys.com>
8 * Makefile.am: Replace AM_CLFAGS with AM_CFLAGS_FOR_BUILD
9 when building with CC_FOR_BUILD compiler.
10 * Makefile.in: Regenerate.
11 * configure: Likewise.
12 * doc/Makefile.in: Likewise.
14 2016-09-26 Alan Modra <amodra@gmail.com>
16 * readelf.c (display_power_gnu_attribute): Catch truncated section
17 for all powerpc attributes. Display long double ABI. Don't
18 capitalize words, except for names. Show known bits of tag values
19 when some unknown bits are present. Whitespace fixes.
21 2016-09-26 Alan Modra <amodra@gmail.com>
23 * nm.c (get_elf_symbol_type): Don't use sprintf with translated
24 strings, use asprintf instead.
25 (get_coff_symbol_type): Likewise.
27 2016-09-19 Alan Modra <amodra@gmail.com>
29 * nm.c (print_symbol): Remove is_synthetic param. Test sym->flags
31 (print_size_symbols, print_symbols): Adjust to suit, deleting
32 now unused synth_count param and fromsynth var.
33 (display_rel_file): Adjust, localizing synth_count.
35 2016-09-14 Ed Maste <emaste@freebsd.org>
37 * readelf.c (process_mips_specific): Fix typo in error message.
39 2016-09-06 Nick Clifton <nickc@redhat.com>
41 * readelf.c (request_dump_bynumber): Only call memcpy if
42 dump_sects is not NULL.
44 2016-08-29 H.J. Lu <hongjiu.lu@intel.com>
46 * readelf.c (load_specific_debug_section): Check the external
47 compression header size.
49 2016-08-19 Nick Clifton <nickc@redhat.com>
51 * testsuite/binutils-all/readelf.s: Adjust expected ordering of
53 * testsuite/binutils-all/readelf.s-64: Likewise.
55 2016-08-12 Nick Clifton <nickc@redhat.com>
57 * readelf.c (process_symbol_table): Generate a warning if a local
58 symbol is found at and offste greater than or equal to the sh_info
59 field of it's section header.
61 2016-08-08 Nick Clifton <nickc@redhat.com>
64 * dwarf.c (display_debug_lines_decoded): Add checks for running
65 off the end of the section when populating the directory table and
67 (frame_display_row): Set max_regs equal to ncols.
68 * readelf.c (load_specific_debug_section): If the section is
69 compressed, but it is not big enough to hold a compression
70 header then warn and return 0.
73 * dwarf.c (display_debug_lines_decoded): Check directory and file
74 indicies before using them to access directory and file tables.
76 2016-08-02 Nick Clifton <nickc@redhat.com>
79 * resbin.c (bin_to_res_version): Cast variables to correct type
80 for printing in error message.
82 2016-07-28 Nick Clifton <nickc@redhat.com>
85 * rescoff.c (read_coff_res_dir): Fix detection of buffer overrun.
86 * resbin.c (bin_to_res_version): Allow for the padded length of a
87 version block to be longer than the recorded length. Skip padding
90 2016-07-21 H.J. Lu <hongjiu.lu@intel.com>
92 * configure: Regenerated.
94 2016-07-20 Claudiu Zissulescu <claziss@synopsys.com>
96 * doc/binutils.texi (objdump): Add ARC disassembler options.
97 * testsuite/binutils-all/arc/dsp.s: New file.
98 * testsuite/binutils-all/arc/objdump.exp: Likewise.
99 * NEWS: Mention the new feature.
101 2016-07-20 Nick Clifton <nickc@redhat.com>
103 * doc/binutils.texi (objcopy): Note that the localize symbol
104 options do not affect unique symbols.
106 2016-07-16 Alan Modra <amodra@gmail.com>
108 * ar.c: Include plugin-api.h.
111 2016-07-16 Alan Modra <amodra@gmail.com>
113 * bucomm.c: Don't include libbfd.h.
114 (endian_string, display_target_list): Delete forward declaration.
115 (display_info_table, display_target_tables): Likewise.
116 (LONGEST_ARCH): Delete.
117 (struct display_target): New.
118 (do_display_target): New function.
119 (display_target_list, display_info): Rewrite functions.
120 (display_info_table): Delete.
121 (do_info_size, do_info_header, do_info_row): New functions.
123 2016-07-16 Alan Modra <amodra@gmail.com>
125 * elfcomm.h (HOST_WIDEST_INT): Move to..
127 * od-macho.c: Don't include libbfd.h. Do include dwarf.h
128 (dump_dyld_info_rebase): Use read_leb128 rather than
129 read_unsigned_leb128.
130 (dump_dyld_info_bind, dump_dyld_info_export_1): Likewise.
131 (dump_segment_split_info): Likewise.
132 (dump_dyld_info): Rename vars to avoid shadowing dwarf.h enums.
133 (dump_load_command): Likewise.
135 2016-07-16 Alan Modra <amodra@gmail.com>
137 * ar.c: Don't include libbfd.h.
138 * objcopy.c: Likewise.
139 * bucomm.c (bfd_get_archive_filename): Use xmalloc rather than
142 2016-07-15 Alan Modra <amodra@gmail.com>
144 * testsuite/binutils-all/remove-relocs-01.s: Use .dc.a, not .word.
146 2016-07-14 Andrew Burgess <andrew.burgess@embecosm.com>
148 * doc/binutils.texi (objcopy): Document 'remove-relocations'.
150 * objcopy.c (SECTION_CONTEXT_REMOVE_RELOCS): Define.
151 (enum command_line_switch): Add 'OPTION_REMOVE_RELOCS'.
152 (struct option strip_options): Add 'remove-relocations'.
153 (struct option copy_options): Likewise.
154 (copy_usage): Likewise.
155 (strip_usage): Likewise.
156 (handle_remove_relocations_option): New function.
157 (discard_relocations): New function.
158 (handle_remove_section_option): New function.
159 (copy_relocations_in_section): Use discard_relocations.
160 (strip_main): Use handle_remove_section_option for
161 'remove-section', and handle 'remove-relocations' option.
162 (copy_main): Likewise.
163 * testsuite/binutils-all/objcopy.exp: Run new tests.
164 * testsuite/binutils-all/remove-relocs-01.d: New file.
165 * testsuite/binutils-all/remove-relocs-01.s: New file.
166 * testsuite/binutils-all/remove-relocs-02.d: New file.
167 * testsuite/binutils-all/remove-relocs-03.d: New file.
168 * testsuite/binutils-all/remove-relocs-04.d: New file.
169 * testsuite/binutils-all/remove-relocs-05.d: New file.
170 * testsuite/binutils-all/remove-relocs-06.d: New file.
171 * NEWS: Mention new option.
173 2016-07-14 Andrew Burgess <andrew.burgess@embecosm.com>
175 * objcopy.c (find_section_list): Handle section patterns starting
176 with '!' being a non-matching pattern.
177 * doc/binutils.texi (objcopy): Give example of using '!' with
178 --remove-section and --only-section.
179 (strip): Give example of using '!' with --remove-section.
180 * testsuite/binutils-all/data-sections.s: New file.
181 * testsuite/binutils-all/only-section-01.d: New file.
182 * testsuite/binutils-all/remove-section-01.d: New file.
183 * testsuite/binutils-all/objcopy.exp: Run new tests.
184 * NEWS: Mention new feature.
186 2016-07-09 Alan Modra <amodra@gmail.com>
189 * objdump.c (compare_symbols): For ELF, sort same value/type
190 symbols according to size.
192 2016-07-05 Andre Vieria <andre.simoesdiasvieira@arm.com>
194 * objdump.c (dump_section_header): Rename SEC_ELF_NOREAD
196 * readelf.c (get_elf_section_flags): Rename ARM_NOREAD to
197 ARM_PURECODE and SHF_ARM_NOREAD to SHF_ARM_PURECODE.
198 (process_section_headers): Rename noread to purecode.
200 * section.c (SEC_ELF_NOREAD): Rename to ...
201 (SEC_ELF_PURECODE): ... this.
203 2016-07-01 Nick Clifton <nickc@redhat.com>
205 * prdbg.c (pr_enum_type): Use a buffer big enough to hold an
206 extremely large decimal value.
207 (pr_range_type): Likewise.
208 (pr_array_type): Likewise.
209 (pr_struct_field): Likewise.
210 (pr_class_baseclass): Likewise.
211 (pr_class_method_variant): Likewise.
212 (pr_tag_type): Likewise.
213 (pr_int_constant): Likewise.
214 (pr_typed_constant): Likewise.
215 (pr_variable): Likewise.
216 (pr_function_parameter): Likewise.
217 (pr_start_block): Likewise.
218 (pr_lineno): Likewise.
219 (pr_end_block): Likewise.
220 (tg_enum_type): Likewise.
221 (tg_int_constant): Likewise.
222 (tg_typed_constant): Likewise.
223 (tg_start_block): Likewise.
225 2016-07-01 Nick Clifton <nickc@redhat.com>
227 * testsuite/binutils-all/objcopy.exp
228 (objcopy_test_without_global_symbol): Expect this test to fail on
229 the AArch64 and ARM targets, since they preserve their mapping
232 2016-07-01 Tristan Gingold <gingold@adacore.com>
234 * NEWS: Add marker for 2.27.
236 2016-07-30 Tristan Gingold <gingold@adacore.com>
238 * doc/binutils.texi (objdump): Fix mis-placement.
240 2016-06-28 Nick Clifton <nickc@redhat.com>
242 * testsuite/binutils-all/ar.exp: Relax previous restriction on
243 Alpha targets. Allow ELF based Alpha targets.
245 2016-06-28 Maciej W. Rozycki <macro@imgtec.com>
247 * testsuite/binutils-all/ar.exp: Use `supports_gnu_unique' with
248 the `unique_symbol' test.
250 2016-06-28 Alan Modra <amodra@gmail.com>
253 * objdump.c (objdump_print_symname): Don't attempt to retrieve
254 version info from synthetic symbols.
256 2016-06-24 Alan Modra <amodra@gmail.com>
258 * objcopy.c (find_section_rename): Forward declare. Remove
259 ibfd and sec_ptr param. Add old_name param. Allow for NULL
260 returned_flags. Move read of section name and flags to..
261 (setup_section): ..here. Update find_section_rename call.
262 (filter_symbols): Rename section symbols for renamed sections.
263 (copy_object): Call filter_symbols when renamed sections.
264 * testsuite/lib/binutils-common.exp (is_bad_symtab): New.
265 * testsuite/binutils-all/update-section.exp: Revert 96037eb0
267 * testsuite/binutils-all/objcopy.exp (copy_executable): Use
269 (localize-hidden-1): xfail if is_bad_symtab.
270 * testsuite/binutils-all/readelf.exp: Use is_bad_symtab to select
273 2016-06-24 Alan Modra <amodra@gmail.com>
275 * objdump.c (struct print_file_list): Add "max_printed".
276 (try_print_file_open): Init new field.
277 (show_line): Don't show 5 context lines when redisplaying source.
279 2016-06-22 Nick Clifton <nickc@redhat.com>
281 * testsuite/binutils-all/ar.exp: Skip tests for Alpha target.
282 Skip bfdtest1 tests for tic30 target.
283 * testsuite/binutils-all/arm/objdump.exp: Skip for aout arm
285 * testsuite/binutils-all/compress.exp: Expect some tests to fail
287 * testsuite/binutils-all/copy-3.d: Skip for go32 targets.
288 * testsuite/binutils-all/copy-4.d: Skip for AIX and linuxecoff
290 * testsuite/binutils-all/nm.exp: Treat beos based targets as ELF
292 * testsuite/binutils-all/objcopy.exp: Only run reverse bytes tests
293 if the bintest.o file was created. Use the
294 get_standard_section_names proc to get the name of the data
296 * testsuite/binutils-all/objdump.exp: Update regexps to allow for
298 * testsuite/binutils-all/readelf.exp: Use
299 get_standard_section_names proc to get the name of the data
301 * testsuite/binutils-all/readelf.r: Allow for non standard text
303 * testsuite/binutils-all/readelf.s: Update regexps for tilepro.
304 * testsuite/binutils-all/size.exp: Allow for non standard section
306 * testsuite/binutils-all/update-section.exp: Expect comapre 1vs4
307 to fail on mips targets.
308 * testsuite/lib/utils-lib.exp (default_binutils_run): Use
309 get_standard_section_names proc.
310 (run_dump_test): Likewise.
311 (proc get_standard_section_names): New proc.
313 2016-06-22 Nick Clifton <nickc@redhat.com>
315 * readelf.c (dynamic_section_mips_val): Increase size of timebuf.
316 (process_mips_specific): Likewise.
317 (process_gnu_liblist): Likewise.
319 2016-06-21 Graham Markall <graham.markall@embecosm.com>
321 * readelf.c (decode_ARC_machine_flags): Remove E_ARC_MACH_NPS400
324 2016-06-15 Nick Clifton <nickc@redhat.com>
326 * readelf.c (is_24bit_abs_reloc): Add support for R_FT32_20
329 2016-06-14 John Baldwin <jhb@FreeBSD.org>
331 * objcopy.c (do_elf_stt_common): Use correct type.
333 2016-06-14 Alan Modra <amodra@gmail.com>
335 * ar.c: Expand uses of bfd_my_archive.
338 2016-06-14 Alan Modra <amodra@gmail.com>
341 * bucomm.c (bfd_get_archive_filename): Return file name within thin
344 2016-06-02 Nick Clifton <nickc@redhat.com>
347 * objcopy.c (group_signature): Fail if the input symbol table has
348 not been loaded, or if the sh_info field of the group header is 0.
350 * dwarf.c (display_debug_frames): Do not display any
351 interpretation if the block consists solely of DW__CFA_NOPs.
353 2016-05-31 Alan Modra <amodra@gmail.com>
355 * objcopy.c: Formatting, whitespace throughout.
356 (copy_main): Init newsym->othersym.
357 (parse_symflags): Make len a size_t. Adjust uses.
359 2016-05-25 H.J. Lu <hongjiu.lu@intel.com>
362 * NEWS: Mention --enable-64-bit-archive.
364 2016-05-18 Nick Clifton <nickc@redhat.com>
367 * objcopy.c (copy_relocations_in_section): Also check for the
368 symbol pointed to by sym_ptr_ptr being NULL.
370 2016-05-18 Maciej W. Rozycki <macro@imgtec.com>
372 * testsuite/binutils-all/mips/mixed-mips16-micromips.d: New test.
373 * testsuite/binutils-all/mips/mixed-mips16-micromips.s: New test
375 * testsuite/binutils-all/mips/mips.exp: Run the new test.
377 2016-05-18 Nick Clifton <nickc@redhat.com>
379 * po/sv.po: Updated Swedish translation.
381 2016-05-18 Maciej W. Rozycki <macro@imgtec.com>
383 * readelf.c (dynamic_section_mips_val) <DT_MIPS_RLD_VERSION>
384 <DT_MIPS_LOCAL_GOTNO, DT_MIPS_CONFLICTNO, DT_MIPS_LIBLISTNO>
385 <DT_MIPS_SYMTABNO, DT_MIPS_UNREFEXTNO, DT_MIPS_HIPAGENO>
386 <DT_MIPS_DELTA_CLASS_NO, DT_MIPS_DELTA_INSTANCE_NO>
387 <DT_MIPS_DELTA_RELOC_NO, DT_MIPS_DELTA_SYM_NO>
388 <DT_MIPS_DELTA_CLASSSYM_NO, DT_MIPS_COMPACT_SIZE>: Use the
389 `d_val' rather than `d_ptr' member of the dynamic entry.
391 2016-05-17 Maciej W. Rozycki <macro@imgtec.com>
393 * testsuite/lib/binutils-common.exp (supports_gnu_unique): New
395 * testsuite/binutils-all/objcopy.exp: Use `supports_gnu_unique'
396 with the `strip-10' test.
398 2016-05-16 Maciej W. Rozycki <macro@imgtec.com>
400 * testsuite/binutils-all/objcopy.exp: Don't skip the `strip-10'
403 2016-05-11 Andrew Bennett <andrew.bennett@imgtec.com>
405 * readelf.c (print_mips_ases): Add DSPR3.
407 2016-05-10 Thomas Preud'homme <thomas.preudhomme@arm.com>
409 * readelf.c (display_arm_attribute): Add output for Tag_DSP_extension.
410 (arm_attr_public_tags): Define DSP_extension attribute.
412 2016-05-10 Andrew Burgess <andrew.burgess@embecosm.com>
414 * doc/binutils.texi (nm): Update description of --size-sort.
416 2016-05-09 Nick Clifton <nickc@redhat.com>
419 * readelf.c (get_32bit_section_headers): Warn if an out of range
420 sh_link or sh_info field is encountered.
421 (get_64bit_section_headers): Likewise.
423 2016-05-04 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
425 * testsuite/lib/binutils-common.exp (is_elf_format): Add avr-*-*.
427 2016-05-03 Nick Clifton <nickc@redhat.com>
429 * po/sv.po: Updated Swedish translation.
431 2016-04-29 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
433 * readelf.c (is_32bit_pcrel_reloc): Return true if reloc is 32-bit
434 PC relocation for AVR target.
435 (is_none_reloc): Return true if reloc is any of AVR diff
438 2016-04-29 Nick Clifton <nickc@redhat.com>
441 * readelf.c (get_solaris_segment_type): New function.
442 (get_segment_type): Call it.
444 2016-04-28 Nick Clifton <nickc@redhat.com>
446 * po/zh_CN.po: Updated Chinese (simplified) translation.
448 2016-04-28 Nick Clifton <nickc@redhat.com>
451 * testsuite/binutils-all/aarch64/illegal.s: New test.
452 * testsuite/binutils-all/aarch64/illegal.d: New test driver.
454 2016-04-20 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
456 * resres.c: Likewise.
458 2016-04-15 H.J. Lu <hongjiu.lu@intel.com>
460 * Makefile.in: Regenerated with automake 1.11.6.
461 * aclocal.m4: Likewise.
462 * doc/Makefile.in: Likewise.
464 2016-04-14 Nick Clifton <nickc@redhat.com>
467 * testsuite/binutils-all/i386/compressed-1b.d: Allow for the
468 string sections possibly having the SHF_STRINGS flag bit set.
469 * testsuite/binutils-all/i386/compressed-1c.d: Likewise.
470 * testsuite/binutils-all/readelf.s: Likewise.
471 * testsuite/binutils-all/readelf.s-64: Likewise.
472 * testsuite/binutils-all/x86-64/compressed-1b.d: Likewise.
473 * testsuite/binutils-all/x86-64/compressed-1c.d: Likewise.
475 2016-04-13 Nick Clifton <nickc@redhat.com>
478 * readelf.c (get_solaris_section_type): New function: Returns the
479 name of Solaris specific section types.
480 (get_solaris_dynamic_type): New function: Return the name of
481 Solaris specific dynamic types.
482 (get_dynamic_type): Use get_solaris_dynamic_type.
483 (get_section_type_name): Use get_solaris_section_type.
484 (get_solaris_symbol_visibility): New function: Returns Solaris
485 specific symbol visibilities.
486 (print_dynamic_symbol): Use get_solaris_symbol_visibility.
487 (process_symbol_table): Likewise.
489 2016-04-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
491 * dwarf.h (init_dwarf_regnames_s390): Declare.
492 * dwarf.c (dwarf_regnames_s390): New.
493 (init_dwarf_regnames_s390): New.
494 (init_dwarf_regnames): Call it.
495 * objdump.c (dump_dwarf): Likewise.
497 2016-04-11 Maciej W. Rozycki <macro@imgtec.com>
499 * testsuite/binutils-all/mips/mips16-undecoded.d: New test.
500 * testsuite/binutils-all/mips/mips16-undecoded.s: New test
502 * testsuite/binutils-all/mips/mips.exp: Run the new test.
504 2016-04-04 Nick Clifton <nickc@redhat.com>
507 * dwarf.c (display_debug_aranges): Skip warning about unrecognised
508 version number if the version is zero.
510 2016-03-29 Alan Modra <amodra@gmail.com>
512 * readelf.c (get_data): Use BFD_VMA_FMT to print bfd_size_type vars.
513 (get_dynamic_data): Likewise.
515 2016-03-22 Nick Clifton <nickc@redhat.com>
518 * dwarf.c (SAFE_BYTE_GET): Replace local dynamic array allocation
519 with run time size check.
521 * configure: Regenerate.
523 2016-03-21 Andrew Burgess <andrew.burgess@embecosm.com>
525 * readelf.c (decode_ARC_machine_flags): Handle nps400.
527 2016-03-21 Andrew Burgess <andrew.burgess@embecosm.com>
529 * readelf.c (get_machine_flags): Move arc processing into...
530 (decode_ARC_machine_flags): ... new function. Remove use of
531 EF_ARC_CPU_GENERIC, change default case from "generic arc" to
532 "unknown arc". Merged ABI printing between two machine types.
534 2016-03-21 Andrew Burgess <andrew.burgess@embecosm.com>
536 * testsuite/binutils-all/objdump.exp (cpus_expected): Add ARC700
537 to the architecture list.
539 2016-03-21 Nick Clifton <nickc@redhat.com>
541 * dlltool.c: Replace use of alloca with call to xmalloc.
542 * dllwrap.c: Likewise.
543 * nlmconv.c: Likewise.
544 * objdump.c: Likewise.
546 * winduni.c: Likewise.
547 * configure: Regenerate.
549 2016-03-07 Nick Clifton <nickc@redhat.com>
552 * testsuite/binutils-all/ar.exp (proc empty_archive): New proc.
554 * testsuite/binutils-all/empty: New, empty, file.
556 2016-03-04 Matthew Wahab <matthew.wahab@arm.com>
558 * readelf.c (arm_attry_tag_FP_arch): Add "NEON for ARMv8.1".
560 2016-02-26 H.J. Lu <hongjiu.lu@intel.com>
563 * NEWS: Mention --elf-stt-common= for objcopy.
564 * doc/binutils.texi: Document --elf-stt-common= for objcopy.
565 * objcopy.c (do_elf_stt_common): New.
566 (command_line_switch): Add OPTION_ELF_STT_COMMON.
567 (copy_options): Add --elf-stt-common=.
568 (copy_usage): Add --elf-stt-common=.
569 (copy_object): Also check do_elf_stt_common for ELF targets.
570 (copy_file): Handle do_elf_stt_common.
571 (copy_main): Handle OPTION_ELF_STT_COMMON.
572 * readelf.c (apply_relocations): Support STT_COMMON.
573 * testsuite/binutils-all/common-1.s: New file.
574 * testsuite/binutils-all/common-1a.d: Likewise.
575 * testsuite/binutils-all/common-1b.d: Likewise.
576 * testsuite/binutils-all/common-1c.d: Likewise.
577 * testsuite/binutils-all/common-1d.d: Likewise.
578 * testsuite/binutils-all/common-1e.d: Likewise.
579 * testsuite/binutils-all/common-1f.d: Likewise.
580 * testsuite/binutils-all/common-2.s: Likewise.
581 * testsuite/binutils-all/common-2a.d: Likewise.
582 * testsuite/binutils-all/common-2b.d: Likewise.
583 * testsuite/binutils-all/common-2c.d: Likewise.
584 * testsuite/binutils-all/common-2d.d: Likewise.
585 * testsuite/binutils-all/common-2e.d: Likewise.
586 * testsuite/binutils-all/common-2f.d: Likewise.
587 * testsuite/binutils-all/objcopy.exp
588 (objcopy_test_elf_common_symbols): New proc.
589 Run objcopy_test_elf_common_symbols for ELF targets
591 2016-02-16 H.J. Lu <hongjiu.lu@intel.com>
594 * readelf.c (get_section_type_name): Add a missing break.
596 2016-02-16 Claudiu Zissulescu <claziss@synopsys.com>
598 * readelf.c (is_32bit_pcrel_reloc): Add R_ARC_32_PCREL.
600 2016-02-15 Nick Clifton <nickc@redhat.com>
602 * readelf.c (get_section_type_name): Add hex prefix to offsets
603 printed for LOPROC and LOOS values. Ensure that a result is
604 always returned for the V850 target, even when an unrecognised
605 processor specific value is encountered.
606 (process_section_headers): Display key values in the order in
607 which they appear to the user. Add the "C (compressed)" value to
610 2016-02-12 H.J. Lu <hongjiu.lu@intel.com>
612 * doc/binutils.texi: Fix a typo.
614 2016-02-05 Cupertino Miranda <Cupertino.Miranda@synopsys.com>
616 * testsuite/binutils-all/objdump.exp: Update expected default
617 architecture value for ARC binaries.
619 2016-02-02 H.J. Lu <hongjiu.lu@intel.com>
622 * testsuite/binutils-all/objcopy.exp
623 (objcopy_test_without_global_symbol): New proc.
624 Run objcopy_test_without_global_symbol.
625 * testsuite/binutils-all/pr19547.c: New file.
627 2016-01-28 H.J. Lu <hongjiu.lu@intel.com>
630 * Makefile.am (check-DEJAGNU): Pass CC and CC_FOR_BUILD to
632 * Makefile.in: Regenerated.
633 * testsuite/binutils-all/compress.exp (test_gnu_debuglink): New
635 Run test_gnu_debuglink for native ELF build.
637 2016-01-20 Nick Clifton <nickc@redhat.com>
640 * testsuite/binutils-all/dlltool.exp: Fix tests for targets which
641 do not support inserting leading underscores.
643 2016-01-20 Mickael Guene <mickael.guene@st.com>
645 * readelf.c (get_elf_section_flags): Display y letter for section
646 with SHF_ARM_NOREAD section flag in readelf section output.
647 (process_section_headers): Add y letter in readelf section output
648 key mapping for ARM architecture.
649 * objdump.c (dump_section_header): Display NOREAD attributes as
651 * doc/binutils.texi (objdump): Note that it is correct for
652 sections to have both the READONLY and NOREAD attributes.
654 2016-01-19 John Baldwin <jhb@FreeBSD.org>
656 * readelf.c (get_freebsd_elfcore_note_type): Remove unused variable.
658 2016-01-19 John Baldwin <jhb@FreeBSD.org>
660 * readelf.c (get_freebsd_elfcore_note_type): New
661 (process_note): Add support for FreeBSD core notes.
663 2016-01-18 Miranda Cupertino <Cupertino.Miranda@synopsys.com>
664 Zissulescu Claudiu <Claudiu.Zissulescu@synopsys.com>
666 * readelf.c (get_machine_flags): Add support for newer ARC ELF
669 2016-01-18 Alan Modra <amodra@gmail.com>
671 * configure: Regenerate.
673 2016-01-17 Alan Modra <amodra@gmail.com>
675 * configure: Regenerate.
677 2016-01-17 Alan Modra <amodra@gmail.com>
679 * testsuite/lib/binutils-common.exp (is_elf_format): Return true
680 for m68hc11/12 and xgate triples.
682 2016-01-17 Alan Modra <amodra@gmail.com>
684 * readelf.c (is_32bit_abs_reloc): Add R_M68HC11_32.
686 2016-01-01 Alan Modra <amodra@gmail.com>
688 Update year range in copyright notice of all files.
690 For older changes see ChangeLog-2015 and testsuite/ChangeLog-1215
692 Copyright (C) 2016 Free Software Foundation, Inc.
694 Copying and distribution of this file, with or without modification,
695 are permitted in any medium without royalty provided the copyright
696 notice and this notice are preserved.
702 version-control: never