mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 11:46:08 +00:00

BSD and GNU ranlib support more than one input file. Implement this. While here, update OVERVIEW (Ranlib => ranlib) since "ranlib" is more common. Remove "speed access" since the index has nothing to do with performance: it is mandatory for GNU ld and gold but ignored for ld.lld (D119074). Close https://github.com/llvm/llvm-project/issues/54565 Differential Revision: https://reviews.llvm.org/D131375
24 lines
505 B
ReStructuredText
24 lines
505 B
ReStructuredText
llvm-ranlib - generates an archive index
|
|
========================================
|
|
|
|
.. program:: llvm-ranlib
|
|
|
|
SYNOPSIS
|
|
--------
|
|
|
|
:program:`llvm-ranlib` [*options*] *archive...*
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
|
|
:program:`llvm-ranlib` is an alias for the :doc:`llvm-ar <llvm-ar>` tool that
|
|
generates an index for one or more archives. It can be used as a replacement for GNU's
|
|
:program:`ranlib` tool.
|
|
|
|
Running :program:`llvm-ranlib` is equivalent to running ``llvm-ar s``.
|
|
|
|
SEE ALSO
|
|
--------
|
|
|
|
:manpage:`llvm-ar(1)`
|