diff options
author | Jing Yu <jingyu@google.com> | 2014-10-03 14:48:14 -0700 |
---|---|---|
committer | Jing Yu <jingyu@google.com> | 2014-10-03 14:48:14 -0700 |
commit | 6d26190c13397c3bfadac3b65d46ef47523aaff7 (patch) | |
tree | d297d74fbef9732e84a79ce38f58f13cb0475425 /configure.ac | |
parent | 9b807e7bbbc55168e91c262c98fd09397482f9c9 (diff) | |
download | gdb-6d26190c13397c3bfadac3b65d46ef47523aaff7.zip gdb-6d26190c13397c3bfadac3b65d46ef47523aaff7.tar.gz gdb-6d26190c13397c3bfadac3b65d46ef47523aaff7.tar.bz2 |
Add aarch64 to list of targets that support gold.
This patch was committed to GCC trunk as revision 215865.
2014-10-03 Jing Yu <jingyu@google.com>
* configure.ac: Add aarch64 to list of targets that support gold.
* configure: Regenerate.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index fe2fda3..4bb4865 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 |