Compiling for Windows 10 #1502
-
I cross compiled on Ubuntu using and compiled on Windows 10 using
In both cases compiled secp256k1 library causes the following error when I try to run Electrum wallet (https://github.com/spesmilo/electrum) on Windows 10
I don't get this error when I compile this library on Ubuntu 22.04.2 LTS using Electrum build script, i.e. Electrum wallet runs without problems on Ubuntu using that compiled library. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You need to enable the recovery module, which is disabled by default. Add |
Beta Was this translation helpful? Give feedback.
-
I wrote
and it worked. Thanks. |
Beta Was this translation helpful? Give feedback.
You need to enable the recovery module, which is disabled by default.
Add
-DSECP256K1_ENABLE_MODULE_RECOVERY=ON
to the firstcmake
invocation.