Skip to content

Commit

Permalink
Fix Android x86 Architecture name (#2783)
Browse files Browse the repository at this point in the history
When building a x86 project, the folder inside lib is named i686. However Android x86 actually expects the folder to be called x86.
  • Loading branch information
IsaacTCB authored Oct 30, 2022
1 parent d91f309 commit 4c4a703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/Makefile.Android
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ifeq ($(ANDROID_ARCH),ARM64)
ANDROID_ARCH_NAME = arm64-v8a
endif
ifeq ($(ANDROID_ARCH),x86)
ANDROID_ARCH_NAME = i686
ANDROID_ARCH_NAME = x86
endif
ifeq ($(ANDROID_ARCH),x86_64)
ANDROID_ARCH_NAME = x86_64
Expand Down

0 comments on commit 4c4a703

Please sign in to comment.