I have a foo.c source file which has the following function implementation:
#include "header.h"
void PREFIX(function_name)(){
...
}
I'll copy this file into two directories (dir1 and dir2). In dir1, I have header.h like this:
#define PREFIX(a) prefix1_ ## a
and in dir2, I have header.h like:
#define PREFIX(a) prefix2_ ## a
Therefore, during the linking process, I'll have two different function names.
My problem comes up when I want to use gdb to debug this function and I need to set a breakpoint in a specific line within this function. If I do:
b foo.c:235
and 235 is a line inside the function implementation, in which function is gdb going to actually set the breakpoint? prefix1_function_name or prefix2_function_name ?
Is there a way to make gdb set the breakpoint on both ?
Thanks!