Stop objcopy from attempting to copy thin archives.
[deliverable/binutils-gdb.git] / binutils / ChangeLog
1 2019-03-04 Nick Clifton <nickc@redhat.com>
2
3 PR 24281
4 * objcopy.c (copy_archive): Do not copy thin archives.
5
6 2019-02-27 Matthew Malcomson <matthew.malcomson@arm.com>
7
8 * testsuite/lib/binutils-common.exp: Allow multiple "as" lines.
9
10 2019-02-25 Nick Clifton <nickc@redhat.com>
11
12 * objdump.c (sym_ok): New function.
13 (find_symbol_for_address): Use new function.
14 (disassemble_section): Compare sections by name, not pointer.
15 (dump_dwarf): Move code to initialise byte_get pointer and iterate
16 over separate debug files from here to ...
17 (dump_bfd): ... here. Add parameter indicating that a separate
18 debug info file is being dumped. For main file, pull in the
19 symbol tables from all separate debug info files.
20 (display_object): Update call to dump_bfd.
21 * doc/binutils.texi: Document extened behaviour of the
22 --dwarf=follow-links option.
23 * NEWS: Mention this new feature.
24 * testsuite/binutils-all/objdump.WK2: Update expected output.
25 * testsuite/binutils-all/objdump.exp (test_follow_debuglink): Add
26 options and dump file parameters.
27 Add extra test.
28 * testsuite/binutils-all/objdump.WK3: New file.
29 * testsuite/binutils-all/readelf.exp: Change expected output for
30 readelf -wKis test.
31 * testsuite/binutils-all/readelf.wKis: New file.
32
33 2019-02-22 Nick Clifton <nickc@redhat.com>
34
35 PR 23843
36 * dwarf.h (struct separate_info): New structure for containing
37 information on separate debug info files.
38 * dwarf.c (struct dwo_info): New structure for containing dwo
39 links.
40 (first_dwo_info): Chain of dwo_info structures.
41 (first_separate_file): Chain of separate_info structures.
42 (separate_debug_file, separate_debug_filename): Delete.
43 (fetch_alt_indirect_string): Scan all separate debug info files
44 for the requested string.
45 (add_dwo_info): New function.
46 (add_dwo_name): New function.
47 (add_dwo_dir): New function.
48 (add_dwo_id: New function.
49 (free_dwo_info): New function.
50 (read_and_display_attr_value): Store DWO data using the new
51 functions.
52 (load_debug_section_with_follow): If necessary, scan the list of
53 separate debug info files for the requested section.
54 (add_separate_debug_file): New function.
55 (load_separate_debug_info): Call add_separate_debug_file to store
56 the information on the newly loaded file.
57 (load_dwo_file): Likewise.
58 (load_separate_debif_file): Rename to load_separate_debug_files.
59 Change return type to boolean. If following links then attempt to
60 load all separate debug info files, not just the first one.
61 (free_debug_memory): Release memory in dwo_info and separate_info
62 chains.
63 * objdump.c (dump_dwarf): Iterate over all loaded debg info files.
64 * readelf.c (process_object): Likewise.
65 * doc/debug.options.texi: Update descriptions of links and
66 follow-links options.
67 * testsuite/binutils-all/objdump.WK2: Update expected output.
68 * testsuite/binutils-all/readelf.k2: Likewise.
69 * NEWS: Announce the new feature.
70
71 2019-02-21 Nick Clifton <nickc@redhat.com>
72
73 PR 24247
74 * unwind-ia64.c: Include sysdep.h.
75 (unw_decode_x1): Check current pointer against end pointer before
76 accessing memory.
77 (unw_decode_x2): Likewise.
78 (unw_decode_x3): Likewise.
79 (unw_decode_x4): Likewise.
80 (unw_decode_r2): Likewise.
81 (unw_decode_p2_p5): Likewise.
82 (unw_decode_p7_p10): Likewise.
83 (unw_decode): Likewise.
84
85 2019-02-20 Nick Clifton <nickc@redhat.com>
86
87 PR 24246
88 * readelf.c (print_stapsdt_note): Harden against corrupt notes.
89
90 PR 24244
91 * unwind-ia64.c (unw_decode_uleb128): Add end parameter, use it to
92 prevent walking off the end of the buffer.
93 (unw_decode_x1): Add end paramter, pass it to unw_decode_uleb128.
94 (unw_decode_x2): Likewise.
95 (unw_decode_x3): Likewise.
96 (unw_decode_x4): Likewise.
97 (unw_decode_r2): Pass the end parameter to unw_decode_uleb128.
98 (unw_decode_r3): Likewise.
99 (unw_decode_p7_p10): Likewise.
100 (unw_decode_b2): Likewise.
101 (unw_decode_b3_x4): Likewise.
102
103 PR 24243
104 * readelf.c (process_mips_specific): Check for an options section
105 that is too small to even contain a single option.
106
107 PR 24242
108 * readelf.c (print_ia64_vms_note): Harden against corrupt notes.
109
110 2019-02-20 Alan Modra <amodra@gmail.com>
111
112 PR 24132
113 PR 24138
114 * readelf.c (get_data): Avoid possibility of overflow when
115 checking for a read that may extend past end of file.
116 (process_program_headers): Likewise.
117
118 2019-02-20 Alan Modra <amodra@gmail.com>
119
120 PR 24233
121 * objdump.c (dump_bfd_private_header): Print warning if
122 bfd_print_private_bfd_data returns false.
123
124 2019-02-12 Nick Clifton <nickc@redhat.com>
125
126 PR 23440
127 * README-how-to-make-a-release: Use git clean to delete spurious
128 files from the local source repository.
129
130 2019-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
131
132 * size.c (berkeley_format): Delete.
133 (enum output_format): New enum.
134 (selected_output_format): New variable.
135 (usage): Update to mention GNU format.
136 (main): Update to extract options, and select format as needed.
137 Handle GNU format where needed.
138 (berkeley_sum): Renamed to...
139 (berkeley_or_gnu_sum): ...this, and updated to handle both formats.
140 (berkeley_format): Renamed to...
141 (berkeley_or_gnu_format): ...this, and updated to handle both
142 formats.
143 (print_sizes): Handle GNU format.
144 * doc/binutils.texi (size): Document new GNU format.
145 * testsuite/binutils-all/size.exp: Add test of extended
146 functionality.
147 * NEWS: Mention new functionality.
148
149 2019-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
150
151 * doc/binutils.texi (size): Update example output for Berkeley
152 format output.
153
154 2019-02-07 Nick Clifton <nickc@redhat.com>
155
156 * README-how-to-make-a-release: Add a note about updating the
157 obsolete targets in the bfd/config.bfd file.
158
159 2019-02-04 Nick Clifton <nickc@redhat.com>
160
161 * README-how-to-make-a-release: Add more notes on making a release.
162
163 2019-01-25 Nick Clifton <nickc@redhat.com>
164
165 PR 24131
166 * readelf.c (process_notes_at): Prevent an illegal memory access
167 when the note's namesize is zero.
168 (decode_tic6x_unwind_bytecode): Add code to handle the case where
169 no registers are specified in a frame pop instruction.
170
171 2019-01-25 Nick Clifton <nickc@redhat.com>
172
173 * po/bg.po: Updated Bulgarian translation.
174
175 2019-01-23 Nick Clifton <nickc@redhat.com>
176
177 * po/fr.po: Updated French translation.
178 * po/pt.po: Updated Portuguese translation.
179
180 2019-01-21 Nick Clifton <nickc@redhat.com>
181
182 * po/uk.po: Updated Ukranian translation.
183
184 2019-01-19 Nick Clifton <nickc@redhat.com>
185
186 * configure: Regenerate.
187 * binutils/po/binutils.pot.
188
189 * README-how-to-make-a-release: Update description on how to make
190 a branch.
191
192 2018-06-24 Nick Clifton <nickc@redhat.com>
193
194 2.32 branch created.
195
196 2019-01-17 Nick Clifton <nickc@redhat.com>
197
198 * objdump.c (disassemble_section): When disassembling from a
199 symbol only stop at the next symbol if the original symbol was not
200 a function symbol. Otherwise continue disassembling until a new
201 function is reached.
202 * testsuite/binutils-all/objdump.exp: Add tests of extended
203 functionality.
204 * testsuite/binutils-all/disasm.s: New test source file.
205
206 2019-01-16 Kito Cheng <kito@andestech.com>
207 Nelson Chu <nelson@andestech.com>
208
209 * readelf.c (get_riscv_section_type_name): New function.
210 (get_section_type_name): Add handler for RISC-V.
211 (riscv_attr_tag_t): Declare.
212 (riscv_attr_tag): New.
213 (display_riscv_attribute): New function.
214 (process_attributes): Add handler for RISC-V.
215 * testsuite/binutils-all/strip-3.d: Remove .riscv.attribute
216 section.
217
218 2019-01-10 Nick Clifton <nickc@redhat.com>
219
220 PR 23963
221 * objdump.c (sanitize_string): New function. Removes control
222 characters from symbol names.
223 (dump_section_header): Use new function.
224 (objdump_print_symname): Likewise.
225 (objdump_print_addr_with_sym): Likewise.
226 (show_line): Likewise.
227 (disassemble_bytes): Likewise.
228 (disassemble_section): Likewise.
229 (load_specific_debug_section): Likewise.
230 (read_section_stabs): Likewise.
231 (print_section_stabs): Likewise.
232 (dump_section): Likewise.
233 (dump_reloc_set): Likewise.
234 (dump_relocs_in_section): Likewise.
235 (dump_bfd): Likewise.
236 (display_any_bfd): Likewise.
237
238 2019-01-09 Nick Clifton <nickc@redhat.com>
239
240 PR 24049
241 * readelf.c (process_archive): Use arch.file_name in error
242 messages until the qualified name is available.
243
244 2019-01-09 Andrew Paprocki <andrew@ishiboo.com>
245
246 * configure: Regenerate.
247
248 2019-01-09 Alan Modra <amodra@gmail.com>
249
250 * testsuite/binutils-all/cxxfilt.exp: Pass --no-strip-underscores
251 unconditionally to tests needing the option rather than via a
252 list of targets.
253
254 2019-01-08 Nick Clifton <nickc@redhat.com>
255
256 PR 24044
257 * cxxfilt.c (hp_symbol_characters): Delete.
258 (main): Remove depcreated demangling styles.
259 * stabs.c (parse_stab_argtypes): Remove support for old gnu v2
260 demangling opnames.
261 * testsuite/binutils-all/cxxfilt.exp: Use the
262 --no-strip-underscore option for targets that do prefix their
263 symbols with underscores.
264 Update tests to eliminate those that use gnu v2 encoding.
265
266 2019-01-08 Tamar Christina <tamar.christina@arm.com>
267
268 PR 24065
269 * testsuite/binutils-all/copy-6.d: New test.
270 * testsuite/binutils-all/objcopy.exp: Use it.
271
272 2019-01-08 Alan Modra <amodra@gmail.com>
273
274 * testsuite/lib/binutils-common.exp (run_dump_test): Don't prepend
275 $srcdir/$subdir to source file name if it starts with "./".
276
277 2019-01-05 Yoshinori Sato <ysato@users.sourceforge.jp>
278
279 * readelf.c (get_machine_flags): Add RXv3 output.
280
281 2019-01-04 Nick Clifton <nickc@redhat.com>
282
283 PR 24005
284 * objdump.c (load_specific_debug_section): Check for integer
285 overflow before attempting to allocate contents.
286
287 2019-01-04 Nick Clifton <nickc@redhat.com>
288
289 PR 24001
290 * objcopy.c (copy_object): Free dhandle after writing out the
291 debug information.
292 * objdump.c (dump_bfd): Free dhandle after printing out the debug
293 information.
294
295
296 2019-01-01 Alan Modra <amodra@gmail.com>
297
298 Update year range in copyright notice of all files.
299
300 For older changes see ChangeLog-2018
301 \f
302 Copyright (C) 2019 Free Software Foundation, Inc.
303
304 Copying and distribution of this file, with or without modification,
305 are permitted in any medium without royalty provided the copyright
306 notice and this notice are preserved.
307
308 Local Variables:
309 mode: change-log
310 left-margin: 8
311 fill-column: 74
312 version-control: never
313 End:
This page took 0.036614 seconds and 4 git commands to generate.