先给结论:可以减少到原来的29%
最近在写一个TLScat小工具
Github.com/mengzhuo/tlscat
源文件仅仅2KB不到,但是用 go build tlscat.go
编译出来的有4.6MB!
后来发现这个Golang的1.5才会解决的问题 Issue #6853 all: binaries too big and
growing 可是,我就不信这个邪,于是搜索到了go
build的一些用法 go build -ldflags "-s -w"
‘-s’ 相当于strip掉符号表,
但是以后就没办法在gdb里查看行号和文件了。 ‘-w’ flag to the linker to omit the debug information
告知连接器放弃所有debug信息 这样一来就只有3MB了
然后发现在Mac平台下,还有upx这样神一般的存在。
UPX achieves an excellent compression ratio and offers very fast
decompression.
简而言之,upx就是对可执行文件进行压缩,然后可以已极快的速度解压并运行