Skip to content

Commit

Permalink
fix compilation for ARM64 with NDK
Browse files Browse the repository at this point in the history
  • Loading branch information
skal65535 committed Mar 22, 2018
1 parent 78148b2 commit f071548
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Application.mk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
APP_STL := gnustl_shared
APP_STL := c++_shared
2 changes: 1 addition & 1 deletion src/sjpegi.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#define SJPEG_USE_SSE2
#endif

#if defined(__ANDROID__) && defined(__ARM_ARCH_7A__)
#if defined(__ARM_NEON__) || defined(__ARM_NEON) || defined(__aarch64__)
#define SJPEG_ANDROID_NEON // Android targets that might support NEON
#endif

Expand Down

0 comments on commit f071548

Please sign in to comment.