8sa1-binutils-gdb/gold/testsuite
Simon Marchi d0ac1c4488 Bump to autoconf 2.69 and automake 1.15.1
When trying to run the update-gnulib.sh script in gdb, I get this:

Error: Wrong automake version (Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^      =:+{}]+)}/ at /opt/automake/1.11.1/bin/automake line 4113.), we need 1.11.1.
Aborting.

Apparently, it's an issue with a regex in automake that triggers a
warning starting with Perl 5.22.  It has been fixed in automake 1.15.1.
So I think it's a good excuse to bump the versions of autoconf and
automake used in the gnulib import.  And to avoid requiring multiple
builds of autoconf/automake, it was suggested that we bump the required
version of those tools for all binutils-gdb.

For autoconf, the 2.69 version is universally available, so it's an easy
choice.  For automake, different distros and distro versions have
different automake versions.  But 1.15.1 seems to be the most readily
available as a package.  In any case, it's easy to build it from source.

I removed the version checks from AUTOMAKE_OPTIONS and AC_PREREQ,
because I don't think they are useful in our case.  They only specify a
lower bound for the acceptable version of automake/autoconf.  That's
useful if you let the user choose the version of the tool they want to
use, but want to set a minimum version (because you use a feature that
was introduced in that version).  In our case, we force people to use a
specific version anyway.  For the autoconf version, we have the check in
config/override.m4 that enforces the version we want.  It will be one
less thing to update next time we change autotools version.

I hit a few categories of problems that required some changes.  They are
described below along with the chosen solutions.

Problem 1:

  configure.ac:17: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated.  For more info, see:
  configure.ac:17: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation

Solution 1:

  Adjust the code based on the example at that URL.

Problem 2 (in zlib/):

  Makefile.am: error: required file './INSTALL' not found
  Makefile.am:   'automake --add-missing' can install 'INSTALL'
  Makefile.am: error: required file './NEWS' not found
  Makefile.am: error: required file './AUTHORS' not found
  Makefile.am: error: required file './COPYING' not found
  Makefile.am:   'automake --add-missing' can install 'COPYING'

Solution 2:

  Add the foreign option to AUTOMAKE_OPTIONS.

Problem 3:

  doc/Makefile.am:20: error: support for Cygnus-style trees has been removed

Solution 3:

  Remove the cygnus options.

Problem 4:

  Makefile.am:656: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')

Solution 4:

  Rename "INCLUDES = " to "AM_CPPFLAGS += " (because AM_CPPFLAGS is
  already defined earlier).

Problem 5:

  doc/Makefile.am:71: warning: suffix '.texinfo' for Texinfo files is discouraged; use '.texi' instead
  doc/Makefile.am: warning: Oops!
  doc/Makefile.am:     It appears this file (or files included by it) are triggering
  doc/Makefile.am:     an undocumented, soon-to-be-removed automake hack.
  doc/Makefile.am:     Future automake versions will no longer place in the builddir
  doc/Makefile.am:     (rather than in the srcdir) the generated '.info' files that
  doc/Makefile.am:     appear to be cleaned, by e.g. being listed in CLEANFILES or
  doc/Makefile.am:     DISTCLEANFILES.
  doc/Makefile.am:     If you want your '.info' files to be placed in the builddir
  doc/Makefile.am:     rather than in the srcdir, you have to use the shiny new
  doc/Makefile.am:     'info-in-builddir' automake option.

Solution 5:

  Rename .texinfo files to .texi.

Problem 6:

  doc/Makefile.am: warning: Oops!
  doc/Makefile.am:     It appears this file (or files included by it) are triggering
  doc/Makefile.am:     an undocumented, soon-to-be-removed automake hack.
  doc/Makefile.am:     Future automake versions will no longer place in the builddir
  doc/Makefile.am:     (rather than in the srcdir) the generated '.info' files that
  doc/Makefile.am:     appear to be cleaned, by e.g. being listed in CLEANFILES or
  doc/Makefile.am:     DISTCLEANFILES.
  doc/Makefile.am:     If you want your '.info' files to be placed in the builddir
  doc/Makefile.am:     rather than in the srcdir, you have to use the shiny new
  doc/Makefile.am:     'info-in-builddir' automake option.

Solution 6:

  Remove the hack at the bottom of doc/Makefile.am and use
  the info-in-builddir automake option.

Problem 7:

  doc/Makefile.am:35: error: required file '../texinfo.tex' not found
  doc/Makefile.am:35:   'automake --add-missing' can install 'texinfo.tex'

Solution 7:

  Use the no-texinfo.tex automake option.  We also have one in
  texinfo/texinfo.tex, not sure if we should point to that, or move it
  (or a newer version of it added with automake --add-missing) to
  top-level.

Problem 8:

  Makefile.am:131: warning: source file 'config/tc-aarch64.c' is in a subdirectory,
  Makefile.am:131: but option 'subdir-objects' is disabled
  automake: warning: possible forward-incompatibility.
  automake: At least a source file is in a subdirectory, but the 'subdir-objects'
  automake: automake option hasn't been enabled.  For now, the corresponding output
  automake: object file(s) will be placed in the top-level directory.  However,
  automake: this behaviour will change in future Automake versions: they will
  automake: unconditionally cause object files to be placed in the same subdirectory
  automake: of the corresponding sources.
  automake: You are advised to start using 'subdir-objects' option throughout your
  automake: project, to avoid future incompatibilities.

Solution 8:

  Use subdir-objects, that means adjusting references to some .o that will now
  be in config/.

Problem 9:

  configure.ac:375: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
  ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
  ../../lib/autoconf/general.m4:2601: _AC_COMPILE_IFELSE is expanded from...
  ../../lib/autoconf/general.m4:2617: AC_COMPILE_IFELSE is expanded from...
  ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
  ../../lib/autoconf/general.m4:2042: AC_CACHE_VAL is expanded from...
  ../../lib/autoconf/general.m4:2063: AC_CACHE_CHECK is expanded from...
  configure.ac:375: the top level

Solution 9:

  Use AC_LANG_SOURCE, or use proper quoting.

Problem 10 (in intl/):

  configure.ac:7: warning: AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS
  /usr/share/aclocal/threadlib.m4:36: gl_THREADLIB_EARLY_BODY is expanded from...
  /usr/share/aclocal/threadlib.m4:29: gl_THREADLIB_EARLY is expanded from...
  /usr/share/aclocal/threadlib.m4:318: gl_THREADLIB is expanded from...
  /usr/share/aclocal/lock.m4:9: gl_LOCK is expanded from...
  /usr/share/aclocal/intl.m4:211: gt_INTL_SUBDIR_CORE is expanded from...
  /usr/share/aclocal/intl.m4:25: AM_INTL_SUBDIR is expanded from...
  /usr/share/aclocal/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
  configure.ac:7: the top level

Solution 10:

  Add AC_USE_SYSTEM_EXTENSIONS in configure.ac.

ChangeLog:

	* libtool.m4: Use AC_LANG_SOURCE.
	* configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
	* README-maintainer-mode: Update version requirements.
	* ar-lib: New file.
	* test-driver: New file.
	* configure: Re-generate.

bfd/ChangeLog:

	* Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11.
	(INCLUDES): Rename to ...
	(AM_CPPFLAGS): ... this.
	* configure.ac: Remove AC_PREREQ.
	* doc/Makefile.am (AUTOMAKE_OPTIONS): Remove 1.9, cygnus, add
	info-in-builddir no-texinfo.tex.
	(info_TEXINFOS): Rename bfd.texinfo to bfd.texi.
	* doc/bfd.texinfo: Rename to ...
	* doc/bfd.texi: ... this.
	* Makefile.in: Re-generate.
	* aclocal.m4: Re-generate.
	* config.in: Re-generate.
	* configure: Re-generate.
	* doc/Makefile.in: Re-generate.

binutils/ChangeLog:

	* configure.ac: Remove AC_PREREQ.
	* doc/Makefile.am (AUTOMAKE_OPTIONS): Remove cygnus, add
	info-in-builddir no-texinfo.tex.
	* Makefile.in: Re-generate.
	* aclocal.m4: Re-generate.
	* config.in: Re-generate.
	* configure: Re-generate.
	* doc/Makefile.in: Re-generate.

config/ChangeLog:

	* override.m4 (_GCC_AUTOCONF_VERSION): Bump from 2.64 to 2.69.

etc/ChangeLog:

	* configure.in: Remove AC_PREREQ.
	* configure: Re-generate.

gas/ChangeLog:

	* Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11, add subdir-objects.
	(TARG_CPU_O, OBJ_FORMAT_O, ATOF_TARG_O): Add config/ prefix.
	* configure.ac (TARG_CPU_O, OBJ_FORMAT_O, ATOF_TARG_O, emfiles,
	extra_objects): Add config/ prefix.
	* doc/as.texinfo: Rename to...
	* doc/as.texi: ... this.
	* doc/Makefile.am: Rename as.texinfo to as.texi throughout.
	Remove DISTCLEANFILES hack.
	(AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add no-texinfo.tex and
	info-in-builddir.
	* Makefile.in: Re-generate.
	* aclocal.m4: Re-generate.
	* config.in: Re-generate.
	* configure: Re-generate.
	* doc/Makefile.in: Re-generate.

gdb/ChangeLog:

	* common/common-defs.h (PACKAGE_NAME, PACKAGE_VERSION,
	PACKAGE_STRING, PACKAGE_TARNAME): Undefine.
	* configure.ac: Remove AC_PREREQ, add missing quoting.
	* gnulib/configure.ac: Modernize usage of
	AC_INIT/AM_INIT_AUTOMAKE.  Remove AC_PREREQ.
	* gnulib/update-gnulib.sh (AUTOCONF_VERSION): Bump to 2.69.
	(AUTOMAKE_VERSION): Bump to 1.15.1.
	* configure: Re-generate.
	* config.in: Re-generate.
	* aclocal.m4: Re-generate.
	* gnulib/aclocal.m4: Re-generate.
	* gnulib/config.in: Re-generate.
	* gnulib/configure: Re-generate.
	* gnulib/import/Makefile.in: Re-generate.

gdb/gdbserver/ChangeLog:

	* configure.ac: Remove AC_PREREQ, add missing quoting.
	* configure: Re-generate.
	* config.in: Re-generate.
	* aclocal.m4: Re-generate.

gdb/testsuite/ChangeLog:

	* configure.ac: Remove AC_PREREQ.
	* configure: Re-generate.

gold/ChangeLog:

	* configure.ac: Remove AC_PREREQ, add missing quoting and usage
	of AC_LANG_SOURCE.
	* Makefile.in: Re-generate.
	* aclocal.m4: Re-generate.
	* configure: Re-generate.
	* testsuite/Makefile.in: Re-generate.

gprof/ChangeLog:

	* configure.ac: Remove AC_PREREQ.
	* Makefile.am: Remove DISTCLEANFILES hack.
	(AUTOMAKE_OPTIONS): Remove 1.11, add info-in-builddir.
	* Makefile.in: Re-generate.
	* aclocal.m4: Re-generate.
	* configure: Re-generate.
	* gconfig.in: Re-generate.

intl/ChangeLog:

	* configure.ac: Add AC_USE_SYSTEM_EXTENSIONS, remove AC_PREREQ.
	* configure: Re-generate.
	* config.h.in: Re-generate.
	* aclocal.m4: Re-generate.

ld/ChangeLog:

	* configure.ac: Remove AC_PREREQ.
	* Makefile.am: Remove DISTCLEANFILES hack, rename ld.texinfo to
	ld.texi, ldint.texinfo to ldint.texi throughout.
	(AUTOMAKE_OPTIONS): Add info-in-builddir.
	* README: Rename ld.texinfo to ld.texi, ldint.texinfo to
	ldint.texi throughout.
	* gen-doc.texi: Likewise.
	* h8-doc.texi: Likewise.
	* ld.texinfo: Rename to ...
	* ld.texi: ... this.
	* ldint.texinfo: Rename to ...
	* ldint.texi: ... this.
	* Makefile.in: Re-generate.
	* aclocal.m4: Re-generate.
	* config.in: Re-generate.
	* configure: Re-generate.

libdecnumber/ChangeLog:

	* configure.ac: Remove AC_PREREQ.
	* configure: Re-generate.
	* aclocal.m4.

libiberty/ChangeLog:

	* configure.ac: Remove AC_PREREQ.
	* configure: Re-generate.
	* config.in: Re-generate.

opcodes/ChangeLog:

	* Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11.
	* configure.ac: Remove AC_PREREQ.
	* Makefile.in: Re-generate.
	* aclocal.m4: Re-generate.
	* configure: Re-generate.

readline/ChangeLog.gdb:

	* configure: Re-generate.
	* examples/rlfe/configure: Re-generate.

sim/ChangeLog:

	* All configure.ac: Remove AC_PREREQ.
	* All configure: Re-generate.

zlib/ChangeLog.bin-gdb:

	* configure.ac: Modernize AC_INIT call, remove AC_PREREQ.
	* Makefile.am (AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add
	foreign.
	* Makefile.in: Re-generate.
	* aclocal.m4: Re-generate.
	* configure: Re-generate.
2018-06-19 16:55:06 -04:00
..
aarch64_globals.s [Gold, aarch64] Implement some AArch64 relocs. 2016-07-26 08:55:14 -07:00
aarch64_reloc_none.s Implement the R_AARCH64_NONE relocation. 2016-06-28 15:50:29 -07:00
aarch64_reloc_none.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
aarch64_relocs.s [Gold, aarch64] Implement some AArch64 relocs. 2016-07-26 08:55:14 -07:00
aarch64_relocs.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
aarch64_tlsdesc.s Fix bad offset calculation for R_AARCH64_TLSDESC_* relocs. 2017-08-28 08:03:00 -07:00
aarch64_tlsdesc.sh Fix bad offset calculation for R_AARCH64_TLSDESC_* relocs. 2017-08-28 08:03:00 -07:00
aarch64_tlsdesc.t Fix bad offset calculation for R_AARCH64_TLSDESC_* relocs. 2017-08-28 08:03:00 -07:00
arm_abs_global.s
arm_abs_global.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
arm_abs_lib.s
arm_attr_merge_6a.s
arm_attr_merge_6b.s
arm_attr_merge_7a.s
arm_attr_merge_7b.s
arm_attr_merge.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_bl_in_range.s
arm_bl_out_of_range.s Align text section ends so that stub tables appears at expected addresses. 2015-07-06 15:02:40 -07:00
arm_branch_in_range.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_branch_out_of_range.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_branch_range.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_cortex_a8_b_cond.s Align text section ends so that stub tables appears at expected addresses. 2015-07-06 15:02:40 -07:00
arm_cortex_a8_b_local.s
arm_cortex_a8_b.s Align text section ends so that stub tables appears at expected addresses. 2015-07-06 15:02:40 -07:00
arm_cortex_a8_bl.s Align text section ends so that stub tables appears at expected addresses. 2015-07-06 15:02:40 -07:00
arm_cortex_a8_blx.s Align text section ends so that stub tables appears at expected addresses. 2015-07-06 15:02:40 -07:00
arm_cortex_a8_local_reloc.s
arm_cortex_a8_local.s Align text section ends so that stub tables appears at expected addresses. 2015-07-06 15:02:40 -07:00
arm_cortex_a8.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_exidx_test.s
arm_exidx_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_farcall_arm_arm_be8.sh Implement BE8 support for ARM. 2017-10-19 20:53:14 -07:00
arm_farcall_arm_arm.s
arm_farcall_arm_arm.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
arm_farcall_arm_thumb.s
arm_farcall_arm_thumb.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
arm_farcall_thumb_arm.s
arm_farcall_thumb_arm.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_farcall_thumb_thumb_be8.sh Implement BE8 support for ARM. 2017-10-19 20:53:14 -07:00
arm_farcall_thumb_thumb.s
arm_farcall_thumb_thumb.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_fix_1176.s
arm_fix_1176.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_fix_v4bx.s Align text section ends so that stub tables appears at expected addresses. 2015-07-06 15:02:40 -07:00
arm_fix_v4bx.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_target1_abs.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_target1_rel.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_target1.s Handle ARM-specific --target1-abs, --target1-rel and --target2 options 2016-09-02 15:51:59 -07:00
arm_target2_abs.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_target2_got_rel.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
arm_target2_rel.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
arm_target2.s Handle ARM-specific --target1-abs, --target1-rel and --target2 options 2016-09-02 15:51:59 -07:00
arm_target_lazy_init.s Fix an internal error in the constructor of Target_arm. 2016-12-19 15:28:28 -08:00
arm_target_lazy_init.t Fix an internal error in the constructor of Target_arm. 2016-12-19 15:28:28 -08:00
arm_thm_jump8.s
arm_thm_jump8.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_thm_jump11.s
arm_thm_jump11.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
arm_unaligned_reloc.s Make arm_unaligned_reloc test less sensitive to disassembler output format. 2015-07-26 00:54:26 -07:00
arm_unaligned_reloc.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
basic_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
binary_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
binary_unittest.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
binary.in
bnd_ifunc_1.s Add -z bndplt support (for Intel MPX). 2016-12-22 20:07:23 -08:00
bnd_ifunc_1.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bnd_ifunc_2.s Add -z bndplt support (for Intel MPX). 2016-12-22 20:07:23 -08:00
bnd_ifunc_2.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
bnd_plt_1.s Add -z bndplt support (for Intel MPX). 2016-12-22 20:07:23 -08:00
bnd_plt_1.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
common_test_1_v1.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
common_test_1_v2.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
common_test_1.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
common_test_2.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
common_test_3.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
constructor_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
copy_test_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
copy_test_2.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
copy_test_protected.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
copy_test_protected.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
copy_test_relro_1.cc Fix compile errors with GCC 4.2. 2017-01-11 11:47:27 -08:00
copy_test_relro.cc [GOLD] Fix tests for powerpc64 2017-01-10 11:50:07 +10:30
copy_test_v1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
copy_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
debug_msg.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
debug_msg.sh Workaround GCC 7 bug with debug line numbers causing debug_msg.sh failure. 2017-12-01 22:53:08 -08:00
defsym_test.c Fix --defsym to copy symbol attributes. 2014-07-08 22:52:37 -07:00
defsym_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
discard_locals_relocatable_test.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
discard_locals_test.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
discard_locals_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dwp_test_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dwp_test_1.s
dwp_test_1.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dwp_test_1b.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dwp_test_1b.s
dwp_test_2.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
dwp_test_2.s
dwp_test_2.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dwp_test_main.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
dwp_test_main.s
dwp_test.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
dyn_weak_ref_1.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
dyn_weak_ref_2.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dyn_weak_ref.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dynamic_list_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dynamic_list_2.t Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
dynamic_list_lib1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dynamic_list_lib2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dynamic_list.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
dynamic_list.t
eh_test_2.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
eh_test_a.cc Fix problem where gold cannot build .eh_frame_hdr from ld -r output. 2016-03-20 19:17:14 -07:00
eh_test_b.cc Fix problem where gold cannot build .eh_frame_hdr from ld -r output. 2016-03-20 19:17:14 -07:00
ehdr_start_def.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ehdr_start_test_4.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ehdr_start_test.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ehdr_start_test.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
empty_command_line_test.sh Fix internal error from command line with unbalanced --start-lib/--end-lib. 2017-12-01 12:59:36 -08:00
exception_test_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
exception_test_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
exception_test_main.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
exception_test.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
exclude_libs_test_1.c
exclude_libs_test_2.c
exclude_libs_test_3.c
exclude_libs_test.c
exclude_libs_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
export_dynamic_plugin.cc Check for export dynamic symbol options when doing symbol resolution in plugins. 2017-09-20 15:45:04 -07:00
file_in_many_sections_test.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
file_in_many_sections.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
final_layout.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
final_layout.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gc_comdat_test_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gc_comdat_test_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gc_comdat_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gc_dynamic_list_test.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
gc_dynamic_list_test.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
gc_dynamic_list_test.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gc_orphan_section_test.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
gc_orphan_section_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gc_tls_test.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
gc_tls_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gdb_index_test_1.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
gdb_index_test_2_gabi.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gdb_index_test_2.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gdb_index_test_3.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gdb_index_test_3.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gdb_index_test_4.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gdb_index_test_comm.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
gdb_index_test.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
hidden_test_1.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
hidden_test_main.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
hidden_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
i386_mov_to_lea1.s Convert mov foo@GOT(%reg), %reg to lea foo@GOTOFF(%reg), %reg 2015-04-01 16:52:09 +03:00
i386_mov_to_lea2.s Convert mov foo@GOT(%reg), %reg to lea foo@GOTOFF(%reg), %reg 2015-04-01 16:52:09 +03:00
i386_mov_to_lea3.s Convert mov foo@GOT(%reg), %reg to lea foo@GOTOFF(%reg), %reg 2015-04-01 16:52:09 +03:00
i386_mov_to_lea4.s Convert mov foo@GOT(%reg), %reg to lea foo@GOTOFF(%reg), %reg 2015-04-01 16:52:09 +03:00
i386_mov_to_lea5.s Convert mov foo@GOT(%reg), %reg to lea foo@GOTOFF(%reg), %reg 2015-04-01 16:52:09 +03:00
i386_mov_to_lea.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
icf_keep_unique_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
icf_keep_unique_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
icf_preemptible_functions_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
icf_preemptible_functions_test.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
icf_safe_pie_test.sh Improved support for --icf=safe when used with -pie. 2017-02-15 00:37:10 -08:00
icf_safe_so_test.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
icf_safe_so_test.sh Add -e to test scripts where necessary. 2017-01-23 17:34:42 -08:00
icf_safe_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
icf_safe_test.sh Add -e to test scripts where necessary. 2017-01-23 17:34:42 -08:00
icf_sht_rel_addend_test_1.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
icf_sht_rel_addend_test_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
icf_sht_rel_addend_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
icf_string_merge_test.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
icf_string_merge_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
icf_test.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
icf_test.sh Add -e to test scripts where necessary. 2017-01-23 17:34:42 -08:00
icf_virtual_function_folding_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ifunc-sel.h * testsuite/ifunc-sel.h (ifunc_sel, ifunc_one): Mark 2013-03-07 05:31:44 +00:00
ifuncdep2.c Mark global with hidden attribute 2015-07-22 03:37:50 -07:00
ifuncmain1.c
ifuncmain1vis.c
ifuncmain2.c
ifuncmain3.c
ifuncmain4.c
ifuncmain5.c
ifuncmain6pie.c
ifuncmain7.c
ifuncmod1.c Mark global with hidden attribute 2015-07-22 03:37:50 -07:00
ifuncmod1.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ifuncmod3.c
ifuncmod5.c Mark global with hidden attribute 2015-07-22 03:37:50 -07:00
ifuncmod6.c
ifuncvar1.c
ifuncvar2.c
ifuncvar3.c
incr_comdat_test_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
incr_comdat_test_2_v1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
incr_comdat_test_2_v2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
incr_comdat_test_2_v3.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
incremental_test_1.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
incremental_test_2.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
incremental_test.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
initpri1.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
initpri2.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
initpri3.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
justsyms_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
justsyms_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
justsyms_exec.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
justsyms_lib.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
justsyms.t Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
keep_text_section_prefix.cc New option -z,keep-text-section prefix. 2018-03-07 12:15:49 -08:00
keep_text_section_prefix.sh New option -z,keep-text-section prefix. 2018-03-07 12:15:49 -08:00
large_symbol_alignment.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
large.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
leb128_unittest.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
Makefile.am Fix internal error caused by conflicting default version definitions. 2018-04-24 13:51:24 -07:00
Makefile.in Bump to autoconf 2.69 and automake 1.15.1 2018-06-19 16:55:06 -04:00
many_sections_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
memory_test_inc_1.t.src PR gold/18048: Fix INCLUDE directive support for gold 2015-03-21 19:54:15 -07:00
memory_test_inc_2.t.src PR gold/18048: Fix INCLUDE directive support for gold 2015-03-21 19:54:15 -07:00
memory_test_inc_3.t.src PR gold/18048: Fix INCLUDE directive support for gold 2015-03-21 19:54:15 -07:00
memory_test_inc.t PR gold/18048: Fix INCLUDE directive support for gold 2015-03-21 19:54:15 -07:00
memory_test.s
memory_test.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
memory_test.t
merge_string_literals_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
merge_string_literals_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
merge_string_literals.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
missing_key_func.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
missing_key_func.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
no_version_test.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
no_version_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
object_unittest.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
odr_header1.h
odr_header2.h
odr_violation1.cc
odr_violation2.cc Workaround GCC 7 bug with debug line numbers causing debug_msg.sh failure. 2017-12-01 22:53:08 -08:00
overflow_unittest.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
pie_copyrelocs_shared_test.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pie_copyrelocs_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_common_test_1.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
plugin_common_test_2.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_final_layout.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_final_layout.sh Add plugin API for processing plugin-added input files 2017-12-11 14:58:38 -08:00
plugin_layout_with_alignment.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_layout_with_alignment.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_new_section_layout.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
plugin_pr22868_a.c Fix case where IR file provides symbol visibility but replacement file does not. 2018-03-26 10:54:45 -07:00
plugin_pr22868_b.c Fix case where IR file provides symbol visibility but replacement file does not. 2018-03-26 10:54:45 -07:00
plugin_pr22868.sh Fix case where IR file provides symbol visibility but replacement file does not. 2018-03-26 10:54:45 -07:00
plugin_section_alignment.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
plugin_section_order.c [GOLD] testsuite/plugin_section_order.c fix 2017-04-27 11:54:29 +09:30
plugin_start_lib_test_2.c get_symbols() plugin API tweak to support --start-lib/--end-lib. 2016-03-03 11:42:13 -08:00
plugin_start_lib_test.c get_symbols() plugin API tweak to support --start-lib/--end-lib. 2016-03-03 11:42:13 -08:00
plugin_test_1.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_test_2.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
plugin_test_3.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_test_4.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_test_6.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_test_7_1.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_test_7_2.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
plugin_test_7.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_test_9b_elf.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_test_9b_ir.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_test_10.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
plugin_test_11.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
plugin_test_12.sh Check for export dynamic symbol options when doing symbol resolution in plugins. 2017-09-20 15:45:04 -07:00
plugin_test_defsym.c Fix symbol resolution with linker plugins for defsym symbols. 2018-02-15 17:35:16 -08:00
plugin_test_defsym.sh Fix symbol resolution with linker plugins for defsym symbols. 2018-02-15 17:35:16 -08:00
plugin_test_start_lib.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
plugin_test_tls.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
plugin_test_wrap_symbols_1.cc New plugin interface to get list of symbols wrapped with --wrap option. 2018-02-22 13:56:46 -08:00
plugin_test_wrap_symbols_2.cc New plugin interface to get list of symbols wrapped with --wrap option. 2018-02-22 13:56:46 -08:00
plugin_test_wrap_symbols.sh New plugin interface to get list of symbols wrapped with --wrap option. 2018-02-22 13:56:46 -08:00
plugin_test.c Fix internal error caused by conflicting default version definitions. 2018-04-24 13:51:24 -07:00
pr12826_1.s
pr12826_2.s
pr12826.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
pr14265.c
pr14265.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
pr14265.t
pr17704a_test.s Fix PR 17704. 2016-10-21 11:10:46 -07:00
pr18689.c Clear SHF_COMPRESSED flag bit from input to output 2015-07-20 10:14:35 -07:00
pr18689.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
pr20216_def.c gold: Support x86-64 TLS code sequences without PLT 2016-06-29 08:37:42 -07:00
pr20216_gd.S gold: Support x86-64 TLS code sequences without PLT 2016-06-29 08:37:42 -07:00
pr20216_ld.S gold: Support x86-64 TLS code sequences without PLT 2016-06-29 08:37:42 -07:00
pr20216_main.c gold: Support x86-64 TLS code sequences without PLT 2016-06-29 08:37:42 -07:00
pr20308_def.c gold: Support 386 TLS code sequences without PLT 2016-06-29 08:38:58 -07:00
pr20308_gd.S gold: Support 386 TLS code sequences without PLT 2016-06-29 08:38:58 -07:00
pr20308_ld.S gold: Support 386 TLS code sequences without PLT 2016-06-29 08:38:58 -07:00
pr20308_main.c gold: Support 386 TLS code sequences without PLT 2016-06-29 08:38:58 -07:00
pr20717.c Fix earlier ChangeLog entry to give Igor credit, add testcases. 2016-12-11 20:31:09 -08:00
pr20717.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
pr20717.t [GOLD] Adjust testcase for PowerPC64 2016-12-13 09:31:19 +10:30
pr20976.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
pr21430.s Fix misplacement of a relaxed section on AArch64. 2017-05-12 15:24:32 -07:00
pr21430.sh Fix misplacement of a relaxed section on AArch64. 2017-05-12 15:24:32 -07:00
pr22266_a.c gold: Add a newline at end of pr22266_a.c 2017-11-28 09:00:44 -08:00
pr22266_main.c Fix symbol values and relocation addends for relocatable links. 2017-11-27 17:32:55 -08:00
pr22266_script.t Fix symbol values and relocation addends for relocatable links. 2017-11-27 17:32:55 -08:00
pr23016_1.sh Fix problem where mixed section types can cause internal error during a -r link. 2018-04-02 19:07:04 -07:00
pr23016_1a.s Fix problem where mixed section types can cause internal error during a -r link. 2018-04-02 19:07:04 -07:00
pr23016_1b.s Fix problem where mixed section types can cause internal error during a -r link. 2018-04-02 19:07:04 -07:00
pr23016_2.sh Fix problem where mixed section types can cause internal error during a -r link. 2018-04-02 19:07:04 -07:00
pr23016_2a.s Fix problem where mixed section types can cause internal error during a -r link. 2018-04-02 19:07:04 -07:00
pr23016_2b.s Fix problem where mixed section types can cause internal error during a -r link. 2018-04-02 19:07:04 -07:00
protected_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
protected_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
protected_3.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
protected_4.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
protected_main_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
protected_main_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
protected_main_3.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
relro_script_test.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
relro_test_main.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
relro_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
relro_test.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
retain_symbols_file_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_1.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_1.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_1a.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_1b.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_2.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_2a.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_2b.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_3.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_3.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_4.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
script_test_4.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_5.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
script_test_5.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_5.t Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
script_test_6.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_6.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_7.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_7.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_8.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_9.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_9.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
script_test_9.t
script_test_10.s
script_test_10.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_10.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_11.h Don't compare symbol addresses directly 2015-07-22 03:38:00 -07:00
script_test_11.t gold/ 2013-04-15 16:34:12 +00:00
script_test_11a.c Don't compare symbol addresses directly 2015-07-22 03:38:00 -07:00
script_test_11b.c Don't compare symbol addresses directly 2015-07-22 03:38:00 -07:00
script_test_12.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_12a.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_12b.c Fix bug with grouping sections. 2016-06-23 09:45:25 -07:00
script_test_12i.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_13.c When using linker scripts, place linker-generated sections by the output section name. 2016-12-12 18:52:44 -08:00
script_test_13.sh Fix test cases to work for i386. 2017-01-11 11:26:26 -08:00
script_test_13.t When using linker scripts, place linker-generated sections by the output section name. 2016-12-12 18:52:44 -08:00
script_test_14.s Implement SORT_BY_INIT_PRIORITY. 2016-06-28 13:56:05 -07:00
script_test_14.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
script_test_14.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_15.c Fix problems with bss handling in linker scripts. 2016-12-11 17:31:25 -08:00
script_test_15a.sh Fix test cases to work for i386. 2017-01-11 11:26:26 -08:00
script_test_15a.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_15b.sh Fix test cases to work for i386. 2017-01-11 11:26:26 -08:00
script_test_15b.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
script_test_15c.sh Fix test cases to work for i386. 2017-01-11 11:26:26 -08:00
script_test_15c.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
searched_file_test_lib.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
searched_file_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
section_sorting_name.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
section_sorting_name.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
split_i386_1.s
split_i386_2.s
split_i386_3.s
split_i386_4.s
split_i386_n.s
split_i386.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
split_s390_1_a1.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390_1_a2.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390_1_n1.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390_1_n2.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390_1_z1.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390_1_z2.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390_1_z3.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390_1_z4.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390_2_ns.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390_2_s.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
split_s390x_1_a1.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390x_1_a2.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390x_1_n1.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390x_1_n2.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390x_1_z1.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390x_1_z2.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390x_1_z3.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390x_1_z4.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390x_2_ns.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_s390x_2_s.s gold: Add s390 -fsplit-stack support. 2016-02-15 11:59:25 +01:00
split_x32_1.s Handle stack split for x32 2015-01-06 15:38:25 -08:00
split_x32_2.s Handle stack split for x32 2015-01-06 15:38:25 -08:00
split_x32_3.s Handle stack split for x32 2015-01-06 15:38:25 -08:00
split_x32_4.s Handle stack split for x32 2015-01-06 15:38:25 -08:00
split_x32_n.s Handle stack split for x32 2015-01-06 15:38:25 -08:00
split_x32.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
split_x86_64_1.s
split_x86_64_2.s
split_x86_64_3.s
split_x86_64_4.s
split_x86_64_n.s
split_x86_64.sh gold/testsuite: Fix bad regexp in split_x86_64.sh 2018-03-27 18:51:22 -07:00
start_lib_test_1.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
start_lib_test_2.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
start_lib_test_3.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
start_lib_test_main.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
strong_ref_weak_def_1.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
strong_ref_weak_def_2.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
strong_ref_weak_def.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
test.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
test.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
testfile.cc Fix problem where mixed section types can cause internal error during a -r link. 2018-04-02 19:07:04 -07:00
testfile.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
testmain.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
text_section_grouping.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
text_section_grouping.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
text_unlikely_segment.cc New gold linker option -z,text-unlikely-segment. 2017-10-20 11:00:28 -07:00
text_unlikely_segment.sh New gold linker option -z,text-unlikely-segment. 2017-10-20 11:00:28 -07:00
thin_archive_main.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
thin_archive_test_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
thin_archive_test_2.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
thin_archive_test_3.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
thin_archive_test_4.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
thumb2_branch_range.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
thumb_bl_in_range.s
thumb_bl_out_of_range_local.s Align text section ends so that stub tables appears at expected addresses. 2015-07-06 15:02:40 -07:00
thumb_bl_out_of_range.s Align text section ends so that stub tables appears at expected addresses. 2015-07-06 15:02:40 -07:00
thumb_blx_in_range.s
thumb_blx_out_of_range.s Align text section ends so that stub tables appears at expected addresses. 2015-07-06 15:02:40 -07:00
thumb_branch_range.t Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tls_pie_test.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tls_test_c.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tls_test_file2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tls_test_main.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tls_test.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tls_test.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
two_file_shared.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
two_file_test_1_v1.cc Fix incremental linking failure with GCC 7+. 2017-12-01 22:03:09 -08:00
two_file_test_1.cc Fix incremental linking failure with GCC 7+. 2017-12-01 22:03:09 -08:00
two_file_test_1b_v1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
two_file_test_1b.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
two_file_test_2_tls.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
two_file_test_2_v1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
two_file_test_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
two_file_test_main.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
two_file_test_tls.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
two_file_test.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
undef_symbol_main.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
undef_symbol.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
undef_symbol.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_matching_def.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_matching_test.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ver_test_1.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_1.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ver_test_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_2.script Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_2.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_3.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_4.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ver_test_4.script Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ver_test_4.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_5.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_5.script Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_5.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_6.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ver_test_7.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_7.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_8.script Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ver_test_8.sh [GOLD] Fix tests for powerpc64 2017-01-10 11:50:07 +10:30
ver_test_9.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_10.script Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ver_test_10.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
ver_test_13.c Fix symbol versioning problems in PR 18703. 2015-08-18 19:24:41 -07:00
ver_test_13.script Fix symbol versioning problems in PR 18703. 2015-08-18 19:24:41 -07:00
ver_test_13.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_main_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_main.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
ver_test_pr16504_a.c Fix internal error caused by conflicting default version definitions. 2018-04-24 13:51:24 -07:00
ver_test_pr16504_a.script Fix internal error caused by conflicting default version definitions. 2018-04-24 13:51:24 -07:00
ver_test_pr16504_b.c Fix internal error caused by conflicting default version definitions. 2018-04-24 13:51:24 -07:00
ver_test_pr16504_b.script Fix internal error caused by conflicting default version definitions. 2018-04-24 13:51:24 -07:00
ver_test_pr16504.sh Fix internal error caused by conflicting default version definitions. 2018-04-24 13:51:24 -07:00
ver_test.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
version_script.map
weak_alias_test_1.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
weak_alias_test_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_alias_test_3.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_alias_test_4.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_alias_test_5.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_alias_test_main.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_alias_test.script
weak_plt_main.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_plt_shared.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_plt.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
weak_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_undef_file1.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
weak_undef_file2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_undef_file3.cc Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
weak_undef_file4.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_undef_test_2.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_undef_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_undef.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
weak_unresolved_symbols_test.cc Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
x32_overflow_pc32.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
x86_64_indirect_call_to_direct1.s Convert indirect calls to direct when possible. 2016-06-28 15:42:33 -07:00
x86_64_indirect_call_to_direct.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
x86_64_indirect_jump_to_direct1.s Convert indirect calls to direct when possible. 2016-06-28 15:42:33 -07:00
x86_64_mov_to_lea1.s [Gold,x86_64] Convert mov foo@GOTPCREL(%rip), %reg to lea foo(%rip), %reg 2015-04-06 12:37:34 +03:00
x86_64_mov_to_lea2.s [Gold,x86_64] Convert mov foo@GOTPCREL(%rip), %reg to lea foo(%rip), %reg 2015-04-06 12:37:34 +03:00
x86_64_mov_to_lea3.s [Gold,x86_64] Convert mov foo@GOTPCREL(%rip), %reg to lea foo(%rip), %reg 2015-04-06 12:37:34 +03:00
x86_64_mov_to_lea4.s [Gold,x86_64] Convert mov foo@GOTPCREL(%rip), %reg to lea foo(%rip), %reg 2015-04-06 12:37:34 +03:00
x86_64_mov_to_lea.sh Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
x86_64_overflow_pc32.s Fix overflow checking for 32-bit pc-relative relocations on x32. 2016-02-06 14:47:05 -08:00
x86_64_overflow_pc32.sh Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30