Search Results

2
votes

How can I find out which library is home to a given object?

I have a little lookfor script. Enter lookfor func_name #!/bin/csh foreach i (*.o *.a *.so) echo $i nm $i | grep -i $1 end …