Michael Bauer <mvbauer@xxxxxxxxx> writes: > Another thought that I had, if the compiler is not capable of > outputting this information, then perhaps there is some debug > information file that I could write a script to parse. I'm thinking > that debuggers somehow know the symbol name, address, and type so it > must be output into some sort of debugging file. If anyone has any > suggestions I would be much appreciative. You can use readelf --debug-dump to dump all sorts of information about the debugging information. The compiler won't dump it for you, unless you count looking at the assembler output when using -S -dA. Ian