suddenly cannot debug....

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rabbitysun
    New Member
    • Feb 2013
    • 3

    suddenly cannot debug....

    i was just modifying my program 'cause it would give the desired answer and suddenly i couldn't debug it anymore...
    here's the error code

    Code:
    'score.exe': Loaded 'C:\Users\rabbitysun\Documents\Visual Studio 2010\Projects\score\Debug\score.exe', Symbols loaded.
    'score.exe': Loaded 'C:\Windows\System32\ntdll.dll', Cannot find or open the PDB file
    'score.exe': Loaded 'C:\Windows\System32\kernel32.dll', Cannot find or open the PDB file
    'score.exe': Loaded 'C:\Windows\System32\KernelBase.dll', Cannot find or open the PDB file
    'score.exe': Loaded 'C:\Windows\System32\msvcp100d.dll', Symbols loaded.
    'score.exe': Loaded 'C:\Windows\System32\msvcr100d.dll', Symbols loaded.
    The program '[1192] score.exe: Native' has exited with code 0 (0x0).
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    It looks like you are including release libraries in your project.

    You must use debug libraries in your debug builds because only these libraries have code to support the debugger.

    No libraries in Windows\System3 2\ are debug libraries.

    Comment

    Working...