Click here to Skip to main content
15,890,897 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have tried many setting changes.but my program fails to debug with the following error...
'08.exe': Loaded 'D:\Project\output\Debug\08.exe', Symbols loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', Exports loaded.
'08.exe': Loaded 'D:\Project\output\Debug\ControllerInterface.dll', Exports loaded.
'08.exe': Loaded 'D:\Project\output\Debug\LedDisplayContrller.dll', Exports loaded.
'08.exe': Loaded 'D:\Project\output\Debug\dcc.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\ws2_32.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\advapi32.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\rpcrt4.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\secur32.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\msvcrt.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\ws2help.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\mfc100.dll', Symbols loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\msvcr100.dll', Symbols loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\user32.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\gdi32.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\shlwapi.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\comctl32.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\msimg32.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6002.22791_x-ww_c8dff154\GdiPlus.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\oleaut32.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\MSCTF.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\MSCTFIME.IME', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\clbcatq.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\comres.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\version.dll', Exports loaded.
'08.exe': Loaded 'C:\WINDOWS\system32\xpsp2res.dll', Binary was not built with debug information.
Posted
Comments
Jochen Arndt 21-Sep-12 4:51am    
I did not see any error message.

It does not seem that your application is a debug build, because it loads release libraries, not debug libraries (e.g. mfc100.dll, the debug version would be mfc100d.dll).

Looks like you tried to run your program in debug mode (e. g. by pressing F5 or selecting [Debug]->[Start Debugging] from the menu), but built it in release mode.

Check your toolbar for text boxes: there are normally three, and one of them should either read Release or Debug. If it's Release, switch to Debug instead, then build your solution again. If not, there must be another problem in your project settings.


[edit]Just spotted the messages indicating that you did build your project in Debug mode. In that case there is no problem. You just have to set a breakpoint in your program so that exectution will break there.

If you want more debug information from other libraries, make sure that your project settings refer to the appropriate debug versions of the DLLs, e. g. mfc100d.dll. Check your project options under General for Use of MFC!
[/edit]
 
Share this answer
 
v3
Looks like you tried to run your program in debug mode (e. g. by pressing F5 or selecting [Debug]->[Start Debugging] from the menu), but built it in release mode.

Check your toolbar for text boxes: there are normally three, and one of them should either read Release or Debug. If it's Release, switch to Debug instead. If not, there must be another problem in your project settings.
 
Share this answer
 
My vs2010 files were corrupted.... Now I've reinstalled my vs2010 and its working fine....
 
Share this answer
 
I see those messages are not errors. They are the messages about compiler process of VC++. You dont mind about them.
 
Share this answer
 
Comments
Sharath2790 21-Sep-12 4:54am    
Ok!! but i'm not getting any output window...
Andrewpeter 21-Sep-12 4:57am    
Where did you see them in your IDE?
Jochen Arndt 21-Sep-12 5:01am    
The messages are not from the compiler. They are from the output window when executing the application with the debugger from within VS.
Andrewpeter 21-Sep-12 5:05am    
Oh, it's happen when you run your app in debug mode? When you buit the messages didnt display? They are not errors!
Jochen Arndt 21-Sep-12 5:09am    
When you run the app in debug mode, the output window contains these messages beside the TRACE messages.
When you build your application, the output window contains the compiler and linker messages.

The messages posted here are from a debug session. And you are right, there are no errors.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900