1999-05-03 15:29:11 +08:00
|
|
|
|
-*- text -*-
|
2010-01-11 22:45:42 +08:00
|
|
|
|
|
2010-03-03 00:44:34 +08:00
|
|
|
|
* Readelf can now display ARM unwind tables (.ARM.exidx / .ARM.extab) using
|
|
|
|
|
the -u / --unwind option.
|
|
|
|
|
|
2010-01-11 22:45:42 +08:00
|
|
|
|
* Add --dyn-syms to readelf to dump dynamic symbol table.
|
|
|
|
|
|
2010-01-11 20:40:45 +08:00
|
|
|
|
* A new tool - elfedit - has been added to directly manipulate ELF format
|
|
|
|
|
binaries.
|
2009-09-04 16:23:49 +08:00
|
|
|
|
|
2009-10-23 22:53:57 +08:00
|
|
|
|
* Add to dlltool .def file feature of aliasing PE internal symbol name by
|
|
|
|
|
'== <ID>' option.
|
|
|
|
|
|
2009-12-09 20:58:23 +08:00
|
|
|
|
* Add a new command line option -a / --addresses to addr2line to display the
|
|
|
|
|
address before function name or source filename.
|
|
|
|
|
|
2009-12-11 00:12:33 +08:00
|
|
|
|
* Add a new command line option -p / --pretty-print to addr2line to have
|
|
|
|
|
a more human readable output.
|
|
|
|
|
|
2009-09-04 16:23:49 +08:00
|
|
|
|
Changes in 2.20:
|
|
|
|
|
|
2009-09-04 09:22:19 +08:00
|
|
|
|
* Add support for delay importing to dlltool. Use the --output-delaylib <file>
|
|
|
|
|
switch to create a delay-import library. The resulting app will load the dll
|
|
|
|
|
as soon as the first function is called. It will link to __delayLoadHelper2()
|
|
|
|
|
from the static delayimp library, which will import LoadLibraryA and
|
|
|
|
|
GetProcAddress from kernel32.
|
|
|
|
|
|
2009-07-20 21:40:48 +08:00
|
|
|
|
* Add a new command line option, --insn-width=WIDTH, to objdump to specify
|
2009-09-04 09:22:19 +08:00
|
|
|
|
number of bytes to be displayed on a single line when disassembling
|
|
|
|
|
instructions.
|
2009-07-20 21:40:48 +08:00
|
|
|
|
|
2009-06-24 18:37:35 +08:00
|
|
|
|
* Readelf can now display the relocated contents of a section as a sequence
|
|
|
|
|
of bytes via the --relocated-dump=<name|number> command line option.
|
|
|
|
|
|
2009-06-12 23:33:30 +08:00
|
|
|
|
* The gprof program has been given a new command line option:
|
|
|
|
|
--external-symbols-table=<filename> which reads in symbols from a specified
|
|
|
|
|
file.
|
2008-09-08 16:56:57 +08:00
|
|
|
|
|
2009-05-26 22:12:03 +08:00
|
|
|
|
* The plugin target has been added to bfd. It can load the same shared objects
|
|
|
|
|
used by gold and uses them to provide basic support for new file formats.
|
|
|
|
|
|
2009-04-30 12:36:49 +08:00
|
|
|
|
* The verilog memory hex dump file format is now supported as an output format
|
|
|
|
|
for objcopy.
|
2009-04-27 22:27:36 +08:00
|
|
|
|
|
bfd/
2009-04-17 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/10074
* coffcode.h (bfd_pei_p): New.
* config.bfd: Remove bfd_efi_bsdrv_ia32_vec,
bfd_efi_rtdrv_ia32_vec, bfd_efi_bsdrv_x86_64_vec,
bfd_efi_rtdrv_x86_64_vec, bfd_efi_bsdrv_ia64_vec and
bfd_efi_rtdrv_ia64_vec. Replace bfd_efi_app_ia32_vec,
bfd_efi_app_x86_64_vec and bfd_efi_app_ia64_vec with
i386pei_vec, x86_64pei_vec and bfd_pei_ia64_vec, respectively.
* configure.in: Remove bfd_efi_bsdrv_ia32_vec,
bfd_efi_rtdrv_ia32_vec, bfd_efi_bsdrv_x86_64_vec,
bfd_efi_rtdrv_x86_64_vec,
bfd_efi_bsdrv_ia64_vec and bfd_efi_rtdrv_ia64_vec. Replace
bfd_efi_ia64_vec with bfd_pei_ia64_vec.
* targets.c: Likewise.
* configure: Regenerated.
* libcoff.h: Likewise.
* Makefile.in: Likewise.
* efi-app-ia32.c: Removed.
* efi-app-x86_64.c: Likewise.
* efi-bsdrv-ia32.c: Likewise.
* efi-bsdrv-ia64.c: Likewise.
* efi-bsdrv-x86_64.c: Likewise.
* efi-rtdrv-ia32.c: Likewise.
* efi-rtdrv-ia64.c: Likewise.
* efi-rtdrv-x86_64.c: Likewise.
* efi-rtdrv-ia32.c: Likewise.
* efi-app-ia64.c: Moved to ...
* pei-ia64.c: This.
(TARGET_SYM): Set to bfd_pei_ia64_vec.
(TARGET_NAME): Set to pei-ia64.
* libpei.h (bfd_target_pei_p): Removed.
(bfd_target_pei_arch): Likewise.
(bfd_target_efi_app_p): Likewise.
(bfd_target_efi_app_arch): Likewise.
(bfd_target_efi_bsdrv_p): Likewise.
(bfd_target_efi_bsdrv_arch): Likewise.
(bfd_target_efi_rtdrv_p): Likewise.
(bfd_target_efi_rtdrv_arch): Likewise.
(bfd_pe_executable_p): Likewise.
* Makefile.am (BFD32_BACKENDS): Remove efi-app-ia32.lo,
efi-bsdrv-ia32.lo and efi-rtdrv-ia32.lo.
(BFD32_BACKENDS_CFILES): Remove efi-app-ia32.c, efi-bsdrv-ia32.c
and efi-rtdrv-ia32.c.
(BFD64_BACKENDS): Remove efi-app-ia64.lo, efi-bsdrv-ia64.lo,
efi-rtdrv-ia64.lo, efi-app-x86_64.lo, efi-bsdrv-x86_64.lo and
efi-rtdrv-x86_64.lo. Add pei-ia64.lo.
(BFD64_BACKENDS_CFILES): Remove efi-app-ia64.c, efi-bsdrv-ia64.c,
efi-rtdrv-ia64.c, efi-app-x86_64.c, efi-bsdrv-x86_64.c and
efi-rtdrv-x86_64.c. Add pei-ia64.c.
(efi-app-ia64.lo): Removed.
(efi-bsdrv-ia32.lo): Likewise.
(efi-rtdrv-ia32.lo): Likewise.
(efi-app-ia64.lo): Likewise.
(efi-bsdrv-ia64.lo): Likewise.
(efi-rtdrv-ia64.lo): Likewise.
(efi-app-x86_64.lo): Likewise.
(efi-bsdrv-x86_64.lo): Likewise.
(efi-rtdrv-x86_64.lo): Likewise.
(pei-ia64.lo): New.
* peicode.h (coff_swap_scnhdr_in): Replace bfd_pe_executable_p
with bfd_pei_p.
(arch_type): Removed.
(pe_arch): Likewise.
(pe_bfd_object_p): Just return coff_object_p.
* peXXigen.c (_bfd_XXi_swap_scnhdr_out): Replace
bfd_pe_executable_p with bfd_pei_p.
binutils/
2009-04-17 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/10074
* objcopy.c: Include coff/i386.h and coff/pe.h.
(pe_file_alignment): New.
(pe_heap_commit): Likewise.
(pe_heap_reserve): Likewise.
(pe_image_base): Likewise.
(pe_section_alignment): Likewise.
(pe_stack_commit): Likewise.
(pe_stack_reserve): Likewise.
(pe_subsystem): Likewise.
(pe_major_subsystem_version): Likewise.
(pe_minor_subsystem_version): Likewise.
(set_pe_subsystem): Likewise.
(convert_efi_target): Likewise.
(command_line_switch): Add OPTION_FILE_ALIGNMENT,
OPTION_HEAP, OPTION_IMAGE_BASE, OPTION_SECTION_ALIGNMENT,
OPTION_STACK and OPTION_SUBSYSTEM.
(copy_options): Likewise.
(copy_usage): Add --file-alignment, --heap, --image-base,
--section-alignment, --stack and --subsystem.
(copy_object): Set up PE parameters.
(copy_main): Process Add OPTION_FILE_ALIGNMENT,
OPTION_HEAP, OPTION_IMAGE_BASE, OPTION_SECTION_ALIGNMENT,
OPTION_STACK and OPTION_SUBSYSTEM. Convert EFI target to
PEI target.
* NEWS: Mention --file-alignment, --heap, --image-base,
--section-alignment, --stack and --subsystem command line
options for objcopy.
* doc/binutils.texi: Document --file-alignment, --heap,
--image-base, --section-alignment, --stack and --subsystem
command line options for objcopy.
2009-04-17 21:46:18 +08:00
|
|
|
|
* Add --file-alignment, --heap, --image-base, --section-alignment,
|
|
|
|
|
--stack and --subsystem command line options to objcopy, which will
|
|
|
|
|
set PE optional header.
|
|
|
|
|
|
2009-02-09 17:14:15 +08:00
|
|
|
|
* Option --dwarf/-W of objdump is now as flexible as readelf --debug-dump/-w.
|
|
|
|
|
|
|
|
|
|
* --as-needed now links in a dynamic library if it satisfies undefined
|
|
|
|
|
symbols in regular objects, or in other dynamic libraries. In the
|
|
|
|
|
latter case the library is not linked if it is found in a DT_NEEDED
|
|
|
|
|
entry of one of the libraries already linked.
|
|
|
|
|
|
2009-02-03 23:48:50 +08:00
|
|
|
|
* Added --prefix=PREFIX and --prefix-strip=LEVEL switches to objdump to
|
2009-02-03 23:56:59 +08:00
|
|
|
|
add absolute paths for -S.
|
2009-02-03 23:48:50 +08:00
|
|
|
|
|
2009-01-08 21:29:14 +08:00
|
|
|
|
* Add new option --use-nul-prefixed-import-tables to dlltool to allow fall-
|
|
|
|
|
back to old import table generation with null element prefix.
|
|
|
|
|
|
2009-01-13 17:23:51 +08:00
|
|
|
|
* Added --identify-strict switch to cause --identify <implib> to
|
|
|
|
|
report an error when the import library is associated with
|
|
|
|
|
multiple DLLs.
|
|
|
|
|
|
|
|
|
|
* Added --identify <implib> option to dlltool, which determines the
|
|
|
|
|
name of the DLL associated with the specified <implib>.
|
|
|
|
|
|
2008-12-04 18:29:16 +08:00
|
|
|
|
* Support for PowerPC booke64 instructions has been removed. The assembler no
|
|
|
|
|
longer accepts -mbooke32 or -mbooke64 and the disassembler no longer accepts
|
|
|
|
|
-Mbooke32 or -Mbooke64. Instead, -mbooke and -Mbooke should be used.
|
|
|
|
|
|
2008-09-08 16:56:57 +08:00
|
|
|
|
Changes in 2.19:
|
|
|
|
|
|
2008-04-11 17:04:17 +08:00
|
|
|
|
* Added -wL switch to dump decoded contents of .debug_line.
|
|
|
|
|
|
2008-03-28 14:49:44 +08:00
|
|
|
|
* Added support for "thin" archives which contain pathnames pointing to
|
|
|
|
|
object files rather than the files themselves and which contain a
|
|
|
|
|
flattened symbol index for all objects, and archives, which have been
|
|
|
|
|
added to the archive.
|
|
|
|
|
|
2008-02-22 17:42:58 +08:00
|
|
|
|
* Added -F switch to objdump to include file offsets in the disassembly.
|
|
|
|
|
|
2007-09-18 00:09:24 +08:00
|
|
|
|
* Added -c switch to readelf to allow string dumps of archive symbol index.
|
|
|
|
|
|
2007-09-15 02:21:09 +08:00
|
|
|
|
* Support for SSE5 has been added to the i386 port.
|
|
|
|
|
|
2007-08-30 21:47:35 +08:00
|
|
|
|
* Added -p switch to readelf to allow string dumps of sections.
|
|
|
|
|
|
2007-08-13 09:56:12 +08:00
|
|
|
|
Changes in 2.18:
|
2008-02-22 17:42:58 +08:00
|
|
|
|
|
2007-08-28 19:56:08 +08:00
|
|
|
|
* Resolved 37 coding problems in bfd including static array overruns, null
|
|
|
|
|
pointer dereferences and use of a malloc buffer after it has been freed, as
|
|
|
|
|
revealed by static analysis donated by Coverity, Inc. (http://scan.coverity.com).
|
2002-07-18 19:11:13 +08:00
|
|
|
|
|
2007-07-06 00:54:46 +08:00
|
|
|
|
* The binutils sources are now released under version 3 of the GNU General
|
|
|
|
|
Public License.
|
|
|
|
|
|
2007-06-19 21:24:33 +08:00
|
|
|
|
* A new tool "windmc" has been added for some targets. This is a message
|
|
|
|
|
compiler which attempts to be compatible with the MS version.
|
|
|
|
|
|
|
|
|
|
* Add codepage support to the windres tool. It now supports many new
|
|
|
|
|
resource types (e.g. MANIFEST, TOOLBAR, etc). The output generation
|
|
|
|
|
for binary files is done now via bfd itself. The endianess problems
|
|
|
|
|
for different hosts are solved. Dumps of .res files can now be
|
|
|
|
|
re-compiled by windres without lossing resources or compilation errors.
|
|
|
|
|
Some problems on dialog resource translations are corrected.
|
2007-06-18 23:30:33 +08:00
|
|
|
|
|
2007-03-02 00:39:42 +08:00
|
|
|
|
* Add --extract-symbol command line option to objcopy, which will
|
|
|
|
|
strip everything out of an ordinary object file or executable except
|
|
|
|
|
for its symbol table. Files containing just symbols can be useful
|
|
|
|
|
to some OSes.
|
|
|
|
|
|
2007-07-06 00:54:46 +08:00
|
|
|
|
Changes in 2.17:
|
|
|
|
|
|
2005-11-14 23:00:30 +08:00
|
|
|
|
* Add "-x NAME" to readelf in addition to "-x NUMBER".
|
|
|
|
|
|
2005-10-04 19:03:38 +08:00
|
|
|
|
* Add -i and -t switches to cxxfilt. -i disables the display of implementation
|
|
|
|
|
specific extra demangling information (if any) and -t disables the demangling
|
|
|
|
|
of types.
|
|
|
|
|
|
|
|
|
|
* Add support for the "@<file>" syntax to the command lines of all tools, so
|
|
|
|
|
that extra switches can be read from <file>.
|
|
|
|
|
|
2005-10-03 22:40:19 +08:00
|
|
|
|
* Add "-W/--dwarf" to objdump to display the contents of the DWARF
|
2005-10-04 19:03:38 +08:00
|
|
|
|
debug sections.
|
2005-10-03 22:40:19 +08:00
|
|
|
|
|
2005-08-11 21:14:29 +08:00
|
|
|
|
* Add "-t/--section-details" to readelf to display section details.
|
2005-10-04 19:03:38 +08:00
|
|
|
|
"-N/--full-section-name" is deprecated.
|
2005-08-11 21:14:29 +08:00
|
|
|
|
|
2005-06-06 14:53:07 +08:00
|
|
|
|
* powerpc-linux ld now supports a variant form of PLT and GOT for the security
|
|
|
|
|
conscious. This form will automatically be chosen when ld detects that all
|
|
|
|
|
code in regular object files was generated by gcc -msecure-plt. The old PLT
|
|
|
|
|
and GOT may be forced by a new ld option, --bss-plt.
|
|
|
|
|
|
2005-05-24 01:45:42 +08:00
|
|
|
|
* Add "-i/--inlines" to addr2line to print enclosing scope information
|
|
|
|
|
for inlined function chains, back to first non-inlined function.
|
|
|
|
|
|
2005-04-01 23:09:43 +08:00
|
|
|
|
* Add "-N/--full-section-name" to readelf to display full section name.
|
|
|
|
|
|
2005-03-30 00:13:48 +08:00
|
|
|
|
* Add "-M entry:<addr>" switch to objdump to specify a function entry address
|
|
|
|
|
when disassembling VAX binaries.
|
|
|
|
|
|
2005-03-16 01:45:19 +08:00
|
|
|
|
* Add "--globalize-symbol <name>" and "--globalize-symbols <filename>" switches
|
|
|
|
|
to objcopy to convert local symbols into global symbols.
|
2007-04-10 16:01:13 +08:00
|
|
|
|
|
|
|
|
|
* gprof now allows input files to have histogram records for
|
|
|
|
|
several memory ranges, provided those ranges are disjoint.
|
2005-03-16 01:45:19 +08:00
|
|
|
|
|
|
|
|
|
Changes in 2.16:
|
|
|
|
|
|
2005-06-06 14:53:07 +08:00
|
|
|
|
* Add "-g/--section-groups" to readelf to display section groups.
|
2005-04-01 23:09:43 +08:00
|
|
|
|
|
2004-12-16 21:16:33 +08:00
|
|
|
|
* objcopy recognizes two new options --strip-unneeded-symbol and
|
|
|
|
|
--strip-unneeded-symbols, namely for use together with the wildcard
|
|
|
|
|
matching the original --strip-symbol/--strip-symbols provided, but
|
|
|
|
|
retaining any symbols matching but needed by relocations.
|
|
|
|
|
|
2004-11-03 18:44:45 +08:00
|
|
|
|
* readelf can now display address ranges from .debug_range sections. This
|
|
|
|
|
happens automatically when a DW_AT_range attribute is encountered. The
|
|
|
|
|
command line switch --debug-dump=Ranges (or -wR) can also be used to display
|
|
|
|
|
the contents of the .debug_range section.
|
|
|
|
|
|
2004-10-08 22:54:04 +08:00
|
|
|
|
* nm and objdump now have a switch "--special-syms" to enable the displaying of
|
|
|
|
|
symbols which the target considers to be special. By default these symbols
|
|
|
|
|
are no longer displayed. Currently the only special symbols are the Mapping
|
|
|
|
|
symbols used by the ARM port to mark transitions between text and data and
|
|
|
|
|
between ARM and THUMB code.
|
|
|
|
|
|
2004-07-13 01:07:55 +08:00
|
|
|
|
* dlltool has a switch "--ext-prefix-alias <prefix>" to generate additional
|
|
|
|
|
import and export symbols with <preifx> prepended to them.
|
|
|
|
|
|
|
|
|
|
Changes in 2.15:
|
|
|
|
|
|
2005-01-20 07:35:26 +08:00
|
|
|
|
* objcopy for MIPS targets now accepts "-M no-aliases" as an option to the
|
2005-01-20 07:43:00 +08:00
|
|
|
|
disassembler to print the "raw" mips instruction mnemonic instead of some
|
2005-01-20 07:35:26 +08:00
|
|
|
|
pseudo instruction name. I.E. print "daddu" or "or" instead of "move",
|
|
|
|
|
"sll" instead of "nop", etc.
|
|
|
|
|
|
2003-11-12 01:50:26 +08:00
|
|
|
|
* objcopy and strip can now take wildcard patterns in symbol names specified on
|
|
|
|
|
the command line provided that the --wildcard switch is used to enable them.
|
|
|
|
|
|
2003-08-11 17:15:55 +08:00
|
|
|
|
* readelf can now parse archives.
|
|
|
|
|
|
2003-07-22 21:33:32 +08:00
|
|
|
|
* objdump now accepts --debugging-tags to print the debug information in a
|
|
|
|
|
format compatible with ctags tool.
|
|
|
|
|
|
2003-06-26 16:14:10 +08:00
|
|
|
|
* objcopy and strip now accept --only-keep-debug to create a file containing
|
|
|
|
|
those sections that would be stripped out by --strip-debug. The idea is that
|
|
|
|
|
this can be used in conjunction with the --add-gnu-debuglink switch to create
|
|
|
|
|
a two part program distribution - one a stripped executable and the other the
|
|
|
|
|
debugging info.
|
|
|
|
|
|
2003-06-12 15:23:31 +08:00
|
|
|
|
* objcopy now accepts --add-gnu-debuglink=<file> to insert a .gnu_debuglink
|
|
|
|
|
section into a (presumably stripped) executable. This allows the debug
|
2003-10-27 21:20:32 +08:00
|
|
|
|
information for the file to be held in a separate file.
|
2003-06-12 15:23:31 +08:00
|
|
|
|
|
2003-06-04 01:45:49 +08:00
|
|
|
|
* BFD marks the sections .comment and .note as 'n' in the BSD/POSIX
|
|
|
|
|
single-character representation. This can be checked by running nm
|
|
|
|
|
with the -a switch.
|
|
|
|
|
|
2003-10-01 00:44:04 +08:00
|
|
|
|
Changes in 2.14:
|
|
|
|
|
|
2003-03-25 00:11:46 +08:00
|
|
|
|
* Added --info switch to objcopy and strip.
|
|
|
|
|
|
2003-01-04 10:13:46 +08:00
|
|
|
|
* Support for Vitesse IQ2000 added by Red Hat.
|
|
|
|
|
|
2002-12-23 18:37:38 +08:00
|
|
|
|
* Added 'S' encoding to strings to allow the display of 8-bit characters.
|
|
|
|
|
|
2002-12-13 21:19:44 +08:00
|
|
|
|
* Added --prefix-symbols=<text>, --prefix-sections=<text> and
|
|
|
|
|
--prefix-alloc-sections=<text> to objcopy.
|
|
|
|
|
|
2002-12-11 01:48:27 +08:00
|
|
|
|
* readelf can handle the extensions to the DWARF2 spec used by the Unified
|
|
|
|
|
Parallel C compiler.
|
|
|
|
|
|
2002-12-08 11:38:03 +08:00
|
|
|
|
* BFD no longer declares a "boolean" type, to avoid clashes with other
|
|
|
|
|
headers that declare the same. Users of BFD should replace boolean,
|
|
|
|
|
false and true, with int, 0 and 1, or define their own boolean type.
|
|
|
|
|
|
2002-07-18 19:11:13 +08:00
|
|
|
|
* Support for IP2K added by Denis Chertykov.
|
|
|
|
|
|
2002-07-16 15:58:34 +08:00
|
|
|
|
Changes in 2.13:
|
|
|
|
|
|
|
|
|
|
* Support for the Fujitsu FRV architecture added by Red Hat. Models for FR400
|
|
|
|
|
and FR500 included.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2002-02-20 18:46:54 +08:00
|
|
|
|
Changes in version 2.12:
|
|
|
|
|
|
2002-02-15 12:04:03 +08:00
|
|
|
|
* Support for Don Knuth's MMIX, by Hans-Peter Nilsson.
|
|
|
|
|
|
2002-01-25 23:37:04 +08:00
|
|
|
|
* size: Add --totals to display summary of sizes (Berkeley format only).
|
|
|
|
|
|
2001-09-26 00:44:19 +08:00
|
|
|
|
* readelf: Add --wide option to not break section header or segment listing
|
|
|
|
|
lines to fit into 80 columns.
|
|
|
|
|
|
2001-09-14 19:32:25 +08:00
|
|
|
|
* strings: Add --encoding to display wide character strings. By Markus Kuhn.
|
|
|
|
|
|
2001-07-31 21:49:39 +08:00
|
|
|
|
* objcopy: Add --rename-section to change section names.
|
|
|
|
|
|
2001-07-05 15:49:05 +08:00
|
|
|
|
* readelf: Support added for DWARF 2.1 extensions. Support added for
|
|
|
|
|
displaying the contents of .debug.macinfo sections.
|
|
|
|
|
|
2001-05-30 18:46:28 +08:00
|
|
|
|
* New command line switches added to objcopy to allow symbols to be kept as
|
|
|
|
|
global symbols, and also to specify files containing lists of such symbols.
|
|
|
|
|
by Honda Hiroki.
|
|
|
|
|
|
2001-04-27 21:34:20 +08:00
|
|
|
|
* Support for OpenRISC by Johan Rydberg.
|
|
|
|
|
|
2001-08-24 21:56:11 +08:00
|
|
|
|
* New command line switch to objcopy --alt-machine-code which creates a binary
|
|
|
|
|
with an alternate machine code if one is defined in the architecture
|
|
|
|
|
description. Only supported for ELF targets. By Alexandre Oliva.
|
|
|
|
|
|
2001-03-13 08:08:35 +08:00
|
|
|
|
* New command line switch to objcopy -B (or --binary-architecture) which sets
|
2001-06-09 10:15:49 +08:00
|
|
|
|
the architecture of the output file to the given argument. This option only
|
2001-03-13 08:08:35 +08:00
|
|
|
|
makes sense, if the input target is binary. Otherwise it is ignored.
|
|
|
|
|
By Stefan Geuken.
|
|
|
|
|
|
2001-02-19 07:33:11 +08:00
|
|
|
|
* Support for PDP-11 by Lars Brinkhoff.
|
|
|
|
|
|
2001-06-09 10:15:49 +08:00
|
|
|
|
Changes in binutils 2.11:
|
|
|
|
|
|
2000-11-25 08:21:40 +08:00
|
|
|
|
* Add support for ARM v5t and v5te architectures and Intel's XScale ARM
|
|
|
|
|
extenstions.
|
|
|
|
|
|
|
|
|
|
* Add --srec-len and --srec-forceS3 command line switch to objcopy.
|
|
|
|
|
By Luciano Gemme.
|
2002-12-08 11:38:03 +08:00
|
|
|
|
|
2000-09-14 09:47:38 +08:00
|
|
|
|
* Support for the MIPS32, by Anders Norlander.
|
|
|
|
|
|
2000-08-15 02:50:13 +08:00
|
|
|
|
* Support for the i860, by Jason Eckhardt.
|
|
|
|
|
|
2000-08-25 01:42:52 +08:00
|
|
|
|
* Support for CRIS (Axis Communications ETRAX series).
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
Changes in binutils 2.10:
|
|
|
|
|
|
2001-06-09 10:15:49 +08:00
|
|
|
|
* Support for 64-bit ELF on HPPA.
|
|
|
|
|
|
2000-02-09 02:38:13 +08:00
|
|
|
|
* New command line switch to objdump --file-start-context which shows the
|
|
|
|
|
entire file contents up to the source line first encountered for a given
|
2002-12-08 11:38:03 +08:00
|
|
|
|
file.
|
2000-02-09 02:38:13 +08:00
|
|
|
|
|
1999-06-16 10:24:36 +08:00
|
|
|
|
* New command line switch to objdump -M (or --disassembler-options) which takes
|
|
|
|
|
a parameter which can then be interpreted on a per-target basis by the
|
|
|
|
|
disassembler. Used by ARM targets to select register name sets, ISA, APCS or
|
|
|
|
|
raw verions.
|
2002-12-08 11:38:03 +08:00
|
|
|
|
|
1999-05-28 04:48:12 +08:00
|
|
|
|
* objdump support for -mi386:intel which causes disassembly to be displayed
|
|
|
|
|
with intel syntax.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
* New program: readelf. This displays the contents of ELF format files,
|
|
|
|
|
regardless of target machine.
|
|
|
|
|
|
|
|
|
|
* objcopy now takes --change-section-lma, --change-section-vma, and
|
|
|
|
|
--change-section-address options. The old --adjust-section-vma option is
|
|
|
|
|
equivalent to --change-section-address. The other --adjust-* options are now
|
|
|
|
|
renamed to --change-*, although --adjust-* continues to work.
|
|
|
|
|
|
2000-04-05 11:43:56 +08:00
|
|
|
|
* objcopy has a --redefine-sym option that lets you rename symbols.
|
|
|
|
|
|
|
|
|
|
* objcopy now takes a -j/--only-section option to copy only the specified
|
|
|
|
|
sections.
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
* dlltool now supports the IMPORTS command.
|
|
|
|
|
|
|
|
|
|
* dlltool now takes --export-all-symbols, --no-export-all-symbols,
|
|
|
|
|
--exclude-symbols, and --no-default-excludes options.
|
|
|
|
|
|
|
|
|
|
Changes in binutils 2.9:
|
|
|
|
|
|
|
|
|
|
* Added windres program, which can be used to manipulate resources in WIN32
|
|
|
|
|
files as used on Windows 95 and Windows NT.
|
|
|
|
|
|
|
|
|
|
* The objcopy --gap-fill and --pad-to options operate on the LMA rather than
|
|
|
|
|
the VMA of the sections.
|
|
|
|
|
|
|
|
|
|
* Added S modifier to ar to not build a symbol table.
|
|
|
|
|
|
|
|
|
|
Changes in binutils 2.8:
|
|
|
|
|
|
|
|
|
|
* The objdump disassembly format has been changed, and hopefully improved. Use
|
|
|
|
|
the new --prefix-addresses option to get the old format. There are also new
|
|
|
|
|
--disassemble-zeroes and --no-show-raw-insn options which affect disassembler
|
|
|
|
|
output.
|
|
|
|
|
|
|
|
|
|
* Formats may now be specified as configuration triplets. For example,
|
|
|
|
|
objdump -b i386-pc-linux. The triplets are not passed through config.sub,
|
|
|
|
|
so they must be in canonical form.
|
|
|
|
|
|
|
|
|
|
* Added new addr2line program. This uses the debugging information to convert
|
|
|
|
|
an address into a file name and line number within a program.
|
|
|
|
|
|
|
|
|
|
* Added --change-leading-char argument to objcopy.
|
|
|
|
|
|
|
|
|
|
* Added --weaken argument to objcopy.
|
|
|
|
|
|
|
|
|
|
* objdump --dynamic-reloc now works on ELF executables and shared libraries.
|
|
|
|
|
|
|
|
|
|
* Added --adjust-vma option to objdump.
|
|
|
|
|
|
|
|
|
|
* Added -C/--demangle option to objdump.
|
|
|
|
|
|
|
|
|
|
* Added -p/--preserve-dates option to strip and objcopy.
|
|
|
|
|
|
|
|
|
|
Changes in binutils 2.7:
|
|
|
|
|
|
|
|
|
|
* Added --enable-shared and --enable-commonbfdlib options to configure.
|
|
|
|
|
|
|
|
|
|
* Added --debugging argument to objdump and objcopy.
|
|
|
|
|
|
|
|
|
|
* Added --defined-only argument to nm.
|
|
|
|
|
|
|
|
|
|
* Added --remove-leading-char argument to objcopy.
|
|
|
|
|
|
|
|
|
|
* The objdump --line-numbers option is now meaningful with --reloc.
|
|
|
|
|
|
|
|
|
|
* Added --line-numbers option to nm.
|
|
|
|
|
|
|
|
|
|
* Added --endian/-EB/-EL option to objdump.
|
|
|
|
|
|
|
|
|
|
* Added support for Alpha OpenVMS/AXP.
|
|
|
|
|
|
|
|
|
|
Changes in binutils 2.6:
|
|
|
|
|
|
|
|
|
|
* Added -N/--strip-symbol and -K/--keep-symbol arguments to strip and objcopy.
|
|
|
|
|
|
|
|
|
|
* Added several arguments to objcopy to provide some control over how the new
|
|
|
|
|
file is laid out in memory. Also added binary output format to BFD to permit
|
|
|
|
|
generating plain binary files.
|
|
|
|
|
|
|
|
|
|
* Added --start-address and --stop-address options to objdump.
|
|
|
|
|
|
|
|
|
|
* ar and ranlib now work on AIX. The tools are now built by default on AIX.
|
|
|
|
|
|
|
|
|
|
Changes in binutils 2.5:
|
|
|
|
|
|
|
|
|
|
* Changed objdump -dr to dump the relocs interspersed with the assembly
|
2003-06-25 14:40:27 +08:00
|
|
|
|
listing, for a more useful listing of relocatable files.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
* Changed objdump -d/--disassemble to only disassemble SEC_CODE sections.
|
|
|
|
|
Added -D/--disassemble-all option to disassemble all sections.
|
|
|
|
|
|
|
|
|
|
* Added --size-sort option to nm.
|
|
|
|
|
|
|
|
|
|
* strip and objcopy should now be able to handle dynamically linked ELF
|
|
|
|
|
executables.
|
|
|
|
|
|
|
|
|
|
Changes in binutils 2.4:
|
|
|
|
|
|
|
|
|
|
* Support for HP-PA (by Jeff Law), i386 Mach (by David Mackenzie), RS/6000 and
|
|
|
|
|
PowerPC (except ar and ranlib; by Ian Taylor).
|
|
|
|
|
|
|
|
|
|
* Support for Irix 5.
|
|
|
|
|
|
|
|
|
|
* Programs `strip' and `objcopy' will not attempt to write dynamically linked
|
|
|
|
|
ELF output files, since BFD currently can't create them properly.
|
|
|
|
|
|
|
|
|
|
Changes in binutils 2.3:
|
|
|
|
|
|
|
|
|
|
* A new --stabs argument has been added to objdump to dump stabs sections in
|
|
|
|
|
ELF and COFF files.
|
|
|
|
|
|
|
|
|
|
* A new program, nlmconv, has been added. It can convert object files into
|
|
|
|
|
Novell NetWare Loadable Modules.
|
|
|
|
|
|
|
|
|
|
* The strings program has been added.
|
|
|
|
|
|
|
|
|
|
Changes in binutils 2.2:
|
|
|
|
|
|
|
|
|
|
* The 'copy' program has been renamed to 'objcopy', for consistency with
|
|
|
|
|
'objdump', and because 'copy' might more plausibly be used as a synonym for
|
|
|
|
|
'cp'.
|
|
|
|
|
|
|
|
|
|
* The new stand-alone program c++filt is a filter that converts encoded
|
|
|
|
|
(mangled) C++ assembly-level identifiers to user-level names. (Note: This
|
|
|
|
|
may get moved to the gcc distribution.)
|
|
|
|
|
|
|
|
|
|
* nm -o on an archive now prefixes each line with the archive name, matching
|
|
|
|
|
the output from BSD nm.
|
|
|
|
|
|
|
|
|
|
* ar (and ld) can now read (but not write) BSD4.4-style archives.
|
|
|
|
|
|
|
|
|
|
* New support for H8500, Z8000, and the Hitach SH.
|
|
|
|
|
|
|
|
|
|
* Dis-assembler interface changed to allow sharing with gdb.
|
|
|
|
|
|
|
|
|
|
* There is new Elf code, but it is not yet ready for general use.
|
|
|
|
|
|
|
|
|
|
* There is the beginnings of a test suite.
|
|
|
|
|
|
|
|
|
|
Changes in binutils 2.1:
|
|
|
|
|
|
|
|
|
|
* There is now support for writing ECOFF files, so ld and the other utilities
|
|
|
|
|
should work on Risc/Ultrix and Irix. Please let us know how well this works.
|
|
|
|
|
|
|
|
|
|
* ar now automatically creates a symbol table (a __.SYMDEF member, in the BSD
|
|
|
|
|
version), if there are any object files in the archive. So running ranlib is
|
|
|
|
|
now redundant (unless the non-standard q command is used). This is required
|
|
|
|
|
for Posix.2 conformance.
|
|
|
|
|
|
|
|
|
|
* The archive-reading code now reads both BSD-style and SYSV-style archives
|
|
|
|
|
independently of the selected target format. This is to encourage people to
|
|
|
|
|
switch to SYSV-format, which has a number of advantages.
|
|
|
|
|
|
|
|
|
|
* The strip and copy programs now have options to remove debug-symbols only
|
|
|
|
|
and/or local symbols only. They now also support long options.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Local variables:
|
|
|
|
|
fill-column: 79
|
|
|
|
|
End:
|