Go 二進位檔案中的動態連結
問題:
問題:問題:
$ go install -buildmode=shared std
$ go build -linkshared hello.go
$ go install -linkshared mybinary.go
package main import ( "fmt" "github.com/myimportpath/mypackage" ) func main() { fmt.Println("Before calling compiled code") mypackage.RunFoo() fmt.Println("After calling compiled code") }
以上是如何將外部 Go 程式碼動態連結到現有的 Go 二進位檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!