gcc/gdb: How to embed absolute path to source file in debug information?

前端 未结 2 1116
说谎
说谎 2021-02-08 13:13

i am just wondering if i can tell gcc to embed the absolute path to a source file in the debug information, even if i call gcc like

gcc -g ../src/somecode.c -o .         


        
2条回答
  •  执念已碎
    2021-02-08 13:44

    What platform are you building for and what is the native debugging format for that platform? Not that this information will necessarily get you closer to solving your problem, but it may be worth looking at the specification for the debug format to see if what you want to do even makes sense from that perspective.

    You are passing the '-g' option to the compiler right.

提交回复
热议问题