diff mbox

libgo patch committed: Recognize arm64

Message ID 52D6A819.5020105@debian.org
State New
Headers show

Commit Message

Matthias Klose Jan. 15, 2014, 3:24 p.m. UTC
Am 06.01.2014 20:24, schrieb Ian Lance Taylor:
> This libgo patch from Michael Hudson-Doyle recognizes arm64 as the Go
> name for the AArch64 architecture.  Bootstrapped and ran Go testsuite on
> x86_64-unknown-linux-gnu.  Committed to mainline.

this missed the one reference to the goarch in the gcc testsuite. Ok to commit?

  Matthias
gcc/testsuite/

2014-01-15  Matthias Klose  <doko@ubuntu.com>

	* go.test/go-test.exp: Set goarch for aarch64*-*-*.

Comments

Ian Lance Taylor Jan. 15, 2014, 3:29 p.m. UTC | #1
On Wed, Jan 15, 2014 at 7:24 AM, Matthias Klose <doko@debian.org> wrote:
> Am 06.01.2014 20:24, schrieb Ian Lance Taylor:
>> This libgo patch from Michael Hudson-Doyle recognizes arm64 as the Go
>> name for the AArch64 architecture.  Bootstrapped and ran Go testsuite on
>> x86_64-unknown-linux-gnu.  Committed to mainline.
>
> this missed the one reference to the goarch in the gcc testsuite. Ok to commit?

Yes, thanks.

Ian
diff mbox

Patch

Index: gcc/testsuite/go.test/go-test.exp
===================================================================
--- gcc/testsuite/go.test/go-test.exp	(revision 206629)
+++ gcc/testsuite/go.test/go-test.exp	(working copy)
@@ -187,6 +187,9 @@ 
     global target_triplet
 
     switch -glob $target_triplet {
+	"aarch64*-*-*" {
+	    set goarch "arm64"
+	}
 	"alpha*-*-*" {
 	    set goarch "alpha"
 	}