我已經通過我的MSYS2的Windows 7 64位系統上安裝鏽成功,但試圖從每晚構建安裝貨物的時候,我得到了來自install.sh
以下錯誤:在Windows上用生鏽MSYS2
$ ./install.sh
install: looking for install programs
install:
install: found mkdir
install: found printf
install: found cut
install: found grep
install: found uname
install: found tr
install: found sed
install:
install: processing ./install.sh args
install:
install: CFG_DESTDIR :=
install: CFG_PREFIX := /usr/local
install: CFG_LIBDIR := /usr/local/lib
install: CFG_MANDIR := /usr/local/share/man
install:
install: validating ./install.sh args
install:
install: verifying platform can run binaries
install: error: can't execute rustc binary on this platform
雖然rustc
作品就好了:
$ rustc --version
rustc 0.13.0-nightly (5ba610265 2014-12-25 18:01:36 +0000)
我做錯什麼了嗎?
錯誤消息告訴它不能運行'rustc'。你能否驗證你是否可以在同一個控制檯窗口中運行'rustc --version'?也許'rustc'沒有添加到你的'PATH'中。 – alandarev
@alandarev更新了OP。 –
您可以嘗試在''install.sh'調用中添加'--disable-verify'。這會跳過運行二進制文件,但可能會讓您遇到不同的問題。 :-) – Shepmaster