0

我想编译 thrift 0.8 以支持 go1(golang version 1)。在 go1 之前,有两个命令:goinstall 和 gomake,所以配置脚本中的行如下:

GOMAKE=${GOBIN}/gomake
GOINSTALL=${GOBIN}/goinstall

但是从 go1 开始,“go install”和“go build”替换了“goinstall”和“gomake”,我发现有些人将 thrift 配置脚本更改为:

GOGO=${GOBIN}/go
GOMAKE=${GOGO} build
GOINSTALL=${GOGO} install

但是当我尝试使用以下命令运行脚本时:./configure,我得到了:

./configure: line 18067: build: command not found 
install: missing file operand
Try `install --help' for more information.
checking for 6g... /6g
checking for 6l... /6l

不确定,但我认为

"./configure: line 18067: build: command not found" 

意味着“GOMAKE=${GOGO} build”中的空白无法处理,对吗?任何人都可以帮助完成这项工作吗?谢谢


我尝试从以下位置编辑 configure.ac:

 GOGO=${GOBIN}/go
 GOMAKE=${GOGO} build
 GOINSTALL=${GOGO} install

GOGO=${GOBIN}/go
GOMAKE="${GOGO} build"
GOINSTALL="${GOGO} install"

然后重新生成配置脚本,并运行它。似乎修改的行被直接忽略了:


checking for go... /home/alex/go/bin/go
(*************checking goinstall and gomake should be here,but not)
checking for an ANSI C-conforming const... yes
4

0 回答 0