mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-23 16:41:06 +00:00
PVF workers: some fixes for cargo run and cargo install (#7608)
- Update some places where `cargo run` was used - Add note to error messages about `cargo build` before `cargo run` - Fix call to `cargo install` in readme
This commit is contained in:
+6
-1
@@ -93,7 +93,11 @@ cargo build --release
|
||||
|
||||
**Note:** compilation is a memory intensive process. We recommend having 4 GiB of physical RAM or swap available (keep in mind that if a build hits swap it tends to be very slow).
|
||||
|
||||
**Note:** if you want to move the built `polkadot` binary somewhere (e.g. into $PATH) you will also need to move `polkadot-execute-worker` and `polkadot-prepare-worker`. You can let cargo do all this for you by running `cargo install --path .`.
|
||||
**Note:** if you want to move the built `polkadot` binary somewhere (e.g. into $PATH) you will also need to move `polkadot-execute-worker` and `polkadot-prepare-worker`. You can let cargo do all this for you by running:
|
||||
|
||||
```sh
|
||||
cargo install --path . --locked
|
||||
```
|
||||
|
||||
#### Build from Source with Docker
|
||||
|
||||
@@ -193,6 +197,7 @@ cargo test --workspace --release
|
||||
You can start a development chain with:
|
||||
|
||||
```bash
|
||||
cargo build
|
||||
cargo run -- --dev
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user