Skip to content

Commit

Permalink
Disable ARM SIMD and NEON by default for now (bug #4365)
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Jun 27, 2020
1 parent 8a30242 commit b67a1d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -23222,7 +23222,7 @@ CheckARM()
if test "${enable_arm_simd+set}" = set; then
enableval=$enable_arm_simd; enable_arm_simd=$enableval
else
enable_arm_simd=yes
enable_arm_simd=no
fi

if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_arm_simd = xyes; then
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -898,7 +898,7 @@ CheckARM()
{
AC_ARG_ENABLE(arm-simd,
AC_HELP_STRING([--enable-arm-simd], [use SIMD assembly blitters on ARM [[default=yes]]]),
enable_arm_simd=$enableval, enable_arm_simd=yes)
enable_arm_simd=$enableval, enable_arm_simd=no)
if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_arm_simd = xyes; then
save_CFLAGS="$CFLAGS"
have_arm_simd=no
Expand Down

0 comments on commit b67a1d4

Please sign in to comment.