blob: b2001b822c47e7c0638498ea02e12d4f7a15a15a [file] [log] [blame]
Ray Donnellyc2f40d92012-12-05 01:01:42 +00001#!/bin/sh
2
3PROGDIR=`dirname $0`
Andrew Hsiehd8276e92013-11-12 14:33:49 +08004PROGDIR=`cd $PROGDIR && pwd -P`
Ray Donnellyc2f40d92012-12-05 01:01:42 +00005
6# Check if absolute NDK path contain space
7#
8case $PROGDIR in
9 *\ *) echo "ERROR: NDK path cannot contain space"
10 exit 1
11 ;;
12esac
13
David 'Digit' Turnerbd7544d2013-06-10 10:17:33 +020014. $PROGDIR/build/tools/ndk-common.sh
Ray Donnellyc2f40d92012-12-05 01:01:42 +000015
16# -u means unbuffered standard io.
17$PROGDIR/prebuilt/$HOST_TAG/bin/python -u $PROGDIR/ndk-gdb.py "$@"