add linux arm support: RaspberryPi(armv7l) and aarch64

This commit is contained in:
j 2016-06-24 12:51:01 +02:00
commit 4c34cbed3c
4 changed files with 22 additions and 3 deletions

7
ctl
View file

@ -44,6 +44,13 @@ else
else
ARCH=32
fi
if [ $PLATFORM == "aarch64" ]; then
ARCH="_aarch64"
PLATFORM_PY=3.5
fi
if [ $PLATFORM == "armv7l" ]; then
ARCH="_armv7l"
fi
PLATFORM="linux$ARCH"
fi
if [ $SYSTEM == "Darwin" ]; then