Skip to content

Commit ab43945

Browse files
committed
fix(windows): enable secp256k1 recovery module in batch build script
1 parent 0b9bbf1 commit ab43945

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/windows/build_secp256k1.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ git clone https://github.com/bitcoin-core/secp256k1
44
cd secp256k1
55
git checkout 68b55209f1ba3e6c0417789598f5f75649e9c14c
66
git reset --hard
7-
cmake -G "Visual Studio 17 2022" -A x64 -S . -B build
7+
if exist "build" rmdir /s /q "build"
8+
cmake -G "Visual Studio 17 2022" -A x64 -S . -B build -DSECP256K1_ENABLE_MODULE_RECOVERY=ON
89
cd build
910
cmake --build .
1011
if not exist "..\..\..\..\..\build\" mkdir "..\..\..\..\..\build\"

0 commit comments

Comments
 (0)