--- Quote Start ---
originally posted by snadden@Sep 21 2006, 07:41 AM
that sounds like you are trying to single-step through optimised code. ecos sets the optimisation level to 3 by default, which changes the code execution order and makes single stepping difficult to do. if you haven't done this already then change the optimisation to zero in the ecos configuration tool, then do a clean build of ecos and your application.
the optimisation level is set in the "global build options" folder in the ecos configuration tool. change the global compiler flags from -o3 to -o0 to switch off the optimisation.
mike
<div align='right'><{post_snapback}> (index.php?act=findpost&pid=18378)
--- quote end ---
--- Quote End ---
Yeah, I found that out first. I am now running with O0 as the optimizations. Still having the same problems (although the disassembled code is easier to follow now).