Page 1 of 1

Can I use codelite to debug arm code?

Posted: Mon Nov 17, 2008 1:02 pm
by mmkider
If codelite can support "debuger initialization commands", I think it can be used to debug arm code.
as follow
Image

codelite is speed and stable

Re: Can I use codelite to debug arm code?

Posted: Mon Nov 17, 2008 1:14 pm
by eranif
You can.

You have several options to do this:
You can use gdbserver:
open the project context menu, and select:
settings -> debugger tab
Inside it, you can enter list of commands to send to the debugger
and in addition, if you are using gdbserver, you can specify the IP/port of the gdbserver
Image
Second option:
if you dont have an open project, Codelite also supports 'Quick Debug' which is an interface to gdb without the need of workspace/project.
From Debug -> Quick Debug
Image

EDIT: You might also want to read this:
http://codelite.org/LiteEditor/Debugging
and this:
http://codelite.org/LiteEditor/DebuggingWithQuickDebug

Eran