Athir Nuaimi
Athir Nuaimi
I've opened issue #88 for a related (but different) item. Unfortunately, @meowssir suggestion does not work for #88.
Believe the issue is that the file loader.go (_workspace/src/golang.org/x/tools/loader/loagergo) does not support vendoring. it needs to be enhanced add the vendored directories to ImportPath
I have some more information. for some reason the file /usr/local/go//src/net/http/h2_bundle.go has an include for `golang_org/x/net/http2/hpack`. Not sure why is golang_org rather golang.org.
I believe it has something to do with this bug https://github.com/golang/go/issues/16333. Still don't understand why building the code normally works but it fails with godebug
OK, I found where the golang_org directory is. It's vendor in go 1.7 (/usr/local/go/src/vendor/golang_org/). So the issues is that when I use godebug, it's not supporting the vendoring directory. If...
+1 for this feature