RANLIB(5) BSD File Formats Manual RANLIB(5)NAME
ranlib -- archive (library) table-of-contents format
SYNOPSIS
#include <mach-o/ranlib.h>
DESCRIPTION
The archive table-of-contents command ranlib creates a table of contents for archives, containing object files, to be used by the link-editor
ld(1). It operates on archives created with the utility ar(1).
The Ranlib function prepends a new file to the archive which has three separate parts. The first part is a standard archive header, which
has a special name field, "__.SYMDEF" or "__.SYMDEF SORTED". If the archive does not have multiple members that define symbol then
"__.SYMDEF SORTED" should be used and the table of contents should be sorted by name.
The second part is a ``long'' followed by a list of ranlib structures. The long is the size, in bytes, of the list of ranlib structures.
Each of the ranlib structures consists of a zero based offset into the next section (a string table of symbols) and an offset from the begin-
ning of the archive to the start of the archive file which defines the symbol. The actual number of ranlib structures is this number divided
by the size of an individual ranlib structure.
The third part is a ``long'' followed by a string table. The long is the size, in bytes of the string table.
SEE ALSO ar(1), ranlib(1)Darwin November 16, 2001 Darwin
Check Out this Related Man Page
ranlib(1) User Commands ranlib(1)NAME
ranlib - convert archives to random libraries
SYNOPSIS
/usr/ccs/bin/ranlib archive
DESCRIPTION
The ranlib utility was used in SunOS 4.x to add a table of contents to archive libraries, which converted each archive to a form that could
be linked more rapidly. This is no longer needed, as the ar(1) command automatically provides all the functionality ranlib used to provide.
This script is provided as a convenience for software developers who need to maintain Makefiles that are portable across a variety of oper-
ating systems.
EXIT STATUS
ranlib has exit status 0.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Availability |SUNWbtool |
+-----------------------------+-----------------------------+
SEE ALSO ar(1), ar.h(3HEAD), attributes(5)SunOS 5.10 13 Apr 1995 ranlib(1)
Hi All,
In a given directory, I need to list the files present in it in the below given format as a table.
File name Permission Number of Bytes File Type
Telecom1 --w-r-x 1230 Directory
Telecom2 ---x---x---x 450 Device file
Telecom3 ... (7 Replies)
Dear Friends,
Am an newbie to this domain. I have a table which is filled with contents which i need to be updated with,so am trying to design a flow which would read the data from the table and mail it to me at regular intervals. I could make out the flow using mailx command but want to... (3 Replies)
Hi,
I got a long list of contents:
>sequence_1
ASSSSSSSSSSSDDDDDDDDDDDCCCCCCC
ASDSFDFFDFDFFWERERERERFSDFESFSFD
>sequence_2
ASDFDFDFFDDFFDFDSFDSFDFSDFSDFDSFASDSADSADASD
ASDFFDFDFASFASFASFAFSFFSDASFASFASFAFS
>sequence_3
VEDFGSDGSDGSDGSDGSDGSDGSDG
dDFSDFSDFSDFSDFSDFSDFSDFSDF... (2 Replies)
I have a log file that I want to archive out as it reaches 100MB. I am using the following to get the file size into a variable but get the error "line 5:
filesize=$(wc -c < logfile.log)
if
then
echo "is greater than 100M"
else
echo "is less than 100M"
fi
I'm sure there's something... (2 Replies)
I need to save part of a file to a different one, start and end offset bytes are provided by two counters in long format. If the difference is big, how should I do it to prevent buffer overflow in java? (7 Replies)