mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Copy the new code to `src/secp256k1` without changes: `src/secp256k1` is identical to bitcoin-core/secp256k1@acf5c55 (v0.3.2). We could consider changing to a Git submodule, though that would require changes to the build instructions because we are not using submodules anywhere else.
7 lines
176 B
CMake
7 lines
176 B
CMake
function(check_arm32_assembly)
|
|
try_compile(HAVE_ARM32_ASM
|
|
${CMAKE_BINARY_DIR}/check_arm32_assembly
|
|
SOURCES ${CMAKE_SOURCE_DIR}/cmake/source_arm32.s
|
|
)
|
|
endfunction()
|