diff options
author | Yufeng Zhang <yufeng.zhang@arm.com> | 2013-02-15 17:45:54 +0000 |
---|---|---|
committer | Yufeng Zhang <yufeng@gcc.gnu.org> | 2013-02-15 17:45:54 +0000 |
commit | 4dddfc74f331653b453b9123ecf3c93a58a9aade (patch) | |
tree | b9242430bd263a4907912d34488d8c5aa5eadd65 | |
parent | 52d95c2127d392462f88ae5ca87358f81c514e2c (diff) | |
download | gcc-4dddfc74f331653b453b9123ecf3c93a58a9aade.zip gcc-4dddfc74f331653b453b9123ecf3c93a58a9aade.tar.gz gcc-4dddfc74f331653b453b9123ecf3c93a58a9aade.tar.bz2 |
configure.ac: Set libgloss_dir for the aarch64*-*-* targets.
* configure.ac: Set libgloss_dir for the aarch64*-*-* targets.
* configure: Regenerated.
From-SVN: r196083
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.ac | 3 |
3 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com> + + * configure.ac: Set libgloss_dir for the aarch64*-*-* targets. + * configure: Regenerated. + 2013-02-04 David Edelsohn <dje.gcc@gmail.com> * MAINTAINERS: Explicitly add myself as AIX maintainer. @@ -3437,6 +3437,9 @@ case "${target}" in sh*-*-pe|mips*-*-pe|*arm-wince-pe) libgloss_dir=wince ;; + aarch64*-*-* ) + libgloss_dir=aarch64 + ;; arm*-*-*) libgloss_dir=arm ;; diff --git a/configure.ac b/configure.ac index f2be8ab..48ec1aa 100644 --- a/configure.ac +++ b/configure.ac @@ -776,6 +776,9 @@ case "${target}" in sh*-*-pe|mips*-*-pe|*arm-wince-pe) libgloss_dir=wince ;; + aarch64*-*-* ) + libgloss_dir=aarch64 + ;; arm*-*-*) libgloss_dir=arm ;; |