Skip to content

Commit 4afec9f

Browse files
committed
Build benchmarks by default
1 parent 0b70241 commit 4afec9f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[char foo;]])],
8585
])
8686

8787
AC_ARG_ENABLE(benchmark,
88-
AS_HELP_STRING([--enable-benchmark],[compile benchmark (default is no)]),
88+
AS_HELP_STRING([--enable-benchmark],[compile benchmark (default is yes)]),
8989
[use_benchmark=$enableval],
90-
[use_benchmark=no])
90+
[use_benchmark=yes])
9191

9292
AC_ARG_ENABLE(coverage,
9393
AS_HELP_STRING([--enable-coverage],[enable compiler flags to support kcov coverage analysis]),

src/gen_context.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ int main(int argc, char **argv) {
4141

4242
fprintf(fp, "#ifndef _SECP256K1_ECMULT_STATIC_CONTEXT_\n");
4343
fprintf(fp, "#define _SECP256K1_ECMULT_STATIC_CONTEXT_\n");
44-
fprintf(fp, "#include \"group.h\"\n");
44+
fprintf(fp, "#include \"src/group.h\"\n");
4545
fprintf(fp, "#define SC SECP256K1_GE_STORAGE_CONST\n");
4646
fprintf(fp, "static const secp256k1_ge_storage secp256k1_ecmult_static_context[64][16] = {\n");
4747

0 commit comments

Comments
 (0)