Development/Tutorials/Debugging/Debugging on MS Windows: Difference between revisions

    From KDE TechBase
    (Replaced content with "{{Moved To Community|Windows/Imported From TechBase/Debugging}}")
     
    (63 intermediate revisions by 7 users not shown)
    Line 1: Line 1:
    =General Hints=
    {{Moved To Community|Windows/Imported From TechBase/Debugging}}
    ==Debugging with DebugView==
    Debug messages (logs) generated by kDebug() and kWarning() are not visible on MS Windows unless application is compiled in so-called CONSOLE subsystem. To show these messages also in WINDOWS subsystem, you can use DebugView tool, coming from SysInternals (currently acquired by Microsoft). The tool offers searching in logs, filtering and saving them to file.
     
    → [http://www.microsoft.com/technet/sysinternals/utilities/debugview.mspx More informations]
    ==Debugging kioslaves==
    kioslaves on windows are started by klauncher (or kio) as separate kioslave processes. The kioslave executable then loads the related kioslave dll dynamically.
     
    To debug kioslaves set the KDE_SLAVE_DEBUG_WAIT environment variable to the name of the kioslave to debug (for example 'file' for the kio_file slave) and restart klauncher. If the requested kioslave is requested the next time, a debugger will be started and attached to the kioslave process immediatly before the kio_slave 'kdemain' function.
     
    On mingw platform gdb is launched and connected to the kioslave process, on msvc platforms the currently install just-in-time-debugger is used. This may be msvc vc2005 ide or the windbg debugger [http://www.microsoft.com/whdc/devtools/debugging/installx86.mspx].  The latter could be set as jit-debugger by running windbg -I.
     
    You may inspect kioslave sources [http://lxr.kde.org/source/KDE/kdelibs/kinit/kioslave.cpp] for more informations.
     
    = MS Visual Studio hints =
     
    == Using MS Visual Studio environment for just debugging ==
     
    Let's assume you're using command line tools (typically SCons) and want to use MS Visual Studio environment for just debugging.
    You don't need to create msvc project for your KDE application to be able to start debugging.
     
    * compile and working executable version of your appliation (compiled in debug mode)
    * run msvc environment
    * execute ''File->Open project''
    * pick your exe file in the file window
    * you can set command line arguments as usual, by pick ''Project->...Properties'' command and enter all of them it in ''Command Arguments'' field
    * if you have libraries placed in other directories than your application's .exe file, and you want to step into these libraries' source code while debugging, pick ''Project->...Properties'' command and enter paths to these directories in ''Symbol Path'' field
    * hit F5 to run the application start the application or F10 to start step by step
    * all debugging functions like setting breakpoints will be available, so you can open source code in the integrated editor and press F9 where needed
    * you can even edit your source code but to compile it, do it with your external, command line tools. You cannot compile the application in the msvc environment because you have not defined a project file
    * before compiling your application, stop debugging session to unlock binaries; no need to close msvc window
    * after compilation you can start debugging again
    * on exit you will be asked to save .sln file (so-called ''solution file'') with your debugging session -- do it and you will be able just to click the .sln file to start your debugging again
    * it's recommended to save the .sln file in the .exe file directory
    * next time you will run msvc environment, you can see name of your application's .sln file in ''File->Recent Projects'' submenu - you can click it to load your debugging session
     
    == Attaching to running application ==
     
    If you have your application is already running, you can attach to it and then start debugging.
     
    * run msvc environment
    * execute ''Debug->processes''
    * select your from the processes list and click "Attach..."
    * msvc environment will load your .sln file if it exists in the same directory as the .exe file, so your breakpoints set in previous session will be active again
    * your program will stop on any breakpoint you have set
     
    == One-step attaching to running application ==
    You can create a macro that automates the task. See [http://blogs.msdn.com/jimgries/archive/2005/11/30/498264.aspx].
     
    == Memory Values ==
    If you are using the debug heap, memory is initialized and cleared with special values. Most interesting values are:
    * 0xCDCDCDCD - Allocated in heap, but not initialized
    * 0xDDDDDDDD - Released heap memory.
    * 0xFDFDFDFD - "NoMansLand" fences automatically placed at boundary of heap memory. Should never be overwritten. If you do overwrite one, you're probably walking off the end of an array.
    * 0xCCCCCCCC - Allocated on stack, but not initialized
    See also: [http://www.samblackburn.com/wfc/technotes/WTN006.htm]
     
    ==How to Not Step Into Functions in the Debugger==
    You'll probably want to avoind stepping into lower-level functions like QString constructors or operators while debugging step-by-step. Here's the detailed (unofficial) [http://blogs.msdn.com/andypennell/archive/2004/02/06/69004.aspx instruction] for various msvc versions.
     
    = MinGW hints =
     
    * Dr. Mingw - Just in Time Debugger [http://jrfonseca.planetaclix.pt/projects/gnu-win32/software/drmingw/]
    * Debugging Qt programs on Windows [http://lists.trolltech.com/qt-interest/2005-08/thread01124-0.html]
     
     
    [[Category:MS Windows]]

    Latest revision as of 14:22, 11 March 2016

    This page is now on the community wiki.