I am working with a third party vendor that I suspect either did not give me all the libraries I need or did not set up their example project to link correctly to all the necessary libraries. They just dumped a folder and project on me. Evidently, it's a complicated task to contact them. So, before I do...
Is there a way, in Linux, to scan all the shared and static ARM libraries in a directory for a function or method signature, such that I can find a library that might implement void foo(int, float);
, such that I can try linking to it and see if it resolves my unresolved dependencies?
I saw some posts about using nm, but I don't know how to use it on ARM libraries or how to search for a particular function/method.