Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ Requires Cygwin packages: `bash`, `make`, `mingw64-x86_64-gcc-core`, `openssl-de

Use `make CC=other_cc` to specify a different compiler if needed.

### macOS
Export flags for openssl lib paths before running `make`.

```bash
export LDFLAGS="-L/usr/local/opt/openssl/lib -L/usr/local/lib -L/usr/local/opt/expat/lib"
export CFLAGS="-I/usr/local/opt/openssl/include/ -I/usr/local/include -I/usr/local/opt/expat/include"
export CPPFLAGS="-I/usr/local/opt/openssl/include/ -I/usr/local/include -I/usr/local/opt/expat/include"
```

## Description
I created this because I couldn't find an offline tool or library able
to create addresses from Bitcoin private keys, and as a learning exercise in
Expand Down