**没错就是官网下载指定的2.6.23** 一 低环境CGO程序出错 ``` 环境: linux系统: centos 5.4 gcc版本 : 4.1.2 glibc 2.5 ``` **注:看了go的历史版本,go 1.9.3 左右对/net/http 修改了,使用大于其以上的版本编译的可执行程序员,运行于低于2.6.23版本系统时,会发生panic.因此使用1.9.0 来测试** go 1.9 版本测试如下: ``` [root@localhost] go build /usr/bin/ld: unrecognized option '--build-id=none' /usr/bin/ld: use the --help option for usage information collect2: ld returned 1 exit status ``` 以上是由于golang 不支持 centos redhat 4.x 或者5.x 系统。因此会出现如上问题    关于此问题的讨论:    https://github.com/golang/go/issues/13052 https://github.com/golang/go/issues/9520 http://blog.nella.org/category/golang/page/2/ **得出结论:** golang 最低支持2.6.23 版本