aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Kwan <dougkwan@google.com>2009-06-01 19:41:08 +0000
committerDoug Kwan <dougkwan@gcc.gnu.org>2009-06-01 19:41:08 +0000
commit7f1245dffdf167551d9fb379f94370b053de5c30 (patch)
tree0583105bfb43152cbc43b7a99588f324b5e274af
parentdf0026a75e538e8bd59d6ed8c91e2e4fdb60d0db (diff)
downloadgcc-7f1245dffdf167551d9fb379f94370b053de5c30.zip
gcc-7f1245dffdf167551d9fb379f94370b053de5c30.tar.gz
gcc-7f1245dffdf167551d9fb379f94370b053de5c30.tar.bz2
configure.ac: Support gold for target arm*-*-*.
2009-06-01 Doug Kwan <dougkwan@google.com> * configure.ac: Support gold for target arm*-*-*. * configure: Regenerate. From-SVN: r148064
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f8557fc..7a24f1c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-01 Doug Kwan <dougkwan@google.com>
+
+ * configure.ac: Support gold for target arm*-*-*.
+ * configure: Regenerate.
+
2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.def: Add MPC support and dependencies.
diff --git a/configure b/configure
index 9b82cff..d7febfe 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 1b3d82e..9f280a5 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