File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -186,32 +186,23 @@ Then the shell is finding Java's `keytool` before ours. You will need to edit yo
186186PATH=/usr/local/bin:$PATH
187187```
188188
189- ### Build on Linux
190-
191- Make sure you have ` llvm ` /` clang ` , ` libc++ ` and ` libc++abi ` installed, all with
192- a minimum recommended version 10.
193-
194- #### Build on Ubuntu and Debian
189+ ### Linux (Tested on Debian)
195190
196191First, install the dependencies:
197192
198193``` bash
199194$ sudo apt-get update
200195
201- $ sudo apt-get install llvm clang
202- $ sudo apt install lsb-release wget git apt-transport-https
203- $ wget https://apt.llvm.org/llvm.sh
204- $ chmod +x llvm.sh
205- $ sudo ./llvm.sh
206- $ sudo apt-get -y install build-essential pkg-config autoconf libtool libc++-dev libc++abi-dev python3 python3-setuptools
196+ $ sudo apt-get install llvm clang lsb-release wget git apt-transport-https
197+ $ sudo bash -c " $( wget -O - https://apt.llvm.org/llvm.sh) "
198+ $ sudo apt-get install build-essential pkg-config autoconf libtool libc++-dev libc++abi-dev python3 python3-setuptools
207199$ sudo ln -s /usr/bin/python3 /usr/bin/python
208200```
209201
210- Missing: software-properties-common
211-
212202Then, you can clone and build this repo:
213203
214204``` bash
205+ $ cd /tmp
215206$ git clone https://github.com/BlockchainCommons/keytool-cli.git
216207$ cd keytool-cli/
217208$ autoreconf -i
You can’t perform that action at this time.
0 commit comments