gccgo不知道-fgo-relative-import-path

时间:2013-04-20 12:08:23

标签: compiler-errors go gccgo

我尝试在我的机器上使用gccgo编译一些代码:

$ export LANG=C
$ go get -d github.com/fuzxxl/ppm
$ cd $GOPATH/src /github.com/fuzxxl/ppm
$ go build -compiler gcc
gccgo: error: unrecognized command line option '-fgo-relative-import-path=_/home/fuz/src/go/src/github.com/fuzxxl/ppm'

这些是我机器上的工具:

$ go version
go version devel +dda87c8bcba1 Wed Apr 17 13:25:28 2013 -0700 linux/amd64
$ gccgo --version
gccgo (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

为什么我会收到上面显示的错误?我该怎么做才能解决这个问题?

2 个答案:

答案 0 :(得分:2)

-fgo-relative-import-path选项为committed on 2012-10-30,而GCC 4.7.2(包括gccgo)已经released on 2012-09-20。所以gccgo 4.7.2还没有包含对这个选项的支持。

将gccgo升级到4.7.3(或4.8.0)应解决此问题。

答案 1 :(得分:0)

  

Raring Ringtail”是Ubuntu 13.04的代号,已安排   于2013年4月25日发布。

GNU Go编译器:Package (raring): gccgo-4.7 (4.7.3-1ubuntu1)

在此期间,我使用的是Ubuntu 13.04(Raring Ringtail)Daily Build

例如,

$ uname -a
Linux ubuntu 3.8.0-19-generic #29-Ubuntu SMP Wed Apr 17 18:16:28 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
$ gccgo --version
gccgo (Ubuntu/Linaro 4.7.3-1ubuntu1) 4.7.3

$ export GOPATH=/home/peter/gopath
$ export LANG=C
$ go get -d github.com/fuzxxl/ppm
$ cd $GOPATH/src/github.com/fuzxxl/ppm
$ go build -compiler gccgo
$ go install -compiler gccgo
$