4 // Author: Phil Mesnier
11 // A shared object group is a wrapper around all of the information needed to
12 // analize a collection of applications so that common shared libraries can
21 // For each executable named, run ldd to get the dependances list, For each
22 // library listed, see if there is a path to .shobj and add to the list of
23 // libraries if found. Finally, add the undefined symbols from the executable
24 // to the undefs collection.
25 void add_executable(const char * );
27 // Do the actual business of the program
31 void write_results ();
33 // load the object modules for the group
39 Obj_Module undef_wrapper_
;