tags:

views:

109

answers:

1

Does Eclipse or other IDE's support Edit and Continue for C++?

+3  A: 

You mean the debugger feature ? It's more a debugger-dependent than an IDE-dependent feature.

When using Eclipse, my debugger back-end is gdb, so yes, it does support Edit&Continue. (even if it's a bit odd to use, see info -f gdb -n Patching)

Aurélien Vallée