mirror of https://github.com/python/cpython
gh-99108: Disable HACL SIMD code on older versions of Android (#124304)
Disable HACL SIMD code on older versions of Android
This commit is contained in:
parent
7ee9921734
commit
41e7992e31
|
@ -30654,6 +30654,9 @@ case "$ac_sys_system" in
|
|||
esac
|
||||
|
||||
|
||||
# The SIMD files use aligned_alloc, which is not available on older versions of
|
||||
# Android.
|
||||
if test "$ac_sys_system" != "Linux-android" || test "$ANDROID_API_LEVEL" -ge 28; then
|
||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -msse -msse2 -msse3 -msse4.1 -msse4.2" >&5
|
||||
printf %s "checking whether C compiler accepts -msse -msse2 -msse3 -msse4.1 -msse4.2... " >&6; }
|
||||
if test ${ax_cv_check_cflags__Werror__msse__msse2__msse3__msse4_1__msse4_2+y}
|
||||
|
@ -30714,10 +30717,17 @@ else $as_nop
|
|||
:
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
||||
# The SIMD files use aligned_alloc, which is not available on older versions of
|
||||
# Android.
|
||||
#
|
||||
# Although AVX support is not guaranteed on Android
|
||||
# (https://developer.android.com/ndk/guides/abis#86-64), this is safe because we do a
|
||||
# runtime CPUID check.
|
||||
if test "$ac_sys_system" != "Linux-android" || test "$ANDROID_API_LEVEL" -ge 28; then
|
||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -mavx2" >&5
|
||||
printf %s "checking whether C compiler accepts -mavx2... " >&6; }
|
||||
if test ${ax_cv_check_cflags__Werror__mavx2+y}
|
||||
|
@ -30777,7 +30787,7 @@ else $as_nop
|
|||
:
|
||||
fi
|
||||
|
||||
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
|
14
configure.ac
14
configure.ac
|
@ -7817,6 +7817,9 @@ case "$ac_sys_system" in
|
|||
esac
|
||||
AC_SUBST([LIBHACL_CFLAGS])
|
||||
|
||||
# The SIMD files use aligned_alloc, which is not available on older versions of
|
||||
# Android.
|
||||
if test "$ac_sys_system" != "Linux-android" || test "$ANDROID_API_LEVEL" -ge 28; then
|
||||
dnl This can be extended here to detect e.g. Power8, which HACL* should also support.
|
||||
AX_CHECK_COMPILE_FLAG([-msse -msse2 -msse3 -msse4.1 -msse4.2],[
|
||||
[LIBHACL_SIMD128_FLAGS="-msse -msse2 -msse3 -msse4.1 -msse4.2"]
|
||||
|
@ -7836,10 +7839,17 @@ AX_CHECK_COMPILE_FLAG([-msse -msse2 -msse3 -msse4.1 -msse4.2],[
|
|||
fi
|
||||
|
||||
], [], [-Werror])
|
||||
|
||||
fi
|
||||
AC_SUBST([LIBHACL_SIMD128_FLAGS])
|
||||
AC_SUBST([LIBHACL_SIMD128_OBJS])
|
||||
|
||||
# The SIMD files use aligned_alloc, which is not available on older versions of
|
||||
# Android.
|
||||
#
|
||||
# Although AVX support is not guaranteed on Android
|
||||
# (https://developer.android.com/ndk/guides/abis#86-64), this is safe because we do a
|
||||
# runtime CPUID check.
|
||||
if test "$ac_sys_system" != "Linux-android" || test "$ANDROID_API_LEVEL" -ge 28; then
|
||||
AX_CHECK_COMPILE_FLAG([-mavx2],[
|
||||
[LIBHACL_SIMD256_FLAGS="-mavx2"]
|
||||
AC_DEFINE([HACL_CAN_COMPILE_SIMD256], [1], [HACL* library can compile SIMD256 implementations])
|
||||
|
@ -7857,7 +7867,7 @@ AX_CHECK_COMPILE_FLAG([-mavx2],[
|
|||
AC_MSG_RESULT([standard])
|
||||
fi
|
||||
], [], [-Werror])
|
||||
|
||||
fi
|
||||
AC_SUBST([LIBHACL_SIMD256_FLAGS])
|
||||
AC_SUBST([LIBHACL_SIMD256_OBJS])
|
||||
|
||||
|
|
Loading…
Reference in New Issue