[BACK]Return to ranlib.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / ranlib

Annotation of src/usr.bin/ranlib/ranlib.1, Revision 1.11

1.11    ! sobrado     1: .\"    $OpenBSD: ranlib.1,v 1.10 2007/05/31 19:20:14 jmc Exp $
1.6       aaron       2: .\"
1.1       deraadt     3: .\" Copyright (c) 1990 Regents of the University of California.
                      4: .\" All rights reserved.
                      5: .\"
                      6: .\" Redistribution and use in source and binary forms, with or without
                      7: .\" modification, are permitted provided that the following conditions
                      8: .\" are met:
                      9: .\" 1. Redistributions of source code must retain the above copyright
                     10: .\"    notice, this list of conditions and the following disclaimer.
                     11: .\" 2. Redistributions in binary form must reproduce the above copyright
                     12: .\"    notice, this list of conditions and the following disclaimer in the
                     13: .\"    documentation and/or other materials provided with the distribution.
1.9       millert    14: .\" 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    15: .\"    may be used to endorse or promote products derived from this software
                     16: .\"    without specific prior written permission.
                     17: .\"
                     18: .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     19: .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     20: .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     21: .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     22: .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     23: .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     24: .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     25: .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     26: .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     27: .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     28: .\" SUCH DAMAGE.
                     29: .\"
                     30: .\"     from: @(#)ranlib.1     6.7 (Berkeley) 5/9/91
                     31: .\"
1.11    ! sobrado    32: .Dd $Mdocdate: May 31 2007 $
1.1       deraadt    33: .Dt RANLIB 1
                     34: .Os
                     35: .Sh NAME
                     36: .Nm ranlib
                     37: .Nd table-of-contents for archive libraries
                     38: .Sh SYNOPSIS
                     39: .Nm ranlib
                     40: .Op Fl t
1.11    ! sobrado    41: .Ar
1.1       deraadt    42: .Sh DESCRIPTION
1.4       aaron      43: .Nm ranlib
1.1       deraadt    44: creates a table of external references for archive libraries,
                     45: normally used by the loader,
                     46: .Xr ld 1 .
1.6       aaron      47: This table is named
                     48: .Dq __.SYMDEF
                     49: and is prepended to the archive.
1.1       deraadt    50: Files in the archive which are not executable and symbols which are
                     51: uninteresting to the loader are ignored.
                     52: .Pp
                     53: The options are as follows:
1.7       aaron      54: .Bl -tag -width Ds
1.1       deraadt    55: .It Fl t
1.6       aaron      56: Set the modification time of the
                     57: .Pa __.SYMDEF
                     58: file.
1.1       deraadt    59: This time is compared by the loader with the modification time of the
                     60: archive to verify that the table is up-to-date with respect to the
                     61: archive.
                     62: If the modification time has been changed without any change to the
                     63: archive (for example, by a
                     64: .Xr cp 1 ) ,
                     65: the
                     66: .Fl t
1.6       aaron      67: option can be used to
                     68: .Dq touch
                     69: the modification time so that it
1.1       deraadt    70: appears that the table is up-to-date.
                     71: This is also useful after using the
                     72: .Fl t
                     73: option of
                     74: .Xr make 1 .
                     75: .El
                     76: .Sh ENVIRONMENT
1.6       aaron      77: .Bl -tag -width TMPDIR
1.1       deraadt    78: .It Ev TMPDIR
                     79: The pathname of the directory to use when creating temporary files.
                     80: .El
                     81: .Sh FILES
1.5       fgsch      82: .Bl -tag -width /tmp/ranlib.XXXXXXXXXX -compact
                     83: .It Pa /tmp/ranlib.XXXXXXXXXX
1.4       aaron      84: temporary files
1.1       deraadt    85: .El
                     86: .Sh SEE ALSO
                     87: .Xr ar 1 ,
                     88: .Xr ld 1 ,
                     89: .Xr lorder 1 ,
                     90: .Xr nm 1 ,
                     91: .Xr ranlib 5
                     92: .Sh HISTORY
                     93: A
                     94: .Nm ranlib
                     95: command appeared in
                     96: .At v7 .