最新版golang编译的32位程序不支持在win XP运行了

hellsam · · 5046 次点击
从[go1.11](https://golang.google.cn/doc/go1.11)开始不再支持xp了,你可以下载[go1.10](https://golang.google.cn/dl/)进行编译
#2
更多评论
用旧版编译呗... XP这种上古老古董还需要继续支持? GO最好的运行平台是linux...
#1
经过我的测试,golang1.12版本编译的程序在xp上还是可以运行。 但是!但是!但是!存在以下已知问题 1、https://github.com/golang/go/issues/23375 2、https://blog.csdn.net/baikunlun/article/details/99949371 3、我在使用时也遇到过对win接口cancelIoEx 不支持 The first step to fixing this issue is understanding what a fix might look like. I assume that Windows XP does not support CancelIoEx. In that case the Go code should use CancelIo to cancel the call. Why does this not work for AcceptEx? Does XP provide a way to set a deadline for a call to AcceptEx? 综上建议如果考虑xp系统兼容性 慎重考虑
#3