mirror of https://github.com/bitcoin/bitcoin
Merge bitcoin/bitcoin#27580: msvc: Cleanup after upgrading libsecp256k1 up to 0.3.0
pull/27604/headd9b54c46cc
msvc: Cleanup after upgrading libsecp256k1 up to 0.3.0 (Hennadii Stepanov) Pull request description: libsecp256k1 [v0.3.0](https://github.com/bitcoin-core/secp256k1/blob/master/CHANGELOG.md#030---2023-03-08): > Removed the configuration header `src/libsecp256k1-config.h`. This PR removed the code that has been unused since https://github.com/bitcoin/bitcoin/pull/27230. The `USE_ASM_X86_64` is now undefined explicitly (but actually it seems a bit redundant). The `ECMULT_GEN_PREC_BITS` and `ECMULT_WINDOW_SIZE` macros are defined by the source code to their defaults. --- Considering the upcoming CMake-based build system, these changes have a low-priority. ACKs for top commit: fanquake: ACKd9b54c46cc
Tree-SHA512: f279aeee1da57af5fdc4bd4f2000f1fea4180895f0e5b576545092a8318c756d36192f09a0cb0929cef74ed384c46777d5e6b6f92f4542b308e984e4abf473dc
commit
26cb32c02d
@ -1,15 +0,0 @@
|
||||
/**********************************************************************
|
||||
* Copyright (c) 2013, 2014 Pieter Wuille *
|
||||
* Distributed under the MIT software license, see the accompanying *
|
||||
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
|
||||
**********************************************************************/
|
||||
|
||||
#ifndef BITCOIN_LIBSECP256K1_CONFIG_H
|
||||
#define BITCOIN_LIBSECP256K1_CONFIG_H
|
||||
|
||||
#undef USE_ASM_X86_64
|
||||
|
||||
#define ECMULT_GEN_PREC_BITS 4
|
||||
#define ECMULT_WINDOW_SIZE 15
|
||||
|
||||
#endif // BITCOIN_LIBSECP256K1_CONFIG_H
|
Loading…
Reference in new issue