diff --git a/ChangeLog b/ChangeLog index b91cfce04..adacc3d17 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-05-28 Doug Kwan + + * configure.ac: Support gold for target arm*-*-*. + * configure: Regenerate. + 2009-05-27 Alexandre Oliva * Makefile.tpl (all): Avoid harmless warning in make all when diff --git a/configure b/configure index 8559109b6..d750b42bf 100755 --- a/configure +++ b/configure @@ -2077,7 +2077,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 ee63082d6..ba45bd5d8 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