]> Git Repo - secp256k1.git/commitdiff
Build benchmarks by default
authorPieter Wuille <[email protected]>
Wed, 27 Sep 2017 22:13:38 +0000 (15:13 -0700)
committerPieter Wuille <[email protected]>
Thu, 28 Sep 2017 00:25:12 +0000 (17:25 -0700)
configure.ac
src/gen_context.c

index e5fcbcb4edf2ace1c2b8740fc118b1e784f12d5e..e935146907aee8371c56850ceb8acc3f6841d41e 100644 (file)
@@ -85,9 +85,9 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[char foo;]])],
     ])
 
 AC_ARG_ENABLE(benchmark,
-    AS_HELP_STRING([--enable-benchmark],[compile benchmark (default is no)]),
+    AS_HELP_STRING([--enable-benchmark],[compile benchmark (default is yes)]),
     [use_benchmark=$enableval],
-    [use_benchmark=no])
+    [use_benchmark=yes])
 
 AC_ARG_ENABLE(coverage,
     AS_HELP_STRING([--enable-coverage],[enable compiler flags to support kcov coverage analysis]),
index 1835fd491d16b7d8f4774327f25994a79ea1986a..87d296ebf0e2c34c02cc987247a571c8646cd6a1 100644 (file)
@@ -41,7 +41,7 @@ int main(int argc, char **argv) {
     
     fprintf(fp, "#ifndef _SECP256K1_ECMULT_STATIC_CONTEXT_\n");
     fprintf(fp, "#define _SECP256K1_ECMULT_STATIC_CONTEXT_\n");
-    fprintf(fp, "#include \"group.h\"\n");
+    fprintf(fp, "#include \"src/group.h\"\n");
     fprintf(fp, "#define SC SECP256K1_GE_STORAGE_CONST\n");
     fprintf(fp, "static const secp256k1_ge_storage secp256k1_ecmult_static_context[64][16] = {\n");
 
This page took 0.025513 seconds and 4 git commands to generate.