_cb_fix_link Function

Related Topics:

Callbacks _cb_fix_comp Function

_cb_fix_link linker_arguments

This ksh function, if defined, is invoked by dbx instead of calling the linker directly during a \Qfix'. This is a good place to customize the link line by adding or changing options, modifying paths, etc. Use with caution. This link creates a shared object which is opened using dlopen into the target process. It does not modify the a.out.

Example

_cb_fix_link() {
echo $*
eval $*
}

echoes and executes the link line.