Difference between revisions of "Debug generated C code"

(New page: Sometimes you need debug Eiffel generated C codes, this is how to. You should first have Visual Studio installed. ===There are two things you need to do before debugging generated C code...)
 
m (Tell linker to add debug information)
Line 18: Line 18:
 
====Tell linker to add debug information====
 
====Tell linker to add debug information====
  
After successfully C compilation and link, open command console, change directory to W_code (or F_code, using bottom right two buttons in C Output is easiest way)
+
After successfully C compilation and link, open command console, change directory to W_code (or F_code, using bottom right two buttons of C Output tool is easiest way)
  
 
In command console, run
 
In command console, run

Revision as of 01:19, 8 June 2009

Sometimes you need debug Eiffel generated C codes, this is how to.

You should first have Visual Studio installed.

There are two things you need to do before debugging generated C codes

Tell C compiler to add debug information

Change Eiffel C compilation config file "config.eif" (located at $ISE_EIFFEL\studio\config\win64\msc)

From

   optimize: "-Ox -MT"

To

   optimize: "-Od -Zi -MT 

Then you can start C compile in Eiffel projects with debugging information.

Tell linker to add debug information

After successfully C compilation and link, open command console, change directory to W_code (or F_code, using bottom right two buttons of C Output tool is easiest way)

In command console, run

   link @your_project_name.lnk -DEBUG

Please change "your_project_name" to your real project name. This will link your execution binary with debugging information. Make sure you are using Microsoft’s link.exe but not Cygwin's link.exe

Start debug C codes in Visual Studio

Now you can attach the Eiffel process in Visual Studio and debug. Don't forget to catch all exceptions in Visual Studio.

If you want to debug Eiffel generated DLL's C codes, when coping the DLL, you must copy the ".pdb" with the DLL together since ".pdb" file contains debugging information for Visual Studio.