mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-15 11:36:00 -05:00
Merge pull request #274
a83bb48
Make ecmult static precomputation default (Pieter Wuille)
This commit is contained in:
commit
1b68366201
2 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ env:
|
||||||
- FIELD=32bit ENDOMORPHISM=yes
|
- FIELD=32bit ENDOMORPHISM=yes
|
||||||
- BIGNUM=no
|
- BIGNUM=no
|
||||||
- BIGNUM=no ENDOMORPHISM=yes
|
- BIGNUM=no ENDOMORPHISM=yes
|
||||||
- BIGNUM=no STATICPRECOMPUTATION=yes
|
- BIGNUM=no STATICPRECOMPUTATION=no
|
||||||
- BUILD=distcheck
|
- BUILD=distcheck
|
||||||
- EXTRAFLAGS=CFLAGS=-DDETERMINISTIC
|
- EXTRAFLAGS=CFLAGS=-DDETERMINISTIC
|
||||||
matrix:
|
matrix:
|
||||||
|
|
|
@ -98,9 +98,9 @@ AC_ARG_ENABLE(endomorphism,
|
||||||
[use_endomorphism=no])
|
[use_endomorphism=no])
|
||||||
|
|
||||||
AC_ARG_ENABLE(ecmult_static_precomputation,
|
AC_ARG_ENABLE(ecmult_static_precomputation,
|
||||||
AS_HELP_STRING([--enable-ecmult-static-precomputation],[enable precomputed ecmult table for signing (default is no)]),
|
AS_HELP_STRING([--enable-ecmult-static-precomputation],[enable precomputed ecmult table for signing (default is yes)]),
|
||||||
[use_ecmult_static_precomputation=$enableval],
|
[use_ecmult_static_precomputation=$enableval],
|
||||||
[use_ecmult_static_precomputation=no])
|
[use_ecmult_static_precomputation=yes])
|
||||||
|
|
||||||
AC_ARG_WITH([field], [AS_HELP_STRING([--with-field=64bit|32bit|auto],
|
AC_ARG_WITH([field], [AS_HELP_STRING([--with-field=64bit|32bit|auto],
|
||||||
[Specify Field Implementation. Default is auto])],[req_field=$withval], [req_field=auto])
|
[Specify Field Implementation. Default is auto])],[req_field=$withval], [req_field=auto])
|
||||||
|
|
Loading…
Add table
Reference in a new issue