What is the worst case of pathologically awful coupling between code modules that you've encountered?
My bid - from this morning's build failures in my (private) build of the product I work on:
I broke the build by removing unused functions from a library. (Library names changed to conceal the guilty - and its closed source.)
Scenario, in outline:
- There are two low-level libraries used by most of the code in the product. Let's call them libbase.a and libutil.a.
- Some of the functions in libbase.a use some of the functions in libutil.a.
- Some of the functions in libutil.a use some of the functions in libbase.a.
- However, the link order libbase.a libutil.a worked (most of the time).
- Code analysis found some functions in libbase.a(basefile.o) that were never called.
- Code analysis found some other functions in libbase.a(basefile.o) that were only called by unused functions in libbase.a(extrafile.o).
- There was no change to the code in libutil.a - just in libbase.a
- Unfortunately, after removing the dead code, some of the functions that used to be pulled in when libbase.a was loaded were no longer pulled in when the dead functions were removed.
- So, there were unresolved symbols for some (but not all) programs that could be resolved by changing the link lines to list libbase.a libutil.a libbase.a!
That is, although the dead functions were never called, they provided linkage between two object files within libbase.a that then ensured references in libutil.a were satisfied before libutil.a was loaded. Removing the dead functions removed the linkage.
Aaaaaaarrrrrgggghhhh!!!
That's a first for me. It could be said to be the most indirect form of coupling between modules, and a pathologically awful coupling - connection by otherwise uncalled functions.
Long term, I think the solution is to combine the libraries since there are so many interdependencies. In the interim, back to hacking makefiles.
[Shared libraries are not considered an option - because of problems related to root privileged programs (so LD_LIBRARY_PATH doesn't work), indeterminate install path (so hard-coded install paths are not an option), multiple concurrent installs of different versions (so using /etc/ld.so.conf or relatives is not an option), and the code is complex enough that dynamic loading would be extremely difficult.]
