Skip to content

Commit dadc548

Browse files
committed
Update installation instructions
1 parent 59931ec commit dadc548

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,19 @@ and just execute `./ink-node`.
4747

4848
### Build Locally
4949

50-
Follow the [official installation steps](https://docs.substrate.io/install/) to set up all Substrate prerequisites.
50+
Follow the [official installation steps](https://docs.polkadot.com/develop/parachains/install-polkadot-sdk/) to set up all Polkadot SDK prerequisites.
51+
52+
For Mac: make sure you have `llvm` installed.
53+
```
54+
brew install llvm
55+
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
56+
export LIBCLANG_PATH="$(brew --prefix llvm)/lib"
57+
export LD_LIBRARY_PATH="$LIBCLANG_PATH:$LD_LIBRARY_PATH"
58+
export CPATH="$(brew --prefix llvm)/include"
59+
export PATH="$(brew --prefix llvm)/bin:$PATH"
60+
export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
61+
export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
62+
```
5163
5264
Afterwards you can install this node via
5365

0 commit comments

Comments
 (0)