-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: generate should set GOFLAGS env variable #27898
Comments
I think the use case here goes beyond Also, if there's a way to accomplish this already, please bring it up. Paul and myself weren't able to come up with a way, other than adding something like |
I am skeptical of introducing a new GOBUILDTAGS environment variable that generate writes but that nothing else reads. (The others that are unique to generate are GOFILE, GOLINE, GOPACKAGE, and DOLLAR, which are all easier to understand as not-read-by-the-go-command.) |
In the case in the original report, it's clear that the relevant file is specific to wasm+js+constraint. Why not just say that on the command line of the generator: -tags 'wasm js constraint'? |
Stepping back a bit just in case I'm jumping rather too quickly to a solution before properly articulating the problem.
Hence we can use the current environment's
This is where there is currently a gap, because these would need to be explicitly set: if I pass If, however, the
So if instead of setting
Absolutely, this would work. But then these constraints would need to be maintained at the site of every
Have re-read what's written above, I can quite agree now. I don't know how we didn't come up with the effective- |
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (
go env
)?What did you do?
Given the following setup:
Then the following two command produce no output, i.e.
go generate
doesn't find any directives:Only when we combine the setting of
GOOS
,GOARCH
and build tags is the directive run:This makes sense; per
go help generate
,GOOS
andGOARCH
are passed through bygo generate
to each directive:However build tags are not, despite build tags clearly influencing the files that are scanned for directives.
So assuming the observed behaviour is correct/consistent, I'd like to propose that we add a
GOBUILDTAGS
env variable to complementGOOS
andGOARCH
. This would pass through the-tags
build flag:The use case here is needing to pass
GOOS
,GOARCH
and build tags as supplied togo generate
to a generator that usesgo/packages
for type checking.cc @robpike @rsc @bcmills
The text was updated successfully, but these errors were encountered: