diff --git a/main.go b/main.go index 8a4fc4c..85a75c8 100644 --- a/main.go +++ b/main.go @@ -680,9 +680,9 @@ func transformCompile(args []string) ([]string, error) { newPaths := make([]string, 0, len(files)) for i, file := range files { - tf.handleDirectives(file.Comments) - name := filepath.Base(paths[i]) + // TODO(mvdan): allow running handleDirectives and transformGo + // on runtime too, by splitting the conditionals here. switch { case curPkg.ImportPath == "runtime": // strip unneeded runtime code @@ -704,6 +704,7 @@ func transformCompile(args []string) ([]string, error) { case strings.HasPrefix(name, "_cgo_"): // Don't obfuscate cgo code, since it's generated and it gets messy. default: + tf.handleDirectives(file.Comments) file = tf.transformGo(file) } if newPkgPath != "" { @@ -789,9 +790,6 @@ func (tf *transformer) handleDirectives(comments []*ast.CommentGroup) { pkgPath, name = target[0], target[1] } - if pkgPath == "runtime" && strings.HasPrefix(name, "cgo") { - continue // ignore cgo-generated linknames - } lpkg, err := listPackage(pkgPath) if err != nil { // probably a made up symbol name, replace the comment diff --git a/testdata/scripts/cgo.txt b/testdata/scripts/cgo.txt index 409253c..8fbb98b 100644 --- a/testdata/scripts/cgo.txt +++ b/testdata/scripts/cgo.txt @@ -7,6 +7,13 @@ binsubstr main$exe 'privateAdd' [short] stop # no need to verify this with -short +env GOPRIVATE=* +garble build +exec ./main +cmp stderr main.stderr +binsubstr main$exe 'privateAdd' +env GOPRIVATE=test/main + garble -tiny build exec ./main cmp stderr main.stderr @@ -23,6 +30,8 @@ go 1.16 -- main.go -- package main +import "os/user" + /* static int privateAdd(int a, int b) { return a + b; @@ -32,6 +41,7 @@ import "C" func main() { println(C.privateAdd(C.int(1), C.int(2))) + _, _ = user.Current() } -- main.stderr -- 3