Multilingual IDE

I have software that uses several languages ​​that are available as eclipse plugins (java, C ++, python). Eszy call each other. I was wondering if there is a way to debug all these languages ​​using eclipse. I have sources for all of them, and all of them are projects in eclipse, but so far they are working independently, and I was wondering if, for example, could I add a breakpoint in C ++ code and name a java program that calls C ++ code, execution pauses when it reaches the C ++ checkpoint. I think this is somehow similar to "joining a process" in Visual Studio, although I'm not sure Visual Studio also provides this feature. Is this possible with eclipse or Visual Studio?

+3
source share
1 answer

As far as I know, Eclipse does not support multidebugger debugging. However, you could simultaneously debug the same workspace in many instances of Eclipse. Just run the debugger for each language separately, connecting to them, as you said.

0
source

All Articles