From 6bbb2088f7d20d5382f6157516a000860fe2a929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Mon, 9 Dec 2019 23:33:34 +0000 Subject: [PATCH] add a caveat about the reflect package --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index dbe1a7d..f27cbb5 100644 --- a/README.md +++ b/README.md @@ -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.