I guess I was a bit confused yesterday by the stuff I found in this linker guide. Here is the relevant part:
http://docs.sun.com/app/docs/doc/817-19 ... 604?a=view
The dynamic linker copies the contents of the referenced external variables into some place within the executable, which has been reserved when the executable was built by the static linker. This means that the
size of the copied data is fixed.
At load time, the dynamic linker copies the initial data from the shared library into the reserved place within the executable. This copy is now used not only by the executable, but also by shared libraries within the same process image. (At least this is what I get from the link quoted above - although I am confused, because it means that this data is not shared between different process images, and it it needs to be updated, this must be done separately for each process image.) The original data within the shared library is not used anymore after this step.
The drawback (which I was confused about yesterday) is not that the copied data is never updated again, as I wrote in my last post. Instead, the problem already occurs when the executable is built: The static linker reserves space for the shared data, so the size of this data must be known. If the original library is replaced by a new, updated one, this size may have changed. The link above shows an example where the copied data is an array of pointers. The space for this array needs to be reserved within the executable, but if a new version of the library comes out and the size of this array has changed, the executable needs to be re-built.
So, to get back to your question: You need to make sure that 1. the initial data is copied from the shared library at load time, 2. shared libraries within the same process image use this copy at run time.