Like the question says: We are building on Linux using the GNU linker, and on Solaris using the solaris ld
. GNU ld
supports the --export-dynamic
flag, which:
When creating a dynamically linked executable, add all symbols to the dynamic symbol table. The dynamic symbol table is the set of symbols which are visible from dynamic objects at run time.
What is the equivalent to this flag using the solaris linker? Is there an equivalent?