During dynamic linking a weird undefined function reference appears. I know the name of the library which should contain this function. Is there any Linux command to make sure the function exists in the library (.a file)?
You should be able to use nm
(might require the --demangle
parameter) to get a list of everything being inside the library, then use grep
to filter the results, e.g. look for \d T functionname\(
or something like that.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With