Re: [go-nuts] Go install recreates .a files that are already present in the pkg directory

2017-07-14 Thread Martin Spasov
I am getting *build ID mismatch* and here I see that it means that something has changed in the package, but I have not modified it in any way. Below is the whole application : package main import ( "os" "github.com/gotk3/gotk3/gtk" ) f

Re: [go-nuts] Go install recreates .a files that are already present in the pkg directory

2017-07-14 Thread Martin Spasov
I am getting *build ID mismatch* and here I see that it means that something has changed in the package, but I have not modified it in any way. Below is the whole application : package main import ( "os" "github.com/gotk3/gotk3/gtk" ) f

Re: [go-nuts] Installing a package

2017-07-02 Thread Martin Spasov
pkg install location. On Mon, Jul 3, 2017, 9:02 AM Martin Spasov wrote: Does that mean that it is not possible to chose where you want to install the pkg ? On Mon, Jul 3, 2017 at 12:00 AM, Matt Harden wrote: I believe it's the first folder in GOPATH, not the last. On Sun, Jul 2, 2017 at

Re: [go-nuts] Installing a package

2017-07-02 Thread Martin Spasov
Does that mean that it is not possible to chose where you want to install the pkg ? On Mon, Jul 3, 2017 at 12:00 AM, Matt Harden wrote: I believe it's the first folder in GOPATH, not the last. On Sun, Jul 2, 2017 at 1:21 PM wrote: From what I found here when you install packages with go get,