Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Selected Reading
How to listdown all the symbols in a .so file in C++
To read a .so file in elf format, use readelf
readelf -Ws libName.so
It helps to extract symbol from binary.
The standard tool used for listing all symbol is, nm
nm -g libName.so
Advertisements
