I got a C/C++ application, i need to determine all (shared) libraries on which it is dependent, so i can share it with other people along with libraries so they don't have to install any package, on Linux.
So is it possible to determine all libraries on which a C++ application is dependent?
A little clarification, i dont have application makefiles for the moment, thats why i have to find another way.