@@ -107,7 +107,7 @@ if(SECP256K1_TEST_OVERRIDE_WIDE_MULTIPLY)
107107endif ()
108108mark_as_advanced (FORCE SECP256K1_TEST_OVERRIDE_WIDE_MULTIPLY)
109109
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]" )
111111set_property (CACHE SECP256K1_ASM PROPERTY STRINGS "AUTO" "OFF" "x86_64" "arm32" )
112112check_string_option_value(SECP256K1_ASM)
113113if (SECP256K1_ASM STREQUAL "arm32" )
@@ -117,7 +117,7 @@ if(SECP256K1_ASM STREQUAL "arm32")
117117 if (HAVE_ARM32_ASM)
118118 add_compile_definitions (USE_EXTERNAL_ASM=1)
119119 else ()
120- message (FATAL_ERROR "ARM32 assembly optimization requested but not available." )
120+ message (FATAL_ERROR "ARM32 assembly requested but not available." )
121121 endif ()
122122elseif (SECP256K1_ASM)
123123 include (CheckX86_64Assembly)
@@ -128,14 +128,14 @@ elseif(SECP256K1_ASM)
128128 elseif (SECP256K1_ASM STREQUAL "AUTO" )
129129 set (SECP256K1_ASM "OFF" )
130130 else ()
131- message (FATAL_ERROR "x86_64 assembly optimization requested but not available." )
131+ message (FATAL_ERROR "x86_64 assembly requested but not available." )
132132 endif ()
133133endif ()
134134
135135option (SECP256K1_EXPERIMENTAL "Allow experimental configuration options." OFF )
136136if (NOT SECP256K1_EXPERIMENTAL)
137137 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." )
139139 endif ()
140140endif ()
141141
@@ -280,7 +280,7 @@ message("Parameters:")
280280message (" ecmult window size .................. ${SECP256K1_ECMULT_WINDOW_SIZE} " )
281281message (" ecmult gen precision bits ........... ${SECP256K1_ECMULT_GEN_PREC_BITS} " )
282282message ("Optional features:" )
283- message (" assembly optimization ............... ${SECP256K1_ASM} " )
283+ message (" assembly ............. ............... ${SECP256K1_ASM} " )
284284message (" external callbacks .................. ${SECP256K1_USE_EXTERNAL_DEFAULT_CALLBACKS} " )
285285if (SECP256K1_TEST_OVERRIDE_WIDE_MULTIPLY)
286286 message (" wide multiplication (test-only) ..... ${SECP256K1_TEST_OVERRIDE_WIDE_MULTIPLY} " )
0 commit comments