Skip to content

Commit a1d83a8

Browse files
gen_context: Don't include basic-config.h
Before this commit, gen_context.c both included libsecp256k1-config.h and basic-config.h: The former only to obtain ECMULT_GEN_PREC_BITS and the latter to obtain a basic working configuration to be able to use the library. This was inelegant and confusing: It meant that basic-config.h needs to #undef all the macros defined in libsecp256k1-config.h. Moreover, it meant that basic-config.h cannot define ECMULT_GEN_PREC_BITS, essentially making this file specific for use in gen_context.c. After this commit, gen_context.c include only libsecp256k1-config.h. basic-config.h is not necessary anymore for the modules used in gen_context.c because 79f1f7a made the preprocessor detect all the relevant config options. On the way, we remove an unused #define in basic-config.h.
1 parent 1e5d50f commit a1d83a8

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

src/basic-config.h

-9
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,6 @@
99

1010
#ifdef USE_BASIC_CONFIG
1111

12-
#undef USE_ASM_X86_64
13-
#undef USE_ECMULT_STATIC_PRECOMPUTATION
14-
#undef USE_EXTERNAL_ASM
15-
#undef USE_EXTERNAL_DEFAULT_CALLBACKS
16-
#undef USE_FORCE_WIDEMUL_INT64
17-
#undef USE_FORCE_WIDEMUL_INT128
18-
#undef ECMULT_WINDOW_SIZE
19-
20-
#define USE_WIDEMUL_64 1
2112
#define ECMULT_WINDOW_SIZE 15
2213

2314
#endif /* USE_BASIC_CONFIG */

src/gen_context.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
#if !defined(ECMULT_GEN_PREC_BITS)
1010
#include "libsecp256k1-config.h"
1111
#endif
12-
#define USE_BASIC_CONFIG 1
13-
#include "basic-config.h"
12+
13+
/* We can't require the precomputed tables when creating them. */
14+
#undef ECMULT_USE_STATIC_PRECOMPUTATION
1415

1516
#include "include/secp256k1.h"
1617
#include "assumptions.h"

0 commit comments

Comments
 (0)