diff options
author | Jing Yu <jingyu@google.com> | 2014-10-03 17:38:00 +0000 |
---|---|---|
committer | Jing Yu <jingyu@gcc.gnu.org> | 2014-10-03 17:38:00 +0000 |
commit | 7705dfd11ffaabc5eeb7e7da66e138258a6594ea (patch) | |
tree | 8a610e22facb7318829560098856d830d5fc81c9 | |
parent | b2cb98ed66787bd0050286d705d2ca9c9d86c41c (diff) | |
download | gcc-7705dfd11ffaabc5eeb7e7da66e138258a6594ea.zip gcc-7705dfd11ffaabc5eeb7e7da66e138258a6594ea.tar.gz gcc-7705dfd11ffaabc5eeb7e7da66e138258a6594ea.tar.bz2 |
Add aarch64 to list of targets that support gold.
2014-09-18 Jing Yu <jingyu@google.com>
* configure.ac: Add aarch64 to list of targets that support gold.
* configure: Regenerate.
From-SVN: r215865
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.ac | 3 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2014-10-03 Jing Yu <jingyu@google.com> + + * configure.ac: Add aarch64 to list of targets that support gold. + * configure: Regenerate. + 2014-09-29 François Dumont <fdumont@gcc.gnu.org> * MAINTAINERS: Add myself as libstdc++ special modes maintainer. @@ -2940,7 +2940,8 @@ case "${ENABLE_GOLD}" in if test "$is_elf" = "yes"; then # Check for target supported by gold. case "${target}" in - i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-* | arm*-*-* | tilegx*-*-*) + i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-* | arm*-*-* \ + | aarch64*-*-* | tilegx*-*-*) configdirs="$configdirs gold" if test x${ENABLE_GOLD} = xdefault; then default_ld=gold diff --git a/configure.ac b/configure.ac index 2dc657f..e4566a1 100644 --- a/configure.ac +++ b/configure.ac @@ -331,7 +331,8 @@ case "${ENABLE_GOLD}" in if test "$is_elf" = "yes"; then # Check for target supported by gold. case "${target}" in - i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-* | arm*-*-* | tilegx*-*-*) + i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-* | arm*-*-* \ + | aarch64*-*-* | tilegx*-*-*) configdirs="$configdirs gold" if test x${ENABLE_GOLD} = xdefault; then default_ld=gold |