Merge pull request #118 from dangilbert/development
Fix compilation of x86_64 on android when also compiling others
This commit is contained in:
commit
03ed94d602
|
@ -194,7 +194,7 @@ export ORIGINAL_API=${API}
|
|||
# BUILD ENABLED LIBRARIES ON ENABLED ARCHITECTURES
|
||||
for run_arch in {0..12}; do
|
||||
if [[ ${ENABLED_ARCHITECTURES[$run_arch]} -eq 1 ]]; then
|
||||
if [[ (${run_arch} -eq ${ARCH_ARM64_V8A} || ${run_arch} -eq ${ARCH_X86_64}) && ${API} -lt 21 ]]; then
|
||||
if [[ (${run_arch} -eq ${ARCH_ARM64_V8A} || ${run_arch} -eq ${ARCH_X86_64}) && ${ORIGINAL_API} -lt 21 ]]; then
|
||||
|
||||
# 64 bit ABIs supported after API 21
|
||||
export API=21
|
||||
|
|
Loading…
Reference in New Issue
Block a user