This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

How do you set a breakpoint on a label or source line using GEL?

I can set a breakpoint in my GEL files using GEL_HWBreakPtAdd("<function>");

I can set a breakpoint inside a function by right-clicking on the line.

I have not found a way to set a breakpoint on a line or a label using a GEL function.

Is this possible?

I have tried

GEL_HWBreakPtAdd("mysource.c:78");

GEL_HWBreakPtAdd("mysource.c, line 78");

GEL_HWBreakPtAdd("mysource.c", 78);

but neither is consider a valid breakpoint.

Is is possible, if paths are added?