從Go 二進位檔案動態建置和連結
考慮一種情況,您有一個現有的Go 二進位檔案並且需要將外部程式碼合併到其中動態地。這可以透過編譯外部 Go 檔案並將其連結到現有二進位檔案來實現。
編譯外部 Go 檔案
Go 1.5 於 2015 年 8 月發布後,支援將介紹共享庫。使用-buildmode=shared 標誌,您可以將外部Go 檔案建置為共用程式庫:
go install -buildmode=shared external.go
連結編譯程式碼
連結編譯的共用程式庫對於現有的二進位文件,在建置期間使用-linkshared標誌過程:
go build -linkshared main.go
範例用法
在給定的範例中,主二進位檔案將包含下列程式碼:
func main() { // Compile external package containing runFoo() pkg, err := build.Import("github.com/example/external", "", build.ImportModeShared) if err != nil { // Handle error } // Get runFoo function from compiled package runFoo := reflect.ValueOf(pkg.Func("runFoo")) // Call the compiled runFoo function runFoo.Call(nil) // Continue execution normally }
此方法可讓您動態地將新功能合併到現有的Go 二進位檔案中,而無需重建整個程式。
以上是如何將外部 Go 程式碼動態連結到現有的 Go 二進位檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!