support building ad-hoc plugin packages

That is, plugin packages by source file names, not by package path.

Fixes #19.
pull/23/head
Daniel Martí 5 years ago
parent e4b58b1452
commit e8074d4665

@ -355,10 +355,10 @@ func transformCompile(args []string) ([]string, error) {
// To allow using garble without GOPRIVATE for standalone main packages, it will
// default to not matching standard library packages.
func isPrivate(pkgPath string) bool {
if pkgPath == "main" {
// TODO: why don't we see the full package path for main packages?
// Hint: it seems like the real import path is at the top of
// -importcfg.
if pkgPath == "main" || strings.HasPrefix(pkgPath, "plugin/unnamed") {
// TODO: why don't we see the full package path for main
// packages? The linker has it at the top of -importcfg, but not
// the compiler.
return true
}
return GlobsMatchPath(envGoPrivate, pkgPath)

@ -13,6 +13,10 @@ binsubstr main$exe 'PublicVar' 'PublicFunc'
[short] stop # no need to verify this with -short
# This used to fail, since in this case the package path for the ad-hoc plugin
# package isn't "main", but "plugin/unnamed-*".
garble build -buildmode=plugin plugin/main.go
go build -buildmode=plugin ./plugin
binsubstr plugin.so 'PublicVar' 'PublicFunc' 'privateFunc'
go build
@ -24,11 +28,17 @@ module test/main
-- plugin/main.go --
package main
var PublicVar int
import "test/main/plugin/lib"
var PublicVar int = lib.ImportedFunc()
func privateFunc(n int) { println("Hello, number", n) }
func PublicFunc() { privateFunc(PublicVar) }
-- plugin/lib/lib.go --
package lib
func ImportedFunc() int { return 4 }
-- main.go --
package main

Loading…
Cancel
Save