Building with gccgo gives many import errors on large projects

blov · 2017-03-16 04:00:13 · 620 次点击    
这是一个分享于 2017-03-16 04:00:13 的资源,其中的信息可能已经有所发展或是发生改变。
$ gccgo --version
gccgo (Ubuntu 6.0.1-0ubuntu1) 6.0.0 20160414 (experimental) [trunk revision 234994]
$ go version
go version go1.8 linux/amd64
$ go env
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/NU-YP/code/go"
GORACE=""
GOROOT="/usr/local/go"
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
GCCGO="/usr/bin/gccgo"
CC="gcc"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build894555238=/tmp/go-build -gno-record-gcc-switches"
CXX="g++"
CGO_ENABLED="1"
PKG_CONFIG="pkg-config"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"

I've tried to compile many large projects with gccgo, and it always fails even though gc succeeds.

As a representative example, let's look at github.com/derekparker/delve. I obtain the project and its dependencies with go get -u. I edit line 10 of the Makefile to read

BUILD_FLAGS=-ldflags="-X main.Build=$(BUILD_SHA)" -compiler gccgo

I run make install. I expect that gccgo will compile the program just as well as gc, but instead, it spits out hundreds of errors, so many that I'm not going to include them in this post; find them here instead. What am I doing wrong here?


评论:

festive_mongoose:

I thought gccgo only supports up to go1.2...

NeverUse-YouPromised:

From the Go 1.8 release notes:

Due to the alignment of Go's semiannual release schedule with GCC's annual release schedule, GCC release 6 contains the Go 1.6.1 version of gccgo. We expect that the next release, GCC 7, will contain the Go 1.8 version of gccgo.

I am using version 6 of gccgo, although my GCC version is:

gcc (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609
MonkeeSage:

You don't have gopkg.in/yaml.v2 in a place where gccgo can find it (or it was compiled with gc, which produces libraries that are incompatible with gccgo and must be recompiled with gccgo).

https://golang.org/doc/install/gccgo#Imports

kostix:

What /u/MonkeeSage said.

The same supposedly applies to golang.org/x/debug/dwarf as well.


入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

620 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传