vapier 15/04/21 01:22:34 Modified: README.history Added: 20_all_gold-mips.patch Log: fix from upstream to enable mips/gold
Revision Changes Path 1.2 src/patchsets/binutils/2.25/README.history file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.25/README.history?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.25/README.history?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.25/README.history?r1=1.1&r2=1.2 Index: README.history =================================================================== RCS file: /var/cvsroot/gentoo/src/patchsets/binutils/2.25/README.history,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- README.history 9 Feb 2015 15:46:06 -0000 1.1 +++ README.history 21 Apr 2015 01:22:34 -0000 1.2 @@ -1,3 +1,6 @@ +1.1 20 Apr 2015 + + 20_all_gold-mips.patch + 1.0 09 Feb 2015 + 12_all_sh-targets.patch + 30_all_binutils-2.22.52.0.2-flexible-tests.patch 1.1 src/patchsets/binutils/2.25/20_all_gold-mips.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.25/20_all_gold-mips.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.25/20_all_gold-mips.patch?rev=1.1&content-type=text/plain Index: 20_all_gold-mips.patch =================================================================== https://gcc.gnu.org/ml/gcc-patches/2014-10/msg01946.html >From 653a51f66bbe121e5f77882bf9f9a4c1f827ed45 Mon Sep 17 00:00:00 2001 From: Cary Coutant <[email protected]> Date: Mon, 20 Oct 2014 10:31:36 -0700 Subject: [PATCH] Add top-level config support for gold mips target This patch adds support for the mips target in gold. 2014-10-20 Cary Coutant <[email protected]> * configure (--enable-gold): Add mips*-*-*. * configure.ac: Regenerate. --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 97250fa..2549945 100755 --- a/configure +++ b/configure @@ -2970,7 +2970,7 @@ case "${ENABLE_GOLD}" in # Check for target supported by gold. case "${target}" in i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-* | arm*-*-* \ - | aarch64*-*-* | tilegx*-*-*) + | aarch64*-*-* | tilegx*-*-* | mips*-*-*) configdirs="$configdirs gold" if test x${ENABLE_GOLD} = xdefault; then default_ld=gold diff --git a/configure.ac b/configure.ac index ef5f5b1..0fe176b 100644 --- a/configure.ac +++ b/configure.ac @@ -351,7 +351,7 @@ case "${ENABLE_GOLD}" in # Check for target supported by gold. case "${target}" in i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-* | arm*-*-* \ - | aarch64*-*-* | tilegx*-*-*) + | aarch64*-*-* | tilegx*-*-* | mips*-*-*) configdirs="$configdirs gold" if test x${ENABLE_GOLD} = xdefault; then default_ld=gold -- 2.3.5
