Skip to content

Commit a67a67b

Browse files
authored
Update README.md
1 parent 33c7dfc commit a67a67b

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,19 +198,24 @@ First, install the dependencies:
198198
```bash
199199
$ sudo apt-get update
200200

201-
$ sudo apt install lsb-release wget software-properties-common git apt-transport-https
201+
$ sudo apt-get install llvm clang
202+
$ sudo apt install lsb-release wget git apt-transport-https
202203
$ wget https://apt.llvm.org/llvm.sh
203204
$ chmod +x llvm.sh
204-
$ sudo ./llvm.sh 10 # version 10
205-
$ sudo apt-get -y install build-essential pkg-config autoconf libtool libc++-10-dev libc++abi-10-dev python
205+
$ sudo ./llvm.sh
206+
$ sudo apt-get -y install build-essential pkg-config autoconf libtool libc++-dev libc++abi-dev python3 python3-setuptools
207+
$ sudo ln -s /usr/bin/python3 /usr/bin/python
206208
```
207209

210+
Missing: software-properties-common
211+
208212
Then, you can clone and build this repo:
209213

210214
```bash
211215
$ git clone https://github.com/BlockchainCommons/keytool-cli.git
212216
$ cd keytool-cli/
213-
$ export CC="clang-10" && export CXX="clang++-10" && ./build.sh
217+
$ autoreconf -i
218+
$ export CC="clang" && export CXX="clang++" && ./build.sh
214219
$ sudo make install
215220
```
216221

0 commit comments

Comments
 (0)