Eclipse 3.5.2 is not stopping in breakpoints. It\'s as if the debugger is using an older version of the source file.
Tried the usual refresh, clean all projects, bui
(eclipse-workspace)\.metadata\.plugins\org.eclipse.wst.server.core
and delete all tmp folders.Facing same problem with Eclipse Luna. Project clean didn't work. Rebuild didn't work.
What makes it work is uninstall the app on the device before each debugging.
Perhaps you have pushed the Skip all Breakpoints button in the Breakpoints view.
Thanks guys, this really saved my day too. I antecedently pressed on skip break points, if you did the same this will result on break point appearing with a backslash icon on them.
To bring it back to normal:
To confirm, try putting break point on any line, and it should appear normally.
Clearing all Breakpoints fixed the issue
(within debugger perspective: Window -> Remove All Breakpoints
).
Rebuilding the project did not work for me.
It has also happened to me, in my case it was due to the GDB launcher, which I needed to turn to "Legacy Create Process Launcher". To do so,
either change the default launchers to the "Legacy Create Process Launcher", in Windows>Preferences>Run/Debug>Launching>Default Launchers.
or choose this launcher in the debug configuration of your application (Run>Debug configurations>choose your debug configuration). Under the "main" tab at the bottom, click on "Select other...", check the box "Use configuration specific settings" and choose "Legacy Create Process Launcher".