编译失败:没有这样的文件或目录(但它确实存在!)

时间:2017-02-13 12:56:44

标签: go makefile compiler-errors compilation ethereum

我正在尝试编译Ethereum Go client。关注the instructions我只是运行make geth,但失败了:

$ make geth
build/env.sh go run build/ci.go install ./cmd/geth
make: build/env.sh: No such file or directory
make: *** [geth] Error 1

据我从此错误中了解,它抱怨build/env.shbuild/ci.go不存在。所以我检查了build文件夹,但它们似乎都在那里:

$ ls -l build
total 648
drwxr-xr-x  3 kramer65  staff     102 Feb 13 13:45 _vendor
-rw-r--r--  1 kramer65  staff    2892 Feb 13 13:45 ci-notes.md
-rw-r--r--  1 kramer65  staff   30516 Feb 13 13:45 ci.go             <===
-rw-r--r--  1 kramer65  staff     123 Feb 13 13:45 deb.changelog
... some other files here
-rw-r--r--  1 kramer65  staff     379 Feb 13 13:45 deb.rules
-rwxr-xr-x  1 kramer65  staff     721 Feb 13 13:45 env.sh            <===
-rw-r--r--  1 kramer65  staff    1722 Feb 13 13:45 mvn.pom
... and some more files here

我检查了是否安装了go以及它是哪个版本:

$ which go
/usr/local/bin/go
$ go version
go version go1.7.5 darwin/amd64

所以似乎没事。

有人知道如何调试/解决这个问题吗?欢迎所有提示!

2 个答案:

答案 0 :(得分:4)

好的,没关系。找到了。问题是,行结尾处于dos风格。

因此,为了递归地将行结尾转换为unix,我跑了:

find . -type f -print0 | xargs -0 -n 1 -P 4 dos2unix

然后再次尝试建造。修好了。

我希望这可以帮助其他人。无论如何,我祝大家一个美好的一天!

答案 1 :(得分:0)

我按照以下说明解决问题。我不知道原因,但我完全摆脱brew让它运行。 (苹果电脑) 1 install go(I used package) 2 git clone https://github.com/ethereum/go-ethereum 3 cd go-ethereum && git checkout tags/v1.8.2 4 run `find . -type f -print0 | xargs -0 -n 1 -P 4 dos2unix`(if you don't have dos2unix, you could brew one, it does not break anything.) 5 make geth 6 ln -s /path/to/origin/geth /path/to/target/geth 然后运行which geth你可以找到你的geth。运行geth version即可看到您的版本。