Cross compiling for Windows. Where is .dll file? #1500
Answered
by
real-or-random
robert-dzikowski
asked this question in
Q&A
-
I tried to cross compile for Windows with
But there are no .dll files in /home/robert/secp256k1/cmake. |
Beta Was this translation helpful? Give feedback.
Answered by
real-or-random
Feb 28, 2024
Replies: 1 comment
-
The command |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
robert-dzikowski
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The command
cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/x86_64-w64-mingw32.toolchain.cmake
only prepares the build. You need to runcmake --build .
afterwards to run the build process. See the instructions in the README file.