mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
2ab019f201
in case coinlib's scripts aren't working TODO macos and ios (android?)
10 lines
314 B
Bash
10 lines
314 B
Bash
mkdir -p build
|
|
cd build
|
|
git clone https://github.com/bitcoin-core/secp256k1
|
|
cd secp256k1
|
|
mkdir -p build && cd build
|
|
cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/x86_64-w64-mingw32.toolchain.cmake
|
|
cmake --build .
|
|
mkdir -p ../../../../../build
|
|
cp src/libsecp256k1-2.dll "../../../../../build/secp256k1.dll"
|
|
cd ../../../
|