mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-05 11:28:17 -04:00
add dbg opts
This commit is contained in:
parent
75588a1224
commit
523fd913dd
@ -47,12 +47,20 @@ fi
|
|||||||
HOME=`cygpath -w $HOME`
|
HOME=`cygpath -w $HOME`
|
||||||
export 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
|
# 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
|
# make a distinction between python_d and python. We'll accept the user
|
||||||
# parameter -d to indicate we should run python_d.
|
# parameter -d to indicate we should run python_d.
|
||||||
|
|
||||||
if [ x"$1" = x"-d" ]; then
|
|
||||||
shift 1
|
shift 1
|
||||||
exec python_d ${1+"$@"}
|
exec python_d ${1+"$@"}
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user