Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

clarify build instructions #1287

Merged
merged 4 commits into from
Jun 15, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,13 @@ $ curl https://sh.rustup.rs -sSf | sh

- Windows

Make sure you have Visual Studio 2015 with C++ support installed, download and run [rustup](https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe) and use the following command to setup msvc toolchain:
Make sure you have Visual Studio 2015 with C++ support installed. Next, use the following commands to install and set up the msvc toolchain:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The command won't work unless user installs rustup first

```
$ rustup toolchain install stable-x86_64-pc-windows-msvc
$ rustup default stable-x86_64-pc-windows-msvc
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

default will install the toolchain, so the first command is not required

```

```
rustup default stable-x86_64-pc-windows-msvc
```


Then, download and build Parity:
Once you have rustup, download and build parity:

```bash
# download Parity code
Expand All @@ -68,11 +67,11 @@ $ cargo build --release
```

This will produce an executable in the `target/release` subdirectory.
Either run `cd target/release`, or copy `target/release/parity` to another location.
Either run `cd target/release` or copy `target/release/parity` to another location.

To get started, just run
```bash
$ parity
```

and parity will begin syncing the Ethereum blockchain.
and parity will begin syncing the Ethereum blockchain.