add dbg opts

This commit is contained in:
cxgeorge 2001-11-27 22:58:57 +00:00
parent 75588a1224
commit 523fd913dd

View File

@ -47,12 +47,20 @@ fi
HOME=`cygpath -w $HOME`
export HOME
if [ x"$1" = x"-msdev" ]; then
# used for local machine debugging of vc dlls called by python
shift 1
exec msdev ${1+"$@"} &
elif [ x"$1" = x"-remotedbg" ]; then
# run msvc remote debug setup on local dbg tgt machine, connect using msdev on another machine
shift 1
exec msvcmon ${1+"$@"} &
elif [ x"$1" = x"-d" ]; then
# We can't run with -u under windows for some reason. But we do need to
# make a distinction between python_d and python. We'll accept the user
# parameter -d to indicate we should run python_d.
if [ x"$1" = x"-d" ]; then
shift 1
exec python_d ${1+"$@"}
else