git2go
在将 go 1.4.2 升级到 go 1.5 后,我无法将 OS X 上的库编译到 linux amd64。
我认为这是关于交叉编译任何使用 C 代码和 go 1.5 的 go 应用程序。
使用CGO_ENABLED=1
,我得到:
$ CGO_ENABLED=1 GOOS=linux GOARCH=amd64 ./script/with-static.sh go install ./...
# runtime/cgo
ld: unknown option: --build-id=none
clang: error: linker command failed with exit code 1 (use -v to see invocation)
使用-compiler=gccgo
,我得到:
$ GOOS=linux GOARCH=amd64 ./script/with-static.sh go install -compiler gccgo ./...
go build github.com/libgit2/git2go: : fork/exec : no such file or directory
如果不提供任何这些,我会得到:
$ GOOS=linux GOARCH=amd64 ./script/with-static.sh go install ./...
can't load package: package github.com/libgit2/git2go: C source files not allowed when not using cgo or SWIG: wrapper.c
我使用自制软件安装了 go,并且$GOPATH
指向默认~/go
位置,没什么特别的。