SDL: NDK 11 is now exclusively for 64-bit host systems

This commit is contained in:
pelya
2016-03-12 15:52:47 +02:00
parent 67aa2ba70d
commit 0198a72e35
7 changed files with 28 additions and 31 deletions

View File

@@ -3,15 +3,15 @@
IFS='
'
MYARCH=linux-x86
MYARCH=linux-x86_64
if uname -s | grep -i "linux" > /dev/null ; then
MYARCH=linux-x86
MYARCH=linux-x86_64
fi
if uname -s | grep -i "darwin" > /dev/null ; then
MYARCH=darwin-x86
MYARCH=darwin-x86_64
fi
if uname -s | grep -i "windows" > /dev/null ; then
MYARCH=windows-x86
MYARCH=windows-x86_64
fi
NDK=`which ndk-build`