Re: libgo patch committed: Update to Go 1.4

2015-01-20 Thread Rainer Orth
Ian Lance Taylor writes: > On Mon, Jan 19, 2015 at 4:17 AM, Rainer Orth > wrote: >> Ian Lance Taylor writes: >> >>> On Thu, Jan 15, 2015 at 8:30 AM, Rainer Orth >>> wrote: Apart from that, bootstrap fails in gotools: due to the use of -static-libgo, all commands there fail to li

Re: libgo patch committed: Update to Go 1.4

2015-01-19 Thread Ian Lance Taylor
On Mon, Jan 19, 2015 at 4:17 AM, Rainer Orth wrote: > Ian Lance Taylor writes: > >> On Thu, Jan 15, 2015 at 8:30 AM, Rainer Orth >> wrote: >>> >>> Apart from that, bootstrap fails in gotools: due to the use of >>> -static-libgo, all commands there fail to link since the socket >>> functions are

Re: libgo patch committed: Update to Go 1.4

2015-01-19 Thread Rainer Orth
Ian Lance Taylor writes: > On Thu, Jan 15, 2015 at 8:30 AM, Rainer Orth > wrote: >> >> Apart from that, bootstrap fails in gotools: due to the use of >> -static-libgo, all commands there fail to link since the socket >> functions are missing. It seems like $LIBS from libgo needs to be added >>

Re: libgo patch committed: Update to Go 1.4

2015-01-16 Thread Ian Lance Taylor
On Fri, Jan 16, 2015 at 1:06 AM, Rainer Orth wrote: > Ian Lance Taylor writes: > >> On Thu, Jan 15, 2015 at 8:30 AM, Rainer Orth >> wrote: >>> >>> This (and perhaps the previous gotools) patch broke Solaris bootstrap: >>> >>> /vol/gcc/src/hg/trunk/local/libgo/go/net/tcpsockopt_unix.go:23:73: err

Re: libgo patch committed: Update to Go 1.4

2015-01-16 Thread Rainer Orth
Ian Lance Taylor writes: > On Thu, Jan 15, 2015 at 8:30 AM, Rainer Orth > wrote: >> >> This (and perhaps the previous gotools) patch broke Solaris bootstrap: >> >> /vol/gcc/src/hg/trunk/local/libgo/go/net/tcpsockopt_unix.go:23:73: error: >> reference to undefined identifier 'syscall.TCP_KEEPINTV

Re: libgo patch committed: Update to Go 1.4

2015-01-15 Thread Ian Lance Taylor
On Thu, Jan 15, 2015 at 8:30 AM, Rainer Orth wrote: > > Apart from that, bootstrap fails in gotools: due to the use of > -static-libgo, all commands there fail to link since the socket > functions are missing. It seems like $LIBS from libgo needs to be added > somewhere, but I'm unsure how best t

Re: libgo patch committed: Update to Go 1.4

2015-01-15 Thread Ian Lance Taylor
On Thu, Jan 15, 2015 at 8:30 AM, Rainer Orth wrote: > > This (and perhaps the previous gotools) patch broke Solaris bootstrap: > > /vol/gcc/src/hg/trunk/local/libgo/go/net/tcpsockopt_unix.go:23:73: error: > reference to undefined identifier 'syscall.TCP_KEEPINTVL' > if err := syscall.Setsockopt

Re: libgo patch committed: Update to Go 1.4

2015-01-15 Thread Ian Lance Taylor
On Thu, Jan 15, 2015 at 9:45 AM, Jakub Jelinek wrote: > On Thu, Jan 15, 2015 at 01:58:43PM +0100, Richard Biener wrote: >> [ 5286s] ../../../libgo/go/reflect/makefuncgo_s390x.go:323:5: error: >> expected '; >> ' or '}' or newline >> [ 5286s]} else { >> [ 5286s] ^ > > Bet that > } else {

Re: libgo patch committed: Update to Go 1.4

2015-01-15 Thread Jakub Jelinek
On Thu, Jan 15, 2015 at 01:58:43PM +0100, Richard Biener wrote: > [ 5286s] ../../../libgo/go/reflect/makefuncgo_s390x.go:323:5: error: expected > '; > ' or '}' or newline > [ 5286s]} else { > [ 5286s] ^ Bet that } else { line should have been replaced with default: Jakub

Re: libgo patch committed: Update to Go 1.4

2015-01-15 Thread Rainer Orth
Ian Lance Taylor writes: > I've committed a patch to libgo to update it to the Go 1.4 release, > except for the runtime package. Much of the runtime package was > rewritten in Go, and it does not really affect users of the library, > so I've postponed that complex merge. All the other packages

Re: libgo patch committed: Update to Go 1.4

2015-01-15 Thread Richard Biener
On Thu, Jan 15, 2015 at 1:28 AM, Ian Lance Taylor wrote: > I've committed a patch to libgo to update it to the Go 1.4 release, > except for the runtime package. Much of the runtime package was > rewritten in Go, and it does not really affect users of the library, > so I've postponed that complex