Linux Commands Examples

A great documentation place for Linux commands

lorder

list dependencies for object files


see also : ar - ld - nm - ranlib - tsort

Synopsis

lorder file ...


add an example, a script, a trick and tips

: email address (won't be displayed)
: name

Step 2

Thanks for this example ! - It will be moderated and published shortly.

Feel free to post other examples
Oops ! There is a tiny cockup. A damn 404 cockup. Please contact the loosy team who maintains and develops this wonderful site by clicking in the mighty feedback button on the side of the page. Say what happened. Thanks!

examples

0

$ ar cr library.a ’lorder ${OBJS} | tsort’


0
source
            
bld cr $lib `lorder $* | tsort`
else
ar clq $lib $*
fi
0
source
            
bld cr $lib `lorder $* | tsort`
else
ar clq $lib $*
fi

description

The lorder utility uses nm(1) to determine interdependencies in the list of object files specified on the command line. lorder outputs a list of file names where the first file contains a symbol which is defined by the second file.

The output is normally used with tsort(1) when a library is created to determine the optimum ordering of the object modules so that all references may be resolved in a single pass of the loader.


history

An lorder utility appeared in Version 7 AT&T UNIX.

BSD July 18, 2013 BSD


see also

ar , ld , nm , ranlib , tsort

How can this site be more helpful to YOU ?


give  feedback