Fixes #1346 by creating an overlay for go/build/build.go that sets Compiler to "gc" in defaultContext(). This allows user code using go/build package to work with llgo while preserving runtime.Compiler as "llgo" for identification purposes. The overlay replaces the entire go/build/build.go file with a modified version where line 342 changes from 'c.Compiler = runtime.Compiler' to 'c.Compiler = "gc"'. This minimal change ensures go/build recognizes llgo-compiled binaries without requiring changes to user code. Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: luoliwoshang <luoliwoshang@users.noreply.github.com>
38 lines
971 B
Go
38 lines
971 B
Go
package runtime
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed _overlay/runtime/runtime.go
|
|
var fakeRuntime string
|
|
|
|
//go:embed _overlay/go/parser/resolver.go
|
|
var go_parser_resolver string
|
|
|
|
//go:embed _overlay/testing/testing.go
|
|
var testing_testing string
|
|
|
|
//go:embed _overlay/testing/testing_go123.go
|
|
var testing_testing_go123 string
|
|
|
|
//go:embed _overlay/testing/testing_go124.go
|
|
var testing_testing_go124 string
|
|
|
|
//go:embed _overlay/net/textproto/textproto.go
|
|
var net_textproto string
|
|
|
|
//go:embed _overlay/go/build/build.go
|
|
var go_build_build string
|
|
|
|
var OverlayFiles = map[string]string{
|
|
"math/exp_amd64.go": "package math;",
|
|
"go/parser/resolver.go": go_parser_resolver,
|
|
"go/build/build.go": go_build_build,
|
|
"testing/testing.go": testing_testing,
|
|
"testing/testing_go123.go": testing_testing_go123,
|
|
"testing/testing_go124.go": testing_testing_go124,
|
|
"net/textproto/textproto.go": net_textproto,
|
|
"runtime/runtime.go": fakeRuntime,
|
|
}
|