Polina Dudnik wrote: > Hi, > > So, I added new functions to libc and build it by calling dmake and dmake > install in /usr/src/lib/libc/ > > When I call nm on my new libc, the symbols for new functions are there. > However, when I try to use the new functions or even find the definition for > them using dlsym, it tells me that these new functions are not defined. How > can this be? Am I doing something wrong? Thank you. > > Polina > -- > This message posted from opensolaris.org > _______________________________________________ > tools-linking mailing list > tools-linking at opensolaris.org
I don't think this is about NODYNSORT anymore... I can only guess: Did you add entries for your new functions to the libc mapfile? If not, they will be scoped local to libc, and not be available for external use. - Ali