I have a program built in one environment and I want to debug it in my own environment. I have copied executable, .dSYM and the source code but I can't find ways to let lldb know where to find the source code.
For example, in the building environment there are source files:
/build_src/rel_path/source1.c
/build_src/rel_path/source1.dSYM
/build_src/rel_path/app1
And in my environment the files and .dSYM are copied to:
/source/rel_path/source1.c
/source/rel_path/source1.dSYM
/source/rel_path/app1
Is there any way to set the discover path or any other way to remap the source code path?