在做更新时,收到下面提示:
go get github.com/astaxie/beego
go install runtime/cgo: open /usr/local/go/pkg/darwin_amd64/runtime/cgo.a: permission denied
看目录下,也没有cgo.a 文件。
所以是找不到这个文件报的错误,而不是没有权限的问题。通过sudo来设置权限是不能解决这个问题的。
解决方法:
禁用CGO
export CGO_ENABLED=0
然后再执行go get 命令。
原因:
It's a problem with your Go installation. Similar issues are reported there and there. I may only add that on Mac version from Homebrew works just fine.
参考:https://github.com/AlekSi/nut/issues/26
交叉编译时,会丢掉cgo.a 文件。