I am getting *build ID mismatch* and here <https://github.com/shurcooL/binstale/issues/11> 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" ) func main() { gtk.Init(&os.Args) //Main Window Configuration window, err := gtk.WindowNew(gtk.WINDOW_TOPLEVEL) if err != nil { panic(err) } window.SetTitle("Notes") window.SetSizeRequest(1000, 800) window.Connect("destroy", gtk.MainQuit) window.ShowAll() gtk.Main() } On Friday, July 14, 2017 at 4:55:18 PM UTC+3, Ian Lance Taylor wrote: > > On Fri, Jul 14, 2017 at 6:27 AM, <suburb...@gmail.com <javascript:>> > wrote: > > Hey, > > > > I formatted my OS and now i am having a problem that was not present > before. > > I am trying to use gotk3 and when i try to install it i run > > > > go install -v -tags gtk_3_18 > > > > It used to only rebuild (correct me if im using a wrong verb here) the > > main.go file as it was the only one modified, but now it rebuilds the > gtk > > and gdk packages every time. I checked and the .a files are present in > the > > package dir. Does anyone have any idea why this is happening ? > > Try `go list -f '{{ .StaleReason }}' PKG` to see why it is rebuilding a > package. > > Ian > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.