binutils-gdb/bfd
Nick Clifton 12ef3f5a7c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts.
GCC v8 issues warnings about mis-matching casts of function pointers.
A previous patch tried to fix this problem by adding new dummy functions
which accepted a variable number of arguments.  But this introduces serious
problems when compiled with other versions of gcc, (notably gcc 4.4).  This
patch reverts that previous solution and instead adds extra casts (to
function types without a parameter list).

For more details see: https://sourceware.org/ml/binutils/2018-02/msg00198.html

	PR 22823
	Revert previous delta.  Add extra casts to avoid compile time
	warnings instead.
	* libbfd-in.h (_bfd_generic_bfd_copy_private_bfd_data): Add extra
	cast to avoid warning from gcc v8 compiler.
	(_bfd_generic_bfd_merge_private_bfd_data): Likewise.
	(_bfd_generic_bfd_set_private_flags): Likewise.
	(_bfd_generic_bfd_copy_private_section_data): Likewise.
	(_bfd_generic_bfd_copy_private_symbol_data): Likewise.
	(_bfd_generic_bfd_copy_private_header_data): Likewise.
	(_bfd_generic_bfd_print_private_bfd_data): Likewise.
	(_bfd_noarchive_construct_extended_name_table): Likewise.
	(_bfd_noarchive_truncate_arname): Likewise.
	(_bfd_noarchive_write_ar_hdr): Likewise.
	(_bfd_noarchive_get_elt_at_index): Likewise.
	(_bfd_nosymbols_canonicalize_symtab): Likewise.
	(_bfd_nosymbols_print_symbol): Likewise.
	(_bfd_nosymbols_get_symbol_info): Likewise.
	(_bfd_nosymbols_get_symbol_version_string): Likewise.
	(_bfd_nosymbols_bfd_is_local_label_name): Likewise.
	(_bfd_nosymbols_bfd_is_target_special_symbol): Likewise.
	(_bfd_nosymbols_get_lineno): Likewise.
	(_bfd_nosymbols_find_nearest_line): Likewise.
	(_bfd_nosymbols_find_line): Likewise.
	(_bfd_nosymbols_find_inliner_info): Likewise.
	(_bfd_nosymbols_bfd_make_debug_symbol): Likewise.
	(_bfd_nosymbols_read_minisymbols): Likewise.
	(_bfd_nosymbols_minisymbol_to_symbol): Likewise.
	(_bfd_norelocs_bfd_reloc_type_lookup): Likewise.
	(_bfd_norelocs_bfd_reloc_name_lookup): Likewise.
	(_bfd_nowrite_set_arch_mach): Likewise.
	(_bfd_nowrite_set_section_contents): Likewise.
	(_bfd_nolink_sizeof_headers): Likewise.
	(_bfd_nolink_bfd_get_relocated_section_contents): Likewise.
	(_bfd_nolink_bfd_relax_section): Likewise.
	(_bfd_nolink_bfd_gc_sections): Likewise.
	(_bfd_nolink_bfd_lookup_section_flags): Likewise.
	(_bfd_nolink_bfd_merge_sections): Likewise.
	(_bfd_nolink_bfd_is_group_section): Likewise.
	(_bfd_nolink_bfd_discard_group): Likewise.
	(_bfd_nolink_bfd_link_hash_table_create): Likewise.
	(_bfd_nolink_bfd_link_add_symbols): Likewise.
	(_bfd_nolink_bfd_link_just_syms): Likewise.
	(_bfd_nolink_bfd_copy_link_hash_symbol_type): Likewise.
	(_bfd_nolink_bfd_final_link): Likewise.
	(_bfd_nolink_bfd_link_split_section): Likewise.
	(_bfd_nolink_section_already_linked): Likewise.
	(_bfd_nolink_bfd_define_common_symbol): Likewise.
	(_bfd_nolink_bfd_define_start_stop): Likewise.
	(_bfd_nodynamic_canonicalize_dynamic_symtab): Likewise.
	(_bfd_nodynamic_get_synthetic_symtab): Likewise.
	(_bfd_nodynamic_get_dynamic_reloc_upper_bound _bfd_): Likewise.
	(_bfd_nodynamic_canonicalize_dynamic_reloc): Likewise.
	* libbfd.c (bfd_false_any): Delete.
	(bfd_true_any, bfd_nullvoidptr_any, bfd_0_any): Delete.
	(bfd_0u_any, bfd_0l_any, _bfd_n1_any, bfd_void_any): Delete.
	* libbfd.h (extern): Regenerate
	* aout-target.h (MY_bfd_is_target_special_symbol): Add extra
	cast to avoid warning from gcc v8 compiler.
	* aout-tic30.c (tic30_aout_set_arch_mach): Likewise.
	* binary.c (binary_get_symbol_info): Likewise.
	* coff-alpha.c (alpha_ecoff_backend_data): Likewise.
	* coff-mips.c (mips_ecoff_backend_data): Likewise.
	* coffcode.h (coff_set_alignment_hook): Likewise.
	(symname_in_debug_hook): Likewise.
	(bfd_coff_backend_data bigobj_swap_table): Likewise.
	* elf-m10300.c (elf_backend_omit_section_dynsym): Likewise.
	* elf32-cr16.c (elf_backend_omit_section_dynsym): Likewise.
	* elf32-lm32.c (elf_backend_omit_section_dynsym): Likewise.
	* elf32-m32r.c (elf_backend_omit_section_dynsym): Likewise.
	* elf32-metag.c (elf_backend_omit_section_dynsym): Likewise.
	* elf32-score.c (elf_backend_omit_section_dynsym): Likewise.
	* elf32-score7.c (elf_backend_omit_section_dynsym): Likewise.
	* elf32-xstormy16.c (elf_backend_omit_section_dynsym): Likewise.
	* elf32-xtensa.c (elf_backend_omit_section_dynsym): Likewise.
	* elf64-alpha.c (elf_backend_omit_section_dynsym): Likewise.
	* elf64-hppa.c (elf_backend_omit_section_dynsym): Likewise.
	* elf64-ia64-vms.c (elf_backend_omit_section_dynsym): Likewise.
	* elf64-mmix.c (elf_backend_omit_section_dynsym): Likewise.
	* elf64-sh64.c (elf_backend_omit_section_dynsym): Likewise.
	* elfnn-ia64.c (elf_backend_omit_section_dynsym): Likewise.
	* elfxx-target.h (bfd_elfNN_bfd_debug_info_accumulate): Likewise.
	(bfd_elfNN_bfd_make_debug_symbol): Likewise.
	(bfd_elfNN_bfd_merge_private_bfd_data): Likewise.
	(bfd_elfNN_bfd_set_private_flags): Likewise.
	(bfd_elfNN_bfd_is_target_special_symbol): Likewise.
	(elf_backend_init_index_section): Likewise.
	(elf_backend_allow_non_load_phdr): Likewise.
	* elfxx-x86.h (elf_backend_omit_section_dynsym): Likewise.
	* i386msdos.c (msdos_bfd_is_target_special_symbol): Likewise.
	* ieee.c (ieee_construct_extended_name_table): Likewise.
	(ieee_write_armap): Likewise.
	(ieee_write_ar_hdr): Likewise.
	(ieee_bfd_is_target_special_symbol): Likewise.
	* ihex.c (ihex_canonicalize_symtab): Likewise.
	(ihex_bfd_is_target_special_symbol): Likewise.
	* libaout.h (aout_32_bfd_is_target_special_symbol): Likewise.
	* libecoff.h (_bfd_ecoff_bfd_is_target_special_symbol): Likewise.
	(_bfd_ecoff_set_alignment_hook): Likewise.
	* mach-o-target.c (bfd_mach_o_bfd_is_target_special_symbol): Likewise.
	* mmo.c (mmo_bfd_is_target_special_symbol): Likewise.
	* nlm-target.h (nlm_bfd_is_target_special_symbol): Likewise.
	* oasys.c (oasys_construct_extended_name_table): Likewise.
	(oasys_write_armap): Likewise.
	(oasys_write_ar_hdr): Likewise.
	(oasys_bfd_is_target_special_symbol): Likewise.
	* pef.c (bfd_pef_bfd_is_target_special_symbol): Likewise.
	* plugin.c (bfd_plugin_bfd_is_target_special_symbol): Likewise.
	* ppcboot.c (ppcboot_bfd_is_target_special_symbol): Likewise.
	* som.c (som_bfd_is_target_special_symbol): Likewise.
	* srec.c (srec_bfd_is_target_special_symbol): Likewise.
	* tekhex.c (tekhex_bfd_is_target_special_symbol): Likewise.
	* verilog.c (verilog_bfd_is_target_special_symbol): Likewise.
	* versados.c (versados_bfd_is_target_special_symbol): Likewise.
	(versados_bfd_reloc_name_lookup): Likewise.
	* vms-alpha.c (vms_bfd_is_target_special_symbol): Likewise.
	(vms_bfd_define_start_stop): Likewise.
	(alpha_vms_bfd_is_target_special_symbol): Likewise.
	* wasm-module.c (wasm_bfd_is_target_special_symbol): Likewise.
	* xsym.c (bfd_sym_bfd_is_target_special_symbol): Likewise.
2018-02-14 14:56:21 +00:00
..
doc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
hosts Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
po Fix typo in Russian translation for the bfd/ sub-directory which could lead to a seg-fault in the linker. 2018-02-13 15:13:58 +00:00
.gitignore
acinclude.m4 Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aclocal.m4
aix5ppc-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aix386-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aout0.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aout32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aout64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aout-adobe.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aout-arm.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aout-cris.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aout-ns32k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aout-sparcle.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aout-target.h Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
aout-tic30.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
aoutf1.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
aoutx.h Fix override of common symbols for a.out 2018-01-12 21:13:11 +10:30
arc-got.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
arc-plt.def Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
arc-plt.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
archive64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
archive.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
archures.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
armnetbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bfd-in2.h [GAS][AARCH64]Add group relocations to create PC-relative offset. 2018-01-24 16:19:47 +00:00
bfd-in.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bfd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bfd.m4 Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bfdio.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bfdwin.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
binary.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
bout.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cache.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cf-i386lynx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cf-sparclynx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ChangeLog Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
ChangeLog-0001
ChangeLog-0203
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008
ChangeLog-2009
ChangeLog-2010
ChangeLog-2011
ChangeLog-2012
ChangeLog-2013
ChangeLog-2014
ChangeLog-2015
ChangeLog-2016
ChangeLog-2017 ChangeLog rotation 2018-01-03 17:49:42 +10:30
ChangeLog-9193
ChangeLog-9495
ChangeLog-9697
ChangeLog-9899
cisco-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff64-rs6000.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-alpha.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
coff-apollo.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-arm.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-aux.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-bfd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-bfd.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-go32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-h8300.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-h8500.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-i386.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-i860.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-i960.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-ia64.c Add support for reading msdos MZ executables. 2018-02-12 13:15:56 +00:00
coff-m68k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-m88k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-mcore.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-mips.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
coff-ppc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-rs6000.c Fix GCC 8's -Wstringop-overflow on bfd/coff-rs6000.c 2018-02-06 11:47:24 -05:00
coff-sh.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-sparc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-stgo32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-svm68k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-tic4x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-tic30.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-tic54x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-tic80.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-u68k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-w65.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-we32k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-x86_64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-z8k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coff-z80.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coffcode.h Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
coffgen.c PR22741, objcopy segfault on fuzzed COFF object 2018-01-29 15:50:01 +10:30
cofflink.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
coffswap.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
compress.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
config.bfd Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
config.in
configure Bump version number to 2.30.51 2018-01-13 13:31:12 +00:00
configure.ac Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
configure.com Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
configure.host Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
COPYING
corefile.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-aarch64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-alpha.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-arc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-arm.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-avr.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-bfin.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-cr16.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-cr16c.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-cris.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-crx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-d10v.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-d30v.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-dlx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-epiphany.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-fr30.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-frv.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-ft32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-h8300.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-h8500.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-hppa.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-i370.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-i386.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-i860.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-i960.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-ia64-opc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-ia64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-iamcu.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-ip2k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-iq2000.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-k1om.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-l1om.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-lm32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-m9s12x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-m9s12xg.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-m32c.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-m32r.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-m68hc11.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-m68hc12.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-m68k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-m88k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-m10200.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-m10300.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-mcore.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-mep.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-metag.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-microblaze.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-mips.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-mmix.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-moxie.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-msp430.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-mt.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-nds32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-nios2.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-ns32k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-or1k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-pdp11.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-pj.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-plugin.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-powerpc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-pru.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-riscv.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-rl78.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-rs6000.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-rx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-s390.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-score.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-sh.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-sparc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-spu.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-tic4x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-tic6x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-tic30.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-tic54x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-tic80.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-tilegx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-tilepro.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-v850_rh850.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-v850.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-vax.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-visium.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-w65.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-wasm32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-we32k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-xc16x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-xgate.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-xstormy16.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-xtensa.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-z8k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
cpu-z80.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
demo64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
dep-in.sed
development.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
dwarf1.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
dwarf2.c Allow the find_abstract_instance_name() function in the BFD library to also return file and line number information. 2018-02-06 15:45:31 +00:00
ecoff.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ecofflink.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ecoffswap.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-am33lin.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-arc.c Fix compile time warning messages from gcc version 8 about cast between incompatible function types. 2018-02-13 13:14:47 +00:00
elf32-arm.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-avr.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-avr.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-bfin.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-cr16.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf32-cr16c.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-cris.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-crx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-d10v.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-d30v.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-dlx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-dlx.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-epiphany.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-fr30.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-frv.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-ft32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-gen.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-h8300.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-hppa.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-hppa.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-i370.c Fix compile time warning messages from gcc version 8 about cast between incompatible function types. 2018-02-13 13:14:47 +00:00
elf32-i386.c x86-64: Use PLT address for PC-relative reloc 2018-02-14 03:50:55 -08:00
elf32-i860.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-i960.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-ip2k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-iq2000.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-lm32.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf32-m32c.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-m32r.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf32-m68hc1x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-m68hc1x.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-m68hc11.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-m68hc12.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-m68k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-m88k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-mcore.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-mep.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-metag.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf32-metag.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-microblaze.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-mips.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-moxie.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-msp430.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-mt.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-nds32.c oops - actually remove the assignment this time: bfd/elf32-nds32.c:9693]: (warning) Redundant assignment of 'irel->r_addend' to itself. 2018-02-12 11:54:48 +00:00
elf32-nds32.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-nios2.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-nios2.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-or1k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-pj.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-ppc.c Revert "PowerPC PLT speculative execution barriers" 2018-02-07 14:23:08 +10:30
elf32-ppc.h Revert "PowerPC PLT speculative execution barriers" 2018-02-07 14:23:08 +10:30
elf32-pru.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-rl78.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-rx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-rx.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-s390.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-score7.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf32-score.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf32-score.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-sh64-com.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-sh64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-sh64.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-sh-relocs.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-sh-symbian.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-sh.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-sparc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-spu.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-spu.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-tic6x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-tic6x.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-tilegx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-tilegx.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-tilepro.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-tilepro.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-v850.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-vax.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-visium.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-wasm32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-xc16x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-xgate.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-xgate.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf32-xstormy16.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf32-xtensa.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf64-alpha.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf64-gen.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf64-hppa.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf64-hppa.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf64-ia64-vms.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf64-mips.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf64-mmix.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf64-ppc.c Revert "PowerPC PLT speculative execution barriers" 2018-02-07 14:23:08 +10:30
elf64-ppc.h Revert "PowerPC PLT speculative execution barriers" 2018-02-07 14:23:08 +10:30
elf64-s390.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf64-sh64.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf64-sparc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf64-tilegx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf64-tilegx.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf64-x86-64.c x86-64: Use PLT address for PC-relative reloc 2018-02-14 03:50:55 -08:00
elf64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-attrs.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-bfd.h Optimize the performance of the group_setup function. 2018-01-12 13:16:17 +00:00
elf-eh-frame.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-hppa.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-ifunc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-linux-core.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-m10200.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-m10300.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elf-nacl.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-nacl.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-properties.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-s390-common.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-s390.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-strtab.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-vxworks.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf-vxworks.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elf.c PR22836, "-r -s" doesn't work with -g3 using GCC 7 2018-02-13 22:55:49 +10:30
elfcode.h PR22746, crash when running 32-bit objdump on corrupted file 2018-01-25 22:05:10 +10:30
elfcore.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elflink.c PR22836, "-r -s" doesn't work with -g3 using GCC 7 2018-02-13 22:55:49 +10:30
elfn32-mips.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elfnn-aarch64.c [PR22764][LD][AARCH64]Allow R_AARCH64_ABS16 and R_AARCH64_ABS32 against absolution symbol or undefine symbol in shared object. 2018-02-05 18:18:45 +00:00
elfnn-ia64.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elfnn-riscv.c RISC-V: Add comment for previous change. 2018-02-08 13:15:10 -08:00
elfxx-aarch64.c [LD][AARCH64]Add group relocations to create PC-relative offset. 2018-01-24 16:20:05 +00:00
elfxx-aarch64.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elfxx-ia64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elfxx-ia64.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elfxx-mips.c Improve the find_nearest_line function for the MIPS target so that it tries harder to find a function name. 2018-02-06 17:00:25 +00:00
elfxx-mips.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elfxx-riscv.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elfxx-riscv.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elfxx-sparc.c Fix GOT relocation overflow on SPARC. 2018-02-10 02:30:25 +01:00
elfxx-sparc.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elfxx-target.h Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
elfxx-tilegx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elfxx-tilegx.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
elfxx-x86.c x86-64: Use PLT address for PC-relative reloc 2018-02-14 03:50:55 -08:00
elfxx-x86.h Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
epoc-pe-arm.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
epoc-pei-arm.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
format.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
freebsd.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
gen-aout.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
genlink.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
go32stub.h
hash.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
host-aout.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
hp300bsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
hp300hpux.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
hppabsd-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
hpux-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
i386aout.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
i386bsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
i386dynix.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
i386freebsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
i386linux.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
i386lynx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
i386mach3.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
i386msdos.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
i386netbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
i386os9k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ieee.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
ihex.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
init.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
irix-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
libaout.h Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
libbfd-in.h Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
libbfd.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
libbfd.h Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
libcoff-in.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
libcoff.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
libecoff.h Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
libhppa.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
libieee.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
libnlm.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
liboasys.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
libpei.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
libxcoff.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
linker.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
lynx-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
m68k4knetbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
m68klinux.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
m68knetbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
m88kmach3.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
m88kopenbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
mach-o-aarch64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
mach-o-arm.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
mach-o-i386.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
mach-o-target.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
mach-o-x86-64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
mach-o.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
mach-o.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
MAINTAINERS Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
Makefile.am Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
Makefile.in Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
makefile.vms Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
mep-relocs.pl Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
merge.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
mipsbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
mmo.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
netbsd-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
netbsd.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
newsos3.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
nlm32-alpha.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
nlm32-i386.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
nlm32-ppc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
nlm32-sparc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
nlm32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
nlm64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
nlm-target.h Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
nlm.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
nlmcode.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
nlmswap.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ns32k.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ns32knetbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
oasys.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
opncls.c Prevent attempts to call strncpy with a zero-length field by chacking the size of debuglink sections. 2018-02-06 15:48:29 +00:00
osf-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pc532-mach.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pdp11.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pe-arm-wince.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pe-arm.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pe-i386.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pe-mcore.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pe-mips.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pe-ppc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pe-sh.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pe-x86_64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pef-traceback.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pef.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
pef.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pei-arm-wince.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pei-arm.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pei-i386.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pei-ia64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pei-mcore.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pei-mips.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pei-ppc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pei-sh.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pei-x86_64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
peicode.h Add support for reading msdos MZ executables. 2018-02-12 13:15:56 +00:00
peXXigen.c Add support for reading msdos MZ executables. 2018-02-12 13:15:56 +00:00
plugin.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
plugin.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
PORTING Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ppcboot.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
ptrace-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
README Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
reloc16.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
reloc.c [GAS][AARCH64]Add group relocations to create PC-relative offset. 2018-01-24 16:19:47 +00:00
riscix.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
rs6000-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
sco5-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
section.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
simple.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
som.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
som.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
sparclinux.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
sparclynx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
sparcnetbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
srec.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
stab-syms.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
stabs.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
stamp-h.in
sunos.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
syms.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
sysdep.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
targets.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
targmatch.sed
tekhex.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
TODO Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
trad-core.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
vax1knetbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
vaxbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
vaxnetbsd.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
verilog.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
versados.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
version.h Automatic date update in version.in 2018-02-14 00:00:35 +00:00
version.m4 Bump version number to 2.30.51 2018-01-13 13:31:12 +00:00
vms-alpha.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
vms-lib.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
vms-misc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
vms.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
warning.m4 Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
wasm-module.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
wasm-module.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
xcofflink.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
xsym.c Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts. 2018-02-14 14:56:21 +00:00
xsym.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
xtensa-isa.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
xtensa-modules.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

BFD is an object file library.  It permits applications to use the
same routines to process object files regardless of their format.

BFD is used by the GNU debugger, assembler, linker, and the binary
utilities.

The documentation on using BFD is scanty and may be occasionally
incorrect.  Pointers to documentation problems, or an entirely
rewritten manual, would be appreciated.

There is some BFD internals documentation in doc/bfdint.texi which may
help programmers who want to modify BFD.

BFD is normally built as part of another package.  See the build
instructions for that package, probably in a README file in the
appropriate directory.

BFD supports the following configure options:

  --target=TARGET
	The default target for which to build the library.  TARGET is
	a configuration target triplet, such as sparc-sun-solaris.
  --enable-targets=TARGET,TARGET,TARGET...
	Additional targets the library should support.  To include
	support for all known targets, use --enable-targets=all.
  --enable-64-bit-bfd
	Include support for 64 bit targets.  This is automatically
	turned on if you explicitly request a 64 bit target, but not
	for --enable-targets=all.  This requires a compiler with a 64
	bit integer type, such as gcc.
  --enable-shared
	Build BFD as a shared library.
  --with-mmap
	Use mmap when accessing files.  This is faster on some hosts,
	but slower on others.  It may not work on all hosts.

Report bugs with BFD to bug-binutils@gnu.org.

Patches are encouraged.  When sending patches, always send the output
of diff -u or diff -c from the original file to the new file.  Do not
send default diff output.  Do not make the diff from the new file to
the original file.  Remember that any patch must not break other
systems.  Remember that BFD must support cross compilation from any
host to any target, so patches which use ``#ifdef HOST'' are not
acceptable.  Please also read the ``Reporting Bugs'' section of the
gcc manual.

Bug reports without patches will be remembered, but they may never get
fixed until somebody volunteers to fix them.

Copyright (C) 2012-2018 Free Software Foundation, Inc.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.