You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lot of go programs use https://github.com/tools/godep for dependency management, which also provides a "wrapper" command (godep go build, godep go test, etc) for manipulating GOPATH. Dunno if this is possible, but it would be very handy to be able to godebug projects that use godep.
The text was updated successfully, but these errors were encountered:
Good point, thanks! godebug could have an option to use an arbitrary wrapper instead of the go command. The two tricky parts that come to mind now are: (1) The initial parsing and type-checking of the program, for which there is probably no godep wrapper command, and (2) Multiple tools manipulating GOPATH could easily run into problems related to this.
A lot of go programs use https://github.com/tools/godep for dependency management, which also provides a "wrapper" command (godep go build, godep go test, etc) for manipulating
GOPATH
. Dunno if this is possible, but it would be very handy to be able to godebug projects that use godep.The text was updated successfully, but these errors were encountered: