I am trying to map the address of a function that is supposed to exist inside a shared library (.so). I am sucessfully able to open the library and am trying to get the address of the function inside it as such:
fn_read = dlsym (handle, "functionName");
However I am getting an error, and upon inspection the error is that the symbol could not be found. I am pretty sure that I am making this call correctly. I am also 100% sure that the function that I am trying to map is included in the shared library itself. I'm not sure what to do here...could someone please point out some possible mistakes/points that I may be overlooking?
Thanks, Fal
nm -D /path/to/your/lib.sodo you see the function name listed? – John Ledbetter Sep 13 '12 at 19:20