riscv objdump

Excuse,me. How do I disassemble the xxxx.so file in the /install/lib/ directory using "riscv64-unknown-elf-objdump" and "riscv64-unknown-linux-gnu-objdump"? @tsgates @lifeasageek @sanidhya @blue9057 @ChengyuSong
which .so? those in your screenshot are x86 executables, you can use file to check the info.
@ChengyuSong Thank you for your reply. Where is the shared library commonly used by risc-v?
I found libm.so.6, libc.so.6 and ld.so are common shared libraries for risc-v? Below are their directories
/hdfi-master/hdfi-master/toolchain/gcc/build_linux/build-glibc-linux64/math/libm.so.6 /hdfi-master/hdfi-master/toolchain/gcc/build_linux/build-glibc-linux64/math/libc.so.6 /hdfi-master/hdfi-master/toolchain/gcc/build_linux/build-glibc-linux64/elf/ld.so
In addition, I would like to ask how to quickly identify how many functions are included in the disassembly file. @ChengyuSong