I know I can generate debug symbol using -g option. However the symbol is embeded in the target file. Could gcc generate debug symbol outside the result executable/library? Like .pdb file of windows VC++ compiler did.
|
feedback
|
|
You need to use objcopy to separate the debug information:
I use the bash script below to separate the debug information into files with a .debug extension in a .debug directory. This way I can tar the libraries and executables in one tar file and the .debug directories in another. If I want to add the debug info later on I simply extract the debug tar file and voila I have symbolic debug information. This is the bash script:
| |||||
feedback
|
|
Check out the "--only-keep-debug" option of the strip command. From the link:
| |||
feedback
|
|
GNU nm utility can be used to generate the symbol file from the object file/executable. See the man page for various options available. | |||
|
feedback
|