How to compile golang program with .a file (without source)

做~自己de王妃 提交于 2020-01-01 18:18:09

问题


I need to compile my program - main.go with package bigPak without source. Exist only bigPak.a tnto GOPATH/pkg.

Can you give me example of compile main.go with bigPak.a ?


回答1:


That's dead simple: Just produce a fake bigPak package in the right $GOPATH/src location (an empty package bigPak will do) and (important!!) make sure this synthetic source has a modification time before the modification time of bigPak.a. The go tool should just work like this.

Go is designed to be able to compile from the .a files without transitively reading their includes. The Go tool uses the source (only) to check if an .a files needs to be recompiled (because the source is newer.



来源:https://stackoverflow.com/questions/26523664/how-to-compile-golang-program-with-a-file-without-source

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!