You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set(SECP256K1_ECMULT_WINDOW_SIZE "AUTO"CACHESTRING"Window size for ecmult precomputation for verification, specified as integer in range [2..24]. \"AUTO\"is a reasonable setting for desktop machines (currently 15). [default=AUTO]")
set(SECP256K1_ECMULT_WINDOW_SIZE 15CACHESTRING"Window size for ecmult precomputation for verification, specified as integer in range [2..24]. The default value is a reasonable setting for desktop machines (currently 15). [default=15]")
set(SECP256K1_ECMULT_GEN_KB "AUTO"CACHESTRING"The size of the precomputed table for signing in multiples of 1024 bytes (on typical platforms). Larger values result in possibly better signing or key generation performance at the cost of a larger table. Valid choices are 2, 22, 86. \"AUTO\"is a reasonable setting for desktop machines (currently 22). [default=AUTO]")
set(SECP256K1_ECMULT_GEN_KB 22CACHESTRING"The size of the precomputed table for signing in multiples of 1024 bytes (on typical platforms). Larger values result in possibly better signing or key generation performance at the cost of a larger table. Valid choices are 2, 22, 86. The default value is a reasonable setting for desktop machines (currently 22). [default=22]")
# We do not use CTest's BUILD_TESTING because a single toggle for all tests is too coarse for our needs.
272
274
mark_as_advanced(BUILD_TESTING)
273
275
if(SECP256K1_BUILD_BENCHMARK OR SECP256K1_BUILD_TESTS OR SECP256K1_BUILD_EXHAUSTIVE_TESTS OR SECP256K1_BUILD_CTIME_TESTS OR SECP256K1_BUILD_EXAMPLES)
274
276
enable_testing()
275
277
endif()
276
278
277
-
set(SECP256K1_LATE_CFLAGS ""CACHESTRING"Compiler flags that are added to the command line after all other flags added by the build system.")
278
-
include(AllTargetsCompileOptions)
279
+
set(SECP256K1_APPEND_CFLAGS ""CACHESTRING"Compiler flags that are appended to the command line after all other flags added by the build system. This variable is intended for debugging and special builds.")
280
+
if(SECP256K1_APPEND_CFLAGS)
281
+
# Appending to this low-level rule variable is the only way to
282
+
# guarantee that the flags appear at the end of the command line.
0 commit comments