8sa1-binutils-gdb/bfd
H.J. Lu d1bcae833b ELF: Don't generate unused section symbols
For ELF targets, section symbols are required only for relocations.
With -ffunction-sections -fdata-sections, there can be many unused
section symbols.  Sizes of libstdc++.a on Linux/x86-64 in GCC 11 are

With unused section symbols   : 39411698 bytes
Without unused section symbols: 39227002 bytes

The unused section symbols in libstdc++.a occupy more than 180 KB.

Add BSF_SECTION_SYM_USED to indicate if a section symbol should be
included in the symbol table.  The BSF_SECTION_SYM_USED should be set
if the section symbol is used for relocation or the section symbol is
always included in the symbol table.

Add keep_unused_section_symbols to bfd_target to indicate if unused
section symbols should be kept.  If TARGET_KEEP_UNUSED_SECTION_SYMBOLS
is defined as FALSE, unused ection symbols will be removed.

Tested on Linux/x86.  Other ELF backends need to:

1. Define TARGET_KEEP_UNUSED_SECTION_SYMBOLS to FALSE.
2. Mark used section symbols in assembler backend.
3. Remove unused section symbols from expected assembler and linker
outputs.

bfd/

	PR 27109
	* aix386-core.c (core_aix386_vec): Initialize
	keep_unused_section_symbol to TARGET_KEEP_UNUSED_SECTION_SYMBOLS.
	* aout-target.h (MY (vec)): Likewise.
	* binary.c (binary_vec): Likewise.
	* cisco-core.c (core_cisco_be_vec): Likewise.
	(core_cisco_le_vec): Likewise.
	* coff-alpha.c (alpha_ecoff_le_vec): Likewise.
	* coff-i386.c (TARGET_SYM): Likewise.
	(TARGET_SYM_BIG): Likewise.
	* coff-ia64.c (TARGET_SYM): Likewise.
	* coff-mips.c (mips_ecoff_le_vec): Likewise.
	(mips_ecoff_be_vec): Likewise.
	(mips_ecoff_bele_vec): Likewise.
	* coff-rs6000.c (rs6000_xcoff_vec): Likewise.
	(powerpc_xcoff_vec): Likewise.
	* coff-sh.c (sh_coff_small_vec): Likewise.
	(sh_coff_small_le_vec): Likewise.
	* coff-tic30.c (tic30_coff_vec): Likewise.
	* coff-tic54x.c (tic54x_coff0_vec): Likewise.
	(tic54x_coff0_beh_vec): Likewise.
	(tic54x_coff1_vec): Likewise.
	(tic54x_coff1_beh_vec): Likewise.
	(tic54x_coff2_vec): Likewise.
	(tic54x_coff2_beh_vec): Likewise.
	* coff-x86_64.c (TARGET_SYM): Likewise.
	(TARGET_SYM_BIG): Likewise.
	* coff64-rs6000.c (rs6000_xcoff64_vec): Likewise.
	(rs6000_xcoff64_aix_vec): Likewise.
	* coffcode.h (CREATE_BIG_COFF_TARGET_VEC): Likewise.
	(CREATE_BIGHDR_COFF_TARGET_VEC): Likewise.
	(CREATE_LITTLE_COFF_TARGET_VEC): Likewise.
	* elfxx-target.h (TARGET_BIG_SYM): Likewise.
	(TARGET_LITTLE_SYM): Likewise.
	* hppabsd-core.c (core_hppabsd_vec): Likewise.
	* hpux-core.c (core_hpux_vec): Likewise.
	* i386msdos.c (i386_msdos_vec): Likewise.
	* ihex.c (ihex_vec): Likewise.
	* irix-core.c (core_irix_vec): Likewise.
	* mach-o-target.c (TARGET_NAME): Likewise.
	* mmo.c (mmix_mmo_vec): Likewise.
	* netbsd-core.c (core_netbsd_vec): Likewise.
	* osf-core.c (core_osf_vec): Likewise.
	* pdp11.c (MY (vec)): Likewise.
	* pef.c (pef_vec): Likewise.
	(pef_xlib_vec): Likewise.
	* plugin.c (plugin_vec): Likewise.
	* ppcboot.c (powerpc_boot_vec): Likewise.
	* ptrace-core.c (core_ptrace_vec): Likewise.
	* sco5-core.c (core_sco5_vec): Likewise.
	* som.c (hppa_som_vec): Likewise.
	* srec.c (srec_vec): Likewise.
	(symbolsrec_vec): Likewise.
	* tekhex.c (tekhex_vec): Likewise.
	* trad-core.c (core_trad_vec): Likewise.
	* verilog.c (verilog_vec): Likewise.
	* vms-alpha.c (alpha_vms_vec): Likewise.
	* vms-lib.c (alpha_vms_lib_txt_vec): Likewise.
	* wasm-module.c (wasm_vec): Likewise.
	* xsym.c (sym_vec): Likewise.
	* elf.c (ignore_section_sym): Return TRUE if BSF_SECTION_SYM_USED
	isn't set.
	(elf_map_symbols): Don't include ignored section symbols.
	* elfcode.h (elf_slurp_symbol_table): Also set
	BSF_SECTION_SYM_USED on STT_SECTION symbols.
	* elflink.c (bfd_elf_final_link): Generated section symbols only
	when emitting relocations or reqired.
	* elfxx-x86.h (TARGET_KEEP_UNUSED_SECTION_SYMBOLS): New.
	* syms.c (BSF_SECTION_SYM_USED): New.
	* targets.c (TARGET_KEEP_UNUSED_SECTION_SYMBOLS): New.
	(bfd_target): Add keep_unused_section_symbols.
	(bfd_keep_unused_section_symbols): New.
	* bfd-in2.h: Regenerated.

binutils/

	PR 27109
	* objcopy.c (copy_object): Handle section symbols for
	non-relocatable inputs.
	* testsuite/binutils-all/readelf.exp (readelf_test): Check
	is_elf_unused_section_symbols.
	* testsuite/binutils-all/readelf.s-64: Updated.
	* testsuite/binutils-all/readelf.ss: Likewise.
	* testsuite/binutils-all/readelf.ss-64: Likewise.
	* testsuite/binutils-all/readelf.s-64-unused: New file.
	* testsuite/binutils-all/readelf.ss-64-unused: Likewise.
	* testsuite/binutils-all/readelf.ss-unused: Likewise.
	* testsuite/lib/binutils-common.exp
	(is_elf_unused_section_symbols): New proc.

gas/ChangeLog:

	PR 27109
	* read.c (s_reloc): Call symbol_mark_used_in_reloc on the
	section symbol.
	* subsegs.c (subseg_set_rest): Set BSF_SECTION_SYM_USED if needed.
	* write.c (adjust_reloc_syms): Call symbol_mark_used_in_reloc
	on the section symbol.
	(set_symtab): Don't generate unused section symbols.
	(maybe_generate_build_notes): Call symbol_mark_used_in_reloc
	on the section symbol.
	* config/obj-elf.c (elf_adjust_symtab): Call
	symbol_mark_used_in_reloc on the group signature symbol.
	* testsuite/gas/cfi/cfi-label.d: Remove unused section symbols
	from expected output.
	* testsuite/gas/elf/elf.exp (run_elf_list_test): Check
	is_elf_unused_section_symbols.
	* testsuite/gas/elf/section2.e: Updated.
	* testsuite/gas/elf/section2.e-unused: New file.
	* testsuite/gas/elf/symver.d: Remove unused section symbols.
	* testsuite/gas/i386/ilp32/elf/symver.d: Likewise.
	* testsuite/gas/i386/ilp32/x86-64-size-1.d: Likewise.
	* testsuite/gas/i386/ilp32/x86-64-size-3.d: Likewise.
	* testsuite/gas/i386/ilp32/x86-64-size-5.d: Likewise.
	* testsuite/gas/i386/ilp32/x86-64-unwind.d: Likewise.
	* testsuite/gas/i386/size-1.d: Likewise.
	* testsuite/gas/i386/size-3.d: Likewise.
	* testsuite/gas/i386/svr4.d: Likewise.
	* testsuite/gas/i386/x86-64-size-1.d: Likewise.
	* testsuite/gas/i386/x86-64-size-3.d: Likewise.
	* testsuite/gas/i386/x86-64-size-5.d: Likewise.
	* testsuite/gas/i386/x86-64-unwind.d: Likewise.

ld/

	PR 27109
	* testsuite/ld-elf/export-class.sd: Adjust the expected output.
	* testsuite/ld-elf/loadaddr3b.d: Likewise.
	* testsuite/ld-i386/ibt-plt-1.d: Likewise.
	* testsuite/ld-i386/ibt-plt-2a.d: Likewise.
	* testsuite/ld-i386/ibt-plt-2c.d: Likewise.
	* testsuite/ld-i386/ibt-plt-3a.d: Likewise.
	* testsuite/ld-i386/ibt-plt-3c.d: Likewise.
	* testsuite/ld-i386/pr19636-1d.d: Likewise.
	* testsuite/ld-i386/pr19636-1l.d: Likewise.
	* testsuite/ld-i386/pr19636-2c.d: Likewise.
	* testsuite/ld-ifunc/ifunc-2-i386-now.d: Likewise.
	* testsuite/ld-ifunc/ifunc-2-local-i386-now.d: Likewise.
	* testsuite/ld-ifunc/ifunc-2-local-x86-64-now.d: Likewise.
	* testsuite/ld-ifunc/ifunc-2-x86-64-now.d: Likewise.
	* testsuite/ld-ifunc/ifunc-21-x86-64.d: Likewise.
	* testsuite/ld-ifunc/ifunc-22-x86-64.d: Likewise.
	* testsuite/ld-ifunc/pr17154-i386-now.d: Likewise.
	* testsuite/ld-ifunc/pr17154-i386.d: Likewise.
	* testsuite/ld-ifunc/pr17154-x86-64-now.d: Likewise.
	* testsuite/ld-ifunc/pr17154-x86-64.d: Likewise.
	* testsuite/ld-x86-64/bnd-branch-1-now.d: Likewise.
	* testsuite/ld-x86-64/bnd-ifunc-1-now.d: Likewise.
	* testsuite/ld-x86-64/bnd-ifunc-2-now.d: Likewise.
	* testsuite/ld-x86-64/bnd-ifunc-2.d: Likewise.
	* testsuite/ld-x86-64/bnd-plt-1-now.d: Likewise.
	* testsuite/ld-x86-64/bnd-plt-1.d: Likewise.
	* testsuite/ld-x86-64/ibt-plt-1-x32.d: Likewise.
	* testsuite/ld-x86-64/ibt-plt-1.d: Likewise.
	* testsuite/ld-x86-64/ibt-plt-2a-x32.d: Likewise.
	* testsuite/ld-x86-64/ibt-plt-2a.d: Likewise.
	* testsuite/ld-x86-64/ibt-plt-2c-x32.d: Likewise.
	* testsuite/ld-x86-64/ibt-plt-2c.d: Likewise.
	* testsuite/ld-x86-64/ibt-plt-3a-x32.d: Likewise.
	* testsuite/ld-x86-64/ibt-plt-3a.d: Likewise.
	* testsuite/ld-x86-64/ibt-plt-3c-x32.d: Likewise.
	* testsuite/ld-x86-64/ibt-plt-3c.d: Likewise.
	* testsuite/ld-x86-64/pr19609-4e.d: Likewise.
	* testsuite/ld-x86-64/pr19609-6a.d: Likewise.
	* testsuite/ld-x86-64/pr19609-6b.d: Likewise.
	* testsuite/ld-x86-64/pr19609-7b.d: Likewise.
	* testsuite/ld-x86-64/pr19609-7d.d: Likewise.
	* testsuite/ld-x86-64/pr19636-2l.d: Likewise.
	* testsuite/ld-x86-64/pr20253-1d.d: Likewise.
	* testsuite/ld-x86-64/pr20253-1h.d: Likewise.
	* testsuite/ld-x86-64/pr21038b-now.d: Likewise.
	* testsuite/ld-x86-64/pr21038b.d: Likewise.
	* testsuite/ld-x86-64/pr21038c-now.d: Likewise.
	* testsuite/ld-x86-64/pr21038c.d: Likewise.
	* testsuite/ld-x86-64/pr23854.d: Likewise.
	* testsuite/ld-x86-64/pr25416-3.d: Likewise.
	* testsuite/ld-x86-64/pr25416-4.d: Likewise.
	* testsuite/ld-i386/plt-pic.pd: Likewise.
	* testsuite/ld-i386/plt-pic2.dd: Likewise.
	* testsuite/ld-i386/plt.pd: Likewise.
	* testsuite/ld-i386/plt2.dd: Likewise.
	* testsuite/ld-i386/tlsbin.rd: Likewise.
	* testsuite/ld-i386/tlsbin2.rd: Likewise.
	* testsuite/ld-i386/tlsbindesc.rd: Likewise.
	* testsuite/ld-i386/tlsdesc.rd: Likewise.
	* testsuite/ld-i386/tlsgdesc.rd: Likewise.
	* testsuite/ld-i386/tlsnopic.rd: Likewise.
	* testsuite/ld-i386/tlspic.rd: Likewise.
	* testsuite/ld-i386/tlspic2.rd: Likewise.
	* testsuite/ld-x86-64/mpx3.dd: Likewise.
	* testsuite/ld-x86-64/mpx3n.dd: Likewise.
	* testsuite/ld-x86-64/mpx4.dd: Likewise.
	* testsuite/ld-x86-64/mpx4n.dd: Likewise.
	* testsuite/ld-x86-64/pe-x86-64-1.od: Likewise.
	* testsuite/ld-x86-64/pe-x86-64-2.od: Likewise.
	* testsuite/ld-x86-64/pe-x86-64-3.od: Likewise.
	* testsuite/ld-x86-64/pe-x86-64-4.od: Likewise.
	* testsuite/ld-x86-64/plt.pd: Likewise.
	* testsuite/ld-x86-64/plt2.dd: Likewise.
	* testsuite/ld-x86-64/tlsbin.rd: Likewise.
	* testsuite/ld-x86-64/tlsbin2.rd: Likewise.
	* testsuite/ld-x86-64/tlsbindesc.rd: Likewise.
	* testsuite/ld-x86-64/tlsdesc.rd: Likewise.
	* testsuite/ld-x86-64/tlsgdesc.rd: Likewise.
	* testsuite/ld-x86-64/tlspic.rd: Likewise.
	* testsuite/ld-x86-64/tlspic2.rd: Likewise.
	* testsuite/ld-elf/sec64k.exp: Check
	is_elf_unused_section_symbols.
2021-01-07 06:46:55 -08:00
..
doc Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
hosts Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
po Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
.gitignore
acinclude.m4 Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
aclocal.m4
aix5ppc-core.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
aix386-core.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
aout32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
aout64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
aout-cris.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
aout-ns32k.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
aout-target.h ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
aoutx.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
arc-got.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
arc-plt.def Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
arc-plt.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
archive64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
archive.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
archures.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
bfd-in2.h ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
bfd-in.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
bfd.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
bfd.m4 Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
bfdio.c Fix another path length problem opening files on Win32 systems. 2021-01-07 12:05:43 +00:00
bfdwin.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
binary.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
cache.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cf-i386lynx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
ChangeLog ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
ChangeLog-0001
ChangeLog-0203
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008
ChangeLog-2009 PR27116, Spelling errors found by Debian style checker 2021-01-01 14:36:35 +10:30
ChangeLog-2010
ChangeLog-2011
ChangeLog-2012
ChangeLog-2013
ChangeLog-2014 PR27116, Spelling errors found by Debian style checker 2021-01-01 14:36:35 +10:30
ChangeLog-2015 PR27116, Spelling errors found by Debian style checker 2021-01-01 14:36:35 +10:30
ChangeLog-2016
ChangeLog-2017
ChangeLog-2018
ChangeLog-2019
ChangeLog-2020 ChangeLog rotation 2021-01-01 10:31:02 +10:30
ChangeLog-9193
ChangeLog-9495
ChangeLog-9697
ChangeLog-9899
cisco-core.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff64-rs6000.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff-alpha.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff-arm.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coff-arm.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coff-bfd.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coff-bfd.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coff-go32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coff-i386.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff-ia64.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff-mcore.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coff-mips.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff-rs6000.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff-sh.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff-stgo32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coff-tic4x.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coff-tic30.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff-tic54x.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff-x86_64.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coff-z8k.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coff-z80.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coffcode.h ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
coffgen.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cofflink.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
coffswap.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
compress.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
config.bfd sparc-sun-solaris2 and sparc64-sun-solaris2 config 2021-01-06 21:03:55 +10:30
config.in PR26469 UBSAN: elflink.c:8742 shift exponent 6148914691236511722 2020-08-27 22:05:00 +09:30
configure RISC-V: Implement support for big endian targets. 2021-01-06 17:57:52 +08:00
configure.ac RISC-V: Implement support for big endian targets. 2021-01-06 17:57:52 +08:00
configure.com Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
configure.host Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
COPYING
corefile.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-aarch64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-aarch64.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-alpha.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-arc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-arm.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-arm.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-avr.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-bfin.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-bpf.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-cr16.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-cris.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-crx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-csky.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-d10v.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-d30v.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-dlx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-epiphany.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-fr30.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-frv.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-ft32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-h8300.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-h8300.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-hppa.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-i386.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-ia64-opc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-ia64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-iamcu.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-ip2k.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-iq2000.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-k1om.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-l1om.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-lm32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-m9s12x.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-m9s12xg.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-m32c.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-m32r.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-m68hc11.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-m68hc12.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-m68k.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-m68k.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-m10200.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-m10300.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-mcore.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-mep.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-metag.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-microblaze.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-mips.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-mmix.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-moxie.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-msp430.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-mt.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-nds32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-nfp.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-nios2.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-ns32k.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-or1k.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-pdp11.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-pj.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-powerpc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-pru.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-riscv.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-rl78.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-rs6000.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-rx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-s12z.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-s390.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-score.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-sh.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-sparc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-spu.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-tic4x.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-tic6x.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-tic30.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-tic54x.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-tilegx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-tilepro.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-v850_rh850.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-v850.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-vax.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-visium.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-wasm32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-xc16x.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-xgate.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-xstormy16.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-xtensa.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-z8k.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
cpu-z80.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
dep-in.sed
development.sh Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
dwarf1.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
dwarf2.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
ecoff-bfd.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
ecoff.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
ecofflink.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
ecoffswap.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-am33lin.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-arc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-arm.c When displaying ARM private file flag bits, use a 0x prefix. 2021-01-04 15:13:57 +00:00
elf32-arm.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-avr.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-avr.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-bfin.c bfin: Check bfd_link_hash_indirect 2021-01-06 16:38:53 -08:00
elf32-bfin.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-cr16.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-cr16.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-cris.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-crx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-csky.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-csky.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-d10v.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-d30v.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-dlx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-dlx.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-epiphany.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-fr30.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-frv.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-ft32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-gen.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-h8300.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-hppa.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-hppa.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-i386.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-ip2k.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-iq2000.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-lm32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-m32c.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-m32r.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-m68hc1x.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-m68hc1x.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-m68hc11.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-m68hc12.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-m68k.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-m68k.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-mcore.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-mep.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-metag.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-metag.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-microblaze.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-mips.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-moxie.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-msp430.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-mt.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-nds32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-nds32.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-nios2.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-nios2.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-or1k.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-pj.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-ppc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-ppc.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-pru.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-rl78.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-rx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-rx.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-s12z.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-s390.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-score7.c score-elf binutils-all/strip-13 fail 2021-01-06 21:03:55 +10:30
elf32-score.c score-elf binutils-all/strip-13 fail 2021-01-06 21:03:55 +10:30
elf32-score.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-sh-relocs.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-sh.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-sparc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-spu.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-spu.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-tic6x.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-tic6x.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-tilegx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-tilegx.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-tilepro.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-tilepro.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-v850.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-v850.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-vax.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-visium.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-wasm32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-xc16x.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-xgate.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-xstormy16.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-xtensa.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32-z80.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf32.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-alpha.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-bpf.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-gen.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-hppa.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-hppa.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-ia64-vms.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-mips.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-mmix.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-nfp.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-ppc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-ppc.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-s390.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-sparc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-tilegx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-tilegx.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64-x86-64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-attrs.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-bfd.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-eh-frame.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-hppa.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-ifunc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-linker-x86.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-linux-core.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-m10200.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-m10300.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-nacl.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-nacl.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-properties.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-s390-common.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-s390.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-strtab.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-vxworks.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf-vxworks.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elf.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
elfcode.h ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
elfcore.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elflink.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
elfn32-mips.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfnn-aarch64.c When displaying ARM private file flag bits, use a 0x prefix. 2021-01-04 15:13:57 +00:00
elfnn-ia64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfnn-riscv.c RISC-V: Implement support for big endian targets. 2021-01-06 17:57:52 +08:00
elfxx-aarch64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-aarch64.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-ia64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-ia64.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-mips.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-mips.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-riscv.c RISC-V: Add pause hint instruction. 2021-01-07 16:45:43 +08:00
elfxx-riscv.h RISC-V: Fix the merged orders of Z* extension for linker. 2021-01-04 11:17:33 +08:00
elfxx-sparc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-sparc.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-target.h ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
elfxx-tilegx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-tilegx.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-x86.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
elfxx-x86.h ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
format.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
gen-aout.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
genlink.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
go32stub.h
hash.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
host-aout.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
hppabsd-core.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
hpux-core.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
i386aout.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
i386bsd.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
i386lynx.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
i386msdos.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
ihex.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
init.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
irix-core.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
libaout.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
libbfd-in.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
libbfd.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
libbfd.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
libcoff-in.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
libcoff.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
libecoff.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
libhppa.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
libpei.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
libxcoff.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
linker.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
lynx-core.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
mach-o-aarch64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
mach-o-arm.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
mach-o-i386.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
mach-o-target.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
mach-o-x86-64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
mach-o.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
mach-o.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
MAINTAINERS Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
Makefile.am Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
Makefile.in Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
makefile.vms Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
mep-relocs.pl Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
merge.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
mmo.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
netbsd-core.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
netbsd.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
ns32k.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
ns32knetbsd.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
opncls.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
osf-core.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
pc532-mach.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pdp11.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
pe-arm-wince.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pe-arm.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pe-i386.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pe-mcore.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pe-sh.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pe-x86_64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pef-traceback.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pef.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
pef.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pei-arm-wince.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pei-arm.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pei-i386.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pei-ia64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pei-mcore.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pei-sh.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
pei-x86_64.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
peicode.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
peXXigen.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
plugin.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
plugin.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
PORTING Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
ppcboot.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
ptrace-core.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
README Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
reloc16.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
reloc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
rs6000-core.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
sco5-core.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
section.c elf: Allow mixed ordered/unordered inputs for non-relocatable link 2021-01-04 12:38:05 -08:00
simple.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
som.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
som.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
srec.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
stab-syms.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
stabs.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
stamp-h.in
syms.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
sysdep.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
targets.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
targmatch.sed
tekhex.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
TODO Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
trad-core.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
vax1knetbsd.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
vaxnetbsd.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
verilog.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
version.h Automatic date update in version.in 2021-01-07 00:00:07 +00:00
version.m4 Update version to 2.35.50 and regenerate files 2020-07-04 10:34:23 +01:00
vms-alpha.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
vms-lib.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
vms-misc.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
vms.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
warning.m4 Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
wasm-module.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
wasm-module.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
xcofflink.c PR27116, Spelling errors found by Debian style checker 2021-01-01 14:36:35 +10:30
xcofflink.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
xsym.c ELF: Don't generate unused section symbols 2021-01-07 06:46:55 -08:00
xsym.h Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
xtensa-isa.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +10:30
xtensa-modules.c Update year range in copyright notice of binutils files 2021-01-01 10:31:05 +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-2021 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.