From: James Zern Date: Fri, 24 Jul 2015 21:24:20 +0000 (-0700) Subject: build/make/Android.mk: support TARGET_ARCH_ABI=x86_64 X-Git-Tag: v1.5.0~383^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5da87e84d588abe5de3b9461e074cb5436c6f3f5;p=libvpx build/make/Android.mk: support TARGET_ARCH_ABI=x86_64 requires r10e or newer: Android NDK, Revision 10e (May 2015) ... Other bug fixes: ... - Fixed .asm support for ABI x86_64. Change-Id: I51ec9a5f77c982b7412d922e896348a83ae2d7d6 --- diff --git a/README b/README index 7b44ba7a2..3adc55148 100644 --- a/README +++ b/README @@ -85,6 +85,7 @@ COMPILING THE APPLICATIONS/LIBRARIES: x86-win32-vs10 x86-win32-vs11 x86-win32-vs12 + x86_64-android-gcc x86_64-darwin9-gcc x86_64-darwin10-gcc x86_64-darwin11-gcc diff --git a/build/make/Android.mk b/build/make/Android.mk index e971c9d1c..aa7a8c974 100644 --- a/build/make/Android.mk +++ b/build/make/Android.mk @@ -67,6 +67,8 @@ else ifeq ($(TARGET_ARCH_ABI),arm64-v8a) LOCAL_ARM_MODE := arm else ifeq ($(TARGET_ARCH_ABI),x86) include $(CONFIG_DIR)libs-x86-android-gcc.mk +else ifeq ($(TARGET_ARCH_ABI),x86_64) + include $(CONFIG_DIR)libs-x86_64-android-gcc.mk else ifeq ($(TARGET_ARCH_ABI),mips) include $(CONFIG_DIR)libs-mips-android-gcc.mk else diff --git a/configure b/configure index 6cac15aee..fcab14581 100755 --- a/configure +++ b/configure @@ -132,6 +132,7 @@ all_platforms="${all_platforms} x86-win32-vs9" all_platforms="${all_platforms} x86-win32-vs10" all_platforms="${all_platforms} x86-win32-vs11" all_platforms="${all_platforms} x86-win32-vs12" +all_platforms="${all_platforms} x86_64-android-gcc" all_platforms="${all_platforms} x86_64-darwin9-gcc" all_platforms="${all_platforms} x86_64-darwin10-gcc" all_platforms="${all_platforms} x86_64-darwin11-gcc"