Commit 2dcf4d9c authored by Felix Paul Kühne's avatar Felix Paul Kühne

contrib: don't treat AArch64 as ARMv7 for iOS

parent fe69b676
......@@ -239,7 +239,13 @@ case "${OS}" in
add_make_enabled "HAVE_MACOSX" "HAVE_DARWIN_OS" "HAVE_BSD"
else
check_ios_sdk
add_make_enabled "HAVE_IOS" "HAVE_DARWIN_OS" "HAVE_BSD" "HAVE_NEON" "HAVE_ARMV7A"
add_make_enabled "HAVE_IOS" "HAVE_DARWIN_OS" "HAVE_BSD"
case "${HOST}" in
*arm*)
add_make_enabled "HAVE_NEON" "HAVE_ARMV7A"
;;
esac;
fi
;;
*bsd*)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment