add a caveat about the reflect package

pull/22/head
Daniel Martí 5 years ago
parent 5556be7402
commit 6bbb2088f7

@ -40,11 +40,14 @@ binary doesn't include paths from the current filesystem.
### Caveats
The `-a` flag for `go build` is required, since `-toolexec` doesn't work well
with the build cache; see [#27628](https://github.com/golang/go/issues/27628).
* The `-a` flag for `go build` is required, since `-toolexec` doesn't work well
with the build cache; see [#27628](https://github.com/golang/go/issues/27628).
Since no caching at all can take place right now (see the link above), builds
will be slower than `go build` - especially for large projects.
* Since no caching at all can take place right now (see the link above), builds
will be slower than `go build` - especially for large projects.
The standard library is never garbled when compiled, since the source is always
publicly available.
* The standard library is never garbled when compiled, since the source is
always publicly available.
* Some uses of the `reflect` package may break, such as accessing a struct's
field, whose name has been garbled.

Loading…
Cancel
Save