Ver código fonte

Fixes CC while compiling for ANDROID_ARCH x86 (#2148)

* Override CC while compiling for ANDROID_ARCH x86

* REfix Override CC while compiling
pull/2149/head
WilledgeR 4 anos atrás
committed by GitHub
pai
commit
e24443bbbc
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 4AEE18F83AFDEB23
1 arquivos alterados com 6 adições e 0 exclusões
  1. +6
    -0
      src/Makefile

+ 6
- 0
src/Makefile Ver arquivo

@ -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

Carregando…
Cancelar
Salvar