* Garble aims to automatically detect which Go types are used with reflection,
* Garble automatically detects which Go types are used with reflection
as obfuscating those types might break your program.
to avoid obfuscating them, as that might break your program.
Note that Garble obfuscates [one package at a time](#speed),
Note that Garble obfuscates [one package at a time](#speed),
so if your reflection code inspects a type from an imported package,
so if your reflection code inspects a type from an imported package,
and your program broke, you may need to add a "hint" in the imported package:
you may need to add a "hint" in the imported package to exclude obfuscating it:
```go
```go
type Message struct {
type Message struct {
Command string
Command string
@ -172,13 +172,20 @@ to document the current shortcomings of this tool.
var _ = reflect.TypeOf(Message{})
var _ = reflect.TypeOf(Message{})
```
```
* Aside from `GOGARBLE` to select patterns of packages to obfuscate,
and the hint above with `reflect.TypeOf` to exclude obfuscating particular types,
there is no supported way to exclude obfuscating a selection of files or packages.
More often than not, a user would want to do this to work around a bug; please file the bug instead.
* Go programs [are initialized](https://go.dev/ref/spec#Program_initialization) one package at a time,
* Go programs [are initialized](https://go.dev/ref/spec#Program_initialization) one package at a time,
where imported packages are always initialized before their importers,
where imported packages are always initialized before their importers,
and otherwise they are initialized in the lexical order of their import paths.
and otherwise they are initialized in the lexical order of their import paths.
Since garble obfuscates import paths, this lexical order may change arbitrarily.
Since garble obfuscates import paths, this lexical order may change arbitrarily.
* Go plugins are not currently supported; see [#87](https://github.com/burrowers/garble/issues/87).
* Go plugins are not currently supported; see [#87](https://github.com/burrowers/garble/issues/87).
* Garble requires `git` to patch the linker. That can be avoided once go-gitdiff supports [non-strict patches](https://github.com/bluekeyes/go-gitdiff/issues/30).
* Garble requires `git` to patch the linker. That can be avoided once go-gitdiff