Skip to content

Commit

Permalink
update windows readme
Browse files Browse the repository at this point in the history
we like to be able to link mbedtls statically
  • Loading branch information
mwarning committed Aug 24, 2020
1 parent 39ab58b commit 7a21bb8
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,24 @@ KadNode can be build for [Windows](https://www.microsoft.com/windows) systems us
To build KadNode on Windows you need to download an execute the Cygwin installer.
The following packages and its dependencies need to be selected:

* All => Devel => gcc-core
* All => Devel => make
* All => Devel => git
* All => Devel => gcc-core
* All => Devel => make
* All => Devel => git
* All => Python => python2
* All => Python => python3
* All => Web => wget

If you want to use auth extension (for public/private keys), you need to install [mbedtls](https://github.com/ARMmbed/mbedtls/).

* All => Devel => mbedtls-devel
```
wget https://codeload.github.com/ARMmbed/mbedtls/tar.gz/v2.23.0 -O mbedtls-2.23.0.tgz
tar -xvf mbedtls-2.23.0.tgz
cd mbedtls-2.23.0
make
make install
cd ..
```
(we compile it manually to be able to link mbedtls statically)

Now download and compile KadNode:

Expand Down

0 comments on commit 7a21bb8

Please sign in to comment.