I am compiling a big project. This project is using shared libraries, especially lapack ones.
I would want to be sure, for a given function, in which shared library the system finds it.
Here the nm output:
$ nm -DC ~/bin/app | grep potrf
U dpotrf_
As expected, dpotrf_ is undifined.
Here the result with objdump:
$ objdump -TR ~bin/app | grep potrf
0000000000925428 R_X86_64_JUMP_SLOT dpotrf_
So objdump find something! Is there any option to show in which shared lib it finds it? Or another program to do that?