如何构建thrift4go?

我是 GO 新手。我决定使用Thrift for Go的实现。阅读完手动安装说明步骤后,我从git下载了最后的Thrift 0.9.0并开始构建过程:


我的构建脚本如下:


#!/bin/bash

export THRIFT=$(pwd)/thrift

export THRIFT4GO=$(pwd)/thrift4go

export GOROOT=/usr


bash $THRIFT4GO/scripts/merge_and_build.sh -b


cd $THRIFT

#./cleanup.sh

./bootstrap.sh

./configure --with-go --without-python --without-csharp


make

if "$?" == "1"; then

    ln -s $THRIFT/lib/go/src/thrift $GOPATH/src/thrift

    go install thrift

fi

但是make不适用于GO,问题出在哪里?我在bash中使用导出的GOPATH变量正确安装了GO,“ go install”可用于其他项目。我不明白为什么GO找不到包裹。


莫回无
浏览 191回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go