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

放肆的年华 提交于 2019-12-21 10:15:56

问题


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 ../bin/somecode.o 

as i see it atm, gcc just stores what you provide, so if you provide a relative path, at the end, gdb only knows the relative path as well.

is there a way to bypass that without using absolute paths while compiling? like: let gcc lookup the complete path?

thanks in advance rTi


回答1:


gcc -fdebug-prefix-map=..=$(readlink -f ..)



回答2:


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.



来源:https://stackoverflow.com/questions/1275476/gcc-gdb-how-to-embed-absolute-path-to-source-file-in-debug-information

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!