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
crypto/arch/arm/crypto_arch.h defines the macros indicating that the platform supports assembly implementations of those functions, but those assembly files are only built on ELF platforms. Those macros should either be behind an #ifdef __ELF__, or the assembly functions should be made to build for other binary formats.
The text was updated successfully, but these errors were encountered:
If I understand correctly, the autoconf build disables assembly by passing -DOPENSSL_NO_ASM and this is an issue with CMake's ENABLE_ASM logic on this platform. As a workaround using cmake -DENABLE_ASM=OFF ... should do the trick.
crypto/arch/arm/crypto_arch.h defines the macros indicating that the platform supports assembly implementations of those functions, but those assembly files are only built on ELF platforms. Those macros should either be behind an
#ifdef __ELF__
, or the assembly functions should be made to build for other binary formats.The text was updated successfully, but these errors were encountered: