Skip to content

Commit

Permalink
issue #93: disable assembly code for ARM64 (which does not exist yet)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbry committed Jan 1, 2021
1 parent afc9fc7 commit e3b8e92
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ AS_IF([test "x$enable_asm" != "xno"],[
AS_CASE([$host_cpu],
[i386|i486|i586|i686|i786], [AC_DEFINE([OPT_ASM_X86]) asm_selected=x86],
[x86_64], [AC_DEFINE([OPT_ASM_X64]) asm_selected=x64],
[arm64*], [AS_IF([test "x$enable_asm" = "xyes"],[AC_MSG_ERROR(no assembly code for CPU $host_cpu)])],
[arm*], [AC_DEFINE([OPT_ASM_ARM]) asm_selected=arm],
[AS_IF([test "x$enable_asm" = "xyes"],[AC_MSG_ERROR(no assembly code for CPU $host_cpu)])]
)
Expand Down

0 comments on commit e3b8e92

Please sign in to comment.