home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 21 / SOLOPROG21.iso / utillnux / info-htm / binutils.000 < prev    next >
Encoding:
Text File  |  1996-04-02  |  65.9 KB  |  1,775 lines

  1. <HTML>
  2. <HEAD>
  3. <!-- This HTML file has been created by TEXI.HTM 1.31
  4.      from /usr/src/devel/binutils-2.5.2l.17/binutils/binutils.texi on 9 June 1995 -->
  5.  
  6. <TITLE>The GNU Binary Utilities</TITLE>
  7. </HEAD>
  8. <BODY>
  9. <H1>The GNU Binary Utilities</H1>
  10. <H1><A NAME="SEC1" HREF="BINUTILS.HTM#SEC1">ar</A></H1>
  11. <A NAME="IDX1"></A>
  12. <A NAME="IDX2"></A>
  13. <A NAME="IDX3"></A>
  14. <P>
  15. <PRE>
  16. ar [-]<VAR>p</VAR>[<VAR>mod</VAR> [<VAR>relpos</VAR>]] <VAR>archive</VAR> [<VAR>member</VAR>...]
  17. ar -M [ <mri-script ]
  18. </PRE>
  19. <P>
  20. The GNU <CODE>ar</CODE> program creates, modifies, and extracts from
  21. archives.  An <DFN>archive</DFN> is a single file holding a collection of
  22. other files in a structure that makes it possible to retrieve
  23. the original individual files (called <DFN>members</DFN> of the archive).
  24. <P>
  25. The original files' contents, mode (permissions), timestamp, owner, and
  26. group are preserved in the archive, and can be restored on
  27. extraction.  
  28. <A NAME="IDX4"></A>
  29. <P>
  30. GNU <CODE>ar</CODE> can maintain archives whose members have names of any
  31. length; however, depending on how <CODE>ar</CODE> is configured on your
  32. system, a limit on member-name length may be imposed for compatibility
  33. with archive formats maintained with other tools.  If it exists, the
  34. limit is often 15 characters (typical of formats related to a.out) or 16
  35. characters (typical of formats related to coff).
  36. <A NAME="IDX5"></A>
  37. <P>
  38. <CODE>ar</CODE> is considered a binary utility because archives of this sort
  39. are most often used as <DFN>libraries</DFN> holding commonly needed
  40. subroutines.
  41. <A NAME="IDX6"></A>
  42. <P>
  43. <CODE>ar</CODE> creates an index to the symbols defined in relocatable
  44. object modules in the archive when you specify the modifier <SAMP>`s'</SAMP>.
  45. Once created, this index is updated in the archive whenever <CODE>ar</CODE>
  46. makes a change to its contents (save for the <SAMP>`q'</SAMP> update operation).
  47. An archive with such an index speeds up linking to the library, and
  48. allows routines in the library to call each other without regard to
  49. their placement in the archive.
  50. <P>
  51. You may use <SAMP>`nm -s'</SAMP> or <SAMP>`nm --print-armap'</SAMP> to list this index
  52. table.  If an archive lacks the table, another form of <CODE>ar</CODE> called
  53. <CODE>ranlib</CODE> can be used to add just the table.
  54. <A NAME="IDX7"></A>
  55. <A NAME="IDX8"></A>
  56. <P>
  57. GNU <CODE>ar</CODE> is designed to be compatible with two different
  58. facilities.  You can control its activity using command-line options,
  59. like the different varieties of <CODE>ar</CODE> on Unix systems; or, if you
  60. specify the single command-line option <SAMP>`-M'</SAMP>, you can control it
  61. with a script supplied via standard input, like the MRI "librarian"
  62. program.
  63. <P>
  64. <H2><A NAME="SEC2" HREF="BINUTILS.HTM#SEC2">Controlling <CODE>ar</CODE> on the command line</A></H2>
  65. <P>
  66. <PRE>
  67. ar [-]<VAR>p</VAR>[<VAR>mod</VAR> [<VAR>relpos</VAR>]] <VAR>archive</VAR> [<VAR>member</VAR>...]
  68. </PRE>
  69. <A NAME="IDX9"></A>
  70. <P>
  71. When you use <CODE>ar</CODE> in the Unix style, <CODE>ar</CODE> insists on at least two
  72. arguments to execute: one keyletter specifying the <EM>operation</EM>
  73. (optionally accompanied by other keyletters specifying
  74. <EM>modifiers</EM>), and the archive name to act on.
  75. <P>
  76. Most operations can also accept further <VAR>member</VAR> arguments,
  77. specifying particular files to operate on.
  78. <P>
  79. GNU <CODE>ar</CODE> allows you to mix the operation code <VAR>p</VAR> and modifier
  80. flags <VAR>mod</VAR> in any order, within the first command-line argument.
  81. <P>
  82. If you wish, you may begin the first command-line argument with a
  83. dash.
  84. <A NAME="IDX10"></A>
  85. <P>
  86. The <VAR>p</VAR> keyletter specifies what operation to execute; it may be
  87. any of the following, but you must specify only one of them:
  88. <P>
  89. <DL COMPACT>
  90. <A NAME="IDX11"></A>
  91. <DT><CODE>d</CODE>
  92. <DD><EM>Delete</EM> modules from the archive.  Specify the names of modules to
  93. be deleted as <VAR>member</VAR>...; the archive is untouched if you
  94. specify no files to delete.
  95.  
  96. If you specify the <SAMP>`v'</SAMP> modifier, <CODE>ar</CODE> lists each module
  97. as it is deleted.
  98.  
  99. <A NAME="IDX12"></A>
  100. <DT><CODE>m</CODE>
  101. <DD>Use this operation to <EM>move</EM> members in an archive.
  102.  
  103. The ordering of members in an archive can make a difference in how
  104. programs are linked using the library, if a symbol is defined in more
  105. than one member.  
  106.  
  107. If no modifiers are used with <CODE>m</CODE>, any members you name in the
  108. <VAR>member</VAR> arguments are moved to the <EM>end</EM> of the archive;
  109. you can use the <SAMP>`a'</SAMP>, <SAMP>`b'</SAMP>, or <SAMP>`i'</SAMP> modifiers to move them to a
  110. specified place instead.
  111.  
  112. <A NAME="IDX13"></A>
  113. <DT><CODE>p</CODE>
  114. <DD><EM>Print</EM> the specified members of the archive, to the standard
  115. output file.  If the <SAMP>`v'</SAMP> modifier is specified, show the member
  116. name before copying its contents to standard output.
  117.  
  118. If you specify no <VAR>member</VAR> arguments, all the files in the archive are
  119. printed.
  120.  
  121. <A NAME="IDX14"></A>
  122. <DT><CODE>q</CODE>
  123. <DD><EM>Quick append</EM>; add the files <VAR>member</VAR>... to the end of
  124. <VAR>archive</VAR>, without checking for replacement.
  125.  
  126. The modifiers <SAMP>`a'</SAMP>, <SAMP>`b'</SAMP>, and <SAMP>`i'</SAMP> do <EM>not</EM> affect this
  127. operation; new members are always placed at the end of the archive.
  128.  
  129. The modifier <SAMP>`v'</SAMP> makes <CODE>ar</CODE> list each file as it is appended.
  130.  
  131. Since the point of this operation is speed, the archive's symbol table
  132. index is not updated, even if it already existed; you can use <SAMP>`ar s'</SAMP> or
  133. <CODE>ranlib</CODE> explicitly to update the symbol table index.
  134.  
  135. <A NAME="IDX15"></A>
  136. <DT><CODE>r</CODE>
  137. <DD>Insert the files <VAR>member</VAR>... into <VAR>archive</VAR> (with
  138. <EM>replacement</EM>). This operation differs from <SAMP>`q'</SAMP> in that any
  139. previously existing members are deleted if their names match those being
  140. added.
  141.  
  142. If one of the files named in <VAR>member</VAR>... does not exist, <CODE>ar</CODE>
  143. displays an error message, and leaves undisturbed any existing members
  144. of the archive matching that name.
  145.  
  146. By default, new members are added at the end of the file; but you may
  147. use one of the modifiers <SAMP>`a'</SAMP>, <SAMP>`b'</SAMP>, or <SAMP>`i'</SAMP> to request
  148. placement relative to some existing member.
  149.  
  150. The modifier <SAMP>`v'</SAMP> used with this operation elicits a line of
  151. output for each file inserted, along with one of the letters <SAMP>`a'</SAMP> or
  152. <SAMP>`r'</SAMP> to indicate whether the file was appended (no old member
  153. deleted) or replaced.
  154.  
  155. <A NAME="IDX16"></A>
  156. <DT><CODE>t</CODE>
  157. <DD>Display a <EM>table</EM> listing the contents of <VAR>archive</VAR>, or those
  158. of the files listed in <VAR>member</VAR>... that are present in the
  159. archive.  Normally only the member name is shown; if you also want to
  160. see the modes (permissions), timestamp, owner, group, and size, you can
  161. request that by also specifying the <SAMP>`v'</SAMP> modifier.
  162.  
  163. If you do not specify a <VAR>member</VAR>, all files in the archive
  164. are listed.
  165.  
  166. <A NAME="IDX18"></A>
  167. <A NAME="IDX17"></A>
  168. If there is more than one file with the same name (say, <SAMP>`fie'</SAMP>) in
  169. an archive (say <SAMP>`b.a'</SAMP>), <SAMP>`ar t b.a fie'</SAMP> lists only the
  170. first instance; to see them all, you must ask for a complete
  171. listing--in our example, <SAMP>`ar t b.a'</SAMP>.
  172.  
  173. <A NAME="IDX19"></A>
  174. <DT><CODE>x</CODE>
  175. <DD><EM>Extract</EM> members (named <VAR>member</VAR>) from the archive.  You can
  176. use the <SAMP>`v'</SAMP> modifier with this operation, to request that
  177. <CODE>ar</CODE> list each name as it extracts it.
  178.  
  179. If you do not specify a <VAR>member</VAR>, all files in the archive
  180. are extracted.
  181.  
  182. </DL>
  183. <P>
  184. A number of modifiers (<VAR>mod</VAR>) may immediately follow the <VAR>p</VAR>
  185. keyletter, to specify variations on an operation's behavior:
  186. <P>
  187. <DL COMPACT>
  188. <A NAME="IDX20"></A>
  189. <DT><CODE>a</CODE>
  190. <DD>Add new files <EM>after</EM> an existing member of the
  191. archive.  If you use the modifier <SAMP>`a'</SAMP>, the name of an existing archive
  192. member must be present as the <VAR>relpos</VAR> argument, before the
  193. <VAR>archive</VAR> specification.
  194.  
  195. <DT><CODE>b</CODE>
  196. <DD>Add new files <EM>before</EM> an existing member of the
  197. archive.  If you use the modifier <SAMP>`b'</SAMP>, the name of an existing archive
  198. member must be present as the <VAR>relpos</VAR> argument, before the
  199. <VAR>archive</VAR> specification.  (same as <SAMP>`i'</SAMP>).
  200.  
  201. <A NAME="IDX21"></A>
  202. <DT><CODE>c</CODE>
  203. <DD><EM>Create</EM> the archive.  The specified <VAR>archive</VAR> is always
  204. created if it did not exist, when you request an update.  But a warning is
  205. issued unless you specify in advance that you expect to create it, by
  206. using this modifier.
  207.  
  208. <DT><CODE>i</CODE>
  209. <DD>Insert new files <EM>before</EM> an existing member of the
  210. archive.  If you use the modifier <SAMP>`i'</SAMP>, the name of an existing archive
  211. member must be present as the <VAR>relpos</VAR> argument, before the
  212. <VAR>archive</VAR> specification.  (same as <SAMP>`b'</SAMP>).
  213.  
  214. <DT><CODE>l</CODE>
  215. <DD>This modifier is accepted but not used.
  216.  
  217. <A NAME="IDX22"></A>
  218. <DT><CODE>o</CODE>
  219. <DD>Preserve the <EM>original</EM> dates of members when extracting them.  If
  220. you do not specify this modifier, files extracted from the archive
  221. are stamped with the time of extraction.
  222.  
  223. <A NAME="IDX23"></A>
  224. <DT><CODE>s</CODE>
  225. <DD>Write an object-file index into the archive, or update an existing one,
  226. even if no other change is made to the archive.  You may use this modifier
  227. flag either with any operation, or alone.  Running <SAMP>`ar s'</SAMP> on an
  228. archive is equivalent to running <SAMP>`ranlib'</SAMP> on it.
  229.  
  230. <A NAME="IDX24"></A>
  231. <DT><CODE>u</CODE>
  232. <DD>Normally, <SAMP>`ar r'</SAMP>... inserts all files
  233. listed into the archive.  If you would like to insert <EM>only</EM> those
  234. of the files you list that are newer than existing members of the same
  235. names, use this modifier.  The <SAMP>`u'</SAMP> modifier is allowed only for the
  236. operation <SAMP>`r'</SAMP> (replace).  In particular, the combination <SAMP>`qu'</SAMP> is
  237. not allowed, since checking the timestamps would lose any speed
  238. advantage from the operation <SAMP>`q'</SAMP>.
  239.  
  240. <DT><CODE>v</CODE>
  241. <DD>This modifier requests the <EM>verbose</EM> version of an operation.  Many
  242. operations display additional information, such as filenames processed,
  243. when the modifier <SAMP>`v'</SAMP> is appended.
  244.  
  245. <DT><CODE>V</CODE>
  246. <DD>This modifier shows the version number of <CODE>ar</CODE>.
  247. </DL>
  248. <P>
  249. <H2><A NAME="SEC3" HREF="BINUTILS.HTM#SEC3">Controlling <CODE>ar</CODE> with a script</A></H2>
  250. <P>
  251. <PRE>
  252. ar -M [ <<VAR>script</VAR> ]
  253. </PRE>
  254. <A NAME="IDX25"></A>
  255. <A NAME="IDX26"></A>
  256. <P>
  257. If you use the single command-line option <SAMP>`-M'</SAMP> with <CODE>ar</CODE>, you
  258. can control its operation with a rudimentary command language.  This
  259. form of <CODE>ar</CODE> operates interactively if standard input is coming
  260. directly from a terminal.  During interactive use, <CODE>ar</CODE> prompts for
  261. input (the prompt is <SAMP>`AR >'</SAMP>), and continues executing even after
  262. errors.  If you redirect standard input to a script file, no prompts are
  263. issued, and <CODE>ar</CODE> abandons execution (with a nonzero exit code)
  264. on any error.
  265. <P>
  266. The <CODE>ar</CODE> command language is <EM>not</EM> designed to be equivalent
  267. to the command-line options; in fact, it provides somewhat less control
  268. over archives.  The only purpose of the command language is to ease the
  269. transition to GNU <CODE>ar</CODE> for developers who already have scripts
  270. written for the MRI "librarian" program.
  271. <P>
  272. The syntax for the <CODE>ar</CODE> command language is straightforward:
  273. <UL>
  274. <LI>
  275. commands are recognized in upper or lower case; for example, <CODE>LIST</CODE>
  276. is the same as <CODE>list</CODE>.  In the following descriptions, commands are
  277. shown in upper case for clarity.
  278.  
  279. <LI>
  280. a single command may appear on each line; it is the first word on the
  281. line.
  282.  
  283. <LI>
  284. empty lines are allowed, and have no effect.
  285.  
  286. <LI>
  287. comments are allowed; text after either of the characters <SAMP>`*'</SAMP>
  288. or <SAMP>`;'</SAMP> is ignored.
  289.  
  290. <LI>
  291. Whenever you use a list of names as part of the argument to an <CODE>ar</CODE>
  292. command, you can separate the individual names with either commas or
  293. blanks.  Commas are shown in the explanations below, for clarity.
  294.  
  295. <LI>
  296. <SAMP>`+'</SAMP> is used as a line continuation character; if <SAMP>`+'</SAMP> appears
  297. at the end of a line, the text on the following line is considered part
  298. of the current command.
  299. </UL>
  300. <P>
  301. Here are the commands you can use in <CODE>ar</CODE> scripts, or when using
  302. <CODE>ar</CODE> interactively.  Three of them have special significance:
  303. <P>
  304. <CODE>OPEN</CODE> or <CODE>CREATE</CODE> specify a <DFN>current archive</DFN>, which is
  305. a temporary file required for most of the other commands.
  306. <P>
  307. <CODE>SAVE</CODE> commits the changes so far specified by the script.  Prior
  308. to <CODE>SAVE</CODE>, commands affect only the temporary copy of the current
  309. archive.
  310. <P>
  311. <DL COMPACT>
  312. <DT><CODE>ADDLIB <VAR>archive</VAR></CODE>
  313. <DD><DT><CODE>ADDLIB <VAR>archive</VAR> (<VAR>module</VAR>, <VAR>module</VAR>, ... <VAR>module</VAR>)</CODE>
  314. <DD>Add all the contents of <VAR>archive</VAR> (or, if specified, each named
  315. <VAR>module</VAR> from <VAR>archive</VAR>) to the current archive.
  316.  
  317. Requires prior use of <CODE>OPEN</CODE> or <CODE>CREATE</CODE>.
  318.  
  319. <DT><CODE>ADDMOD <VAR>member</VAR>, <VAR>member</VAR>, ... <VAR>member</VAR></CODE>
  320. <DD>Add each named <VAR>member</VAR> as a module in the current archive.
  321.  
  322. Requires prior use of <CODE>OPEN</CODE> or <CODE>CREATE</CODE>.
  323.  
  324. <DT><CODE>CLEAR</CODE>
  325. <DD>Discard the contents of the current archive, cancelling the effect of
  326. any operations since the last <CODE>SAVE</CODE>.  May be executed (with no
  327. effect) even if  no current archive is specified.
  328.  
  329. <DT><CODE>CREATE <VAR>archive</VAR></CODE>
  330. <DD>Creates an archive, and makes it the current archive (required for many
  331. other commands).  The new archive is created with a temporary name; it
  332. is not actually saved as <VAR>archive</VAR> until you use <CODE>SAVE</CODE>.
  333. You can overwrite existing archives; similarly, the contents of any
  334. existing file named <VAR>archive</VAR> will not be destroyed until <CODE>SAVE</CODE>.
  335.  
  336. <DT><CODE>DELETE <VAR>module</VAR>, <VAR>module</VAR>, ... <VAR>module</VAR></CODE>
  337. <DD>Delete each listed <VAR>module</VAR> from the current archive; equivalent to
  338. <SAMP>`ar -d <VAR>archive</VAR> <VAR>module</VAR> ... <VAR>module</VAR>'</SAMP>.
  339.  
  340. Requires prior use of <CODE>OPEN</CODE> or <CODE>CREATE</CODE>.
  341.  
  342. <DT><CODE>DIRECTORY <VAR>archive</VAR> (<VAR>module</VAR>, ... <VAR>module</VAR>)</CODE>
  343. <DD><DT><CODE>DIRECTORY <VAR>archive</VAR> (<VAR>module</VAR>, ... <VAR>module</VAR>) <VAR>outputfile</VAR></CODE>
  344. <DD>List each named <VAR>module</VAR> present in <VAR>archive</VAR>.  The separate
  345. command <CODE>VERBOSE</CODE> specifies the form of the output: when verbose
  346. output is off, output is like that of <SAMP>`ar -t <VAR>archive</VAR>
  347. <VAR>module</VAR>...'</SAMP>.  When verbose output is on, the listing is like
  348. <SAMP>`ar -tv <VAR>archive</VAR> <VAR>module</VAR>...'</SAMP>.
  349.  
  350. Output normally goes to the standard output stream; however, if you
  351. specify <VAR>outputfile</VAR> as a final argument, <CODE>ar</CODE> directs the
  352. output to that file.
  353.  
  354. <DT><CODE>END</CODE>
  355. <DD>Exit from <CODE>ar</CODE>, with a <CODE>0</CODE> exit code to indicate successful
  356. completion.  This command does not save the output file; if you have
  357. changed the current archive since the last <CODE>SAVE</CODE> command, those
  358. changes are lost.
  359.  
  360. <DT><CODE>EXTRACT <VAR>module</VAR>, <VAR>module</VAR>, ... <VAR>module</VAR></CODE>
  361. <DD>Extract each named <VAR>module</VAR> from the current archive, writing them
  362. into the current directory as separate files.  Equivalent to <SAMP>`ar -x
  363. <VAR>archive</VAR> <VAR>module</VAR>...'</SAMP>.
  364.  
  365. Requires prior use of <CODE>OPEN</CODE> or <CODE>CREATE</CODE>.
  366.  
  367.  
  368. <DT><CODE>LIST</CODE>
  369. <DD>Display full contents of the current archive, in "verbose" style
  370. regardless of the state of <CODE>VERBOSE</CODE>.  The effect is like <SAMP>`ar
  371. tv <VAR>archive</VAR>'</SAMP>).  (This single command is a GNU <CODE>ld</CODE>
  372. enhancement, rather than present for MRI compatibility.)
  373.  
  374. Requires prior use of <CODE>OPEN</CODE> or <CODE>CREATE</CODE>.
  375.  
  376. <DT><CODE>OPEN <VAR>archive</VAR></CODE>
  377. <DD>Opens an existing archive for use as the current archive (required for
  378. many other commands).  Any changes as the result of subsequent commands
  379. will not actually affect <VAR>archive</VAR> until you next use <CODE>SAVE</CODE>.
  380.  
  381. <DT><CODE>REPLACE <VAR>module</VAR>, <VAR>module</VAR>, ... <VAR>module</VAR></CODE>
  382. <DD>In the current archive, replace each existing <VAR>module</VAR> (named in
  383. the <CODE>REPLACE</CODE> arguments) from files in the current working directory.
  384. To execute this command without errors, both the file, and the module in
  385. the current archive, must exist. 
  386.  
  387. Requires prior use of <CODE>OPEN</CODE> or <CODE>CREATE</CODE>.
  388.  
  389. <DT><CODE>VERBOSE</CODE>
  390. <DD>Toggle an internal flag governing the output from <CODE>DIRECTORY</CODE>.
  391. When the flag is on, <CODE>DIRECTORY</CODE> output matches output from
  392. <SAMP>`ar -tv '</SAMP>....
  393.  
  394. <DT><CODE>SAVE</CODE>
  395. <DD>Commit your changes to the current archive, and actually save it as a
  396. file with the name specified in the last <CODE>CREATE</CODE> or <CODE>OPEN</CODE>
  397. command. 
  398.  
  399. Requires prior use of <CODE>OPEN</CODE> or <CODE>CREATE</CODE>.
  400.  
  401. </DL>
  402. <P>
  403. <A NAME="IDX27"></A>
  404. <A NAME="IDX28"></A>
  405. <H1><A NAME="SEC4" HREF="BINUTILS.HTM#SEC4">ld</A></H1>
  406. The GNU linker <CODE>ld</CODE> is now described in a separate manual.
  407. See section `Overview' in <CITE>Using LD: the GNU linker</CITE>.
  408. <P>
  409. <A NAME="IDX29"></A>
  410. <A NAME="IDX30"></A>
  411. <H1><A NAME="SEC5" HREF="BINUTILS.HTM#SEC5">nm</A></H1>
  412. <P>
  413. <PRE>
  414. nm [ -a | --debug-syms ]  [ -g | --extern-only ]
  415.    [ -B ]  [ -C | --demangle ] [ -D | --dynamic ]
  416.    [ -s | --print-armap ]  [ -A | -o | --print-file-name ]
  417.    [ -n | -v | --numeric-sort ]  [ -p | --no-sort ]
  418.    [ -r | --reverse-sort ]  [ --size-sort ] [ -u | --undefined-only ]
  419.    [ -t <VAR>radix</VAR> | --radix=<VAR>radix</VAR> ] [ -P | --portability ]
  420.    [ --target=<VAR>bfdname</VAR> ] [ -f <VAR>format</VAR> | --format=<VAR>format</VAR> ]
  421.    [ --no-demangle ] [ -V | --version ]  [ --help ]  [ <VAR>objfile</VAR>... ]
  422. </PRE>
  423. <P>
  424. GNU <CODE>nm</CODE> lists the symbols from object files <VAR>objfile</VAR>....
  425. If no object files are listed as arguments, <CODE>nm</CODE> assumes
  426. <TT>`a.out'</TT>.
  427. <P>
  428. For each symbol, <CODE>nm</CODE> shows:
  429. <P>
  430. <UL>
  431. <LI>
  432. The symbol value, in the radix selected by options (see below), or
  433. hexadecimal by default.
  434.  
  435. <LI>
  436. The symbol type.  At least the following types are used; others are, as
  437. well, depending on the object file format.  If lowercase, the symbol is
  438. local; if uppercase, the symbol is global (external).
  439.  
  440. <DL COMPACT>
  441. <DT><CODE>A</CODE>
  442. <DD>Absolute.
  443.  
  444. <DT><CODE>B</CODE>
  445. <DD>BSS (uninitialized data).
  446.  
  447. <DT><CODE>C</CODE>
  448. <DD>Common.
  449.  
  450. <DT><CODE>D</CODE>
  451. <DD>Initialized data.
  452.  
  453. <DT><CODE>I</CODE>
  454. <DD>Indirect reference.
  455.  
  456. <DT><CODE>T</CODE>
  457. <DD>Text (program code).
  458.  
  459. <DT><CODE>U</CODE>
  460. <DD>Undefined.
  461. </DL>
  462.  
  463. <LI>
  464. The symbol name.
  465. </UL>
  466. <P>
  467. The long and short forms of options, shown here as alternatives, are
  468. equivalent.
  469. <P>
  470. <DL COMPACT>
  471. <DT><CODE>-A</CODE>
  472. <DD><DT><CODE>-o</CODE>
  473. <DD><A NAME="IDX31"></A>
  474. <A NAME="IDX32"></A>
  475. <A NAME="IDX33"></A>
  476. <DT><CODE>--print-file-name</CODE>
  477. <DD>Precede each symbol by the name of the input file (or archive element)
  478. in which it was found, rather than identifying the input file once only,
  479. before all of its symbols.
  480.  
  481. <DT><CODE>-a</CODE>
  482. <DD><A NAME="IDX34"></A>
  483. <DT><CODE>--debug-syms</CODE>
  484. <DD>Display all symbols, even debugger-only symbols; normally these are not
  485. listed.
  486.  
  487. <A NAME="IDX35"></A>
  488. <A NAME="IDX36"></A>
  489. <DT><CODE>-B</CODE>
  490. <DD>The same as <SAMP>`--format=bsd'</SAMP> (for compatibility with the MIPS <CODE>nm</CODE>).
  491.  
  492. <DT><CODE>-C</CODE>
  493. <DD><A NAME="IDX37"></A>
  494. <DT><CODE>--demangle</CODE>
  495. <DD>Decode (<DFN>demangle</DFN>) low-level symbol names into user-level names.
  496. Besides removing any initial underscore prepended by the system, this
  497. makes C++ function names readable.  See section <A HREF="BINUTILS.000#SEC12">c++filt</A>, for more information
  498. on demangling.
  499.  
  500. <DT><CODE>--no-demangle</CODE>
  501. <DD>Do not demangle low-level symbol names.  This is the default.
  502.  
  503. <DT><CODE>-D</CODE>
  504. <DD><A NAME="IDX38"></A>
  505. <DT><CODE>--dynamic</CODE>
  506. <DD>Display the dynamic symbols rather than the normal symbols.  This is
  507. only meaningful for dynamic objects, such as certain types of shared
  508. libraries.
  509.  
  510. <DT><CODE>-f <VAR>format</VAR></CODE>
  511. <DD><A NAME="IDX39"></A>
  512. <A NAME="IDX40"></A>
  513. <DT><CODE>--format=<VAR>format</VAR></CODE>
  514. <DD>Use the output format <VAR>format</VAR>, which can be <CODE>bsd</CODE>,
  515. <CODE>sysv</CODE>, or <CODE>posix</CODE>.  The default is <CODE>bsd</CODE>.
  516. Only the first character of <VAR>format</VAR> is significant; it can be
  517. either upper or lower case.
  518.  
  519. <DT><CODE>-g</CODE>
  520. <DD><A NAME="IDX41"></A>
  521. <DT><CODE>--extern-only</CODE>
  522. <DD>Display only external symbols.
  523.  
  524. <DT><CODE>-n</CODE>
  525. <DD><DT><CODE>-v</CODE>
  526. <DD><DT><CODE>--numeric-sort</CODE>
  527. <DD>Sort symbols numerically by their addresses, rather than alphabetically
  528. by their names. 
  529.  
  530. <DT><CODE>-p</CODE>
  531. <DD><A NAME="IDX42"></A>
  532. <DT><CODE>--no-sort</CODE>
  533. <DD>Do not bother to sort the symbols in any order; print them in the order
  534. encountered.
  535.  
  536. <DT><CODE>-P</CODE>
  537. <DD><DT><CODE>--portability</CODE>
  538. <DD>Use the POSIX.2 standard output format instead of the default format.
  539. Equivalent to <SAMP>`-f posix'</SAMP>.
  540.  
  541. <DT><CODE>-s</CODE>
  542. <DD><A NAME="IDX43"></A>
  543. <DT><CODE>--print-armap</CODE>
  544. <DD>When listing symbols from archive members, include the index: a mapping
  545. (stored in the archive by <CODE>ar</CODE> or <CODE>ranlib</CODE>) of which modules
  546. contain definitions for which names.
  547.  
  548. <DT><CODE>-r</CODE>
  549. <DD><DT><CODE>--reverse-sort</CODE>
  550. <DD>Reverse the order of the sort (whether numeric or alphabetic); let the
  551. last come first.
  552.  
  553. <DT><CODE>--size-sort</CODE>
  554. <DD>Sort symbols by size.  The size is computed as the difference between
  555. the value of the symbol and the value of the symbol with the next higher
  556. value.  The size of the symbol is printed, rather than the value.
  557.  
  558. <DT><CODE>-t <VAR>radix</VAR></CODE>
  559. <DD><DT><CODE>--radix=<VAR>radix</VAR></CODE>
  560. <DD>Use <VAR>radix</VAR> as the radix for printing the symbol values.  It must be
  561. <SAMP>`d'</SAMP> for decimal, <SAMP>`o'</SAMP> for octal, or <SAMP>`x'</SAMP> for hexadecimal.
  562.  
  563. <A NAME="IDX44"></A>
  564. <DT><CODE>--target=<VAR>bfdname</VAR></CODE>
  565. <DD>Specify an object code format other than your system's default format.
  566. See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  567.  
  568. <DT><CODE>-u</CODE>
  569. <DD><A NAME="IDX45"></A>
  570. <A NAME="IDX46"></A>
  571. <DT><CODE>--undefined-only</CODE>
  572. <DD>Display only undefined symbols (those external to each object file).
  573.  
  574. <DT><CODE>-V</CODE>
  575. <DD><DT><CODE>--version</CODE>
  576. <DD>Show the version number of <CODE>nm</CODE> and exit.
  577.  
  578. <DT><CODE>--help</CODE>
  579. <DD>Show a summary of the options to <CODE>nm</CODE> and exit.
  580. </DL>
  581. <P>
  582. <H1><A NAME="SEC6" HREF="BINUTILS.HTM#SEC6">objcopy</A></H1>
  583. <P>
  584. <PRE>
  585. objcopy [ -F <VAR>bfdname</VAR> | --target=<VAR>bfdname</VAR> ]
  586.         [ -I <VAR>bfdname</VAR> | --input-target=<VAR>bfdname</VAR> ]
  587.         [ -O <VAR>bfdname</VAR> | --output-target=<VAR>bfdname</VAR> ]
  588.         [ -S | --strip-all ]  [ -g | --strip-debug ]
  589.         [ -K <VAR>symbolname</VAR> | --keep-symbol=<VAR>symbolname</VAR> ]
  590.         [ -N <VAR>symbolname</VAR> | --strip-symbol=<VAR>symbolname</VAR> ]
  591.         [ -x | --discard-all ]  [ -X | --discard-locals ]
  592.         [ -b <VAR>byte</VAR> | --byte=<VAR>byte</VAR> ]
  593.         [ -i <VAR>interleave</VAR> | --interleave=<VAR>interleave</VAR> ]
  594.         [ -R <VAR>sectionname</VAR> | --remove-section=<VAR>sectionname</VAR> ]
  595.         [ --gap-fill=<VAR>val</VAR> ] [ --pad-to=<VAR>address</VAR> ]
  596.         [ --set-start=<VAR>val</VAR> ] [ --adjust-start=<VAR>incr</VAR> ]
  597.         [ --adjust-vma=<VAR>incr</VAR> ]
  598.         [ --adjust-section-vma=<VAR>section</VAR>{=,+,-}<VAR>val</VAR> ]
  599.         [ --adjust-warnings ] [ --no-adjust-warnings ]
  600.         [ --set-section-flags=<VAR>section</VAR>=<VAR>flags</VAR> ]
  601.         [ --add-section=<VAR>sectionname</VAR>=<VAR>filename</VAR> ]
  602.         [ -v | --verbose ] [ -V | --version ]  [ --help ]
  603.         <VAR>infile</VAR> [<VAR>outfile</VAR>]
  604. </PRE>
  605. <P>
  606. The GNU <CODE>objcopy</CODE> utility copies the contents of an object
  607. file to another.  <CODE>objcopy</CODE> uses the GNU BFD Library to
  608. read and write the object files.  It can write the destination object
  609. file in a format different from that of the source object file.  The
  610. exact behavior of <CODE>objcopy</CODE> is controlled by command-line options.
  611. <P>
  612. <CODE>objcopy</CODE> creates temporary files to do its translations and
  613. deletes them afterward.  <CODE>objcopy</CODE> uses BFD to do all its
  614. translation work; it has access to all the formats described in BFD
  615. and thus is able to recognize most formats without being told
  616. explicitly.  See section `BFD' in <CITE>Using LD</CITE>.
  617. <P>
  618. <CODE>objcopy</CODE> can be used to generate S-records by using an output
  619. target of <SAMP>`srec'</SAMP> (e.g., use <SAMP>`-O srec'</SAMP>).
  620. <P>
  621. <CODE>objcopy</CODE> can be used to generate a raw binary file by using an
  622. output target of <SAMP>`binary'</SAMP> (e.g., use <SAMP>`-O binary'</SAMP>).  When
  623. <CODE>objcopy</CODE> generates a raw binary file, it will essentially produce
  624. a memory dump of the contents of the input object file.  All symbols and
  625. relocation information will be discarded.  The memory dump will start at
  626. the virtual address of the lowest section copied into the output file.
  627. <P>
  628. When generating an S-record or a raw binary file, it may be helpful to
  629. use <SAMP>`-S'</SAMP> to remove sections containing debugging information.  In
  630. some cases <SAMP>`-R'</SAMP> will be useful to remove sections which contain
  631. information which is not needed by the binary file.
  632. <P>
  633. <DL COMPACT>
  634. <DT><CODE><VAR>infile</VAR></CODE>
  635. <DD><DT><CODE><VAR>outfile</VAR></CODE>
  636. <DD>The source and output files, respectively.
  637. If you do not specify <VAR>outfile</VAR>, <CODE>objcopy</CODE> creates a
  638. temporary file and destructively renames the result with
  639. the name of <VAR>infile</VAR>.
  640.  
  641. <DT><CODE>-I <VAR>bfdname</VAR></CODE>
  642. <DD><DT><CODE>--input-target=<VAR>bfdname</VAR></CODE>
  643. <DD>Consider the source file's object format to be <VAR>bfdname</VAR>, rather than
  644. attempting to deduce it.  See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  645.  
  646. <DT><CODE>-O <VAR>bfdname</VAR></CODE>
  647. <DD><DT><CODE>--output-target=<VAR>bfdname</VAR></CODE>
  648. <DD>Write the output file using the object format <VAR>bfdname</VAR>.
  649. See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  650.  
  651. <DT><CODE>-F <VAR>bfdname</VAR></CODE>
  652. <DD><DT><CODE>--target=<VAR>bfdname</VAR></CODE>
  653. <DD>Use <VAR>bfdname</VAR> as the object format for both the input and the output
  654. file; i.e., simply transfer data from source to destination with no
  655. translation.  See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  656.  
  657. <DT><CODE>-R <VAR>sectionname</VAR></CODE>
  658. <DD><DT><CODE>--remove-section=<VAR>sectionname</VAR></CODE>
  659. <DD>Remove any section named <VAR>sectionname</VAR> from the output file.  This
  660. option may be given more than once.  Note that using this option
  661. inappropriately may make the output file unusable.
  662.  
  663. <DT><CODE>-S</CODE>
  664. <DD><DT><CODE>--strip-all</CODE>
  665. <DD>Do not copy relocation and symbol information from the source file.
  666.  
  667. <DT><CODE>-g</CODE>
  668. <DD><DT><CODE>--strip-debug</CODE>
  669. <DD>Do not copy debugging symbols from the source file.
  670.  
  671. <DT><CODE>-K <VAR>symbolname</VAR></CODE>
  672. <DD><DT><CODE>--keep-symbol=<VAR>symbolname</VAR></CODE>
  673. <DD>Copy only symbol <VAR>symbolname</VAR> from the source file.  This option may
  674. be given more than once.
  675.  
  676. <DT><CODE>-N <VAR>symbolname</VAR></CODE>
  677. <DD><DT><CODE>--strip-symbol=<VAR>symbolname</VAR></CODE>
  678. <DD>Do not copy symbol <VAR>symbolname</VAR> from the source file.  This option
  679. may be given more than once, and may be combined with strip options
  680. other than <CODE>-K</CODE>.
  681.  
  682. <DT><CODE>-x</CODE>
  683. <DD><DT><CODE>--discard-all</CODE>
  684. <DD>Do not copy non-global symbols from the source file.
  685.  
  686. <DT><CODE>-X</CODE>
  687. <DD><DT><CODE>--discard-locals</CODE>
  688. <DD>Do not copy compiler-generated local symbols.
  689. (These usually start with <SAMP>`L'</SAMP> or <SAMP>`.'</SAMP>.)
  690.  
  691. <DT><CODE>-b <VAR>byte</VAR></CODE>
  692. <DD><DT><CODE>--byte=<VAR>byte</VAR></CODE>
  693. <DD>Keep only every <VAR>byte</VAR>th byte of the input file (header data is not
  694. affected).  <VAR>byte</VAR> can be in the range from 0 to <VAR>interleave</VAR>-1,
  695. where <VAR>interleave</VAR> is given by the <SAMP>`-i'</SAMP> or <SAMP>`--interleave'</SAMP>
  696. option, or the default of 4.  This option is useful for creating files
  697. to program ROM.  It is typically used with an <CODE>srec</CODE> output
  698. target.
  699.  
  700. <DT><CODE>-i <VAR>interleave</VAR></CODE>
  701. <DD><DT><CODE>--interleave=<VAR>interleave</VAR></CODE>
  702. <DD>Only copy one out of every <VAR>interleave</VAR> bytes.  Select which byte to
  703. copy with the <VAR>-b</VAR> or <SAMP>`--byte'</SAMP> option.  The default is 4.
  704. <CODE>objcopy</CODE> ignores this option if you do not specify either <SAMP>`-b'</SAMP> or
  705. <SAMP>`--byte'</SAMP>.
  706.  
  707. <DT><CODE>--gap-fill <VAR>val</VAR></CODE>
  708. <DD>Fill gaps between sections with <VAR>val</VAR>.  This is done by increasing
  709. the size of the section with the lower address, and filling in the extra
  710. space created with <VAR>val</VAR>.
  711.  
  712. <DT><CODE>--pad-to <VAR>address</VAR></CODE>
  713. <DD>Pad the output file up to the virtual address <VAR>address</VAR>.  This is
  714. done by increasing the size of the last section.  The extra space is
  715. filled in with the value specified by <SAMP>`--gap-fill'</SAMP> (default zero).
  716.  
  717. <DT><CODE>--set-start <VAR>val</VAR></CODE>
  718. <DD>Set the address of the new file to <VAR>val</VAR>.  Not all object file
  719. formats support setting the start address.
  720.  
  721. <DT><CODE>--adjust-start <VAR>incr</VAR></CODE>
  722. <DD>Adjust the start address by adding <VAR>incr</VAR>.  Not all object file
  723. formats support setting the start address.
  724.  
  725. <DT><CODE>--adjust-vma <VAR>incr</VAR></CODE>
  726. <DD>Adjust the address of all sections, as well as the start address, by
  727. adding <VAR>incr</VAR>.  Some object file formats do not permit section
  728. addresses to be changed arbitrarily.  Note that this does not relocate
  729. the sections; if the program expects sections to be loaded at a certain
  730. address, and this option is used to change the sections such that they
  731. are loaded at a different address, the program may fail.
  732.  
  733. <DT><CODE>--adjust-section-vma <VAR>section</VAR>{=,+,-}<VAR>val</VAR></CODE>
  734. <DD>Set or adjust the address of the named <VAR>section</VAR>.  If <SAMP>`='</SAMP> is
  735. used, the section address is set to <VAR>val</VAR>.  Otherwise, <VAR>val</VAR> is
  736. added to or subtracted from the section address.  See the comments under
  737. <SAMP>`--adjust-vma'</SAMP>, above.  If <VAR>section</VAR> does not exist in the
  738. input file, a warning will be issued, unless <SAMP>`--no-adjust-warnings'</SAMP>
  739. is used.
  740.  
  741. <DT><CODE>--adjust-warnings</CODE>
  742. <DD>If <SAMP>`--adjust-section-vma'</SAMP> is used, and the named section does not
  743. exist, issue a warning.  This is the default.
  744.  
  745. <DT><CODE>--no-adjust-warnings</CODE>
  746. <DD>Do not issue a warning if <SAMP>`--adjust-section-vma'</SAMP> is used, even if
  747. the named section does not exist.
  748.  
  749. <DT><CODE>--set-section-flags <VAR>section</VAR>=<VAR>flags</VAR></CODE>
  750. <DD>Set the flags for the named section.  The <VAR>flags</VAR> argument is a
  751. comma separated string of flag names.  The recognized names are
  752. <SAMP>`alloc'</SAMP>, <SAMP>`load'</SAMP>, <SAMP>`readonly'</SAMP>, <SAMP>`code'</SAMP>, <SAMP>`data'</SAMP>,
  753. and <SAMP>`rom'</SAMP>.  Not all flags are meaningful for all object file
  754. formats.
  755.  
  756. <DT><CODE>--add-section <VAR>sectionname</VAR>=<VAR>filename</VAR></CODE>
  757. <DD>Add a new section named <VAR>sectionname</VAR> while copying the file.  The
  758. contents of the new section are taken from the file <VAR>filename</VAR>.  The
  759. size of the section will be the size of the file.  This option only
  760. works on file formats which can support sections with arbitrary names.
  761.  
  762. <DT><CODE>-V</CODE>
  763. <DD><DT><CODE>--version</CODE>
  764. <DD>Show the version number of <CODE>objcopy</CODE>.
  765.  
  766. <DT><CODE>-v</CODE>
  767. <DD><DT><CODE>--verbose</CODE>
  768. <DD>Verbose output: list all object files modified.  In the case of
  769. archives, <SAMP>`objcopy -V'</SAMP> lists all members of the archive.
  770.  
  771. <DT><CODE>--help</CODE>
  772. <DD>Show a summary of the options to <CODE>objcopy</CODE>.
  773. </DL>
  774. <P>
  775. <H1><A NAME="SEC7" HREF="BINUTILS.HTM#SEC7">objdump</A></H1>
  776. <A NAME="IDX47"></A>
  777. <A NAME="IDX48"></A>
  778. <P>
  779. <PRE>
  780. objdump [ -a | --archive-headers ] 
  781.         [ -b <VAR>bfdname</VAR> | --target=<VAR>bfdname</VAR> ]
  782.         [ -d | --disassemble ]  [ -D | --disassemble-all ] 
  783.         [ -f | --file-headers ]
  784.         [ -h | --section-headers | --headers ]  [ -i | --info ]
  785.         [ -j <VAR>section</VAR> | --section=<VAR>section</VAR> ]
  786.         [ -l | --line-numbers ] [ -S | --source ]
  787.         [ -m <VAR>machine</VAR> | --architecture=<VAR>machine</VAR> ]
  788.         [ -r | --reloc ] [ -R | --dynamic-reloc ]
  789.         [ -s | --full-contents ]  [ --stabs ]
  790.         [ -t | --syms ] [ -T | --dynamic-syms ] [ -x | --all-headers ]
  791.         [ --version ]  [ --help ] <VAR>objfile</VAR>...
  792. </PRE>
  793. <P>
  794. <CODE>objdump</CODE> displays information about one or more object files.
  795. The options control what particular information to display.  This
  796. information is mostly useful to programmers who are working on the
  797. compilation tools, as opposed to programmers who just want their
  798. program to compile and work.
  799. <P>
  800. <VAR>objfile</VAR>... are the object files to be examined.  When you
  801. specify archives, <CODE>objdump</CODE> shows information on each of the member
  802. object files.
  803. <P>
  804. The long and short forms of options, shown here as alternatives, are
  805. equivalent.  At least one option besides <SAMP>`-l'</SAMP> must be given.
  806. <P>
  807. <DL COMPACT>
  808. <DT><CODE>-a</CODE>
  809. <DD><A NAME="IDX49"></A>
  810. <DT><CODE>--archive-header</CODE>
  811. <DD>If any of the <VAR>objfile</VAR> files are archives, display the archive
  812. header information (in a format similar to <SAMP>`ls -l'</SAMP>).  Besides the
  813. information you could list with <SAMP>`ar tv'</SAMP>, <SAMP>`objdump -a'</SAMP> shows
  814. the object file format of each archive member.
  815.  
  816. <DT><CODE>-b <VAR>bfdname</VAR></CODE>
  817. <DD><A NAME="IDX50"></A>
  818. <DT><CODE>--target=<VAR>bfdname</VAR></CODE>
  819. <DD>Specify that the object-code format for the object files is
  820. <VAR>bfdname</VAR>.  This option may not be necessary; <VAR>objdump</VAR> can
  821. automatically recognize many formats.
  822.  
  823. For example,
  824. <PRE>
  825. objdump -b oasys -m vax -h fu.o
  826. </PRE>
  827. displays summary information from the section headers (<SAMP>`-h'</SAMP>) of
  828. <TT>`fu.o'</TT>, which is explicitly identified (<SAMP>`-m'</SAMP>) as a VAX object
  829. file in the format produced by Oasys compilers.  You can list the
  830. formats available with the <SAMP>`-i'</SAMP> option.
  831. See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  832.  
  833. <DT><CODE>-d</CODE>
  834. <DD><A NAME="IDX51"></A>
  835. <A NAME="IDX52"></A>
  836. <DT><CODE>--disassemble</CODE>
  837. <DD>Display the assembler mnemonics for the machine instructions from
  838. <VAR>objfile</VAR>.  This option only disassembles those sections which are
  839. expected to contain instructions.
  840.  
  841. <DT><CODE>-D</CODE>
  842. <DD><DT><CODE>--disassemble-all</CODE>
  843. <DD>Like <SAMP>`-d'</SAMP>, but disassemble the contents of all sections, not just
  844. those expected to contain instructions.
  845.  
  846. <DT><CODE>-f</CODE>
  847. <DD><A NAME="IDX53"></A>
  848. <DT><CODE>--file-header</CODE>
  849. <DD>Display summary information from the overall header of
  850. each of the <VAR>objfile</VAR> files.
  851.  
  852. <DT><CODE>-h</CODE>
  853. <DD><DT><CODE>--section-header</CODE>
  854. <DD><A NAME="IDX54"></A>
  855. <DT><CODE>--header</CODE>
  856. <DD>Display summary information from the section headers of the
  857. object file.
  858.  
  859. File segments may be relocated to nonstandard addresses, for example by
  860. using the <SAMP>`-Ttext'</SAMP>, <SAMP>`-Tdata'</SAMP>, or <SAMP>`-Tbss'</SAMP> options to
  861. <CODE>ld</CODE>.  However, some object file formats, such as a.out, do not
  862. store the starting address of the file segments.  In those situations,
  863. although <CODE>ld</CODE> relocates the sections correctly, using <SAMP>`objdump
  864. -h'</SAMP> to list the file section headers cannot show the correct addresses.
  865. Instead, it shows the usual addresses, which are implicit for the
  866. target.
  867.  
  868. <DT><CODE>--help</CODE>
  869. <DD>Print a summary of the options to <CODE>objdump</CODE> and exit.
  870.  
  871. <DT><CODE>-i</CODE>
  872. <DD><A NAME="IDX55"></A>
  873. <A NAME="IDX56"></A>
  874. <DT><CODE>--info</CODE>
  875. <DD>Display a list showing all architectures and object formats available
  876. for specification with <SAMP>`-b'</SAMP> or <SAMP>`-m'</SAMP>.
  877.  
  878. <DT><CODE>-j <VAR>name</VAR></CODE>
  879. <DD><A NAME="IDX57"></A>
  880. <DT><CODE>--section=<VAR>name</VAR></CODE>
  881. <DD>Display information only for section <VAR>name</VAR>.
  882.  
  883. <DT><CODE>-l</CODE>
  884. <DD><A NAME="IDX58"></A>
  885. <DT><CODE>--line-numbers</CODE>
  886. <DD>Label the display (using debugging information) with the filename
  887. and source line numbers corresponding to the object code shown.
  888. Only useful with <SAMP>`-d'</SAMP> or <SAMP>`-D'</SAMP>.
  889.  
  890. <DT><CODE>-m <VAR>machine</VAR></CODE>
  891. <DD><A NAME="IDX59"></A>
  892. <DT><CODE>--architecture=<VAR>machine</VAR></CODE>
  893. <DD>Specify that the object files <VAR>objfile</VAR> are for architecture
  894. <VAR>machine</VAR>.  You can list available architectures using the <SAMP>`-i'</SAMP>
  895. option. 
  896.  
  897. <DT><CODE>-r</CODE>
  898. <DD><A NAME="IDX60"></A>
  899. <DT><CODE>--reloc</CODE>
  900. <DD>Print the relocation entries of the file.  If used with <SAMP>`-d'</SAMP> or
  901. <SAMP>`-D'</SAMP>, the relocations are printed interspersed with the
  902. disassembly.
  903.  
  904. <DT><CODE>-R</CODE>
  905. <DD><A NAME="IDX61"></A>
  906. <DT><CODE>--dynamic-reloc</CODE>
  907. <DD>Print the dynamic relocation entries of the file.  This is only
  908. meaningful for dynamic objects, such as certain types of shared
  909. libraries.
  910.  
  911. <DT><CODE>-s</CODE>
  912. <DD><A NAME="IDX62"></A>
  913. <A NAME="IDX63"></A>
  914. <DT><CODE>--full-contents</CODE>
  915. <DD>Display the full contents of any sections requested.
  916.  
  917. <DT><CODE>-S</CODE>
  918. <DD><A NAME="IDX64"></A>
  919. <A NAME="IDX65"></A>
  920. <DT><CODE>--source</CODE>
  921. <DD>Display source code intermixed with disassembly, if possible.  Implies
  922. <SAMP>`-d'</SAMP>.
  923.  
  924. <A NAME="IDX66"></A>
  925. <A NAME="IDX67"></A>
  926. <A NAME="IDX68"></A>
  927. <A NAME="IDX69"></A>
  928. <DT><CODE>--stabs</CODE>
  929. <DD>Display the full contents of any sections requested.  Display the
  930. contents of the .stab and .stab.index and .stab.excl sections from an
  931. ELF file.  This is only useful on systems (such as Solaris 2.0) in which
  932. <CODE>.stab</CODE> debugging symbol-table entries are carried in an ELF
  933. section.  In most other file formats, debugging symbol-table entries are
  934. interleaved with linkage symbols, and are visible in the <SAMP>`--syms'</SAMP>
  935. output.
  936.  
  937. <DT><CODE>-t</CODE>
  938. <DD><A NAME="IDX70"></A>
  939. <DT><CODE>--syms</CODE>
  940. <DD>Print the symbol table entries of the file.
  941. This is similar to the information provided by the <SAMP>`nm'</SAMP> program.
  942.  
  943. <DT><CODE>-T</CODE>
  944. <DD><A NAME="IDX71"></A>
  945. <DT><CODE>--dynamic-syms</CODE>
  946. <DD>Print the dynamic symbol table entries of the file.  This is only
  947. meaningful for dynamic objects, such as certain types of shared
  948. libraries.  This is similar to the information provided by the <SAMP>`nm'</SAMP>
  949. program when given the <SAMP>`-D'</SAMP> (<SAMP>`--dynamic'</SAMP>) option.
  950.  
  951. <DT><CODE>--version</CODE>
  952. <DD>Print the version number of <CODE>objdump</CODE> and exit.
  953.  
  954. <DT><CODE>-x</CODE>
  955. <DD><A NAME="IDX72"></A>
  956. <A NAME="IDX73"></A>
  957. <DT><CODE>--all-header</CODE>
  958. <DD>Display all available header information, including the symbol table and
  959. relocation entries.  Using <SAMP>`-x'</SAMP> is equivalent to specifying all of
  960. <SAMP>`-a -f -h -r -t'</SAMP>.
  961. </DL>
  962. <P>
  963. <H1><A NAME="SEC8" HREF="BINUTILS.HTM#SEC8">ranlib</A></H1>
  964. <A NAME="IDX74"></A>
  965. <A NAME="IDX75"></A>
  966. <A NAME="IDX76"></A>
  967. <P>
  968. <PRE>
  969. ranlib [-vV] <VAR>archive</VAR>
  970. </PRE>
  971. <P>
  972. <CODE>ranlib</CODE> generates an index to the contents of an archive and
  973. stores it in the archive.  The index lists each symbol defined by a
  974. member of an archive that is a relocatable object file.  
  975. <P>
  976. You may use <SAMP>`nm -s'</SAMP> or <SAMP>`nm --print-armap'</SAMP> to list this index.
  977. <P>
  978. An archive with such an index speeds up linking to the library and
  979. allows routines in the library to call each other without regard to
  980. their placement in the archive.
  981. <P>
  982. The GNU <CODE>ranlib</CODE> program is another form of GNU <CODE>ar</CODE>; running
  983. <CODE>ranlib</CODE> is completely equivalent to executing <SAMP>`ar -s'</SAMP>.
  984. See section <A HREF="BINUTILS.000#SEC1">ar</A>.
  985. <P>
  986. <DL COMPACT>
  987. <DT><CODE>-v</CODE>
  988. <DD><DT><CODE>-V</CODE>
  989. <DD>Show the version number of <CODE>ranlib</CODE>.
  990. </DL>
  991. <P>
  992. <H1><A NAME="SEC9" HREF="BINUTILS.HTM#SEC9">size</A></H1>
  993. <A NAME="IDX77"></A>
  994. <A NAME="IDX78"></A>
  995. <P>
  996. <PRE>
  997. size [ -A | -B | --format=<VAR>compatibility</VAR> ]
  998.      [ --help ]  [ -d | -o | -x | --radix=<VAR>number</VAR> ]
  999.      [ --target=<VAR>bfdname</VAR> ]  [ -V | --version ]  
  1000.      <VAR>objfile</VAR>...
  1001. </PRE>
  1002. <P>
  1003. The GNU <CODE>size</CODE> utility lists the section sizes--and the total
  1004. size--for each of the object or archive files <VAR>objfile</VAR> in its
  1005. argument list.  By default, one line of output is generated for each
  1006. object file or each module in an archive.
  1007. <P>
  1008. <VAR>objfile</VAR>... are the object files to be examined.
  1009. <P>
  1010. The command line options have the following meanings:
  1011. <P>
  1012. <DL COMPACT>
  1013. <DT><CODE>-A</CODE>
  1014. <DD><DT><CODE>-B</CODE>
  1015. <DD><A NAME="IDX79"></A>
  1016. <DT><CODE>--format=<VAR>compatibility</VAR></CODE>
  1017. <DD>Using one of these options, you can choose whether the output from GNU
  1018. <CODE>size</CODE> resembles output from System V <CODE>size</CODE> (using <SAMP>`-A'</SAMP>,
  1019. or <SAMP>`--format=sysv'</SAMP>), or Berkeley <CODE>size</CODE> (using <SAMP>`-B'</SAMP>, or
  1020. <SAMP>`--format=berkeley'</SAMP>).  The default is the one-line format similar to
  1021. Berkeley's.  
  1022.  
  1023. Here is an example of the Berkeley (default) format of output from
  1024. <CODE>size</CODE>: 
  1025. <PRE>
  1026. size --format=Berkeley ranlib size
  1027. text    data    bss     dec     hex     filename
  1028. 294880  81920   11592   388392  5ed28   ranlib
  1029. 294880  81920   11888   388688  5ee50   size
  1030. </PRE>
  1031.  
  1032. This is the same data, but displayed closer to System V conventions:
  1033.  
  1034. <PRE>
  1035. size --format=SysV ranlib size
  1036. ranlib  :
  1037. section         size         addr
  1038. .text         294880         8192       
  1039. .data          81920       303104       
  1040. .bss           11592       385024       
  1041. Total         388392    
  1042.  
  1043.  
  1044. size  :
  1045. section         size         addr
  1046. .text         294880         8192       
  1047. .data          81920       303104       
  1048. .bss           11888       385024       
  1049. Total         388688    
  1050. </PRE>
  1051.  
  1052. <DT><CODE>--help</CODE>
  1053. <DD>Show a summary of acceptable arguments and options.
  1054.  
  1055. <DT><CODE>-d</CODE>
  1056. <DD><DT><CODE>-o</CODE>
  1057. <DD><DT><CODE>-x</CODE>
  1058. <DD><A NAME="IDX80"></A>
  1059. <A NAME="IDX81"></A>
  1060. <DT><CODE>--radix=<VAR>number</VAR></CODE>
  1061. <DD>Using one of these options, you can control whether the size of each
  1062. section is given in decimal (<SAMP>`-d'</SAMP>, or <SAMP>`--radix=10'</SAMP>); octal
  1063. (<SAMP>`-o'</SAMP>, or <SAMP>`--radix=8'</SAMP>); or hexadecimal (<SAMP>`-x'</SAMP>, or
  1064. <SAMP>`--radix=16'</SAMP>).  In <SAMP>`--radix=<VAR>number</VAR>'</SAMP>, only the three
  1065. values (8, 10, 16) are supported.  The total size is always given in two
  1066. radices; decimal and hexadecimal for <SAMP>`-d'</SAMP> or <SAMP>`-x'</SAMP> output, or
  1067. octal and hexadecimal if you're using <SAMP>`-o'</SAMP>.
  1068.  
  1069. <A NAME="IDX82"></A>
  1070. <DT><CODE>--target=<VAR>bfdname</VAR></CODE>
  1071. <DD>Specify that the object-code format for <VAR>objfile</VAR> is
  1072. <VAR>bfdname</VAR>.  This option may not be necessary; <CODE>size</CODE> can
  1073. automatically recognize many formats.
  1074. See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  1075.  
  1076. <DT><CODE>-V</CODE>
  1077. <DD><DT><CODE>--version</CODE>
  1078. <DD>Display the version number of <CODE>size</CODE>.
  1079. </DL>
  1080. <P>
  1081. <A NAME="IDX83"></A>
  1082. <A NAME="IDX84"></A>
  1083. <A NAME="IDX85"></A>
  1084. <A NAME="IDX86"></A>
  1085. <H1><A NAME="SEC10" HREF="BINUTILS.HTM#SEC10">strings</A></H1>
  1086. <P>
  1087. <PRE>
  1088. strings [-afov] [-<VAR>min-len</VAR>] [-n <VAR>min-len</VAR>] [-t <VAR>radix</VAR>] [-]
  1089.         [--all] [--print-file-name] [--bytes=<VAR>min-len</VAR>]
  1090.         [--radix=<VAR>radix</VAR>] [--target=<VAR>bfdname</VAR>]
  1091.         [--help] [--version] <VAR>file</VAR>...
  1092. </PRE>
  1093. <P>
  1094. For each <VAR>file</VAR> given, GNU <CODE>strings</CODE> prints the printable
  1095. character sequences that are at least 4 characters long (or the number
  1096. given with the options below) and are followed by a NUL or newline
  1097. character.  By default, it only prints the strings from the initialized
  1098. data sections of object files; for other types of files, it prints the
  1099. strings from the whole file.
  1100. <P>
  1101. <CODE>strings</CODE> is mainly useful for determining the contents of non-text
  1102. files.
  1103. <P>
  1104. <DL COMPACT>
  1105. <DT><CODE>-a</CODE>
  1106. <DD><DT><CODE>--all</CODE>
  1107. <DD><DT><CODE>-</CODE>
  1108. <DD>Do not scan only the initialized data section of object files; scan
  1109. the whole files.
  1110.  
  1111. <DT><CODE>-f</CODE>
  1112. <DD><DT><CODE>--print-file-name</CODE>
  1113. <DD>Print the name of the file before each string.
  1114.  
  1115. <DT><CODE>--help</CODE>
  1116. <DD>Print a summary of the program usage on the standard output and exit.
  1117.  
  1118. <DT><CODE>-<VAR>min-len</VAR></CODE>
  1119. <DD><DT><CODE>-n <VAR>min-len</VAR></CODE>
  1120. <DD><DT><CODE>--bytes=<VAR>min-len</VAR></CODE>
  1121. <DD>Print sequences of characters that are at least <VAR>min-len</VAR> characters
  1122. long, instead of the default 4.
  1123.  
  1124. <DT><CODE>-o</CODE>
  1125. <DD>Like <SAMP>`-t o'</SAMP>.  Some other versions of <CODE>strings</CODE> have <SAMP>`-o'</SAMP>
  1126. act like <SAMP>`-t d'</SAMP> instead.  Since we can not be compatible with both
  1127. ways, we simply chose one.
  1128.  
  1129. <DT><CODE>-t <VAR>radix</VAR></CODE>
  1130. <DD><DT><CODE>--radix=<VAR>radix</VAR></CODE>
  1131. <DD>Print the offset within the file before each string.  The single
  1132. character argument specifies the radix of the offset---<SAMP>`o'</SAMP> for
  1133. octal, <SAMP>`x'</SAMP> for hexadecimal, or <SAMP>`d'</SAMP> for decimal.
  1134.  
  1135. <A NAME="IDX87"></A>
  1136. <DT><CODE>--target=<VAR>bfdname</VAR></CODE>
  1137. <DD>Specify an object code format other than your system's default format.
  1138. See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  1139.  
  1140. <DT><CODE>-v</CODE>
  1141. <DD><DT><CODE>--version</CODE>
  1142. <DD>Print the program version number on the standard output and exit.
  1143. </DL>
  1144. <P>
  1145. <H1><A NAME="SEC11" HREF="BINUTILS.HTM#SEC11">strip</A></H1>
  1146. <A NAME="IDX88"></A>
  1147. <A NAME="IDX89"></A>
  1148. <A NAME="IDX90"></A>
  1149. <A NAME="IDX91"></A>
  1150. <P>
  1151. <PRE>
  1152. strip [ -F <VAR>bfdname</VAR> | --target=<VAR>bfdname</VAR> | --target=<VAR>bfdname</VAR> ]
  1153.       [ -I <VAR>bfdname</VAR> | --input-target=<VAR>bfdname</VAR> ]
  1154.       [ -O <VAR>bfdname</VAR> | --output-target=<VAR>bfdname</VAR> ]
  1155.       [ -s | --strip-all ] [ -S | -g | --strip-debug ]
  1156.       [ -K <VAR>symbolname</VAR> | --keep-symbol=<VAR>symbolname</VAR> ]
  1157.       [ -N <VAR>symbolname</VAR> | --strip-symbol=<VAR>symbolname</VAR> ]
  1158.       [ -x | --discard-all ] [ -X | --discard-locals ]
  1159.       [ -R <VAR>sectionname</VAR> | --remove-section=<VAR>sectionname</VAR> ]
  1160.       [ -v | --verbose ]  [ -V | --version ]  [ --help ]
  1161.       <VAR>objfile</VAR>...
  1162. </PRE>
  1163. <P>
  1164. GNU <CODE>strip</CODE> discards all symbols from object files
  1165. <VAR>objfile</VAR>.  The list of object files may include archives.
  1166. At least one object file must be given.
  1167. <P>
  1168. <CODE>strip</CODE> modifies the files named in its argument,
  1169. rather than writing modified copies under different names.
  1170. <P>
  1171. <DL COMPACT>
  1172. <DT><CODE>-F <VAR>bfdname</VAR></CODE>
  1173. <DD><DT><CODE>--target=<VAR>bfdname</VAR></CODE>
  1174. <DD>Treat the original <VAR>objfile</VAR> as a file with the object
  1175. code format <VAR>bfdname</VAR>, and rewrite it in the same format.
  1176. See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  1177.  
  1178. <DT><CODE>--help</CODE>
  1179. <DD>Show a summary of the options to <CODE>strip</CODE> and exit.
  1180.  
  1181. <DT><CODE>-I <VAR>bfdname</VAR></CODE>
  1182. <DD><DT><CODE>--input-target=<VAR>bfdname</VAR></CODE>
  1183. <DD>Treat the original <VAR>objfile</VAR> as a file with the object
  1184. code format <VAR>bfdname</VAR>.
  1185. See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  1186.  
  1187. <DT><CODE>-O <VAR>bfdname</VAR></CODE>
  1188. <DD><DT><CODE>--output-target=<VAR>bfdname</VAR></CODE>
  1189. <DD>Replace <VAR>objfile</VAR> with a file in the output format <VAR>bfdname</VAR>.
  1190. See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  1191.  
  1192. <DT><CODE>-R <VAR>sectionname</VAR></CODE>
  1193. <DD><DT><CODE>--remove-section=<VAR>sectionname</VAR></CODE>
  1194. <DD>Remove any section named <VAR>sectionname</VAR> from the output file.  This
  1195. option may be given more than once.  Note that using this option
  1196. inappropriately may make the output file unusable.
  1197.  
  1198. <DT><CODE>-s</CODE>
  1199. <DD><DT><CODE>--strip-all</CODE>
  1200. <DD>Remove all symbols.
  1201.  
  1202. <DT><CODE>-g</CODE>
  1203. <DD><DT><CODE>-S</CODE>
  1204. <DD><DT><CODE>--strip-debug</CODE>
  1205. <DD>Remove debugging symbols only.
  1206.  
  1207. <DT><CODE>-K <VAR>symbolname</VAR></CODE>
  1208. <DD><DT><CODE>--keep-symbol=<VAR>symbolname</VAR></CODE>
  1209. <DD>Keep only symbol <VAR>symbolname</VAR> from the source file.  This option may
  1210. be given more than once.
  1211.  
  1212. <DT><CODE>-N <VAR>symbolname</VAR></CODE>
  1213. <DD><DT><CODE>--strip-symbol=<VAR>symbolname</VAR></CODE>
  1214. <DD>Remove symbol <VAR>symbolname</VAR> from the source file. This option may be
  1215. given more than once, and may be combined with strip options other than
  1216. <CODE>-K</CODE>.
  1217.  
  1218. <DT><CODE>-x</CODE>
  1219. <DD><DT><CODE>--discard-all</CODE>
  1220. <DD>Remove non-global symbols.
  1221.  
  1222. <DT><CODE>-X</CODE>
  1223. <DD><DT><CODE>--discard-locals</CODE>
  1224. <DD>Remove compiler-generated local symbols.
  1225. (These usually start with <SAMP>`L'</SAMP> or <SAMP>`.'</SAMP>.)
  1226.  
  1227. <DT><CODE>-V</CODE>
  1228. <DD><DT><CODE>--version</CODE>
  1229. <DD>Show the version number for <CODE>strip</CODE>.
  1230.  
  1231. <DT><CODE>-v</CODE>
  1232. <DD><DT><CODE>--verbose</CODE>
  1233. <DD>Verbose output: list all object files modified.  In the case of
  1234. archives, <SAMP>`strip -v'</SAMP> lists all members of the archive.
  1235. </DL>
  1236. <P>
  1237. <H1><A NAME="SEC12" HREF="BINUTILS.HTM#SEC12">c++filt</A></H1>
  1238. <A NAME="IDX92"></A>
  1239. <A NAME="IDX93"></A>
  1240. <P>
  1241. <PRE>
  1242. c++filt [ -_ | --strip-underscores ]
  1243.     [ -n | --no-strip-underscores ]
  1244.         [ -s <VAR>format</VAR> | --format=<VAR>format</VAR> ]
  1245.         [ --help ]  [ --version ]  [ <VAR>symbol</VAR>... ]
  1246. </PRE>
  1247. <P>
  1248. The C++ language provides function overloading, which means that you can
  1249. write many functions with the same name (providing each takes parameters
  1250. of different types).  All C++ function names are encoded into a
  1251. low-level assembly label (this process is known as
  1252. <DFN>mangling</DFN>). The <CODE>c++filt</CODE> program does the inverse mapping: it
  1253. decodes (<DFN>demangles</DFN>) low-level names into user-level names so that
  1254. the linker can keep these overloaded functions from clashing.
  1255. <P>
  1256. Every alphanumeric word (consisting of letters, digits, underscores,
  1257. dollars, or periods) seen in the input is a potential label.  If the
  1258. label decodes into a C++ name, the C++ name replaces the low-level
  1259. name in the output.
  1260. <P>
  1261. You can use <CODE>c++filt</CODE> to decipher individual symbols:
  1262. <P>
  1263. <PRE>
  1264. c++filt <VAR>symbol</VAR>
  1265. </PRE>
  1266. <P>
  1267. If no <VAR>symbol</VAR> arguments are given, <CODE>c++filt</CODE> reads symbol
  1268. names from the standard input and writes the demangled names to the
  1269. standard output.  All results are printed on the standard output.
  1270. <P>
  1271. <DL COMPACT>
  1272. <DT><CODE>-_</CODE>
  1273. <DD><DT><CODE>--strip-underscores</CODE>
  1274. <DD>On some systems, both the C and C++ compilers put an underscore in front
  1275. of every name.  For example, the C name <CODE>foo</CODE> gets the low-level
  1276. name <CODE>_foo</CODE>.  This option removes the initial underscore.  Whether
  1277. <CODE>c++filt</CODE> removes the underscore by default is target dependent.
  1278.  
  1279. <DT><CODE>-n</CODE>
  1280. <DD><DT><CODE>--no-strip-underscores</CODE>
  1281. <DD>Do not remove the initial underscore.
  1282.  
  1283. <DT><CODE>-s <VAR>format</VAR></CODE>
  1284. <DD><DT><CODE>--format=<VAR>format</VAR></CODE>
  1285. <DD>GNU <CODE>nm</CODE> can decode three different methods of mangling, used by
  1286. different C++ compilers.  The argument to this option selects which
  1287. method it uses:
  1288.  
  1289. <DL COMPACT>
  1290. <DT><CODE>gnu</CODE>
  1291. <DD>the one used by the GNU compiler (the default method)
  1292. <DT><CODE>lucid</CODE>
  1293. <DD>the one used by the Lucid compiler
  1294. <DT><CODE>arm</CODE>
  1295. <DD>the one specified by the C++ Annotated Reference Manual
  1296. </DL>
  1297.  
  1298. <DT><CODE>--help</CODE>
  1299. <DD>Print a summary of the options to <CODE>c++filt</CODE> and exit.
  1300.  
  1301. <DT><CODE>--version</CODE>
  1302. <DD>Print the version number of <CODE>c++filt</CODE> and exit.
  1303. </DL>
  1304. <P>
  1305. <BLOCKQUOTE>
  1306. <EM>Warning:</EM> <CODE>c++filt</CODE> is a new utility, and the details of its
  1307. user interface are subject to change in future releases.  In particular,
  1308. a command-line option may be required in the the future to decode a name
  1309. passed as an argument on the command line; in other words, 
  1310. <P>
  1311. <PRE>
  1312. c++filt <VAR>symbol</VAR>
  1313. </PRE>
  1314. <P>
  1315. may in a future release become
  1316. <P>
  1317. <PRE>
  1318. c++filt <VAR>option</VAR> <VAR>symbol</VAR>
  1319. </PRE>
  1320. </BLOCKQUOTE>
  1321. <P>
  1322. <H1><A NAME="SEC13" HREF="BINUTILS.HTM#SEC13">nlmconv</A></H1>
  1323. <P>
  1324. <CODE>nlmconv</CODE> converts a relocatable object file into a NetWare
  1325. Loadable Module.
  1326. <P>
  1327. <BLOCKQUOTE>
  1328. <EM>Warning:</EM> <CODE>nlmconv</CODE> is not always built as part of the binary
  1329. utilities, since it is only useful for NLM targets.
  1330. </BLOCKQUOTE>
  1331. <P>
  1332. <PRE>
  1333. nlmconv [ -I <VAR>bfdname</VAR> | --input-target=<VAR>bfdname</VAR> ]
  1334.         [ -O <VAR>bfdname</VAR> | --output-target=<VAR>bfdname</VAR> ]
  1335.         [ -T <VAR>headerfile</VAR> | --header-file=<VAR>headerfile</VAR> ]
  1336.         [ -d | --debug]  [ -l <VAR>linker</VAR> | --linker=<VAR>linker</VAR> ]
  1337.         [ -h | --help ]  [ -V | --version ]
  1338.         <VAR>infile</VAR> <VAR>outfile</VAR>
  1339. </PRE>
  1340. <P>
  1341. <CODE>nlmconv</CODE> converts the relocatable <SAMP>`i386'</SAMP> object file
  1342. <VAR>infile</VAR> into the NetWare Loadable Module <VAR>outfile</VAR>, optionally
  1343. reading <VAR>headerfile</VAR> for NLM header information.  For instructions
  1344. on writing the NLM command file language used in header files, see the
  1345. <SAMP>`linkers'</SAMP> section, <SAMP>`NLMLINK'</SAMP> in particular, of the <CITE>NLM
  1346. Development and Tools Overview</CITE>, which is part of the NLM Software
  1347. Developer's Kit ("NLM SDK"), available from Novell, Inc.
  1348. <CODE>nlmconv</CODE> uses the GNU Binary File Descriptor library to read
  1349. <VAR>infile</VAR>; see section `BFD' in <CITE>Using LD</CITE>, for
  1350. more information.
  1351. <P>
  1352. <CODE>nlmconv</CODE> can perform a link step.  In other words, you can list
  1353. more than one object file for input if you list them in the definitions
  1354. file (rather than simply specifying one input file on the command line).
  1355. In this case, <CODE>nlmconv</CODE> calls the linker for you.
  1356. <P>
  1357. <DL COMPACT>
  1358. <DT><CODE>-I <VAR>bfdname</VAR></CODE>
  1359. <DD><DT><CODE>--input-target=<VAR>bfdname</VAR></CODE>
  1360. <DD>Object format of the input file.  <CODE>nlmconv</CODE> can usually determine
  1361. the format of a given file (so no default is necessary).
  1362. See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  1363.  
  1364. <DT><CODE>-O <VAR>bfdname</VAR></CODE>
  1365. <DD><DT><CODE>--output-target=<VAR>bfdname</VAR></CODE>
  1366. <DD>Object format of the output file.  <CODE>nlmconv</CODE> infers the output
  1367. format based on the input format, e.g. for a <SAMP>`i386'</SAMP> input file the
  1368. output format is <SAMP>`nlm32-i386'</SAMP>.
  1369. See section <A HREF="BINUTILS.000#SEC15">Target Selection</A>, for more information.
  1370.  
  1371. <DT><CODE>-T <VAR>headerfile</VAR></CODE>
  1372. <DD><DT><CODE>--header-file=<VAR>headerfile</VAR></CODE>
  1373. <DD>Reads <VAR>headerfile</VAR> for NLM header information.  For instructions on
  1374. writing the NLM command file language used in header files, see see the
  1375. <SAMP>`linkers'</SAMP> section, of the <CITE>NLM Development and Tools
  1376. Overview</CITE>, which is part of the NLM Software Developer's Kit, available
  1377. from Novell, Inc.
  1378.  
  1379. <DT><CODE>-d</CODE>
  1380. <DD><DT><CODE>--debug</CODE>
  1381. <DD>Displays (on standard error) the linker command line used by <CODE>nlmconv</CODE>.
  1382.  
  1383. <DT><CODE>-l <VAR>linker</VAR></CODE>
  1384. <DD><DT><CODE>--linker=<VAR>linker</VAR></CODE>
  1385. <DD>Use <VAR>linker</VAR> for any linking.  <VAR>linker</VAR> can be an abosolute or a
  1386. relative pathname.
  1387.  
  1388. <DT><CODE>-h</CODE>
  1389. <DD><DT><CODE>--help</CODE>
  1390. <DD>Prints a usage summary.
  1391.  
  1392. <DT><CODE>-V</CODE>
  1393. <DD><DT><CODE>--version</CODE>
  1394. <DD>Prints the version number for <CODE>nlmconv</CODE>.
  1395. </DL>
  1396. <P>
  1397. <H1><A NAME="SEC14" HREF="BINUTILS.HTM#SEC14">Selecting the target system</A></H1>
  1398. <P>
  1399. You can specify three aspects of the target system to the GNU
  1400. binary file utilities, each in several ways:
  1401. <P>
  1402. <UL>
  1403. <LI>
  1404. the target
  1405.  
  1406. <LI>
  1407. the architecture
  1408.  
  1409. <LI>
  1410. the linker emulation (which applies to the linker only)
  1411. </UL>
  1412. <P>
  1413. In the following summaries, the lists of ways to specify values are in
  1414. order of decreasing precedence.  The ways listed first override those
  1415. listed later.
  1416. <P>
  1417. The commands to list valid values only list the values for which the
  1418. programs you are running were configured.  If they were configured with
  1419. <SAMP>`--with-targets=all'</SAMP>, the commands list most of the available
  1420. values, but a few are left out; not all targets can be configured in at
  1421. once because some of them can only be configured <DFN>native</DFN> (on hosts
  1422. with the same type as the target system).
  1423. <P>
  1424. <H2><A NAME="SEC15" HREF="BINUTILS.HTM#SEC15">Target Selection</A></H2>
  1425. <P>
  1426. A <DFN>target</DFN> is an object file format.  A given target may be
  1427. supported for multiple architectures (see section <A HREF="BINUTILS.000#SEC16">Architecture selection</A>).
  1428. A target selection may also have variations for different operating
  1429. systems or architectures.
  1430. <P>
  1431. The command to list valid target values is <SAMP>`objdump -i'</SAMP>
  1432. (the first column of output contains the relevant information).
  1433. <P>
  1434. Some sample values are: <SAMP>`a.out-hp300bsd'</SAMP>, <SAMP>`ecoff-littlemips'</SAMP>,
  1435. <SAMP>`a.out-sunos-big'</SAMP>.
  1436. <P>
  1437. <H3><CODE>objdump</CODE> Target</H3>
  1438. <P>
  1439. Ways to specify:
  1440. <P>
  1441. <OL>
  1442. <LI>
  1443. command line option: <SAMP>`-b'</SAMP> or <SAMP>`--target'</SAMP>
  1444.  
  1445. <LI>
  1446. environment variable <CODE>GNUTARGET</CODE>
  1447.  
  1448. <LI>
  1449. deduced from the input file
  1450. </OL>
  1451. <P>
  1452. <H3><CODE>objcopy</CODE> and <CODE>strip</CODE> Input Target</H3>
  1453. <P>
  1454. Ways to specify:
  1455. <P>
  1456. <OL>
  1457. <LI>
  1458. command line options: <SAMP>`-I'</SAMP> or <SAMP>`--input-target'</SAMP>, or <SAMP>`-F'</SAMP> or <SAMP>`--target'</SAMP>
  1459.  
  1460. <LI>
  1461. environment variable <CODE>GNUTARGET</CODE>
  1462.  
  1463. <LI>
  1464. deduced from the input file
  1465. </OL>
  1466. <P>
  1467. <H3><CODE>objcopy</CODE> and <CODE>strip</CODE> Output Target</H3>
  1468. <P>
  1469. Ways to specify:
  1470. <P>
  1471. <OL>
  1472. <LI>
  1473. command line options: <SAMP>`-O'</SAMP> or <SAMP>`--output-target'</SAMP>, or <SAMP>`-F'</SAMP> or <SAMP>`--target'</SAMP>
  1474.  
  1475. <LI>
  1476. the input target (see "<CODE>objcopy</CODE> and <CODE>strip</CODE> Input Target" above)
  1477.  
  1478. <LI>
  1479. environment variable <CODE>GNUTARGET</CODE>
  1480.  
  1481. <LI>
  1482. deduced from the input file
  1483. </OL>
  1484. <P>
  1485. <H3><CODE>nm</CODE>, <CODE>size</CODE>, and <CODE>strings</CODE> Target</H3>
  1486. <P>
  1487. Ways to specify:
  1488. <P>
  1489. <OL>
  1490. <LI>
  1491. command line option: <SAMP>`--target'</SAMP>
  1492.  
  1493. <LI>
  1494. environment variable <CODE>GNUTARGET</CODE>
  1495.  
  1496. <LI>
  1497. deduced from the input file
  1498. </OL>
  1499. <P>
  1500. <H3>Linker Input Target</H3>
  1501. <P>
  1502. Ways to specify:
  1503. <P>
  1504. <OL>
  1505. <LI>
  1506. command line option: <SAMP>`-b'</SAMP> or <SAMP>`--format'</SAMP>
  1507. (see section `Options' in <CITE>Using LD</CITE>)
  1508.  
  1509. <LI>
  1510. script command <CODE>TARGET</CODE>
  1511. (see section `Option Commands' in <CITE>Using LD</CITE>)
  1512.  
  1513. <LI>
  1514. environment variable <CODE>GNUTARGET</CODE>
  1515. (see section `Environment' in <CITE>Using LD</CITE>)
  1516.  
  1517. <LI>
  1518. the default target of the selected linker emulation
  1519. (see section <A HREF="BINUTILS.000#SEC17">Linker emulation selection</A>)
  1520. </OL>
  1521. <P>
  1522. <H3>Linker Output Target</H3>
  1523. <P>
  1524. Ways to specify:
  1525. <P>
  1526. <OL>
  1527. <LI>
  1528. command line option: <SAMP>`-oformat'</SAMP>
  1529. (see section `Options' in <CITE>Using LD</CITE>)
  1530.  
  1531. <LI>
  1532. script command <CODE>OUTPUT_FORMAT</CODE>
  1533. (see section `Option Commands' in <CITE>Using LD</CITE>)
  1534.  
  1535. <LI>
  1536. the linker input target (see "Linker Input Target" above)
  1537. </OL>
  1538. <P>
  1539. <H2><A NAME="SEC16" HREF="BINUTILS.HTM#SEC16">Architecture selection</A></H2>
  1540. <P>
  1541. An <DFN>architecture</DFN> is a type of CPU on which an object file is
  1542. to run.  Its name may contain a colon, separating the name of the
  1543. processor family from the name of the particular CPU.
  1544. <P>
  1545. The command to list valid architecture values is <SAMP>`objdump -i'</SAMP> (the
  1546. second column contains the relevant information).
  1547. <P>
  1548. Sample values: <SAMP>`m68k:68020'</SAMP>, <SAMP>`mips:3000'</SAMP>, <SAMP>`sparc'</SAMP>.
  1549. <P>
  1550. <H3><CODE>objdump</CODE> Architecture</H3>
  1551. <P>
  1552. Ways to specify:
  1553. <P>
  1554. <OL>
  1555. <LI>
  1556. command line option: <SAMP>`-m'</SAMP> or <SAMP>`--architecture'</SAMP>
  1557.  
  1558. <LI>
  1559. deduced from the input file
  1560. </OL>
  1561. <P>
  1562. <H3><CODE>objcopy</CODE>, <CODE>nm</CODE>, <CODE>size</CODE>, <CODE>strings</CODE> Architecture</H3>
  1563. <P>
  1564. Ways to specify:
  1565. <P>
  1566. <OL>
  1567. <LI>
  1568. deduced from the input file
  1569. </OL>
  1570. <P>
  1571. <H3>Linker Input Architecture</H3>
  1572. <P>
  1573. Ways to specify:
  1574. <P>
  1575. <OL>
  1576. <LI>
  1577. deduced from the input file
  1578. </OL>
  1579. <P>
  1580. <H3>Linker Output Architecture</H3>
  1581. <P>
  1582. Ways to specify:
  1583. <P>
  1584. <OL>
  1585. <LI>
  1586. script command <CODE>OUTPUT_ARCH</CODE>
  1587. (see section `Option Commands' in <CITE>Using LD</CITE>)
  1588.  
  1589. <LI>
  1590. the default architecture from the linker output target
  1591. (see section <A HREF="BINUTILS.000#SEC15">Target Selection</A>)
  1592. </OL>
  1593. <P>
  1594. <H2><A NAME="SEC17" HREF="BINUTILS.HTM#SEC17">Linker emulation selection</A></H2>
  1595. <P>
  1596. A linker <DFN>emulation</DFN> is a "personality" of the linker, which gives
  1597. the linker default values for the other aspects of the target system.
  1598. In particular, it consists of
  1599. <P>
  1600. <UL>
  1601. <LI>
  1602. the linker script
  1603.  
  1604. <LI>
  1605. the target
  1606.  
  1607. <LI>
  1608. several "hook" functions that are run at certain stages of the linking
  1609. process to do special things that some targets require
  1610. </UL>
  1611. <P>
  1612. The command to list valid linker emulation values is <SAMP>`ld -V'</SAMP>.
  1613. <P>
  1614. Sample values: <SAMP>`hp300bsd'</SAMP>, <SAMP>`mipslit'</SAMP>, <SAMP>`sun4'</SAMP>.
  1615. <P>
  1616. Ways to specify:
  1617. <P>
  1618. <OL>
  1619. <LI>
  1620. command line option: <SAMP>`-m'</SAMP>
  1621. (see section `Options' in <CITE>Using LD</CITE>)
  1622.  
  1623. <LI>
  1624. environment variable <CODE>LDEMULATION</CODE>
  1625.  
  1626. <LI>
  1627. compiled-in <CODE>DEFAULT_EMULATION</CODE> from <TT>`Makefile'</TT>,
  1628. which comes from <CODE>EMUL</CODE> in <TT>`config/<VAR>target</VAR>.mt'</TT>
  1629. </OL>
  1630. <P>
  1631. <H1><A NAME="SEC18" HREF="BINUTILS.HTM#SEC18">Index</A></H1>
  1632. <P>
  1633. <H2>.</H2>
  1634. <DIR>
  1635. <LI><A HREF="BINUTILS.000#IDX67">.stab</A>
  1636. </DIR>
  1637. <H2>a</H2>
  1638. <DIR>
  1639. <LI><A HREF="BINUTILS.000#IDX72">all header information, object file</A>
  1640. <LI><A HREF="BINUTILS.000#IDX1">ar</A>
  1641. <LI><A HREF="BINUTILS.000#IDX8"><CODE>ar</CODE> compatibility</A>
  1642. <LI><A HREF="BINUTILS.000#IDX59">architecture</A>
  1643. <LI><A HREF="BINUTILS.000#IDX55">architectures available</A>
  1644. <LI><A HREF="BINUTILS.000#IDX75">archive contents</A>
  1645. <LI><A HREF="BINUTILS.000#IDX49">archive headers</A>
  1646. <LI><A HREF="BINUTILS.000#IDX2">archives</A>
  1647. </DIR>
  1648. <H2>c</H2>
  1649. <DIR>
  1650. <LI><A HREF="BINUTILS.000#IDX92">c++filt</A>
  1651. <LI><A HREF="BINUTILS.000#IDX3">collections of files</A>
  1652. <LI><A HREF="BINUTILS.000#IDX7">compatibility, <CODE>ar</CODE></A>
  1653. <LI><A HREF="BINUTILS.000#IDX16">contents of archive</A>
  1654. <LI><A HREF="BINUTILS.000#IDX21">creating archives</A>
  1655. </DIR>
  1656. <H2>d</H2>
  1657. <DIR>
  1658. <LI><A HREF="BINUTILS.000#IDX22">dates in archive</A>
  1659. <LI><A HREF="BINUTILS.000#IDX68">debug symbols</A>
  1660. <LI><A HREF="BINUTILS.000#IDX34">debugging symbols</A>
  1661. <LI><A HREF="BINUTILS.000#IDX11">deleting from archive</A>
  1662. <LI><A HREF="BINUTILS.000#IDX93">demangling C++ symbols</A>
  1663. <LI><A HREF="BINUTILS.000#IDX51">disassembling object code</A>
  1664. <LI><A HREF="BINUTILS.000#IDX65">disassembly, with source</A>
  1665. <LI><A HREF="BINUTILS.000#IDX90">discarding symbols</A>
  1666. <LI><A HREF="BINUTILS.000#IDX61">dynamic relocation entries, in object file</A>
  1667. <LI><A HREF="BINUTILS.000#IDX71">dynamic symbol table entries, printing</A>
  1668. <LI><A HREF="BINUTILS.000#IDX38">dynamic symbols</A>
  1669. </DIR>
  1670. <H2>e</H2>
  1671. <DIR>
  1672. <LI><A HREF="BINUTILS.000#IDX69">ELF object file format</A>
  1673. <LI><A HREF="BINUTILS.000#IDX45">external symbols</A>
  1674. <LI><A HREF="BINUTILS.000#IDX19">extract from archive</A>
  1675. </DIR>
  1676. <H2>f</H2>
  1677. <DIR>
  1678. <LI><A HREF="BINUTILS.000#IDX32">file name</A>
  1679. </DIR>
  1680. <H2>h</H2>
  1681. <DIR>
  1682. <LI><A HREF="BINUTILS.000#IDX73">header information, all</A>
  1683. </DIR>
  1684. <H2>i</H2>
  1685. <DIR>
  1686. <LI><A HREF="BINUTILS.000#IDX31">input file name</A>
  1687. </DIR>
  1688. <H2>l</H2>
  1689. <DIR>
  1690. <LI><A HREF="BINUTILS.000#IDX28">ld</A>
  1691. <LI><A HREF="BINUTILS.000#IDX5">libraries</A>
  1692. <LI><A HREF="BINUTILS.000#IDX27">linker</A>
  1693. <LI><A HREF="BINUTILS.000#IDX84">listings strings</A>
  1694. </DIR>
  1695. <H2>m</H2>
  1696. <DIR>
  1697. <LI><A HREF="BINUTILS.000#IDX52">machine instructions</A>
  1698. <LI><A HREF="BINUTILS.000#IDX12">moving in archive</A>
  1699. <LI><A HREF="BINUTILS.000#IDX25">MRI compatibility, <CODE>ar</CODE></A>
  1700. </DIR>
  1701. <H2>n</H2>
  1702. <DIR>
  1703. <LI><A HREF="BINUTILS.000#IDX18">name duplication in archive</A>
  1704. <LI><A HREF="BINUTILS.000#IDX4">name length</A>
  1705. <LI><A HREF="BINUTILS.000#IDX30">nm</A>
  1706. <LI><A HREF="BINUTILS.000#IDX40"><CODE>nm</CODE> compatibility</A>
  1707. <LI><A HREF="BINUTILS.000#IDX39"><CODE>nm</CODE> format</A>
  1708. </DIR>
  1709. <H2>o</H2>
  1710. <DIR>
  1711. <LI><A HREF="BINUTILS.000#IDX48">objdump</A>
  1712. <LI><A HREF="BINUTILS.000#IDX87">object code format</A>
  1713. <LI><A HREF="BINUTILS.000#IDX53">object file header</A>
  1714. <LI><A HREF="BINUTILS.000#IDX47">object file information</A>
  1715. <LI><A HREF="BINUTILS.000#IDX63">object file sections</A>
  1716. <LI><A HREF="BINUTILS.000#IDX56">object formats available</A>
  1717. <LI><A HREF="BINUTILS.000#IDX10">operations on archive</A>
  1718. </DIR>
  1719. <H2>p</H2>
  1720. <DIR>
  1721. <LI><A HREF="BINUTILS.000#IDX13">printing from archive</A>
  1722. <LI><A HREF="BINUTILS.000#IDX85">printing strings</A>
  1723. </DIR>
  1724. <H2>q</H2>
  1725. <DIR>
  1726. <LI><A HREF="BINUTILS.000#IDX14">quick append to archive</A>
  1727. </DIR>
  1728. <H2>r</H2>
  1729. <DIR>
  1730. <LI><A HREF="BINUTILS.000#IDX81">radix for section sizes</A>
  1731. <LI><A HREF="BINUTILS.000#IDX74">ranlib</A>
  1732. <LI><A HREF="BINUTILS.000#IDX20">relative placement in archive</A>
  1733. <LI><A HREF="BINUTILS.000#IDX60">relocation entries, in object file</A>
  1734. <LI><A HREF="BINUTILS.000#IDX89">removing symbols</A>
  1735. <LI><A HREF="BINUTILS.000#IDX17">repeated names in archive</A>
  1736. <LI><A HREF="BINUTILS.000#IDX15">replacement in archive</A>
  1737. </DIR>
  1738. <H2>s</H2>
  1739. <DIR>
  1740. <LI><A HREF="BINUTILS.000#IDX26">scripts, <CODE>ar</CODE></A>
  1741. <LI><A HREF="BINUTILS.000#IDX54">section headers</A>
  1742. <LI><A HREF="BINUTILS.000#IDX57">section information</A>
  1743. <LI><A HREF="BINUTILS.000#IDX78">section sizes</A>
  1744. <LI><A HREF="BINUTILS.000#IDX62">sections, full contents</A>
  1745. <LI><A HREF="BINUTILS.000#IDX77">size</A>
  1746. <LI><A HREF="BINUTILS.000#IDX79"><CODE>size</CODE> display format</A>
  1747. <LI><A HREF="BINUTILS.000#IDX80"><CODE>size</CODE> number format</A>
  1748. <LI><A HREF="BINUTILS.000#IDX42">sorting symbols</A>
  1749. <LI><A HREF="BINUTILS.000#IDX64">source disassembly</A>
  1750. <LI><A HREF="BINUTILS.000#IDX33">source file name</A>
  1751. <LI><A HREF="BINUTILS.000#IDX58">source filenames for object files</A>
  1752. <LI><A HREF="BINUTILS.000#IDX66">stab</A>
  1753. <LI><A HREF="BINUTILS.000#IDX83">strings</A>
  1754. <LI><A HREF="BINUTILS.000#IDX86">strings, printing</A>
  1755. <LI><A HREF="BINUTILS.000#IDX88">strip</A>
  1756. <LI><A HREF="BINUTILS.000#IDX76">symbol index</A>
  1757. <LI><A HREF="BINUTILS.000#IDX43">symbol index, listing</A>
  1758. <LI><A HREF="BINUTILS.000#IDX70">symbol table entries, printing</A>
  1759. <LI><A HREF="BINUTILS.000#IDX29">symbols</A>
  1760. <LI><A HREF="BINUTILS.000#IDX91">symbols, discarding</A>
  1761. </DIR>
  1762. <H2>u</H2>
  1763. <DIR>
  1764. <LI><A HREF="BINUTILS.000#IDX46">undefined symbols</A>
  1765. <LI><A HREF="BINUTILS.000#IDX9">Unix compatibility, <CODE>ar</CODE></A>
  1766. <LI><A HREF="BINUTILS.000#IDX24">updating an archive</A>
  1767. </DIR>
  1768. <H2>w</H2>
  1769. <DIR>
  1770. <LI><A HREF="BINUTILS.000#IDX23">writing archive index</A>
  1771. </DIR>
  1772. <P>
  1773. </BODY>
  1774. </HTML>
  1775.