0

我正在阅读 Polkadot repo 的自述文件中的“Hacking on Polkadot”部分,我尝试了cargo build --release其中没有用的,所以我cargo build在这里尝试了我得到的相应错误:

cargo build --release我收到此错误后:

error: failed to add native library /Users/Decentration/polkadot-clone/polkadot/target/release/build/ring-75cdcd2b7eadbbe2/out/libring-core.a: 

file too small to be an archive error: aborting due to previous error

error: could not compile ring


  1. 而不是cargo build --release我尝试过,cargo build然后我得到了这个错误:
220 | pub use zeroize_derive::Zeroize;
   |         ^^^^^^^^^^^^^^
   error: aborting due to previous error 
   error: could not compile zeroize

这里有什么想法吗?

4

1 回答 1

1

如果构建失败,请确保cargo clean在重新编译之前,以防有工件导致问题。cargo build --release之后我重新编译成功cargo run -- --dev

感谢@NukaManDan 在评论中帮助我。

于 2021-03-16T15:13:57.740 回答