Re: [PATCH] Set goarch to ppc64le where needed for gccgo testing

2014-11-21 Thread Ian Lance Taylor
On Wed, Nov 19, 2014 at 12:55 PM, Lynn A. Boger wrote: > Updated patch: Thanks. Committed. Ian > On 11/19/2014 09:01 AM, Lynn A. Boger wrote: >> >> Hi, >> >> This change goes along with the change to the GOARCH setting in gccgo for >> ppc64le which will be done in gofrontend. The description

Re: [PATCH] Set goarch to ppc64le where needed for gccgo testing

2014-11-19 Thread Lynn A. Boger
Updated patch: Index: gcc/testsuite/go.test/go-test.exp === --- gcc/testsuite/go.test/go-test.exp (revision 217768) +++ gcc/testsuite/go.test/go-test.exp (working copy) @@ -241,7 +241,11 @@ proc go-set-goarch { } { if

Re: [PATCH] Set goarch to ppc64le where needed for gccgo testing

2014-11-19 Thread Lynn A. Boger
Sorry. I ran 'make check-go' assuming it ran both m32 and m64 on a ppc64 machine. I'll fix and retest. On 11/19/2014 10:08 AM, Segher Boessenkool wrote: On Wed, Nov 19, 2014 at 09:01:35AM -0600, Lynn A. Boger wrote: + "powerpc-*-*" { + set goarch "ppc" } + "pow

Re: [PATCH] Set goarch to ppc64le where needed for gccgo testing

2014-11-19 Thread Segher Boessenkool
On Wed, Nov 19, 2014 at 09:01:35AM -0600, Lynn A. Boger wrote: > + "powerpc-*-*" { > + set goarch "ppc" > } > + "powerpc64-*-*" { > + set goarch "ppc64" > + } > + "powerpc64le-*-*" { > + set goarch "ppc64le" > + } I don't think th