diff options
author | David S. Miller <davem@davemloft.net> | 2008-06-12 17:13:12 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2008-06-12 13:13:12 -0400 |
commit | 01b79d1165836671e8d2688f32b6f9eb568f80c3 (patch) | |
tree | 2f1d25989fe0d779fa2e67017b312ca957cbb6a2 | |
parent | 0b7c73cc04cdd1d1c86fe713d6b7863d969aaf38 (diff) | |
download | gcc-01b79d1165836671e8d2688f32b6f9eb568f80c3.tar.gz |
configure.ac: Add powerpc*-*-* to gold supported targets.
2008-06-12 David S. Miller <davem@davemloft.net>
David Edelsohn <edelsohn@gnu.org>
* configure.ac: Add powerpc*-*-* to gold supported targets.
* configure: Regenerate.
Co-Authored-By: David Edelsohn <edelsohn@gnu.org>
From-SVN: r136717
-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 |