ensure x86_64 case of NDK is supported

This commit is contained in:
Nathan Freitas 2015-02-04 16:29:03 -05:00
parent a41367cf50
commit 50519d8a0b
1 changed files with 1 additions and 1 deletions

2
external/Makefile vendored
View File

@ -16,7 +16,7 @@ EXTERNAL_ROOT := $(shell pwd)
# user building this will have to manually set NDK_PROCESSOR or NDK_TOOLCHAIN.
CPU := $(shell uname -m)
ifeq ($(CPU),x86_64)
NDK_PROCESSOR=x86
NDK_PROCESSOR=x86_64
else
NDK_PROCESSOR=x86
endif