libdivide icon indicating copy to clipboard operation
libdivide copied to clipboard

NEON is not for AArch32

Open clausecker opened this issue 2 years ago • 0 comments

Your CMake scripts check for NEON support but also enable NEON on AArch32 (i.e. 32 bit ARM). Unfortunately you use a bunch of instrinsic functions only available on AArch64, leading to a build failure in case of a 32 bit build.

Please either fix your NEON code so it builds on 32 bit ARM or change the detection scripts so they only detect NEON on AArch64.

As a temporary workaround, I configure with -DLIBDIVIDE_NEON=OFF.

clausecker avatar Aug 15 '22 19:08 clausecker