Hi.
I want to compile an application with debug information using gcc and gdb. When I do the following, the debug (.dSYM
) files are generated correctly:
gcc -ggdb src/test.c -o build/test
If I, however, split this into a compile step and a link step, like this:
gcc -ggdb -c src/test.c -o build/test.o
gcc -ggdb build/test.o -o dist/bin/test
… no .dSYM
files are generated at all, and therefore gdb
does not show me the source line of code where a crash occurs, which makes debugging a lot more difficult. Since I have quite a bit of source files, compiling and linking them all in a single gcc
invocation is not possible.
How can I let gcc generate the .dSYM
files when using separate compile and link steps?