소스 검색
Fix Android x86 Architecture name (#2783)
When building a x86 project, the folder inside lib is named i686. However Android x86 actually expects the folder to be called x86.
pull/2785/head
IsaacTCB
3 년 전
committed by
GitHub
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일과
1개의 추가작업 그리고
1개의 파일을 삭제
-
examples/Makefile.Android
|
|
|
@ -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 |
|
|
|
|