@@ -107,7 +107,7 @@ if(SECP256K1_TEST_OVERRIDE_WIDE_MULTIPLY)
107
107
endif ()
108
108
mark_as_advanced (FORCE SECP256K1_TEST_OVERRIDE_WIDE_MULTIPLY)
109
109
110
- set (SECP256K1_ASM "AUTO" CACHE STRING "Assembly optimizations to use: \" AUTO\" , \" OFF\" , \" x86_64\" or \" arm32\" (experimental). [default=AUTO]" )
110
+ set (SECP256K1_ASM "AUTO" CACHE STRING "Assembly to use: \" AUTO\" , \" OFF\" , \" x86_64\" or \" arm32\" (experimental). [default=AUTO]" )
111
111
set_property (CACHE SECP256K1_ASM PROPERTY STRINGS "AUTO" "OFF" "x86_64" "arm32" )
112
112
check_string_option_value(SECP256K1_ASM)
113
113
if (SECP256K1_ASM STREQUAL "arm32" )
@@ -117,7 +117,7 @@ if(SECP256K1_ASM STREQUAL "arm32")
117
117
if (HAVE_ARM32_ASM)
118
118
add_compile_definitions (USE_EXTERNAL_ASM=1)
119
119
else ()
120
- message (FATAL_ERROR "ARM32 assembly optimization requested but not available." )
120
+ message (FATAL_ERROR "ARM32 assembly requested but not available." )
121
121
endif ()
122
122
elseif (SECP256K1_ASM)
123
123
include (CheckX86_64Assembly)
@@ -128,14 +128,14 @@ elseif(SECP256K1_ASM)
128
128
elseif (SECP256K1_ASM STREQUAL "AUTO" )
129
129
set (SECP256K1_ASM "OFF" )
130
130
else ()
131
- message (FATAL_ERROR "x86_64 assembly optimization requested but not available." )
131
+ message (FATAL_ERROR "x86_64 assembly requested but not available." )
132
132
endif ()
133
133
endif ()
134
134
135
135
option (SECP256K1_EXPERIMENTAL "Allow experimental configuration options." OFF )
136
136
if (NOT SECP256K1_EXPERIMENTAL)
137
137
if (SECP256K1_ASM STREQUAL "arm32" )
138
- message (FATAL_ERROR "ARM32 assembly optimization is experimental. Use -DSECP256K1_EXPERIMENTAL=ON to allow." )
138
+ message (FATAL_ERROR "ARM32 assembly is experimental. Use -DSECP256K1_EXPERIMENTAL=ON to allow." )
139
139
endif ()
140
140
endif ()
141
141
@@ -280,7 +280,7 @@ message("Parameters:")
280
280
message (" ecmult window size .................. ${SECP256K1_ECMULT_WINDOW_SIZE} " )
281
281
message (" ecmult gen precision bits ........... ${SECP256K1_ECMULT_GEN_PREC_BITS} " )
282
282
message ("Optional features:" )
283
- message (" assembly optimization ............... ${SECP256K1_ASM} " )
283
+ message (" assembly ............. ............... ${SECP256K1_ASM} " )
284
284
message (" external callbacks .................. ${SECP256K1_USE_EXTERNAL_DEFAULT_CALLBACKS} " )
285
285
if (SECP256K1_TEST_OVERRIDE_WIDE_MULTIPLY)
286
286
message (" wide multiplication (test-only) ..... ${SECP256K1_TEST_OVERRIDE_WIDE_MULTIPLY} " )
0 commit comments