"Richard" == Richard Braakman <[EMAIL PROTECTED]> writes: >> Shared libraries are linked dynamically against other libraries >> >> Linking shared libraries dynamically against other libraries >> simplifies the upgrading process and saves disk and memory space. >> All shared libraries included in the Debian distribution will be >> compiled that way. [...] > As far as I can tell, it does not save disk and memory space. > However, I am rather new at this. Feel free to correct me.
You are wrong. Shared libraries are able to use copy-on-write memory space (hence the 'shared' category when you type 'free') which can radically lower RAM requirements. This is not the case on statically linked libraries. And, clearly, it saves disk space since the code resides on the disk in only one place instead of being part of the executable. (Little confused on how you could get confused on this one!) The final, and most important rationale is that bug fixes, say, in libc, can be applied in one place and all programs which statically link against the same major libc version are able to reap the benefits of that bug fix. .....A. P. [EMAIL PROTECTED]<URL:http://www.onShore.com/> -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .