Hello, I have written project on ARM7 platform in IAR development tools. I have used C++ language. Now I am going to move this project to KEIL development tool and using GCC compiler. I am testing evaluate version of ARM Keil tool-set. I can not load project into debugger (simmulator). Is this problem that I have built the project in C++ ? Is KEIL debugger able load C++ debug information from GCC output ? Thanks for answer
We have solved in the last version an problem with GNU C++ loading. Please download the Eval Version V2.20 from: http://www.keil.com/demo/eval/arm.htm If this still does not work, email your test code to support.intl@keil.com. Please ZIP the complete project in this case. Reinhard
Thanks for your answer, I have found the cause for the debugger can not consume GCC output. I had code section of my asm boot module named .boot instead .text. While I had renamed it to standard name (.text), debugger began works well.