The process of stitching together pieces of object code so that all calls to sub-routines point to exactly one location in one piece of object code (“references have been resolved”). Linking results in executable code.
Linking can be either static (resolved before run-time), or dynamic (resolved at run-time). Dynamic linking permits asynchronous changes between code objects, but can be difficult to manage in the run-time environment. See also dll hell.