[go-nuts] Re: Cache or tmp file used by golang compiler?

2017-04-11 Thread timothy . vanheest
I've run into a similar problem a few times. Each time I ran across this article, but each time it was something like the following: * Compiler says something like: `reindex/reindex.go:367: undefined: utils.EsDataTypeMap` * I check the line, `utils.EsDataTypeMap` is not there. The line is `da

[go-nuts] Re: Cache or tmp file used by golang compiler?

2016-12-14 Thread ddxgz19880813
I found my problem was caused by an unsuccessfully exited process. Thanks for your help anyway. 在 2016年12月14日星期三 UTC+1上午1:25:48,Dave Cheney写道: > > Try go install -v, you'll find the program in $GOPATH/bin. If you get no > lines of output, then the program is up to date. > > On Wednesday, 14 Dece

[go-nuts] Re: Cache or tmp file used by golang compiler?

2016-12-13 Thread Dave Cheney
Try go install -v, you'll find the program in $GOPATH/bin. If you get no lines of output, then the program is up to date. On Wednesday, 14 December 2016 11:14:06 UTC+11, ddxgz1...@gmail.com wrote: > > Hi Uriel, > > How did you solve this problem? Because I'm facing the same. > > 在 2015年8月12日星期三 U

[go-nuts] Re: Cache or tmp file used by golang compiler?

2016-12-13 Thread ddxgz19880813
Hi Uriel, How did you solve this problem? Because I'm facing the same. 在 2015年8月12日星期三 UTC+2上午10:29:39,Uriel Fanelli写道: > > > Hi all > > I am facing a strange behavior in "go build" process. > > What I am doing is , from time to time, to do a git pull from a github > repository and recompile th