补充 trimpath 参数说明.

Signed-off-by: lion.chan <cy187lion@sina.com>
This commit is contained in:
lion.chan 2022-08-31 20:10:08 +08:00
parent c2784076bc
commit cac2b092a6
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ func PrintTest(strInput string) {
go build -trimpath -buildmode=plugin -ldflags="-w -s"
```
其中 -trimpath 用于从二进制文件中删除文件系统路径信息。
其中 -trimpath 用于从二进制文件中删除文件系统路径信息,如果不增加该参数,主程序加载插件时会去匹配 GOPATH如果二者的 GOPATH 不一致则不进行加载
指定文件编译 Go 动态库命令: