File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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+
208212Then, 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
You can’t perform that action at this time.
0 commit comments