1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-08 19:35:13 +00:00
qb64/internal/source/debug_win.bat
Galleon bd012cc6f0 Updated image decoding files (some were missing)
'libresample' included (but still using 'libsamplerate')
2013-05-10 13:17:41 +10:00

13 lines
432 B
Batchfile

@echo off
cd %0\..\
cd ../..
echo C++ Debugging: qb64.exe using gdb.exe
echo Debugger commands:
echo After the debugger launches type 'run' to start your program
echo After your program crashes type 'list' to find where the problem is and fix/report it
echo Type 'quit' to exit
echo (the GDB debugger has many other useful commands, this advice is for beginners)
pause
internal\c\c_compiler\bin\gdb.exe "qb64.exe"
pause