* Makefile.am: Run "make dep-am".
[deliverable/binutils-gdb.git] / binutils / ChangeLog
1 2009-05-26 Rafael Avila de Espindola <espindola@google.com>
2
3 * ar.c: Include plugin.h.
4 (main): Handle the --plugin option.
5 * nm.c: Include plugin.h.
6 (OPTION_PLUGIN): New.
7 (long_options): Add plugin.
8 (main): Handle OPTION_PLUGIN.
9 * NEWS: Mention the new feature.
10 * doc/binutils: Documement the new command line options.
11 * configure.in: Check for --enable-plugins.
12 * configure: Regenerate.
13
14 2009-05-26 Alan Modra <amodra@bigpond.net.au>
15
16 * dep-in.sed: Output one filename per line with all lines having
17 continuation backslash. Prefix first line with "A", following
18 lines with "B".
19 * Makefile.am (DEP): Don't use dep.sed here.
20 (DEP1): Run $MKDEP on single files, use dep.sed here on dependencies,
21 sort and uniq.
22 * Makefile.in: Regenerate.
23
24 2009-05-25 Tristan Gingold <gingold@adacore.com>
25
26 * makefile.vms-in: Fix CFLAGS, add addr2line.exe target.
27
28 * configure.com: Fix it: handle alloca and define TARGET in config.h.
29
30 2009-05-22 Alan Modra <amodra@bigpond.net.au>
31
32 * Makefile.am: Run "make dep-am".
33 * Makefile.in: Regenerate.
34
35 2009-05-12 Alan Modra <amodra@bigpond.net.au>
36
37 * objcopy.c (set_long_section_mode): Check input_bfd is coff
38 before accessing coff specific fields of bfd.
39
40 2009-05-09 Dave Korn <dave.korn.cygwin@gmail.com>
41
42 * MAINTAINERS: Add myself as PE/COFF co-maintainer.
43
44 2009-05-08 Kai Tietz <kai.tietz@onevision.com>
45
46 * winduni.c (iconv_onechar): Only define when HAVE_ICONV
47 is defined, but not when __CYGWIN__ or _WIN32 are defined.
48 See wind_iconv_cp for call logic of this local funtion.
49
50 2009-05-05 Guillaume Duhamel <guillaume.duhamel@gmail.com>
51
52 PR 10109
53 * winduni.c: Replace test of HAVE_ICONV_H with a test of
54 HAVE_ICONV.
55 (iconv_onechar): Use ICONV_CONST instead of "const".
56 (wind_MultiByteToWideChar): Initialise local strings.
57
58 2009-04-30 Nick Clifton <nickc@redhat.com>
59
60 * readelf.c (dump_relocations): Display a relocation against an
61 ifunc symbol as if it were a function invocation.
62 (get_symbol_type): Handle STT_GNU_IFUNC.
63
64 2009-04-29 Anthony Green <green@moxielogic.com>
65
66 * NEWS: Tweak verilog support description.
67
68 2009-04-29 Alan Modra <amodra@bigpond.net.au>
69 Denis Scherbakov <denis_scherbakov@yahoo.com>
70
71 * readelf.c (slurp_ia64_unwind_table): Correct 64-bit unwind table
72 read, and merge with 32-bit case.
73
74 2009-04-27 Anthony Green <green@moxielogic.com>
75
76 * NEWS: Mention verilog support added to bfd.
77
78 2009-04-27 H.J. Lu <hongjiu.lu@intel.com>
79
80 * objcopy.c (copy_object): Copy pe_opthdr before changing PE
81 parameters.
82
83 2009-04-24 Cary Coutant <ccoutant@google.com>
84
85 * dwarf.c (process_extended_line_op): Add DW_LNE_set_discriminator.
86 Add missing newlines to HP extensions.
87
88 2009-04-17 H.J. Lu <hongjiu.lu@intel.com>
89
90 * objcopy.c (set_pe_subsystem): Replace efi-rom with sal-rtd.
91 * doc/binutils.texi: Likewise.
92
93 2009-04-17 H.J. Lu <hongjiu.lu@intel.com>
94
95 PR binutils/10074
96 * objcopy.c: Include coff/i386.h and coff/pe.h.
97 (pe_file_alignment): New.
98 (pe_heap_commit): Likewise.
99 (pe_heap_reserve): Likewise.
100 (pe_image_base): Likewise.
101 (pe_section_alignment): Likewise.
102 (pe_stack_commit): Likewise.
103 (pe_stack_reserve): Likewise.
104 (pe_subsystem): Likewise.
105 (pe_major_subsystem_version): Likewise.
106 (pe_minor_subsystem_version): Likewise.
107 (set_pe_subsystem): Likewise.
108 (convert_efi_target): Likewise.
109 (command_line_switch): Add OPTION_FILE_ALIGNMENT,
110 OPTION_HEAP, OPTION_IMAGE_BASE, OPTION_SECTION_ALIGNMENT,
111 OPTION_STACK and OPTION_SUBSYSTEM.
112 (copy_options): Likewise.
113 (copy_usage): Add --file-alignment, --heap, --image-base,
114 --section-alignment, --stack and --subsystem.
115 (copy_object): Set up PE parameters.
116 (copy_main): Process Add OPTION_FILE_ALIGNMENT,
117 OPTION_HEAP, OPTION_IMAGE_BASE, OPTION_SECTION_ALIGNMENT,
118 OPTION_STACK and OPTION_SUBSYSTEM. Convert EFI target to
119 PEI target.
120
121 * NEWS: Mention --file-alignment, --heap, --image-base,
122 --section-alignment, --stack and --subsystem command line
123 options for objcopy.
124
125 * doc/binutils.texi: Document --file-alignment, --heap,
126 --image-base, --section-alignment, --stack and --subsystem
127 command line options for objcopy.
128
129 2009-04-15 Anthony Green <green@moxielogic.com>
130
131 * MAINTAINERS: Add myself as Moxie port maintainer.
132
133 2009-04-14 Dave Korn <dave.korn.cygwin@gmail.com>
134
135 * objcopy.c (enum long_section_name_handling): New enum type.
136 (enum command_line_switch): Add OPTION_LONG_SECTION_NAMES.
137 (copy_options[]): Add entry for --long-section-names option.
138 (copy_usage): Document it.
139 (set_long_section_mode): New subroutine.
140 (copy_file): Call it.
141 (copy_main): Accept OPTION_LONG_SECTION_NAMES and parse arg.
142 * doc/binutils.texi: Update objcopy documentation with details
143 of new option.
144
145 2009-04-01 Dave Korn <dave.korn.cygwin@gmail.com>
146
147 * dlltool.c (set_dll_name_from_def): Accept new second arg that
148 indicates if we are building DLL or EXE, and use it to add a
149 default suffix to the output filename when none is already present.
150 (def_name): Indicate we are building an EXE when calling it.
151 (def_library): Indicate we are building a DLL when calling it.
152
153 2009-04-01 Jari Aalto <jari.aalto@cante.net>
154
155 PR 9972
156 * doc/binutils.texi (strings): Document the -V alias for the
157 --version option.
158 * strings.c (usage): Likewise.
159
160 2009-03-31 Nick Clifton <nickc@redhat.com>
161
162 PR 9992
163 * configure.in: Import Solaris specific largefile test from
164 bfd/configure.in.
165 * configure: Regenerate.
166
167 2009-03-30 Richard Sandiford <rdsandiford@googlemail.com>
168
169 * MAINTAINERS: Add self.
170
171 2009-03-27 Nick Clifton <nickc@redhat.com>
172
173 * dwarf.c (display_debug_ranges): Add the base address to the
174 displayed values for 'Begin' and 'End'.
175
176 2009-03-25 Ryan Mansfield <rmansfield@qnx.com>
177
178 * readelf.c (process_file_header): Don't report a corrupt string
179 table index if it is zero.
180
181 2009-03-19 H.J. Lu <hongjiu.lu@intel.com>
182
183 * dwarf.c (dwarf_regnames): Moved before frame_need_space.
184 (dwarf_regnames_count): Likewise.
185 (frame_need_space): Return int.
186 (display_debug_frames): Check invalid registers.
187
188 2009-03-19 H.J. Lu <hongjiu.lu@intel.com>
189
190 * readelf.c (debug_apply_relocations): Check relocations
191 against STT_SECTION symbol.
192
193 2009-03-18 H.J. Lu <hongjiu.lu@intel.com>
194
195 * readelf.c (debug_apply_relocations): Allow relocations
196 against function symbols.
197
198 2009-03-18 Alan Modra <amodra@bigpond.net.au>
199
200 * sysdep.h: Include alloca-conf.h instead of config.h and remove
201 existing #if's handling alloca.
202 * Makefile.am: Run "make dep-am".
203 * Makefile.in: Regenerate.
204
205 2009-03-14 Richard Sandiford <r.sandiford@uk.ibm.com>
206
207 * configure.tgt: Extend AIX 5 behavior to AIX 6 and above.
208 * configure.in: Likewise.
209 * configure: Regenerate.
210
211 2009-03-13 H.J. Lu <hongjiu.lu@intel.com>
212
213 PR binutils/9945
214 * objcopy.c (copy_object): Clear HAS_RELOC when stripping all.
215
216 2009-03-11 Chris Demetriou <cgd@google.com>
217
218 * ar.c (deterministic): New global variable.
219 (main): Recognize new 'D' option, which enables 'deterministic mode'.
220 (usage): Document new 'D' option.
221 (write_archive): Set BFD_DETERMINISTIC_OUTPUT in output archive's
222 flags if deterministic mode was requested.
223 * doc/binutils.texi (ar): Document deterministic mode ('D' option).
224
225 2009-03-09 H.J. Lu <hongjiu.lu@intel.com>
226
227 PR binutils/9933
228 * objcopy.c (filter_symbols): Properly handle common symbols
229 in relocatable file.
230
231 2009-03-06 Nick Clifton <nickc@redhat.com>
232
233 * po/es.po: Updated Spanish translation.
234
235 2009-03-05 Nick Clifton <nickc@redhat.com>
236
237 * objdump.c (disassemble_section): If the computed next offset is
238 not beyond the current offset then just continue to the end.
239
240 2009-03-04 Tristan Gingold <gingold@adacore.com>
241
242 * MAINTAINERS: Add myself as VMS maintainer.
243
244 2009-03-03 Nick Clifton <nickc@redhat.com>
245
246 * readelf.c: Update formatting.
247
248 2009-03-03 Alan Modra <amodra@bigpond.net.au>
249
250 * Makefile.am: Run "make dep-am".
251 * Makefile.in: Regenerate.
252
253 2009-03-03 Alan Modra <amodra@bigpond.net.au>
254
255 * objdump.c (disassemble_section): Mask address before sign extending.
256
257 2009-03-02 Sebastian Biallas <sb@biallas.net>
258
259 * ieee.c (parse_ieee_ty): Add support for undocumented 'v' type.
260 (parse_ieee_bb): Set the filename if it has not already been
261 discovered.
262
263 2009-03-02 Cary Coutant <ccoutant@google.com>
264
265 * readelf.c (adjust_relative_path): New function.
266 (struct archive_info): New type.
267 (setup_archive): New function.
268 (release_archive): New function.
269 (setup_nested_archive): New function.
270 (get_archive_member_name): New function.
271 (get_archive_member_name_at): New function.
272 (make_qualified_name): New function.
273 (process_archive): Factor out code for reading archive index and
274 long filename table to setup_archive. Add support for thin archives.
275
276 2009-03-02 Nick Clifton <nickc@redhat.com>
277
278 * po/sk.po: Updated Slovak translation.
279
280 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
281
282 * configure: Regenerate.
283
284 2009-02-23 Cary Coutant <ccoutant@google.com>
285
286 * objdump.c (load_specific_debug_section): New function, from
287 load_debug_section.
288 (load_debug_section): Use load_specific_debug_section.
289 (dump_dwarf_section): Likewise.
290
291 2009-02-23 Cary Coutant <ccoutant@google.com>
292
293 * readelf.c (parse_args): Select all sections explicitly for -w.
294
295 2009-02-09 Kai Tietz <kai.tietz@onevision.com>
296
297 * windres.c (set_endianess): Copy name without leading '-'.
298
299 2009-02-09 Tristan Gingold <gingold@adacore.com>
300
301 * NEWS: Mention feature match between objdump and readelf for dumping
302 dwarf info.
303
304 * doc/binutils.texi (objdump): Document -W/--dwarf improvments to
305 objdump.
306
307 * objdump.c (usage): Update documentation for -W/--dwarf.
308 (enum option_values): Add OPTION_DWARF.
309 (long_options): --dwarf can accept arguments.
310 (dump_dwarf_section): Also check enabled field.
311 (main): Option -W can accept arguments, code moved to
312 dwarf.c and call dwarf_select_sections_all instead.
313 * readelf.c (process_section_headers): Remove do_debug_lines_decoded.
314 (parse_args): Move code to...
315 * dwarf.c (dwarf_select_sections_by_letters,
316 dwarf_select_sections_by_names): : ...here (new functions).
317 (do_debug_lines_decoded): Remove and replaced by ...
318 (FLAG_DEBUG_LINES_RAW, FLAG_DEBUG_LINES_DECODED): ... new macros.
319 (display_debug_lines): Adjust for previous change.
320 (dwarf_select_sections_all): New function.
321 (debug_displays): Add initializer for enabled field.
322 * dwarf.h (do_debug_lines_decoded): Remove.
323 Add prototypes for the new functions.
324 (struct dwarf_section_display): Add enabled field.
325
326 2009-02-06 Nick Clifton <nickc@redhat.com>
327
328 * po/vi.po: Updated Vietnamese translation.
329
330 2009-02-03 Sandip Matte <sandip@rmicorp.com>
331
332 * readelf.c (get_machine_flags): Handle E_MIPS_MACH_XLR.
333
334 2009-02-03 H.J. Lu <hongjiu.lu@intel.com>
335
336 * NEWS: Move --as-needed change to ...
337 * ../ld/NEWS: Here.
338
339 2009-02-03 Carlos O'Donell <carlos@codesourcery.com>
340
341 * configure.in: AC_SUBST pdfdir.
342 * Makefile.am: Add install-pdf, install-pdf-am,
343 and install-pdf-recursive targets.
344 * doc/Makefile.am: Define pdf__strip_dir. Add
345 install-pdf and install-pdf-am targets.
346 * po/Make-in: Add install-pdf target.
347 * configure: Regenerate.
348 * Makefile.in: Regenerate.
349 * doc/Makefile.in: Regenerate.
350
351 2009-02-03 H.J. Lu <hongjiu.lu@intel.com>
352
353 PR binutils/9784
354 * NEWS: Mention --prefix=PREFIX and --prefix-strip=LEVEL.
355
356 * doc/binutils.texi: Document --prefix=PREFIX and
357 --prefix-strip=LEVEL.
358
359 * objdump.c: Include "filenames.h".
360 (prefix): New.
361 (prefix_strip): Likewise.
362 (prefix_length): Likewise.
363 (usage): Add --prefix=PREFIX and --prefix-strip=LEVEL.
364 (option_values): Add OPTION_PREFIX and OPTION_PREFIX_STRIP.
365 (long_options): Likewise.
366 (show_line): Handle prefix and prefix_strip.
367 (main): Handle OPTION_PREFIX and OPTION_PREFIX_STRIP.
368
369 * readelf.c (PATH_MAX): Moved to ...
370 * sysdep.h: Here.
371
372 2009-01-31 Alan Modra <amodra@bigpond.net.au>
373
374 * NEWS: Mention --as-needed change.
375
376 2009-01-29 Alan Modra <amodra@bigpond.net.au>
377
378 PR 9798
379 * bucomm.c (bfd_nonfatal_message): Use bfd_get_archive_filename.
380 (bfd_get_archive_filename): Constify param.
381 * bucomm.h (bfd_get_archive_filename): Update prototype.
382 * objcopy.c (RETURN_NONFATAL): Delete.
383 (copy_unknown_object): Don't call bfd_get_archive_filename for
384 bfd_nonfatal_message filename, instead just pass bfd.
385 (copy_object): Likewise.
386 (copy_archive, copy_file): Likewise. Expand RETURN_NONFATAL. On
387 bfd_close errors, do not pass the bfd to bfd_nonfatal_message.
388 (setup_bfd_headers): Fix error message.
389
390 2009-01-27 Nick Clifton <nickc@redhat.com>
391
392 PR 9774
393 * objdump.c (disassemble_section): When the target uses signed
394 addresses make sure that we compute signed values.
395
396 2009-01-27 Nick Clifton <nickc@redhat.com>
397
398 * MAINTAINERS: Remove Thiemo Seufer's name from the list of MIPS
399 maintainers.
400
401 2009-01-26 Nick Clifton <nickc@redhat.com>
402
403 PR 9766
404 * dlltool.c (xlate): When strip text after the @ sign, look for
405 the last one not the first one.
406
407 2009-01-16 Alan Modra <amodra@bigpond.net.au>
408
409 * configure.in (commonbfdlib): Delete.
410 * configure: Regenerate.
411
412 2008-01-14 Charles Wilson <cygwin@cwilson.fastmail.fm>
413
414 Cleanup code related to --identify option.
415
416 * binutils/dlltool.c (file scope): Removed globals identify_ms,
417 identify_member_contains_symname_result,
418 identify_dll_name_list_head, and identify_dll_name_list_tail.
419 Renamed existing typedef dll_name_list_type to
420 dll_name_list_node_type.
421 Added new typedefs dll_name_list_type, symname_search_data_type,
422 and identify_data_type.
423 (identify_append_dll_name_to_list): Renamed to...
424 (dll_name_list_append): ...here. Changed signature to accept list
425 argument rather than use global.
426 (identify_count_dll_name_list): Renamed to...
427 (dll_name_list_count): ...here. Changed signature to accept list
428 argument rather than use global.
429 (identify_print_dll_name_list): Renamed to...
430 (dll_name_list_print): ...here. Changed signature to accept list
431 argument rather than use global.
432 (identify_free_dll_name_list): Renamed to...
433 (dll_name_list_free_contents): ...here.
434 (dll_name_list_free): New function.
435 (dll_name_list_create): New function.
436 (identify_process_section_p): Changed signature to accept
437 ms_style_implib argument rather than use global.
438 (identify_member_contains_symname): Expect incoming void * data to
439 be symname_search_data_type.
440 (identify_dll_for_implib): Use new functions dll_name_list_create
441 and dll_name_list_free. Use new types symname_search_data_type
442 and identify_data_type to communicate with search routines.
443 (identify_search_section): Expect incoming void * data to be
444 identify_data_type. Use its contents rather than global
445 variables.
446
447 2009-01-13 Charles Wilson <cygwin@cwilson.fastmail.fm>
448
449 Add --identify-strict option. Handle ms-style implibs:
450
451 * dlltool.c (file scope): Added new globals identify_ms and
452 identify_strict. New typedef dll_name_list_type, and globals
453 identify_dll_name_list_head and identify_dll_name_list_tail. Added
454 new global identify_member_contains_symname_result.
455 (identify_append_dll_name_to_list): New function.
456 (identify_count_dll_name_list): New function.
457 (identify_print_dll_name_list): New function.
458 (identify_free_dll_name_list): New function.
459 (identify_search_archive): Changed signature to take function
460 pointer to operation to apply to each member, and data to pass on
461 to that function.
462 (identify_search_member): Changed signature to accept user data
463 from caller.
464 (identify_member_contains_symname): New function.
465 (identify_dll_for_implib): Rewrite. Now determines whether implib
466 is ms- or binutils- style, before searching sections for
467 dllname. Allows multiple dllnames.
468 (identify_process_section_p): Search alternate section for dllname
469 when implib is ms-style.
470 (identify_search_section): Add additional conditions to excludes
471 candidate sections from consideration.
472 (usage): Added --identify-strict.
473 (long_options): Added --identify-strict.
474 (main): Handle --identify-strict option.
475 * doc/binutils.texi: Document --identify-strict option.
476 * NEWS: Document --identify and --identify-strict options.
477
478 2009-01-13 Alan Modra <amodra@bigpond.net.au>
479
480 PR 7034
481 * doc/binutils.texi (objdump -R): Note effect of -d or -D.
482
483 2009-01-13 Alan Modra <amodra@bigpond.net.au>
484
485 * objdump.c (disassemble_section): Don't assume non-instruction
486 data if object symbol at given address is in different section.
487
488 2009-01-12 Kai Tietz <kai.tietz@onevision.com>
489
490 * dlltool.c (create_for_pep): New.
491 (flush_page): Use create_for_pep instead of using
492 macro DLLTOOL_MX86_64 clause.
493 (generate_idata_ofile): Likewise.
494 (make_one_lib_file): Likewise.
495 (make_head): Likewise.
496 (make_tail): Likewise.
497 (main): Initialize create_for_pep.
498
499 2009-01-08 Kai Tietz <kai.tietz@onevision.com>
500
501 * dlltool.c (use_nul_prefixed_import_tables): New.
502 (make_head): Make prefix leading zero prefix element for
503 idata$4 and idata$5 dependent to new flag.
504 (usage): Add new option --use-nul-prefixed-import-tables.
505 (OPTION_USE_NUL_PREFIXED_IMPORT_TABLES): New.
506 (long_options): Add --use-nul-prefixed-import-tables.
507 (main): Likewise.
508 * doc/binutils.texi: Add new option documentation for
509 --use-nul-prefixed-import-tables.
510 * NEWS: Add new option.
511
512 2009-01-06 Kai Tietz <kai.tietz@onevision.com>
513
514 * windres.c (set_endianess): Get architecture name
515 for internal target names like "pe-arm-wince-little".
516 (find_arch_match): New helper.
517 * ChangeLog: Reset it.
518 * ChangeLog-2008: Moved old ChangeLog.
519
520 For older changes see ChangeLog-2008
521 \f
522 Local Variables:
523 mode: change-log
524 left-margin: 8
525 fill-column: 74
526 version-control: never
527 End:
This page took 0.067325 seconds and 4 git commands to generate.