eclipse-theia / theia

Eclipse Theia is a cloud & desktop IDE framework implemented in TypeScript.
http://theia-ide.org
Eclipse Public License 2.0
19.29k stars 2.45k forks source link

Disassembly View Debug #13865

Open wss29 opened 3 days ago

wss29 commented 3 days ago

Feature Description:

When it comes to debugging C++ project, not only debug source code, but most time it also needs debug disassembly when no source code exists. I have seen vscode extensions cpptools can debug disassembly view very well, does theia plan to support disassembly view debug? image

planger commented 2 days ago

Theia provides a native disassembly view, which has been added in PR 11186. It has been tested with cdt-gdb-vscode. Does this address your requirements?

wss29 commented 2 days ago

Theia provides a native disassembly view, which has been added in PR 11186. It has been tested with cdt-gdb-vscode. Does this address your requirements?

Hi @planger until latest theia version 1.50.1, I have try theia's Disassembly View with cdt-gdb-adapter, It can only display disassembly code but can not debug. if you have used cpptools in vscode disassembly view you will know the effect

planger commented 2 days ago

Oh, ok I see. So tihs issue is about adding debug capabilities, like setting a breakpoint or perfoming a step in the context of the disassembly view. Got it. I'm not aware of any immediate plans to add this feature though.