diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-12 17:13:12 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-12 17:13:12 +0000 |
commit | 607465f2daed15963ecaae09eb5691d3609ffcd7 (patch) | |
tree | 2f1d25989fe0d779fa2e67017b312ca957cbb6a2 | |
parent | bfa57d81a1dd384739bbddb5daa8e5ea4b5433c1 (diff) | |
download | gcc-607465f2daed15963ecaae09eb5691d3609ffcd7.tar.gz |
2008-06-12 David S. Miller <davem@davemloft.net>
David Edelsohn <edelsohn@gnu.org>
* configure.ac: Add powerpc*-*-* to gold supported targets.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@136717 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 9f8d407867f..7cb5a09a18f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-06-12 David S. Miller <davem@davemloft.net> + David Edelsohn <edelsohn@gnu.org> + + * configure.ac: Add powerpc*-*-* to gold supported targets. + * configure: Regenerate. + 2008-06-08 Joseph Myers <joseph@codesourcery.com> PR tree-optimization/36218 diff --git a/configure b/configure index 213befb5751..5f635461135 100755 --- a/configure +++ b/configure @@ -2057,7 +2057,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*-*-*) + i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-*) configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`" ;; esac diff --git a/configure.ac b/configure.ac index 3b443e5a509..175de11b607 100644 --- a/configure.ac +++ b/configure.ac @@ -317,7 +317,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*-*-*) + i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-*) configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`" ;; esac |