浏览代码

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 2 年前
committed by GitHub
父节点
当前提交
4c4a703841
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      examples/Makefile.Android

+ 1
- 1
examples/Makefile.Android 查看文件

@ -48,7 +48,7 @@ ifeq ($(ANDROID_ARCH),ARM64)
ANDROID_ARCH_NAME = arm64-v8a ANDROID_ARCH_NAME = arm64-v8a
endif endif
ifeq ($(ANDROID_ARCH),x86) ifeq ($(ANDROID_ARCH),x86)
ANDROID_ARCH_NAME = i686
ANDROID_ARCH_NAME = x86
endif endif
ifeq ($(ANDROID_ARCH),x86_64) ifeq ($(ANDROID_ARCH),x86_64)
ANDROID_ARCH_NAME = x86_64 ANDROID_ARCH_NAME = x86_64

正在加载...
取消
保存