Skip to content

Commit

Permalink
configure.ac: fix build on aarch64_be
Browse files Browse the repository at this point in the history
Fix the following build failure on aarch64_be:

/home/buildroot/autobuild/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/aarch64_be-none-linux-gnu/10.3.1/../../../../aarch64_be-none-linux-gnu/bin/ld: ./.libs/libtesseract.so: undefined reference to `tesseract::IntSimdMatrix::intSimdMatrixNEON'

Fixes:
 - http://autobuild.buildroot.org/results/b9246a37fcf6be4fabfc491daddadfb09e0a320a

Signed-off-by: Fabrice Fontaine <[email protected]>
  • Loading branch information
ffontaine committed Aug 21, 2022
1 parent 778dfc6 commit cffb8a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ case "${host_cpu}" in

;;

aarch64|arm64)
aarch64*|arm64)

# ARMv8 always has NEON and does not need special compiler flags.
AM_CONDITIONAL([HAVE_NEON], true)
Expand Down

0 comments on commit cffb8a3

Please sign in to comment.