Hi!, I’ve been expirencing problems with
a library that uses libasound dynamically,
the library can’t find the symbols in the
library, when i run nm libasound.so.2.0.0
i get an information about no symbols being
present, Is this normal?
It is normal for all binary files to be stripped of debug symbols.
When debugging with gdb the debug symbols are installed from debuginfo rpms.
Try nm -D to see more symbols and I think objdump msy be useful.
What is it you are trying to do?