go语言编译文件踩坑
目录
方式1 执行 go env -w GO111MODULE=auto后再编译
2 报错syscall.go:84:16: undefined: unsafe.Slice
3 build constraints exclude all Go files in xxx
4 GoLand IDE配置 GOROOT 时出现 "The selected directory is not a valid home for Go Sdk"
1 no required module provides package xxx go.mod file not found in current directory or any parent directory; see 'go help modules
比如这里
main.go:13:2: no required module provides package github.com/gonutz/ide/w32: go.mod file not found in current directory or any parent directory; see 'go help modules'
main.go:14:2: no required module provides package golang.org/x/sys/windows: go.mod file not found in current directory or any parent directory; see 'go help modules
报错原因是因为当前go语言版本默认使用go mod管理go的依赖,即便在你的GOPATH中有对应的依赖包也会报错
可以执行go env -w GO111MODULE=off 关闭当前默认的依赖包管理方式,执行后编译当前文件的寻找依赖包的方式将会沿用旧版本那种通过vendor目录或者GOPATH模式来查找
了解go env -w GO111MODULE=off 和 go env -w GO111MODULE=auto 还有 go env -w GO111MODULE=on的区别,可以参考解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘ - 苦哈哈的程序猿
这里go env -w GO111MODULE=auto有两种情况会开始modules方式管理依赖
(1)当前目录在GOPATH/src之外且该目录包含go.mod文件,开启模块支持。
(2)当前文件在包含go.mod文件的目录下面
这里解决方式有2种
方式1 执行 go env -w GO111MODULE=auto后再编译
依赖包缺失,通过go get拉取
go get golang.org/x/sys/windows
go get github.com/gonutz/ide/w32
然后可以直接编译
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -ldflags '-w -s -H=windowsgui' main.go
方式2 创建go.mod
go mod init 项目名
go mod tidy
相关原理可以参考:
2 报错syscall.go:84:16: undefined: unsafe.Slice
go/src/golang.org/x/sys/windows/syscall.go:84:16: undefined: unsafe.Slice
go/src/golang.org/x/sys/windows/syscall_windows.go:131:29: undefined: unsafe.Slice
搜了一下好像是go版本的问题,推荐使用go1.18或者1.17
https://groups.google.com/g/golang-checkins/c/sFiznuiZaiQ
我当前本地版本
go version go1.16.6 darwin/amd64
卸载原版本或者再下载别的版本,如1.18
brew install go@1.18
brew link go@1.18 --force
再次编译后成功
3 build constraints exclude all Go files in xxx
这种属于交叉编译报错
我们打开对应的需要引入的包的源码,发现依赖包通过// +build控制了编译的所需要的当前环境类型
如果这里交叉编译,需要申明当前环境类型
如:
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build main.go
或者参考:
这样分行设置换将变量,然后执行go build
export
CGO_ENABLED=0
export
GOOS=windows
export
GOARCH=amd64
参考:
透过一个编译报错,总结两个Go程序编译的重要知识-51CTO.COM
go build 参数_Go语言 通过go bulid -tags 实现编译控制_weixin_39964899的博客-CSDN博客
4 GoLand IDE配置 GOROOT 时出现 "The selected directory is not a valid home for Go Sdk"
修改本地安装golang的一个文件/go1.17.6/src/runtime/internal/sys/zversion.go
增加一行文件
const TheVersion = `go1.18.7`
再次设置即可识别
参考:
更多推荐
所有评论(0)