Jay Conrod
Jay Conrod
Agreed that `go install` should no longer install `.a` files. I think the main technical blocker is being able to build `net` with its current `netcgo` functionality without actually needing...
> Would this removal leave any method of installing .a files aside from build -o file.a? @iskarian Probably not. And if `go install` doesn't write .a files to `GOROOT/pkg` or...
Sorry for the slow response; I don't have much time to work on Bazel these days, but I'm trying to get through the backlog. I think I agree with this....
@adamyi I don't think I've seen this issue outside of CI. Please open a new issue, including your environment and command used to invoke Bazel.
Could you fill out the issue template and describe a situation where this doesn't work? Just saying it's inconsistent isn't enough to go on. I'm not sure any of the...
Thanks for explaining. The example, links to other language implementations, and documentation are all very helpful. I'm going to mark this as a bug for now, and I suspect that...
So if I can summarize a bit, the issue is that you depend on a package that only contains generated code (`github.com/example/project/proto`), but `go mod tidy` and other Go commands...
You may want a custom tool for this. At one point, I wanted `gazelle update-repos` to be able to do this kind of thing, but it seemed like in the...
@blico I think that will work. How are you planning to list all imports? I can think of a couple different ways.Something built with `bazel query 'deps(//...)` might work, printing...
I don't think this was supposed to be possible, but it seems like a good use case. Maybe we could expose some stable aliases to tools like `gofmt`. @ianthehat WDYT?