diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-12-06 05:32:49 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-12-06 05:32:49 +0000 |
commit | 9961856c3acb8e7d9def11b58001db6af9f14253 (patch) | |
tree | 1da94d2588d9cc166c8d3dc247d98a1a0b95e673 /libgo | |
parent | 4e22a7ea428eadf56e3e6f53423d51d08d919923 (diff) | |
download | gcc-9961856c3acb8e7d9def11b58001db6af9f14253.zip gcc-9961856c3acb8e7d9def11b58001db6af9f14253.tar.gz gcc-9961856c3acb8e7d9def11b58001db6af9f14253.tar.bz2 |
re PR go/92810 (Compiling GCC go for aarch64_be-marvell-linux-gnu fails)
PR go/92810
libgo: recognize aarch64_be as arm64be
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/210038
From-SVN: r279032
Diffstat (limited to 'libgo')
-rwxr-xr-x | libgo/configure | 3 | ||||
-rw-r--r-- | libgo/configure.ac | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libgo/configure b/libgo/configure index ba80569..6a65a60 100755 --- a/libgo/configure +++ b/libgo/configure @@ -14056,6 +14056,9 @@ case ${host} in aarch64-*-*) GOARCH=arm64 ;; + aarch64_be-*-*) + GOARCH=arm64be + ;; arm*-*-* | strongarm*-*-* | ep9312*-*-* | xscale-*-*) GOARCH=arm case ${host} in diff --git a/libgo/configure.ac b/libgo/configure.ac index 00b4054..d4ee59c 100644 --- a/libgo/configure.ac +++ b/libgo/configure.ac @@ -240,6 +240,9 @@ case ${host} in aarch64-*-*) GOARCH=arm64 ;; + aarch64_be-*-*) + GOARCH=arm64be + ;; arm*-*-* | strongarm*-*-* | ep9312*-*-* | xscale-*-*) GOARCH=arm case ${host} in |