I wonder what .hidden means in objdump -t output. Example:
$ objdump Logger.cpp.o -t
00000000 g F .text 00000000 .hidden __sti___10_Logger_cpp_0b2ae32b
Please enlighten me, mighty Internet.
|
|
|
It means that the visibility of the symbol is hidden: https://developer.apple.com/library/mac/#documentation/DeveloperTools/Conceptual/CppRuntimeEnv/Articles/SymbolVisibility.html Reasons for changing the visibility of symbols include:
See http://www.gnu.org/software/gnulib/manual/html_node/Exported-Symbols-of-Shared-Libraries.html for more information. |
|||||||
|
|
A link that explains visibility support (for gcc) From the link:
Although the library quoted above is an extreme case, the new visibility support reduced the exported symbol table from > 200,000 symbols to less than 18,000. Some 21Mb was knocked off the binary size as well! A usage sample and also potential pitfall when using visibilty attribute |
||||
|
|