如何从源构建稳定版本的奇偶?
git clone https://github.com/paritytech/parity
cd parity
cargo build --release给我
version Parity/v1.9.0-unstable-51e6e0b4b-20171230/x86_64-linux-gnu/rustc1.22.1
是不稳定的
git checkout tags/v1.7.11给我这个版本:
version Parity/v1.7.11-unstable-a5ed4cfc4-20171228/x86_64-linux-gnu/rustc1.22.1也不稳定。如何从源代码构建稳定版本(最新版本应该是1.7.11)
发布于 2018-01-21 21:42:55
v1.7.11版本实际上是稳定的。-unstable名称的一部分是一个bug,我们最近使用了修好了。版本v1.7.12应该正确地显示版本。
发布于 2018-01-23 14:46:03
unstable只是说这个版本是从源代码编译的。:)
若要获得有意义的字符串,请使用附加标志--features final编译奇偶校验。
https://ethereum.stackexchange.com/questions/34763
复制相似问题