Merge pull request #14 from aelmahmoudy/mipsfix

Define __MIPSEL__ to workaround OpenSSL build failure for mips arch.
This commit is contained in:
n8fr8 2015-07-09 17:36:25 -04:00
commit b272fcc224
1 changed files with 1 additions and 1 deletions

2
external/Makefile vendored
View File

@ -108,7 +108,7 @@ ifneq ($(filter mips%, $(NDK_ABI)),)
ifneq ($(findstring 64, $(NDK_ABI)),)
OPENSSL_CONF_FLAG+=-D_MIPS_SZLONG=64
else
OPENSSL_CONF_FLAG+=-D_MIPS_SZLONG=32
OPENSSL_CONF_FLAG+=-D_MIPS_SZLONG=32 -D__MIPSEL__
endif
endif