我目前正在學(xué)習(xí)微服務(wù)在線課程,我將小型 Go 應(yīng)用程序部署到 docker 容器。用于構(gòu)建二進制文件的長而丑陋的命令行是這樣的:go build --tags netgo --ldflags '-extldflags "-lm -lstdc++ -static"'到目前為止,我只是用來go install編譯我的 go 應(yīng)用程序。誰能向我解釋這個命令?
1 回答

慕標(biāo)5832272
TA貢獻(xiàn)1966條經(jīng)驗 獲得超4個贊
--tags netgo 用于使用 go lang 網(wǎng)絡(luò)棧
--ldflags設(shè)置傳遞給“go tool link”的標(biāo)志
args 到 ldflags 的值在go tool 鏈接幫助中有說明
-extldflags flags
Set space-separated flags to pass to the external linker.
在這種情況下,外部鏈接器是“l(fā)d”,因此您可以閱讀它的手冊頁
每個參數(shù)的含義是:
-lm enables linking of the standard math library
-lstdc++ enables linking of the standard c++ library
-static means do not link against shared libraries
- 1 回答
- 0 關(guān)注
- 465 瀏覽
添加回答
舉報
0/150
提交
取消