Do we have a disassembler for CodeLite
No, (afaik) there's no dedicated display of assembly. The nearest thing is the 'memory' section of the Debugger pane, which will display the contents of a block of memory in hexadecimal.
Basically I am interested to debug and see the assembly code of the output.
So a disassembler will help me a lot.
Then you must have unusual needs. CodeLite is a C/C++ IDE, and it's rarely necessary to know what assembly code your compiler generates.
A debugger is certainly an essential, and CodeLite uses gdb. If you really do need to see low-level output, then gdb can emit it for you. CodeLite does let you send a command direct to gdb, and displays the resulting output:
- Interrupt a running program, or hit a breakpoint.
In the 'debug' section of the Output pane, enter disassemble or disassemble /mr in the 'Send' field, and click the send button.
Low-level output for that section of the program will be displayed in the Output pane.
Regards,
David