I am searching for a GUI based debugging tool which reads DWARF info from ELF file and maps the assembly instructions to the line number of the source code. Are there any such tools existing, please let me know?
-
Did you try GDB? Why do you need a GUI based tool? What OS should host the GUI program? What have your TRIED?harper– harper2015-06-29 08:30:53 +00:00Commented Jun 29, 2015 at 8:30
-
@harper I need GUI so that it would be easy to browse the code and compare assembly instructions at the same time(in same GUI terminal), not by opening two separate terminals one to map the assembly code and get source code line number and other to browse the source code, as we work with "addr2line" utility. I tried "addr2line" utility but as i told before, its not user friendly. Regarding OS, linux is preferred, but any OS should be ok.vimal prathap– vimal prathap2015-06-29 08:44:49 +00:00Commented Jun 29, 2015 at 8:44
Add a comment
|
1 Answer
There are many gdb GUIs. There is a reasonably complete list on the GDB Wiki. For best results, pick one from the first ("Using modern GDB/MI") category.