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)?
During dynamic linking a weird undefined function reference appears. I know the name of
Share
You should be able to use
nm(might require the--demangleparameter) to get a list of everything being inside the library, then usegrepto filter the results, e.g. look for\d T functionname\(or something like that.