[go-nuts] Re: [golang-dev] Gomobile and future interoperability

2016-09-14 Thread David Crawshaw
-golang-dev (which is for discussing the development of Go), +golang-nuts I'm not sure I follow your question. The Android NDK has platform version targets which correspond to particular versions of Android. If you build against a target, you can run on that version of Android or newer. The

[go-nuts] Re: [golang-dev] Gomobile and future interoperability

2016-09-14 Thread David Crawshaw
k that was kit kat), then any android version > above that will work ? > I am thinking of aiming low initially and see how well that works for the > developers calling it from their Java and Swift GUI layers. > > G > > > > On Wed, 14 Sep 2016 at 15:34 David Crawshaw <craw

Re: [go-nuts] Ivy crashes on iOS 10

2016-09-20 Thread David Crawshaw
I'm going to look into pushing a new version with 1.7. On Mon, Sep 19, 2016 at 10:39 AM, Jan Mercl <0xj...@gmail.com> wrote: > On Mon, Sep 19, 2016 at 3:58 PM wrote: > >> Anybody with same experiences? > > https://github.com/robpike/ivy/issues/29 > > -- > > -j > > -- >

Re: [go-nuts] "plugin was built with a different version..."

2016-12-16 Thread David Crawshaw
t; somewhere? I didn't see one in the proposal repo. > > On Wednesday, December 14, 2016 at 2:15:32 PM UTC-5, David Crawshaw wrote: >> >> The hash is a SHA1 of the package object data, generated by the >> linker, cmd/link. The hash is created in the function genhash, and >&

Re: [go-nuts] "plugin was built with a different version..."

2016-12-14 Thread David Crawshaw
The hash is a SHA1 of the package object data, generated by the linker, cmd/link. The hash is created in the function genhash, and placed in the moduledata in the symtab method. Using a hash of the object data means a plugin has to be compiled against exactly the same package as the host binary.

[go-nuts] Re: Why is Shiny's text rendering quantizes to the pixel grid?

2017-09-15 Thread David Crawshaw
On Fri, Sep 15, 2017 at 7:35 AM, Elias Naur wrote: > Hi, > > Working on a immediate mode fork of Shiny, Neat. > I ran into this comment: > > // We round up the ascent and descent separately, instead of asking for > // the metrics' height, since we quantize the baseline to

Re: [go-nuts] Remove GOPATH from binary

2017-09-15 Thread David Crawshaw
This may be https://golang.org/issue/21720. Does it work with Go 1.8? On Fri, Sep 15, 2017 at 12:48 AM, Chandru wrote: > How do I remove the actual value of GOPATH from executable binary? > > I tried the following command, but my home directory continued to appear > when I

Re: [go-nuts] TCP writes without a corresponding read?

2017-10-22 Thread David Crawshaw
With TCP a successful write means the bytes are now managed by your network stack. If there are no permanent errors, then it will get those bytes to the other end of the TCP connection eventually. A successful write is not a receipt from the other end. On Sun, Oct 22, 2017 at 4:50 AM, Matt