binutils-gdb/bfd
Rainer Orth c8693053f8 Unify Solaris procfs and largefile handling
GDB currently doesn't build on 32-bit Solaris:

* On Solaris 11.4/x86:

In file included from /usr/include/sys/procfs.h:26,
                 from /vol/src/gnu/gdb/hg/master/dist/gdb/i386-sol2-nat.c:24:
/usr/include/sys/old_procfs.h:31:2: error: #error "Cannot use procfs in the large file compilation environment"
 #error "Cannot use procfs in the large file compilation environment"
  ^~~~~

* On Solaris 11.3/x86 there are several more instances of this.

The interaction between procfs and large-file support historically has
been a royal mess on Solaris:

* There are two versions of the procfs interface:

** The old ioctl-based /proc, deprecated and not used any longer in
   either gdb or binutils.

** The `new' (introduced in Solaris 2.6, 1997) structured /proc.

* There are two headers one can possibly include:

** <procfs.h> which only provides the structured /proc, definining
   _STRUCTURED_PROC=1 and then including ...

** <sys/procfs.h> which defaults to _STRUCTURED_PROC=0, the ioctl-based
   /proc, but provides structured /proc if _STRUCTURED_PROC == 1.

* procfs and the large-file environment didn't go well together:

** Until Solaris 11.3, <sys/procfs.h> would always #error in 32-bit
   compilations when the large-file environment was active
   (_FILE_OFFSET_BITS == 64).

** In both Solaris 11.4 and Illumos, this restriction was lifted for
   structured /proc.

So one has to be careful always to define _STRUCTURED_PROC=1 when
testing for or using <sys/procfs.h> on Solaris.  As the errors above
show, this isn't always the case in binutils-gdb right now.

Also one may need to disable large-file support for 32-bit compilations
on Solaris.  config/largefile.m4 meant to do this by wrapping the
AC_SYS_LARGEFILE autoconf macro with appropriate checks, yielding
ACX_LARGEFILE.  Unfortunately the macro doesn't always succeed because
it neglects the _STRUCTURED_PROC part.

To make things even worse, since GCC 9 g++ predefines
_FILE_OFFSET_BITS=64 on Solaris.  So even if largefile.m4 deciced not to
enable large-file support, this has no effect, breaking the gdb build.

This patch addresses all this as follows:

* All tests for the <sys/procfs.h> header are made with
  _STRUCTURED_PROC=1, the definition going into the various config.h
  files instead of having to make them (and sometimes failing) in the
  affected sources.

* To cope with the g++ predefine of _FILE_OFFSET_BITS=64,
  -U_FILE_OFFSET_BITS is added to various *_CPPFLAGS variables.  It had
  been far easier to have just

  #undef _FILE_OFFSET_BITS

  in config.h, but unfortunately such a construct in config.in is
  commented by config.status irrespective of indentation and whitespace
  if large-file support is disabled.  I found no way around this and
  putting the #undef in several global headers for bfd, binutils, ld,
  and gdb seemed way more invasive.

* Last, the applicability check in largefile.m4 was modified only to
  disable largefile support if really needed.  To do so, it checks if
  <sys/procfs.h> compiles with _FILE_OFFSET_BITS=64 defined.  If it
  doesn't, the disabling only happens if gdb exists in-tree and isn't
  disabled, otherwise (building binutils from a tarball), there's no
  conflict.

  What initially confused me was the check for $plugins here, which
  originally caused the disabling not to take place.  Since AC_PLUGINGS
  does enable plugin support if <dlfcn.h> exists (which it does on
  Solaris), the disabling never happened.

  I could find no explanation why the linker plugin needs large-file
  support but thought it would be enough if gld and GCC's lto-plugin
  agreed on the _FILE_OFFSET_BITS value.  Unfortunately, that's not
  enough: lto-plugin uses the simple-object interface from libiberty,
  which includes off_t arguments.  So to fully disable large-file
  support would mean also disabling it in libiberty and its users: gcc
  and libstdc++-v3.  This seems highly undesirable, so I decided to
  disable the linker plugin instead if large-file support won't work.

The patch allows binutils+gdb to build on i386-pc-solaris2.11 (both
Solaris 11.3 and 11.4, using GCC 9.3.0 which is the worst case due to
predefined _FILE_OFFSET_BITS=64).  Also regtested on
amd64-pc-solaris2.11 (again on Solaris 11.3 and 11.4),
x86_64-pc-linux-gnu and i686-pc-linux-gnu.

	config:
	* largefile.m4 (ACX_LARGEFILE) <sparc-*-solaris*|i?86-*-solaris*>:
	Check for <sys/procfs.h> incompatilibity with large-file support
	on Solaris.
	Only disable large-file support and perhaps plugins if needed.
	Set, substitute LARGEFILE_CPPFLAGS if so.

	bfd:
	* bfd.m4 (BFD_SYS_PROCFS_H): New macro.
	(BFD_HAVE_SYS_PROCFS_TYPE): Require BFD_SYS_PROCFS_H.
	Don't define _STRUCTURED_PROC.
	(BFD_HAVE_SYS_PROCFS_TYPE_MEMBER): Likewise.
	* elf.c [HAVE_SYS_PROCFS_H] (_STRUCTURED_PROC): Don't define.
	* configure.ac: Use BFD_SYS_PROCFS_H to check for <sys/procfs.h>.
	* configure, config.in: Regenerate.
	* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
	* Makefile.in, doc/Makefile.in: Regenerate.

	binutils:
	* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
	* Makefile.in, doc/Makefile.in: Regenerate.
	* configure: Regenerate.

	gas:
	* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
	* Makefile.in, doc/Makefile.in: Regenerate.
	* configure: Regenerate.

	gdb:
	* proc-api.c (_STRUCTURED_PROC): Don't define.
	* proc-events.c: Likewise.
	* proc-flags.c: Likewise.
	* proc-why.c: Likewise.
	* procfs.c: Likewise.

	* Makefile.in (INTERNAL_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
	* configure, config.in: Regenerate.

	gdbserver:
	* configure, config.in: Regenerate.

	gdbsupport:
	* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
	* common.m4 (GDB_AC_COMMON): Use BFD_SYS_PROCFS_H to check for
	<sys/procfs.h>.
	* Makefile.in: Regenerate.
	* configure, config.in: Regenerate.

	gnulib:
	* configure.ac: Run ACX_LARGEFILE before gl_EARLY.
	* configure: Regenerate.

	gprof:
	* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
	* Makefile.in: Regenerate.
	* configure: Regenerate.

	ld:
	* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
	* Makefile.in: Regenerate.
	* configure: Regenerate.
2020-07-30 15:41:50 +02:00
..
doc Unify Solaris procfs and largefile handling 2020-07-30 15:41:50 +02:00
hosts Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
po Remove powerpc PE support 2020-07-09 22:58:16 +09:30
.gitignore
acinclude.m4 Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
aclocal.m4
aix5ppc-core.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
aix386-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
aout-cris.c [PATCH] bfd: tweak SET_ARCH_MACH of aout-cris.c 2020-05-04 16:07:26 +01:00
aout-ns32k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
aout-target.h Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
aout32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
aout64.c This patch set for the generic BFD a.out backend removes a dead #define and makes aoutx.h self-contained: [PATCH 1/2]: bfd: remove unused NO_WRITE_HEADER_KLUDGE #define [PATCH 2/2]: bfd: make aoutx.h self-contained 2020-06-03 15:24:58 +01:00
aoutx.h Correct a comment. 2020-06-04 12:34:17 -07:00
arc-got.h C++ comments 2020-06-29 10:07:56 +09:30
arc-plt.def Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
arc-plt.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
archive.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
archive64.c Large memory allocation reading fuzzed 64-bit archive 2020-03-05 11:15:55 +10:30
archures.c Remove x86 NaCl target support 2020-06-30 08:56:14 -07:00
bfd-in.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bfd-in2.h Remove x86 NaCl target support 2020-06-30 08:56:14 -07:00
bfd.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
bfd.m4 Unify Solaris procfs and largefile handling 2020-07-30 15:41:50 +02:00
bfdio.c Fix potential segfault 2020-05-23 16:56:38 +09:30
bfdwin.c coff-go32-exe: support variable-length stubs 2020-04-02 14:31:43 +01:00
binary.c Update binary_get_section_contents to seek using section's file position 2020-07-22 12:42:31 -07:00
cache.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
cf-i386lynx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ChangeLog Unify Solaris procfs and largefile handling 2020-07-30 15:41:50 +02: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-2018 ChangeLog rotation 2019-01-01 21:25:40 +10:30
ChangeLog-2019 ChangeLog rotation 2020-01-01 18:12:08 +10:30
ChangeLog-9193
ChangeLog-9495
ChangeLog-9697
ChangeLog-9899
cisco-core.c Re: bfd_cleanup for object_p 2020-03-03 00:12:44 +10:30
coff-alpha.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
coff-arm.c Indent labels 2020-02-26 10:37:25 +10:30
coff-arm.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-bfd.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-bfd.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-go32.c [PATCH v2 2/2] coff-go32: support extended relocations 2020-04-14 17:30:01 +01:00
coff-i386.c x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
coff-ia64.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
coff-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-mips.c miscellaneous SEC_SMALL_DATA 2020-03-02 11:36:19 +10:30
coff-rs6000.c XCOFF deterministic archives 2020-07-07 18:26:33 +09:30
coff-sh.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
coff-stgo32.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
coff-tic4x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-tic30.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-tic54x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-x86_64.c x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
coff-z8k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-z80.c C++ comments 2020-06-29 10:07:56 +09:30
coff64-rs6000.c Unify the behaviour of ld.bfd and ld.gold with respect to warning about unresolved symbol references. (PR 24613) 2020-04-15 14:25:08 +01:00
coffcode.h Remove powerpc PE support 2020-07-09 22:58:16 +09:30
coffgen.c PR26239, memory leak in _bfd_dwarf2_slurp_debug_info 2020-07-15 19:47:57 +09:30
cofflink.c PR26103, Assertion failure with symbols defined in link-once sections 2020-06-15 12:10:06 +09:30
coffswap.h PR25961, buffer overflow in coff_swap_aux_in 2020-05-11 18:11:26 +09:30
compress.c BFD: Exclude sections with no content from compress check. 2020-04-21 15:17:18 +01:00
config.bfd Move the xc16x target to the obsolete list 2020-07-24 12:01:48 +01:00
config.in Unify Solaris procfs and largefile handling 2020-07-30 15:41:50 +02:00
configure Unify Solaris procfs and largefile handling 2020-07-30 15:41:50 +02:00
configure.ac Unify Solaris procfs and largefile handling 2020-07-30 15:41:50 +02:00
configure.com Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
configure.host Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
COPYING
corefile.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-aarch64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-aarch64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-alpha.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-arc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-arm.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
cpu-arm.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-avr.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-bfin.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-bpf.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-cr16.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-cris.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-crx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-csky.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-d10v.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-d30v.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-dlx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-epiphany.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-fr30.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-frv.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-ft32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-h8300.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-h8300.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-hppa.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-i386.c Remove x86 NaCl target support 2020-06-30 08:56:14 -07:00
cpu-ia64-opc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-ia64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-iamcu.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-ip2k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-iq2000.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-k1om.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-l1om.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-lm32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m9s12x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m9s12xg.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m32c.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m32r.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m68hc11.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m68hc12.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m68k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m68k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m10200.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m10300.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-mep.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-metag.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-microblaze.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-mips.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-mmix.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-moxie.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-msp430.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-mt.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-nds32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-nfp.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-nios2.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-ns32k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-or1k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-pdp11.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-pj.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-powerpc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-pru.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-riscv.c RISCV changes broke 32-bit --enable-targets=all 2020-06-26 10:58:03 +09:30
cpu-rl78.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-rs6000.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-rx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-s12z.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-s390.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-score.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-sh.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-sparc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-spu.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tic4x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tic6x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tic30.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tic54x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tilegx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tilepro.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-v850.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-v850_rh850.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-vax.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-visium.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-wasm32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-xc16x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-xgate.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-xstormy16.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-xtensa.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-z8k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-z80.c Various fixes for the Z80 support. 2020-02-19 17:46:10 +00:00
dep-in.sed
development.sh Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
dwarf1.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
dwarf2.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
ecoff-bfd.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ecoff.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
ecofflink.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
ecoffswap.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-attrs.c bfd_get_file_size calls 2020-02-19 13:14:05 +10:30
elf-bfd.h elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf-eh-frame.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf-hppa.h bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf-ifunc.c IFUNC: Update IFUNC resolver check with DT_TEXTREL 2020-06-09 06:57:25 -07:00
elf-linker-x86.h x86: Check static link of dynamic objects 2020-03-13 07:39:06 -07:00
elf-linux-core.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-m10200.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf-m10300.c ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elf-nacl.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-nacl.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-properties.c Indent labels 2020-02-26 10:37:25 +10:30
elf-s390-common.c ELF: Move dyn_relocs to struct elf_link_hash_entry 2020-06-01 18:19:05 -07:00
elf-s390.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-strtab.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf-vxworks.c ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elf-vxworks.h ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elf.c Unify Solaris procfs and largefile handling 2020-07-30 15:41:50 +02:00
elf32-am33lin.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-arc.c ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elf32-arm.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-arm.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-avr.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-avr.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-bfin.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-bfin.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-cr16.c ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elf32-cr16.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-cris.c cris: Don't generate unnecessary dynamic tags 2020-06-24 04:00:31 -07:00
elf32-crx.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-csky.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-csky.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-d10v.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-d30v.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-dlx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-dlx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-epiphany.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-fr30.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-frv.c ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elf32-ft32.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-gen.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-h8300.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-hppa.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-hppa.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-i386.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-ip2k.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-iq2000.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-lm32.c ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elf32-m32c.c C++ comments 2020-06-29 10:07:56 +09:30
elf32-m32r.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-m68hc1x.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf32-m68hc1x.h elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-m68hc11.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-m68hc12.c Non-contiguous memory regions support: Avoid calls to abort 2020-03-18 10:09:43 +00:00
elf32-m68k.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-m68k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-mep.c elf_backend_section_flags and _bfd_elf_init_private_section_data 2020-03-02 11:36:19 +10:30
elf32-metag.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-metag.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-microblaze.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-mips.c MIPS/LD: Set symtab's `sh_info' correctly for IRIX emulations 2020-07-29 20:56:41 +01:00
elf32-moxie.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-msp430.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-mt.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-nds32.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-nds32.h elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-nios2.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-nios2.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-or1k.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-pj.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-ppc.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-ppc.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-pru.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-rl78.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-rx.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-rx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-s12z.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-s390.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-score.c FIXME for merging of e_flags and .gnu.attributes 2020-05-01 15:32:36 +09:30
elf32-score.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-score7.c FIXME for merging of e_flags and .gnu.attributes 2020-05-01 15:32:36 +09:30
elf32-sh-relocs.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-sh.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-sparc.c ELF: Add target_os to elf_link_hash_table/elf_backend_data 2020-06-06 06:45:38 -07:00
elf32-spu.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-spu.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-tic6x.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-tic6x.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-tilegx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-tilegx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-tilepro.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf32-tilepro.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-v850.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf32-v850.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-vax.c ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elf32-visium.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-wasm32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-xc16x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-xgate.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-xstormy16.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-xtensa.c bfd: xtensa: pr26246: fix removed_literal_compare 2020-07-22 02:58:34 -07:00
elf32-z80.c Add support for the GBZ80 and Z80N variants of the Z80 architecture, and add DWARF debug info support to the Z80 assembler. 2020-02-07 14:53:46 +00:00
elf32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-alpha.c ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elf64-bpf.c bfd: fix handling of R_BPF_INSN_{32,64} relocations. 2020-05-28 21:54:46 +02:00
elf64-gen.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-hppa.c ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elf64-hppa.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-ia64-vms.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf64-mips.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf64-mmix.c mmix bfd: fix bfd_assert for R_MMIX_PUSHJ_STUBBABLE against undef'd symbol 2020-07-15 06:22:28 +02:00
elf64-nfp.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-ppc.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf64-ppc.h PowerPC64 ld --no-power10-stubs 2020-07-10 11:14:38 +09:30
elf64-s390.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf64-sparc.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elf64-tilegx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-tilegx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-x86-64.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elf64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfcode.h Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
elfcore.h Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
elflink.c MIPS: Make the IRIX naming of local section symbols consistent 2020-07-29 20:56:41 +01:00
elfn32-mips.c MIPS/LD: Set symtab's `sh_info' correctly for IRIX emulations 2020-07-29 20:56:41 +01:00
elfnn-aarch64.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elfnn-ia64.c ELF: Add _bfd_elf_add_dynamic_tags 2020-06-23 05:07:45 -07:00
elfnn-riscv.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elfxx-aarch64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-aarch64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-ia64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-ia64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-mips.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elfxx-mips.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-riscv.c RISCV changes broke 32-bit --enable-targets=all 2020-06-26 10:58:03 +09:30
elfxx-riscv.h RISC-V: Report warning when linking the objects with different priv specs. 2020-06-22 10:01:14 +08:00
elfxx-sparc.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elfxx-sparc.h elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elfxx-target.h MIPS/LD: Set symtab's `sh_info' correctly for IRIX emulations 2020-07-29 20:56:41 +01:00
elfxx-tilegx.c elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
elfxx-tilegx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-x86.c Remove x86 NaCl target support 2020-06-30 08:56:14 -07:00
elfxx-x86.h elf: Add sym_cache to elf_link_hash_table 2020-07-30 03:41:44 -07:00
format.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
gen-aout.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
genlink.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
go32stub.h
hash.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
host-aout.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
hppabsd-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
hpux-core.c Re: bfd_cleanup for object_p 2020-03-03 00:12:44 +10:30
i386aout.c This patch set for the generic BFD a.out backend removes a dead #define and makes aoutx.h self-contained: [PATCH 1/2]: bfd: remove unused NO_WRITE_HEADER_KLUDGE #define [PATCH 2/2]: bfd: make aoutx.h self-contained 2020-06-03 15:24:58 +01:00
i386bsd.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
i386lynx.c Indent labels 2020-02-26 10:37:25 +10:30
i386msdos.c Re: i386msdos uninitialised read 2020-03-26 20:02:42 +10:30
ihex.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
init.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
irix-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
libaout.h This patch set for the generic BFD a.out backend removes a dead #define and makes aoutx.h self-contained: [PATCH 1/2]: bfd: remove unused NO_WRITE_HEADER_KLUDGE #define [PATCH 2/2]: bfd: make aoutx.h self-contained 2020-06-03 15:24:58 +01:00
libbfd-in.h Revert earlier delta adding bfd_coff_get_internal_extra_pe_aouthdr() function. 2020-03-26 10:46:25 +00:00
libbfd.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
libbfd.h Rename PowerPC64 pcrel GOT TLS relocations 2020-06-06 14:44:32 +09:30
libcoff-in.h Remove powerpc PE support 2020-07-09 22:58:16 +09:30
libcoff.h Remove powerpc PE support 2020-07-09 22:58:16 +09:30
libecoff.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
libhppa.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
libpei.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
libxcoff.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
linker.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
lynx-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
mach-o-aarch64.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
mach-o-arm.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
mach-o-i386.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
mach-o-target.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
mach-o-x86-64.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
mach-o.c Recognize some new Mach-O load commands 2020-06-22 14:29:20 +01:00
mach-o.h bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
MAINTAINERS Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
Makefile.am Unify Solaris procfs and largefile handling 2020-07-30 15:41:50 +02:00
Makefile.in Unify Solaris procfs and largefile handling 2020-07-30 15:41:50 +02:00
makefile.vms Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
mep-relocs.pl Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
merge.c Fix several mix up between octets and bytes in ELF program headers 2020-03-13 15:48:01 +10:30
mmo.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
netbsd-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
netbsd.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ns32k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ns32knetbsd.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
opncls.c Re: PR25993, read of freed memory 2020-05-21 23:39:36 +09:30
osf-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
pc532-mach.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pdp11.c PR26107, Compilation failure in pdp11.c 2020-06-11 15:50:33 +09:30
pe-arm-wince.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pe-arm.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pe-i386.c x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
pe-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pe-sh.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pe-x86_64.c x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
pef-traceback.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pef.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
pef.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-arm-wince.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-arm.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-i386.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-ia64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-sh.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-x86_64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
peicode.h PR26069, strip/objcopy misaligned address accesses 2020-06-03 17:59:44 +09:30
peXXigen.c Remove powerpc PE support 2020-07-09 22:58:16 +09:30
plugin.c PR26132, ar creates invalid libraries for some targets with plugins enabled 2020-06-21 22:16:59 +09:30
plugin.h plugin: Don't invoke LTO-wrapper 2020-03-20 03:55:30 -07:00
PORTING Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ppcboot.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
ptrace-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
README Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
reloc.c Rename PowerPC64 pcrel GOT TLS relocations 2020-06-06 14:44:32 +09:30
reloc16.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
rs6000-core.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
sco5-core.c Re: bfd_cleanup for object_p 2020-03-03 00:12:44 +10:30
section.c bfd_is_const_section thinko 2020-04-18 10:24:17 +09:30
simple.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
som.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
som.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
srec.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
stab-syms.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
stabs.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
stamp-h.in
syms.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
sysdep.h Fix spelling errors 2020-01-17 12:34:03 -06:00
targets.c Remove powerpc PE support 2020-07-09 22:58:16 +09:30
targmatch.sed
tekhex.c tekhex: Uninitialised read 2020-03-31 15:04:21 +10:30
TODO Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
trad-core.c trad_unix_core_file_p: Return bfd_cleanup 2020-03-02 04:35:23 -08:00
vax1knetbsd.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
vaxnetbsd.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
verilog.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
version.h Automatic date update in version.in 2020-07-30 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 ubsan: alpha-vms: shift exponent 536874240 is too large 2020-06-24 10:48:15 +09:30
vms-lib.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
vms-misc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
vms.h ubsan: alpha-vms: segv 2020-01-14 11:02:28 +10:30
warning.m4 Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
wasm-module.c asan: wasm: Out-of-memory 2020-03-09 10:10:36 +10:30
wasm-module.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
xcofflink.c Accept --just-symbols symbols as absolute for xcoff 2020-07-27 22:31:37 +09:30
xcofflink.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
xsym.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
xsym.h bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
xtensa-isa.c Replace "if (x) free (x)" with "free (x)", bfd 2020-05-21 10:11:57 +09:30
xtensa-modules.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +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-2020 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.