LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   symbol table (https://www.linuxquestions.org/questions/linux-newbie-8/symbol-table-399441/)

Filipe 01-04-2006 09:16 AM

symbol table
 
Can anyone tel me one site w tuturial about
the symbol table in an object file?
And why if i strip the executable file it
cotinues to work?:scratch:

what kind of ( redundant ??... )information does this table have?...


thank you .
;)

Surekha Gupta 01-04-2006 01:15 PM

Symbol table in an object file keeps information about the addresses of the functions within that object file. This information is usually used by debuggers like gdb.If you are not using the debugger, the information is not needed in usual cource of execution, and can safely be trimmed. If you are using a system with lilited memory, you want to keep your objects small(typically in an embedded system) and hence may a times objects are stripped before installing in the final image.
Try GNU tookit guides for help.

Cheers!


All times are GMT -5. The time now is 07:50 PM.