From: dougkwan Date: Mon, 1 Jun 2009 19:41:08 +0000 (+0000) Subject: 2009-06-01 Doug Kwan X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=351f7ac7be158ac405178c5789148c4537cda2e4 2009-06-01 Doug Kwan * configure.ac: Support gold for target arm*-*-*. * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148064 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/ChangeLog b/ChangeLog index f8557fc3574..7a24f1cc41a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-06-01 Doug Kwan + + * configure.ac: Support gold for target arm*-*-*. + * configure: Regenerate. + 2009-05-29 Kaveh R. Ghazi * Makefile.def: Add MPC support and dependencies. diff --git a/configure b/configure index 9b82cffcb39..d7febfe4117 100755 --- a/configure +++ b/configure @@ -2083,7 +2083,7 @@ if test "${ENABLE_GOLD}" = "yes"; then if test "$is_elf" = "yes"; then # Check for target supported by gold. case "${target}" in - i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-*) + i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-* | arm*-*-*) configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`" ;; esac diff --git a/configure.ac b/configure.ac index 1b3d82e9b06..9f280a5a4af 100644 --- a/configure.ac +++ b/configure.ac @@ -318,7 +318,7 @@ if test "${ENABLE_GOLD}" = "yes"; then if test "$is_elf" = "yes"; then # Check for target supported by gold. case "${target}" in - i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-*) + i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-* | arm*-*-*) configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`" ;; esac