linker - difference between dynamic loading and dynamic linking? -


routine not loaded until called. routines kept on disk in re-locatable load format. main program loaded memory & executed. called dynamic linking.

why called dynamic linking? shouldn't dynamic loading because routine not loaded until called in dynamic loading in dynamic linking, linking postponed until execution time.

dynamic loading means loading library (or other binary matter) memory during load or run-time.

dynamic loading can imagined similar plugins , exe can execute before dynamic loading happens(the dynamic loading example can created using loadlibrary call in c or c++)

dynamic linking refers linking done during load or run-time , not when exe created.

in case of dynamic linking linker while creating exe minimal work.for dynamic linker work has load libraries too.hence it's called linking loader.

hence sentences refer may make sense still quite ambiguous cannot infer context in referring in.can inform did find these lines , @ context author talking about?


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -