Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions coinlib/bin/build_windows.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ void main() async {
".",
"-B",
"build",
"-DSECP256K1_ENABLE_MODULE_RECOVERY=ON",
"--debug-output",
]);

Expand Down
2 changes: 1 addition & 1 deletion coinlib/bin/build_windows_crosscompile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN git clone https://github.com/bitcoin-core/secp256k1 \
WORKDIR /secp256k1/build

# Build shared library for Windows.
RUN cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/x86_64-w64-mingw32.toolchain.cmake
RUN cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/x86_64-w64-mingw32.toolchain.cmake -DSECP256K1_ENABLE_MODULE_RECOVERY=ON
RUN make

# Build DLL and copy into output.
Expand Down
1 change: 1 addition & 0 deletions coinlib/bin/build_wsl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ void main() async {
await execWithStdio("cmake", [
"..",
"-DCMAKE_TOOLCHAIN_FILE=../cmake/x86_64-w64-mingw32.toolchain.cmake",
"-DSECP256K1_ENABLE_MODULE_RECOVERY=ON",
]);

// Build the project using "make".
Expand Down
Loading