mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
Documented autotools build process in readme
This commit is contained in:
parent
78fb796997
commit
7fc1fb4fa0
1 changed files with 12 additions and 0 deletions
12
README.md
12
README.md
|
@ -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.
|
* 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.
|
* Slice the precomputed table in memory per byte, so memory access to the table becomes uniform.
|
||||||
* Not fully constant-time.
|
* Not fully constant-time.
|
||||||
|
|
||||||
|
Build steps
|
||||||
|
-----------
|
||||||
|
|
||||||
|
libsecp256k1 is built using autotools:
|
||||||
|
|
||||||
|
$ aclocal
|
||||||
|
$ autoreconf --install
|
||||||
|
$ automake
|
||||||
|
$ ./configure
|
||||||
|
$ make
|
||||||
|
$ sudo make install # optional
|
||||||
|
|
Loading…
Reference in a new issue