-
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: ldflags -X needs better documentation #18246
Comments
Just docs, so maybe we can sneak it into 1.8 yet. |
We tried giving a warning if the The problem with your program is that you are using a I'm not sure where to put an example. cmd/link/doc.go seems like an odd place for that, as there are no other examples there. Do you have any suggestions? |
if you read my comment right above that I tried Not sure of a better place to put it. maybe an example .go file with a link from the cmd/link/doc? |
Would a change like https://golang.org/cl/34230 help? |
CL https://golang.org/cl/34230 mentions this issue. |
yes, super helpful actually. but it also brings up more questions, I'll play with it more tomorrow and make sure what I'm seeing actually works as I expect. but otherwise it looks good. |
CL is incorrect and should be reverted. |
Oh? It worked for my initial tests. |
CL https://golang.org/cl/34791 mentions this issue. |
It doesn't work if the package name includes a '.' or a non-ASCII character (or '%', '"', or a control character). See #16710 and CL 31970. Update #18246. Change-Id: I1487f462a3dc7b0016fce3aa1ea6239b226e6e39 Reviewed-on: https://go-review.googlesource.com/34791 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
@james-lawrence It sounds like the part missing from the docs that would have helped you is that package main's import path is 'main', not the fully-qualified directory name like for other packages. Am I right that that's what you needed? Or do I misunderstand your situation above? Thanks. |
@ianlancetaylor, now that the docs have been reverted, do you want to say something else there instead? |
The sentence I can imagine adding would be something like
But I'm a little confused because in @james-lawrence's original post explicitly calls out that the examples he found use 'main', so I was expecting a different shortcoming in the docs. |
@rsc it was both the main package piece. (In retrospect thats fairly obvious and i just missed it) and the types for which it works. I was having issues in regular packages as well, not main ones. i was also surprised by no support for const :) |
My initial use cases for using this included both main package and any random package. They were:
|
I've added an example of using -X to https://golang.org/wiki/GcToolchainTricks . That's the best approach I've been able to come up with. I'm not sure it's worth adding a pointer from the cmd/link page; I hope that search engines will give the Go wiki high relevance as they discover it. I'm going to close this issue. |
the cmd/link documentation's example is rather useless and most of the
examples I've managed to find of using -X all use
main.name
in there example. It'd be helpful for a more complete example to exist within the documentation.example 1
example 2
What version of Go are you using (
go version
)?What operating system and processor architecture are you using (
go env
)?What did you do?
What did you expect to see?
abc
or an error/warning about not being able to replace the value.What did you see instead?
spike
The text was updated successfully, but these errors were encountered: