Libsecp256k1 As A Library - DLL - Etc
Libsecp256k1 As A Library - DLL - Etc
Bitcoin Forum > Bitcoin > Development & Technical Discussion > libsecp256k1 as a library/dll/etc
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction. Advertise here.
You can use mingw or cygwin to compile it and get the .dll/.a files for it.
Bitcoin Core contributor | Tip Me! | GitHub | GPG Key Fingerprint 0x17565732E08E5E41
Activity: 686 Sure, but AFAIK, no one publishes builds for it.
Merit: 280 You can use mingw or cygwin to compile it and get the .dll/.a files for it.
aka tonikt
Check out gocoin - my original project of full bitcoin node & cold wallet written in Go.
PGP fingerprint: AB9E A551 E262 A87A 13BB 9059 1BE7 B545 CDF3 FD0E
Bitcoin Core contributor | Tip Me! | GitHub | GPG Key Fingerprint 0x17565732E08E5E41
2. From the msys shell use "pacman -S ..." command to install the following packages: autoconf, perl, automake-wrapper, libtool, make
3. Fetch the latest sources from https://github.com/bitcoin/bitcoin/ and copy the "src/secp2561k" folder to the "home" of your msys2 shell (you don't need the rest of the core's code - just
secp2561k)
4. Go inside the secp2561k folder and excute "./autogen.sh", then "./configure", then "make"
Check out gocoin - my original project of full bitcoin node & cold wallet written in Go.
PGP fingerprint: AB9E A551 E262 A87A 13BB 9059 1BE7 B545 CDF3 FD0E
The Windows 10 Creators Fall Update includes the Linux subsystem. It allows you to run Linux under Windows with better integration than using a separate virtual machine (such as VirtualBox).
I'm part of the Windows Insider program and I installed Ubuntu without any problems and can directly read/write files in the Windows filesystem from my Ubuntu session (the reverse is not true -
you cannot access Linux files from a Windows session). I successfully ran bitcoind in the Linux session.
Unfortunately, there is no official GUI support in the Linux session, although I have seen reports of people who have gotten Gnome up and running. I may look into this some more after the Fall
Update is officially released (it is getting close - I have been getting new builds every 2-4 days recently).
Activity: 686 The Windows 10 Creators Fall Update includes the Linux subsystem.
Merit: 280
I have Win7 and I do not have time and money want to upgrade to Win10
Quote
Activity: 3640 > mbedTLS will build without any external dependencies, it has its own MPI functions and supports secp256k1 primitives
Merit: 6016
And is probably not even remotely constant time for it and is probably also super slow...
You can configure libsecp256k1 not to use GMP at all. Option is --with-bignum=none.