1@echo off 2rem This is a Windows cmd.exe script used to invoke the NDK-specific Python executable 3call "%~dp0find-win-host.cmd" NDK_WIN_HOST 4if ERRORLEVEL 1 (exit /b 1) 5setlocal 6set NDK_ROOT=%~dp0 7set SHELL=cmd 8"%NDK_ROOT%prebuilt/%NDK_WIN_HOST%/bin/python.exe" -u "%~dp0ndk-gdb.py" %* 9endlocal 10