[Android] compile.sh: remove NDKv9 support
Jean-Baptiste Kempf
git at videolan.org
Wed Feb 4 17:50:18 CET 2015
vlc-ports/android | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Feb 4 17:50:02 2015 +0100| [1bc50c0a214b10aa3ddbaac16386d7fc7e4f8324] | committer: Jean-Baptiste Kempf
compile.sh: remove NDKv9 support
> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=1bc50c0a214b10aa3ddbaac16386d7fc7e4f8324
---
compile.sh | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/compile.sh b/compile.sh
index 7fb10c3..be8f22b 100755
--- a/compile.sh
+++ b/compile.sh
@@ -6,7 +6,6 @@
set -e
-
if [ -z "$ANDROID_NDK" -o -z "$ANDROID_SDK" ]; then
echo "You must define ANDROID_NDK, ANDROID_SDK and ANDROID_ABI before starting."
echo "They must point to your NDK and SDK directories.\n"
@@ -124,17 +123,8 @@ case "$REL" in
fi
CXXSTL="/"${GCCVER}
;;
- 9*)
- if [ "${HAVE_64}" = 1 ];then
- echo "You need the NDKv10 or later for 64 bits build"
- exit 1
- fi
- GCCVER=4.8
- ANDROID_API=android-9
- CXXSTL="/"${GCCVER}
- ;;
*)
- echo "You need the NDKv9 or later"
+ echo "You need the NDKv10 or later"
exit 1
;;
esac
More information about the Android
mailing list