-->

Previous | Table of Contents | Next

Page 338

_f, --footer-numbering=style Select the numbering style for lines in the footer section of each logical page. When a line is not numbered, the current line number is not incremented, but the line number separator character is still prepended to the line. The styles are
a Number all lines
t Number only nonempty lines (default for body)
n Number no lines (default for header and footer)
pregexp Number only lines that contain a match for regexp
_p, --no-renumber Do not reset the line number at the start of a logical page.
_v, --first-page=number Set the initial line number on each logical page to number (default 1).
_i, --page-increment=number Increment line numbers by number (default 1).
_l, --join-blank-lines=number Consider number (default 1) consecutive empty lines to be one logical line for numbering, and only number the last one. Where fewer than number consecutive empty lines occur, do not number them. An empty line is one that contains no characters, not even spaces or tabs.
_s, --number-separator=string Separate the line number from the text line in the output with string (default is a tab character).
_w, --number-width=number Use number characters for line numbers (default 6).
_n, --number-format={ln,rn,rz} Select the line numbering format:
ln Left justified, no leading zeros
rn Right justified, no leading zeros (default)
rz Right justified, leading zeros
_d, --section-delimiter=cc Set the two delimiter characters that indicate the beginnings of logical page sections; if only one is given, the second remains :. To enter \, use \\.
--help Print a usage message and exit with a nonzero status.
--version Print version information on standard output, then exit.

GNU Text Utilities

nlmconv

nlmconv—Convert object code into an NLM

SYNOPSIS

nlmconv[ _Ibfdname|--input_target=bfdname] [ _Obfdname|

--output_target=bfdname ] [ _Theaderfile|--header_file=headerfile ]

[ _V|--version ][--help ] infile outfile

DESCRIPTION

nlmconv converts the relocatable object file infile into the NetWare Loadable Module (NLM) outfile, optionally reading headerfile for NLM header information. For instructions on writing the NLM command file language used in header FILES, see The NetWare Tool Maker Specification Manual, available from Novell, Inc. nlmconv currently works with i386 object FILES in COFF, ELF, ora.out format, and with SPARC object FILES in ELF or a.out format. nlmconv uses the GNU binary file descriptor library to read infile.

OPTIONS

_I bfdname, Consider the source file's object format to be bfdname, rather than attempting to deduce it.
--input_target=bfdname
_O bfdname, Write the output file using the object format bfdname. nlmconv infers the output format
--output_target=bfdname based on the input format, for example, for an i386 input file the output format is
nlm32_i386.

Page 339

_T headerfile, Reads headerfile for NLM header information. For instructions on writing the NLM
--header_file=headerfile command file language used in header FILES, see The NetWare Tool Maker Specification Manual, available from Novell, Inc.
_V, --version Show the version number of nlmconv and exit.
_h, --help Show a summary of the OPTIONS to nlmconv and exit.

SEE ALSO

binutils entry in info; The GNU Binary Utilities, Roland H. Pesch (June 1993).

COPYING

Copyright " 1993 Free Software Foundation, Inc. Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.

Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.

Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be included in translations approved by the Free Software Foundation instead of in the original English.

Cygnus support, June 1993

nm

nm—List symbols from object FILES

SYNOPSIS

nm [ _a|--debug_syms][_g|--extern_only ][_B ][_C|--demangle ]

[_D|--dynamic ][_s|--print_armap][_o|--print_file_name]

[_n|--numeric_sort ][_p|--no_sort ][_r|--reverse_sort ][--size_sort ]

[ _u|--undefined_only][--help ][--version ][_t radix|--radix=radix ]

[ _P|_portability ] [ _f format|--format=format ][--target=bfdname ][ objfile ...]

DESCRIPTION

GNU nm lists the symbols from object FILES objfile. If no object FILES are given as arguments, nm assumes a.out.

OPTIONS

The long and short forms of OPTIONS, shown here as alternatives, are equivalent.

_A, _o
--print_file_name Precede each symbol by the name of the input file where it was found, rather than identifying the input file once only before all of its symbols.
_a, --debug_syms Display debugger-only symbols; normally these are not listed.
_B The same as --format=bsd (for compatibility with the MIPS nm).
_C, --demangle Decode (demangle) low-level symbol names into user-level names. Besides removing any initial underscore prepended by the system, this makes C++ function names readable.
_D, --dynamic Display the dynamic symbols rather than the normal symbols. This is only meaningful for dynamic objects, such as certain types of shared libraries.
_f format Use the output format format, which can be bsd, sysv, or posix. The default is bsd. Only the first character of format is significant; it can be either uppercase or lowercase.
_g, --extern_only Display only external symbols.
_n, _v, --numeric_sort Sort symbols numerically by their addresses, not alphabetically by their names.

Previous | Table of Contents | Next