Browse Source

Fixes CC while compiling for ANDROID_ARCH x86 (#2148)

* Override CC while compiling for ANDROID_ARCH x86

* REfix Override CC while compiling
WilledgeR 3 năm trước cách đây
mục cha
commit
e24443bbbc
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      src/Makefile

+ 6 - 0
src/Makefile

@@ -259,6 +259,12 @@ ifeq ($(PLATFORM),PLATFORM_ANDROID)
     ifeq ($(ANDROID_ARCH),arm64)
         CC = $(ANDROID_TOOLCHAIN)/bin/$(ANDROID_COMPILER_ARCH)-linux-android$(ANDROID_API_VERSION)-clang
     endif
+    ifeq ($(ANDROID_ARCH),x86)
+        CC = $(ANDROID_TOOLCHAIN)/bin/$(ANDROID_COMPILER_ARCH)-linux-android$(ANDROID_API_VERSION)-clang
+    endif
+    ifeq ($(ANDROID_ARCH),x86_64)
+        CC = $(ANDROID_TOOLCHAIN)/bin/$(ANDROID_COMPILER_ARCH)-linux-android$(ANDROID_API_VERSION)-clang
+    endif
     # It seems from Android NDK r22 onwards we need to use llvm-ar
     AR = $(ANDROID_TOOLCHAIN)/bin/llvm-ar
 endif