0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-09 10:43:19 -05:00

Merge pull request #22

7fc1fb4 Documented autotools build process in readme (John Driscoll)
This commit is contained in:
Pieter Wuille 2014-06-02 10:43:52 +02:00
commit 255ca387d9
No known key found for this signature in database
GPG key ID: 8F653255C87992E0

View file

@ -35,3 +35,15 @@ Implementation details
* Use a precomputed table of multiples of powers of 16 multiplied with the generator, so general multiplication becomes a series of additions.
* Slice the precomputed table in memory per byte, so memory access to the table becomes uniform.
* Not fully constant-time.
Build steps
-----------
libsecp256k1 is built using autotools:
$ aclocal
$ autoreconf --install
$ automake
$ ./configure
$ make
$ sudo make install # optional