home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 6 / FreshFish_September1994.bin / bbs / gnu / gcc-2.6.0-src.lha / GNU / src / amiga / gcc-2.6.0 / gcc.info-3 < prev    next >
Encoding:
GNU Info File  |  1994-07-15  |  47.0 KB  |  1,198 lines

  1. This is Info file gcc.info, produced by Makeinfo-1.54 from the input
  2. file gcc.texi.
  3.  
  4.    This file documents the use and the internals of the GNU compiler.
  5.  
  6.    Published by the Free Software Foundation 675 Massachusetts Avenue
  7. Cambridge, MA 02139 USA
  8.  
  9.    Copyright (C) 1988, 1989, 1992, 1993 Free Software Foundation, Inc.
  10.  
  11.    Permission is granted to make and distribute verbatim copies of this
  12. manual provided the copyright notice and this permission notice are
  13. preserved on all copies.
  14.  
  15.    Permission is granted to copy and distribute modified versions of
  16. this manual under the conditions for verbatim copying, provided also
  17. that the sections entitled "GNU General Public License" and "Protect
  18. Your Freedom--Fight `Look And Feel'" are included exactly as in the
  19. original, and provided that the entire resulting derived work is
  20. distributed under the terms of a permission notice identical to this
  21. one.
  22.  
  23.    Permission is granted to copy and distribute translations of this
  24. manual into another language, under the above conditions for modified
  25. versions, except that the sections entitled "GNU General Public
  26. License" and "Protect Your Freedom--Fight `Look And Feel'", and this
  27. permission notice, may be included in translations approved by the Free
  28. Software Foundation instead of in the original English.
  29.  
  30. 
  31. File: gcc.info,  Node: Optimize Options,  Next: Preprocessor Options,  Prev: Debugging Options,  Up: Invoking GCC
  32.  
  33. Options That Control Optimization
  34. =================================
  35.  
  36.    These options control various sorts of optimizations:
  37.  
  38. `-O'
  39. `-O1'
  40.      Optimize.  Optimizing compilation takes somewhat more time, and a
  41.      lot more memory for a large function.
  42.  
  43.      Without `-O', the compiler's goal is to reduce the cost of
  44.      compilation and to make debugging produce the expected results.
  45.      Statements are independent: if you stop the program with a
  46.      breakpoint between statements, you can then assign a new value to
  47.      any variable or change the program counter to any other statement
  48.      in the function and get exactly the results you would expect from
  49.      the source code.
  50.  
  51.      Without `-O', the compiler only allocates variables declared
  52.      `register' in registers.  The resulting compiled code is a little
  53.      worse than produced by PCC without `-O'.
  54.  
  55.      With `-O', the compiler tries to reduce code size and execution
  56.      time.
  57.  
  58.      When you specify `-O', the compiler turns on `-fthread-jumps' and
  59.      `-fdefer-pop' on all machines.  The compiler turns on
  60.      `-fdelayed-branch' on machines that have delay slots, and
  61.      `-fomit-frame-pointer' on machines that can support debugging even
  62.      without a frame pointer.  On some machines the compiler also turns
  63.      on other flags.
  64.  
  65. `-O2'
  66.      Optimize even more.  GNU CC performs nearly all supported
  67.      optimizations that do not involve a space-speed tradeoff.  The
  68.      compiler does not perform loop unrolling or function inlining when
  69.      you specify `-O2'.  As compared to `-O', this option increases
  70.      both compilation time and the performance of the generated code.
  71.  
  72.      `-O2' turns on all optional optimizations except for loop
  73.      unrolling, function inlining, and, on machines where it interfers
  74.      with debugging, frame pointer elimination.
  75.  
  76. `-O3'
  77.      Optimize yet more.  `-O3' turns on all optimizations specified by
  78.      `-O2' and also turns on the `inline-functions' option.
  79.  
  80. `-O0'
  81.      Do not optimize.
  82.  
  83.      If you use multiple `-O' options, with or without level numbers,
  84.      the last such option is the one that is effective.
  85.  
  86.    Options of the form `-fFLAG' specify machine-independent flags.
  87. Most flags have both positive and negative forms; the negative form of
  88. `-ffoo' would be `-fno-foo'.  In the table below, only one of the forms
  89. is listed--the one which is not the default.  You can figure out the
  90. other form by either removing `no-' or adding it.
  91.  
  92. `-ffloat-store'
  93.      Do not store floating point variables in registers, and inhibit
  94.      other options that might change whether a floating point value is
  95.      taken from a register or memory.
  96.  
  97.      This option prevents undesirable excess precision on machines such
  98.      as the 68000 where the floating registers (of the 68881) keep more
  99.      precision than a `double' is supposed to have.  For most programs,
  100.      the excess precision does only good, but a few programs rely on the
  101.      precise definition of IEEE floating point.  Use `-ffloat-store' for
  102.      such programs.
  103.  
  104. `-fno-default-inline'
  105.      Do not make member functions inline by default merely because they
  106.      are defined inside the class scope (C++ only).  Otherwise, when
  107.      you specify `-O', member functions defined inside class scope are
  108.      compiled inline by default; i.e., you don't need to add `inline'
  109.      in front of the member function name.
  110.  
  111. `-fno-defer-pop'
  112.      Always pop the arguments to each function call as soon as that
  113.      function returns.  For machines which must pop arguments after a
  114.      function call, the compiler normally lets arguments accumulate on
  115.      the stack for several function calls and pops them all at once.
  116.  
  117. `-fforce-mem'
  118.      Force memory operands to be copied into registers before doing
  119.      arithmetic on them.  This may produce better code by making all
  120.      memory references potential common subexpressions.  When they are
  121.      not common subexpressions, instruction combination should
  122.      eliminate the separate register-load.  I am interested in hearing
  123.      about the difference this makes.
  124.  
  125. `-fforce-addr'
  126.      Force memory address constants to be copied into registers before
  127.      doing arithmetic on them.  This may produce better code just as
  128.      `-fforce-mem' may.  I am interested in hearing about the
  129.      difference this makes.
  130.  
  131. `-fomit-frame-pointer'
  132.      Don't keep the frame pointer in a register for functions that
  133.      don't need one.  This avoids the instructions to save, set up and
  134.      restore frame pointers; it also makes an extra register available
  135.      in many functions.  *It also makes debugging impossible on some
  136.      machines.*
  137.  
  138.      On some machines, such as the Vax, this flag has no effect, because
  139.      the standard calling sequence automatically handles the frame
  140.      pointer and nothing is saved by pretending it doesn't exist.  The
  141.      machine-description macro `FRAME_POINTER_REQUIRED' controls
  142.      whether a target machine supports this flag.  *Note Registers::.
  143.  
  144. `-fno-inline'
  145.      Don't pay attention to the `inline' keyword.  Normally this option
  146.      is used to keep the compiler from expanding any functions inline.
  147.      Note that if you are not optimizing, no functions can be expanded
  148.      inline.
  149.  
  150. `-finline-functions'
  151.      Integrate all simple functions into their callers.  The compiler
  152.      heuristically decides which functions are simple enough to be worth
  153.      integrating in this way.
  154.  
  155.      If all calls to a given function are integrated, and the function
  156.      is declared `static', then the function is normally not output as
  157.      assembler code in its own right.
  158.  
  159. `-fkeep-inline-functions'
  160.      Even if all calls to a given function are integrated, and the
  161.      function is declared `static', nevertheless output a separate
  162.      run-time callable version of the function.
  163.  
  164. `-fno-function-cse'
  165.      Do not put function addresses in registers; make each instruction
  166.      that calls a constant function contain the function's address
  167.      explicitly.
  168.  
  169.      This option results in less efficient code, but some strange hacks
  170.      that alter the assembler output may be confused by the
  171.      optimizations performed when this option is not used.
  172.  
  173. `-ffast-math'
  174.      This option allows GCC to violate some ANSI or IEEE rules and/or
  175.      specifications in the interest of optimizing code for speed.  For
  176.      example, it allows the compiler to assume arguments to the `sqrt'
  177.      function are non-negative numbers and that no floating-point values
  178.      are NaNs.
  179.  
  180.      This option should never be turned on by any `-O' option since it
  181.      can result in incorrect output for programs which depend on an
  182.      exact implementation of IEEE or ANSI rules/specifications for math
  183.      functions.
  184.  
  185.    The following options control specific optimizations.  The `-O2'
  186. option turns on all of these optimizations except `-funroll-loops' and
  187. `-funroll-all-loops'.  On most machines, the `-O' option turns on the
  188. `-fthread-jumps' and `-fdelayed-branch' options, but specific machines
  189. may handle it differently.
  190.  
  191.    You can use the following flags in the rare cases when "fine-tuning"
  192. of optimizations to be performed is desired.
  193.  
  194. `-fstrength-reduce'
  195.      Perform the optimizations of loop strength reduction and
  196.      elimination of iteration variables.
  197.  
  198. `-fthread-jumps'
  199.      Perform optimizations where we check to see if a jump branches to a
  200.      location where another comparison subsumed by the first is found.
  201.      If so, the first branch is redirected to either the destination of
  202.      the second branch or a point immediately following it, depending
  203.      on whether the condition is known to be true or false.
  204.  
  205. `-fcse-follow-jumps'
  206.      In common subexpression elimination, scan through jump instructions
  207.      when the target of the jump is not reached by any other path.  For
  208.      example, when CSE encounters an `if' statement with an `else'
  209.      clause, CSE will follow the jump when the condition tested is
  210.      false.
  211.  
  212. `-fcse-skip-blocks'
  213.      This is similar to `-fcse-follow-jumps', but causes CSE to follow
  214.      jumps which conditionally skip over blocks.  When CSE encounters a
  215.      simple `if' statement with no else clause, `-fcse-skip-blocks'
  216.      causes CSE to follow the jump around the body of the `if'.
  217.  
  218. `-frerun-cse-after-loop'
  219.      Re-run common subexpression elimination after loop optimizations
  220.      has been performed.
  221.  
  222. `-fexpensive-optimizations'
  223.      Perform a number of minor optimizations that are relatively
  224.      expensive.
  225.  
  226. `-fdelayed-branch'
  227.      If supported for the target machine, attempt to reorder
  228.      instructions to exploit instruction slots available after delayed
  229.      branch instructions.
  230.  
  231. `-fschedule-insns'
  232.      If supported for the target machine, attempt to reorder
  233.      instructions to eliminate execution stalls due to required data
  234.      being unavailable.  This helps machines that have slow floating
  235.      point or memory load instructions by allowing other instructions
  236.      to be issued until the result of the load or floating point
  237.      instruction is required.
  238.  
  239. `-fschedule-insns2'
  240.      Similar to `-fschedule-insns', but requests an additional pass of
  241.      instruction scheduling after register allocation has been done.
  242.      This is especially useful on machines with a relatively small
  243.      number of registers and where memory load instructions take more
  244.      than one cycle.
  245.  
  246. `-fcaller-saves'
  247.      Enable values to be allocated in registers that will be clobbered
  248.      by function calls, by emitting extra instructions to save and
  249.      restore the registers around such calls.  Such allocation is done
  250.      only when it seems to result in better code than would otherwise
  251.      be produced.
  252.  
  253.      This option is enabled by default on certain machines, usually
  254.      those which have no call-preserved registers to use instead.
  255.  
  256. `-funroll-loops'
  257.      Perform the optimization of loop unrolling.  This is only done for
  258.      loops whose number of iterations can be determined at compile time
  259.      or run time.  `-funroll-loop' implies both `-fstrength-reduce' and
  260.      `-frerun-cse-after-loop'.
  261.  
  262. `-funroll-all-loops'
  263.      Perform the optimization of loop unrolling.  This is done for all
  264.      loops and usually makes programs run more slowly.
  265.      `-funroll-all-loops' implies `-fstrength-reduce' as well as
  266.      `-frerun-cse-after-loop'.
  267.  
  268. `-fno-peephole'
  269.      Disable any machine-specific peephole optimizations.
  270.  
  271. 
  272. File: gcc.info,  Node: Preprocessor Options,  Next: Assembler Options,  Prev: Optimize Options,  Up: Invoking GCC
  273.  
  274. Options Controlling the Preprocessor
  275. ====================================
  276.  
  277.    These options control the C preprocessor, which is run on each C
  278. source file before actual compilation.
  279.  
  280.    If you use the `-E' option, nothing is done except preprocessing.
  281. Some of these options make sense only together with `-E' because they
  282. cause the preprocessor output to be unsuitable for actual compilation.
  283.  
  284. `-include FILE'
  285.      Process FILE as input before processing the regular input file.
  286.      In effect, the contents of FILE are compiled first.  Any `-D' and
  287.      `-U' options on the command line are always processed before
  288.      `-include FILE', regardless of the order in which they are
  289.      written.  All the `-include' and `-imacros' options are processed
  290.      in the order in which they are written.
  291.  
  292. `-imacros FILE'
  293.      Process FILE as input, discarding the resulting output, before
  294.      processing the regular input file.  Because the output generated
  295.      from FILE is discarded, the only effect of `-imacros FILE' is to
  296.      make the macros defined in FILE available for use in the main
  297.      input.
  298.  
  299.      Any `-D' and `-U' options on the command line are always processed
  300.      before `-imacros FILE', regardless of the order in which they are
  301.      written.  All the `-include' and `-imacros' options are processed
  302.      in the order in which they are written.
  303.  
  304. `-idirafter DIR'
  305.      Add the directory DIR to the second include path.  The directories
  306.      on the second include path are searched when a header file is not
  307.      found in any of the directories in the main include path (the one
  308.      that `-I' adds to).
  309.  
  310. `-iprefix PREFIX'
  311.      Specify PREFIX as the prefix for subsequent `-iwithprefix' options.
  312.  
  313. `-iwithprefix DIR'
  314.      Add a directory to the second include path.  The directory's name
  315.      is made by concatenating PREFIX and DIR, where PREFIX was
  316.      specified previously with `-iprefix'.  If you have not specified a
  317.      prefix yet, the directory containing the installed passes of the
  318.      compiler is used as the default.
  319.  
  320. `-iwithprefixbefore DIR'
  321.      Add a directory to the main include path.  The directory's name is
  322.      made by concatenating PREFIX and DIR, as in the case of
  323.      `-iwithprefix'.
  324.  
  325. `-isystem DIR'
  326.      Add a directory to the beginning of the second include path,
  327.      marking it as a system directory, so that it gets the same special
  328.      treatment as is applied to the standard system directories.
  329.  
  330. `-nostdinc'
  331.      Do not search the standard system directories for header files.
  332.      Only the directories you have specified with `-I' options (and the
  333.      current directory, if appropriate) are searched.  *Note Directory
  334.      Options::, for information on `-I'.
  335.  
  336.      By using both `-nostdinc' and `-I-', you can limit the include-file
  337.      search path to only those directories you specify explicitly.
  338.  
  339. `-undef'
  340.      Do not predefine any nonstandard macros.  (Including architecture
  341.      flags).
  342.  
  343. `-E'
  344.      Run only the C preprocessor.  Preprocess all the C source files
  345.      specified and output the results to standard output or to the
  346.      specified output file.
  347.  
  348. `-C'
  349.      Tell the preprocessor not to discard comments.  Used with the `-E'
  350.      option.
  351.  
  352. `-P'
  353.      Tell the preprocessor not to generate `#line' commands.  Used with
  354.      the `-E' option.
  355.  
  356. `-M'
  357.      Tell the preprocessor to output a rule suitable for `make'
  358.      describing the dependencies of each object file.  For each source
  359.      file, the preprocessor outputs one `make'-rule whose target is the
  360.      object file name for that source file and whose dependencies are
  361.      all the `#include' header files it uses.  This rule may be a
  362.      single line or may be continued with `\'-newline if it is long.
  363.      The list of rules is printed on standard output instead of the
  364.      preprocessed C program.
  365.  
  366.      `-M' implies `-E'.
  367.  
  368.      Another way to specify output of a `make' rule is by setting the
  369.      environment variable `DEPENDENCIES_OUTPUT' (*note Environment
  370.      Variables::.).
  371.  
  372. `-MM'
  373.      Like `-M' but the output mentions only the user header files
  374.      included with `#include "FILE"'.  System header files included
  375.      with `#include <FILE>' are omitted.
  376.  
  377. `-MD'
  378.      Like `-M' but the dependency information is written to a file made
  379.      by replacing ".c" with ".d" at the end of the input file names.
  380.      This is in addition to compiling the file as specified--`-MD' does
  381.      not inhibit ordinary compilation the way `-M' does.
  382.  
  383.      In Mach, you can use the utility `md' to merge multiple dependency
  384.      files into a single dependency file suitable for using with the
  385.      `make' command.
  386.  
  387. `-MMD'
  388.      Like `-MD' except mention only user header files, not system
  389.      header files.
  390.  
  391. `-MG'
  392.      Treat missing header files as generated files and assume they live
  393.      in the same directory as the source file.  If you specify `-MG',
  394.      you must also specify either `-M' or `-MM'.  `-MG' is not
  395.      supported with `-MD' or `-MMD'.
  396.  
  397. `-H'
  398.      Print the name of each header file used, in addition to other
  399.      normal activities.
  400.  
  401. `-AQUESTION(ANSWER)'
  402.      Assert the answer ANSWER for QUESTION, in case it is tested with a
  403.      preprocessor conditional such as `#if #QUESTION(ANSWER)'.  `-A-'
  404.      disables the standard assertions that normally describe the target
  405.      machine.
  406.  
  407. `-DMACRO'
  408.      Define macro MACRO with the string `1' as its definition.
  409.  
  410. `-DMACRO=DEFN'
  411.      Define macro MACRO as DEFN.  All instances of `-D' on the command
  412.      line are processed before any `-U' options.
  413.  
  414. `-UMACRO'
  415.      Undefine macro MACRO.  `-U' options are evaluated after all `-D'
  416.      options, but before any `-include' and `-imacros' options.
  417.  
  418. `-dM'
  419.      Tell the preprocessor to output only a list of the macro
  420.      definitions that are in effect at the end of preprocessing.  Used
  421.      with the `-E' option.
  422.  
  423. `-dD'
  424.      Tell the preprocessing to pass all macro definitions into the
  425.      output, in their proper sequence in the rest of the output.
  426.  
  427. `-dN'
  428.      Like `-dD' except that the macro arguments and contents are
  429.      omitted.  Only `#define NAME' is included in the output.
  430.  
  431. `-trigraphs'
  432.      Support ANSI C trigraphs.  The `-ansi' option also has this effect.
  433.  
  434. 
  435. File: gcc.info,  Node: Assembler Options,  Next: Link Options,  Prev: Preprocessor Options,  Up: Invoking GCC
  436.  
  437. Passing Options to the Assembler
  438. ================================
  439.  
  440. `-Wa,OPTION'
  441.      Pass OPTION as an option to the assembler.  If OPTION contains
  442.      commas, it is split into multiple options at the commas.
  443.  
  444. 
  445. File: gcc.info,  Node: Link Options,  Next: Directory Options,  Prev: Assembler Options,  Up: Invoking GCC
  446.  
  447. Options for Linking
  448. ===================
  449.  
  450.    These options come into play when the compiler links object files
  451. into an executable output file.  They are meaningless if the compiler is
  452. not doing a link step.
  453.  
  454. `OBJECT-FILE-NAME'
  455.      A file name that does not end in a special recognized suffix is
  456.      considered to name an object file or library.  (Object files are
  457.      distinguished from libraries by the linker according to the file
  458.      contents.)  If linking is done, these object files are used as
  459.      input to the linker.
  460.  
  461. `-c'
  462. `-S'
  463. `-E'
  464.      If any of these options is used, then the linker is not run, and
  465.      object file names should not be used as arguments.  *Note Overall
  466.      Options::.
  467.  
  468. `-lLIBRARY'
  469.      Search the library named LIBRARY when linking.
  470.  
  471.      It makes a difference where in the command you write this option;
  472.      the linker searches processes libraries and object files in the
  473.      order they are specified.  Thus, `foo.o -lz bar.o' searches
  474.      library `z' after file `foo.o' but before `bar.o'.  If `bar.o'
  475.      refers to functions in `z', those functions may not be loaded.
  476.  
  477.      The linker searches a standard list of directories for the library,
  478.      which is actually a file named `libLIBRARY.a'.  The linker then
  479.      uses this file as if it had been specified precisely by name.
  480.  
  481.      The directories searched include several standard system
  482.      directories plus any that you specify with `-L'.
  483.  
  484.      Normally the files found this way are library files--archive files
  485.      whose members are object files.  The linker handles an archive
  486.      file by scanning through it for members which define symbols that
  487.      have so far been referenced but not defined.  But if the file that
  488.      is found is an ordinary object file, it is linked in the usual
  489.      fashion.  The only difference between using an `-l' option and
  490.      specifying a file name is that `-l' surrounds LIBRARY with `lib'
  491.      and `.a' and searches several directories.
  492.  
  493. `-lobjc'
  494.      You need this special case of the `-l' option in order to link an
  495.      Objective C program.
  496.  
  497. `-nostartfiles'
  498.      Do not use the standard system startup files when linking.  The
  499.      standard libraries are used normally.
  500.  
  501. `-nostdlib'
  502.      Do not use the standard system libraries and startup files when
  503.      linking.  Only the files you specify will be passed to the linker.
  504.  
  505.      One of the standard libraries bypassed by `-nostdlib' is
  506.      `libgcc.a', a library of internal subroutines that GNU CC uses to
  507.      overcome shortcomings of particular machines, or special needs for
  508.      some languages.  (*Note Interfacing to GNU CC Output: Interface,
  509.      for more discussion of `libgcc.a'.) In most cases, you need
  510.      `libgcc.a' even when you want to avoid other standard libraries.
  511.      In other words, when you specify `-nostdlib' you should usually
  512.      specify `-lgcc' as well.  This ensures that you have no unresolved
  513.      references to internal GNU CC library subroutines.  (For example,
  514.      `__main', used to ensure C++ constructors will be called; *note
  515.      `collect2': Collect2..)
  516.  
  517. `-static'
  518.      On systems that support dynamic linking, this prevents linking
  519.      with the shared libraries.  On other systems, this option has no
  520.      effect.
  521.  
  522. `-shared'
  523.      Produce a shared object which can then be linked with other
  524.      objects to form an executable.  Only a few systems support this
  525.      option.
  526.  
  527. `-symbolic'
  528.      Bind references to global symbols when building a shared object.
  529.      Warn about any unresolved references (unless overridden by the
  530.      link editor option `-Xlinker -z -Xlinker defs').  Only a few
  531.      systems support this option.
  532.  
  533. `-Xlinker OPTION'
  534.      Pass OPTION as an option to the linker.  You can use this to
  535.      supply system-specific linker options which GNU CC does not know
  536.      how to recognize.
  537.  
  538.      If you want to pass an option that takes an argument, you must use
  539.      `-Xlinker' twice, once for the option and once for the argument.
  540.      For example, to pass `-assert definitions', you must write
  541.      `-Xlinker -assert -Xlinker definitions'.  It does not work to write
  542.      `-Xlinker "-assert definitions"', because this passes the entire
  543.      string as a single argument, which is not what the linker expects.
  544.  
  545. `-Wl,OPTION'
  546.      Pass OPTION as an option to the linker.  If OPTION contains
  547.      commas, it is split into multiple options at the commas.
  548.  
  549. `-u SYMBOL'
  550.      Pretend the symbol SYMBOL is undefined, to force linking of
  551.      library modules to define it.  You can use `-u' multiple times with
  552.      different symbols to force loading of additional library modules.
  553.  
  554. 
  555. File: gcc.info,  Node: Directory Options,  Next: Target Options,  Prev: Link Options,  Up: Invoking GCC
  556.  
  557. Options for Directory Search
  558. ============================
  559.  
  560.    These options specify directories to search for header files, for
  561. libraries and for parts of the compiler:
  562.  
  563. `-IDIR'
  564.      Append directory DIR to the list of directories searched for
  565.      include files.
  566.  
  567. `-I-'
  568.      Any directories you specify with `-I' options before the `-I-'
  569.      option are searched only for the case of `#include "FILE"'; they
  570.      are not searched for `#include <FILE>'.
  571.  
  572.      If additional directories are specified with `-I' options after
  573.      the `-I-', these directories are searched for all `#include'
  574.      directives.  (Ordinarily *all* `-I' directories are used this way.)
  575.  
  576.      In addition, the `-I-' option inhibits the use of the current
  577.      directory (where the current input file came from) as the first
  578.      search directory for `#include "FILE"'.  There is no way to
  579.      override this effect of `-I-'.  With `-I.' you can specify
  580.      searching the directory which was current when the compiler was
  581.      invoked.  That is not exactly the same as what the preprocessor
  582.      does by default, but it is often satisfactory.
  583.  
  584.      `-I-' does not inhibit the use of the standard system directories
  585.      for header files.  Thus, `-I-' and `-nostdinc' are independent.
  586.  
  587. `-LDIR'
  588.      Add directory DIR to the list of directories to be searched for
  589.      `-l'.
  590.  
  591. `-BPREFIX'
  592.      This option specifies where to find the executables, libraries,
  593.      include files, and data files of the compiler itself.
  594.  
  595.      The compiler driver program runs one or more of the subprograms
  596.      `cpp', `cc1', `as' and `ld'.  It tries PREFIX as a prefix for each
  597.      program it tries to run, both with and without `MACHINE/VERSION/'
  598.      (*note Target Options::.).
  599.  
  600.      For each subprogram to be run, the compiler driver first tries the
  601.      `-B' prefix, if any.  If that name is not found, or if `-B' was
  602.      not specified, the driver tries two standard prefixes, which are
  603.      `/usr/lib/gcc/' and `/usr/local/lib/gcc-lib/'.  If neither of
  604.      those results in a file name that is found, the unmodified program
  605.      name is searched for using the directories specified in your
  606.      `PATH' environment variable.
  607.  
  608.      `-B' prefixes that effectively specify directory names also apply
  609.      to libraries in the linker, because the compiler translates these
  610.      options into `-L' options for the linker.  They also apply to
  611.      includes files in the preprocessor, because the compiler
  612.      translates these options into `-isystem' options for the
  613.      preprocessor.  In this case, the compiler appends `include' to the
  614.      prefix.
  615.  
  616.      The run-time support file `libgcc.a' can also be searched for using
  617.      the `-B' prefix, if needed.  If it is not found there, the two
  618.      standard prefixes above are tried, and that is all.  The file is
  619.      left out of the link if it is not found by those means.
  620.  
  621.      Another way to specify a prefix much like the `-B' prefix is to use
  622.      the environment variable `GCC_EXEC_PREFIX'.  *Note Environment
  623.      Variables::.
  624.  
  625. 
  626. File: gcc.info,  Node: Target Options,  Next: Submodel Options,  Prev: Directory Options,  Up: Invoking GCC
  627.  
  628. Specifying Target Machine and Compiler Version
  629. ==============================================
  630.  
  631.    By default, GNU CC compiles code for the same type of machine that
  632. you are using.  However, it can also be installed as a cross-compiler,
  633. to compile for some other type of machine.  In fact, several different
  634. configurations of GNU CC, for different target machines, can be
  635. installed side by side.  Then you specify which one to use with the
  636. `-b' option.
  637.  
  638.    In addition, older and newer versions of GNU CC can be installed side
  639. by side.  One of them (probably the newest) will be the default, but
  640. you may sometimes wish to use another.
  641.  
  642. `-b MACHINE'
  643.      The argument MACHINE specifies the target machine for compilation.
  644.      This is useful when you have installed GNU CC as a cross-compiler.
  645.  
  646.      The value to use for MACHINE is the same as was specified as the
  647.      machine type when configuring GNU CC as a cross-compiler.  For
  648.      example, if a cross-compiler was configured with `configure
  649.      i386v', meaning to compile for an 80386 running System V, then you
  650.      would specify `-b i386v' to run that cross compiler.
  651.  
  652.      When you do not specify `-b', it normally means to compile for the
  653.      same type of machine that you are using.
  654.  
  655. `-V VERSION'
  656.      The argument VERSION specifies which version of GNU CC to run.
  657.      This is useful when multiple versions are installed.  For example,
  658.      VERSION might be `2.0', meaning to run GNU CC version 2.0.
  659.  
  660.      The default version, when you do not specify `-V', is controlled
  661.      by the way GNU CC is installed.  Normally, it will be a version
  662.      that is recommended for general use.
  663.  
  664.    The `-b' and `-V' options actually work by controlling part of the
  665. file name used for the executable files and libraries used for
  666. compilation.  A given version of GNU CC, for a given target machine, is
  667. normally kept in the directory `/usr/local/lib/gcc-lib/MACHINE/VERSION'.
  668.  
  669.    Thus, sites can customize the effect of `-b' or `-V' either by
  670. changing the names of these directories or adding alternate names (or
  671. symbolic links).  If in directory `/usr/local/lib/gcc-lib/' the file
  672. `80386' is a link to the file `i386v', then `-b 80386' becomes an alias
  673. for `-b i386v'.
  674.  
  675.    In one respect, the `-b' or `-V' do not completely change to a
  676. different compiler: the top-level driver program `gcc' that you
  677. originally invoked continues to run and invoke the other executables
  678. (preprocessor, compiler per se, assembler and linker) that do the real
  679. work.  However, since no real work is done in the driver program, it
  680. usually does not matter that the driver program in use is not the one
  681. for the specified target and version.
  682.  
  683.    The only way that the driver program depends on the target machine is
  684. in the parsing and handling of special machine-specific options.
  685. However, this is controlled by a file which is found, along with the
  686. other executables, in the directory for the specified version and
  687. target machine.  As a result, a single installed driver program adapts
  688. to any specified target machine and compiler version.
  689.  
  690.    The driver program executable does control one significant thing,
  691. however: the default version and target machine.  Therefore, you can
  692. install different instances of the driver program, compiled for
  693. different targets or versions, under different names.
  694.  
  695.    For example, if the driver for version 2.0 is installed as `ogcc'
  696. and that for version 2.1 is installed as `gcc', then the command `gcc'
  697. will use version 2.1 by default, while `ogcc' will use 2.0 by default.
  698. However, you can choose either version with either command with the
  699. `-V' option.
  700.  
  701. 
  702. File: gcc.info,  Node: Submodel Options,  Next: Code Gen Options,  Prev: Target Options,  Up: Invoking GCC
  703.  
  704. Hardware Models and Configurations
  705. ==================================
  706.  
  707.    Earlier we discussed the standard option `-b' which chooses among
  708. different installed compilers for completely different target machines,
  709. such as Vax vs. 68000 vs. 80386.
  710.  
  711.    In addition, each of these target machine types can have its own
  712. special options, starting with `-m', to choose among various hardware
  713. models or configurations--for example, 68010 vs 68020, floating
  714. coprocessor or none.  A single installed version of the compiler can
  715. compile for any model or configuration, according to the options
  716. specified.
  717.  
  718.    Some configurations of the compiler also support additional special
  719. options, usually for compatibility with other compilers on the same
  720. platform.
  721.  
  722.    These options are defined by the macro `TARGET_SWITCHES' in the
  723. machine description.  The default for the options is also defined by
  724. that macro, which enables you to change the defaults.
  725.  
  726. * Menu:
  727.  
  728. * M680x0 Options::
  729. * VAX Options::
  730. * SPARC Options::
  731. * Convex Options::
  732. * AMD29K Options::
  733. * ARM Options::
  734. * M88K Options::
  735. * RS/6000 and PowerPC Options::
  736. * RT Options::
  737. * MIPS Options::
  738. * i386 Options::
  739. * HPPA Options::
  740. * Intel 960 Options::
  741. * DEC Alpha Options::
  742. * Clipper Options::
  743. * H8/300 Options::
  744. * System V Options::
  745.  
  746. 
  747. File: gcc.info,  Node: M680x0 Options,  Next: VAX Options,  Up: Submodel Options
  748.  
  749. M680x0 Options
  750. --------------
  751.  
  752.    These are the `-m' options defined for the 68000 series.  The default
  753. values for these options depends on which style of 68000 was selected
  754. when the compiler was configured; the defaults for the most common
  755. choices are given below.
  756.  
  757. `-m68000'
  758. `-mc68000'
  759.      Generate output for a 68000.  This is the default when the
  760.      compiler is configured for 68000-based systems.
  761.  
  762. `-m68020'
  763. `-mc68020'
  764.      Generate output for a 68020.  This is the default when the
  765.      compiler is configured for 68020-based systems.
  766.  
  767. `-m68881'
  768.      Generate output containing 68881 instructions for floating point.
  769.      This is the default for most 68020 systems unless `-nfp' was
  770.      specified when the compiler was configured.
  771.  
  772. `-m68030'
  773.      Generate output for a 68030.  This is the default when the
  774.      compiler is configured for 68030-based systems.
  775.  
  776. `-m68040'
  777.      Generate output for a 68040.  This is the default when the
  778.      compiler is configured for 68040-based systems.
  779.  
  780.      This option inhibits the use of 68881/68882 instructions that have
  781.      to be emulated by software on the 68040.  If your 68040 does not
  782.      have code to emulate those instructions, use `-m68040'.
  783.  
  784. `-m68020-40'
  785.      Generate output for a 68040, without using any of the new
  786.      instructions.  This results in code which can run relatively
  787.      efficiently on either a 68020/68881 or a 68030 or a 68040.  The
  788.      generated code does use the 68881 instructions that are emulated
  789.      on the 68040.
  790.  
  791. `-mfpa'
  792.      Generate output containing Sun FPA instructions for floating point.
  793.  
  794. `-msoft-float'
  795.      Generate output containing library calls for floating point.
  796.      *Warning:* the requisite libraries are not part of GNU CC.
  797.      Normally the facilities of the machine's usual C compiler are
  798.      used, but this can't be done directly in cross-compilation.  You
  799.      must make your own arrangements to provide suitable library
  800.      functions for cross-compilation.
  801.  
  802. `-mshort'
  803.      Consider type `int' to be 16 bits wide, like `short int'.
  804.  
  805. `-mnobitfield'
  806.      Do not use the bit-field instructions.  The `-m68000' option
  807.      implies `-mnobitfield'.
  808.  
  809. `-mbitfield'
  810.      Do use the bit-field instructions.  The `-m68020' option implies
  811.      `-mbitfield'.  This is the default if you use a configuration
  812.      designed for a 68020.
  813.  
  814. `-mrtd'
  815.      Use a different function-calling convention, in which functions
  816.      that take a fixed number of arguments return with the `rtd'
  817.      instruction, which pops their arguments while returning.  This
  818.      saves one instruction in the caller since there is no need to pop
  819.      the arguments there.
  820.  
  821.      This calling convention is incompatible with the one normally used
  822.      on Unix, so you cannot use it if you need to call libraries
  823.      compiled with the Unix compiler.
  824.  
  825.      Also, you must provide function prototypes for all functions that
  826.      take variable numbers of arguments (including `printf'); otherwise
  827.      incorrect code will be generated for calls to those functions.
  828.  
  829.      In addition, seriously incorrect code will result if you call a
  830.      function with too many arguments.  (Normally, extra arguments are
  831.      harmlessly ignored.)
  832.  
  833.      The `rtd' instruction is supported by the 68010 and 68020
  834.      processors, but not by the 68000.
  835.  
  836. 
  837. File: gcc.info,  Node: VAX Options,  Next: SPARC Options,  Prev: M680x0 Options,  Up: Submodel Options
  838.  
  839. VAX Options
  840. -----------
  841.  
  842.    These `-m' options are defined for the Vax:
  843.  
  844. `-munix'
  845.      Do not output certain jump instructions (`aobleq' and so on) that
  846.      the Unix assembler for the Vax cannot handle across long ranges.
  847.  
  848. `-mgnu'
  849.      Do output those jump instructions, on the assumption that you will
  850.      assemble with the GNU assembler.
  851.  
  852. `-mg'
  853.      Output code for g-format floating point numbers instead of
  854.      d-format.
  855.  
  856. 
  857. File: gcc.info,  Node: SPARC Options,  Next: Convex Options,  Prev: VAX Options,  Up: Submodel Options
  858.  
  859. SPARC Options
  860. -------------
  861.  
  862.    These `-m' switches are supported on the SPARC:
  863.  
  864. `-mno-app-regs'
  865. `-mapp-regs'
  866.      Specify `-mapp-regs' to generate output using the global registers
  867.      2 through 4, which the SPARC SVR4 ABI reserves for applications.
  868.      This is the default.
  869.  
  870.      To be fully SVR4 ABI compliant at the cost of some performance
  871.      loss, specify `-mno-app-regs'.  You should compile libraries and
  872.      system software with this option.
  873.  
  874. `-mfpu'
  875. `-mhard-float'
  876.      Generate output containing floating point instructions.  This is
  877.      the default.
  878.  
  879. `-mno-fpu'
  880. `-msoft-float'
  881.      Generate output containing library calls for floating point.
  882.      *Warning:* there is no GNU floating-point library for SPARC.
  883.      Normally the facilities of the machine's usual C compiler are
  884.      used, but this cannot be done directly in cross-compilation.  You
  885.      must make your own arrangements to provide suitable library
  886.      functions for cross-compilation.
  887.  
  888.      `-msoft-float' changes the calling convention in the output file;
  889.      therefore, it is only useful if you compile *all* of a program with
  890.      this option.  In particular, you need to compile `libgcc.a', the
  891.      library that comes with GNU CC, with `-msoft-float' in order for
  892.      this to work.
  893.  
  894. `-mhard-quad-float'
  895.      Generate output containing quad-word (long double) floating point
  896.      instructions.
  897.  
  898. `-msoft-quad-float'
  899.      Generate output containing library calls for quad-word (long
  900.      double) floating point instructions.  The functions called are
  901.      those specified in the SPARC ABI.  This is the default.
  902.  
  903.      As of this writing, there are no sparc implementations that have
  904.      hardware support for the quad-word floating point instructions.
  905.      They all invoke a trap handler for one of these instructions, and
  906.      then the trap handler emulates the effect of the instruction.
  907.      Because of the trap handler overhead, this is much slower than
  908.      calling the ABI library routines.  Thus the `-msoft-quad-float'
  909.      option is the default.
  910.  
  911. `-mno-epilogue'
  912. `-mepilogue'
  913.      With `-mepilogue' (the default), the compiler always emits code for
  914.      function exit at the end of each function.  Any function exit in
  915.      the middle of the function (such as a return statement in C) will
  916.      generate a jump to the exit code at the end of the function.
  917.  
  918.      With `-mno-epilogue', the compiler tries to emit exit code inline
  919.      at every function exit.
  920.  
  921. `-mno-flat'
  922. `-mflat'
  923.      With `-mflat', the compiler does not generate save/restore
  924.      instructions and will use a "flat" or single register window
  925.      calling convention.  This model uses %i7 as the frame pointer and
  926.      is compatible with the normal register window model.  Code from
  927.      either may be intermixed although debugger support is still
  928.      incomplete.  The local registers and the input registers (0-5) are
  929.      still treated as "call saved" registers and will be saved on the
  930.      stack as necessary.
  931.  
  932.      With `-mno-flat' (the default), the compiler emits save/restore
  933.      instructions (except for leaf functions) and is the normal mode of
  934.      operation.
  935.  
  936. `-mno-unaligned-doubles'
  937. `-munaligned-doubles'
  938.      Assume that doubles have 8 byte alignment.  This is the default.
  939.  
  940.      With `-munaligned-doubles', GNU CC assumes that doubles have 8 byte
  941.      alignment only if they are contained in another type, or if they
  942.      have an absolute address.  Otherwise, it assumes they have 4 byte
  943.      alignment.  Specifying this option avoids some rare compatibility
  944.      problems with code generated by other compilers.  It is not the
  945.      default because it results in a performance loss, especially for
  946.      floating point code.
  947.  
  948. `-mv8'
  949. `-msparclite'
  950.      These two options select variations on the SPARC architecture.
  951.  
  952.      By default (unless specifically configured for the Fujitsu
  953.      SPARClite), GCC generates code for the v7 variant of the SPARC
  954.      architecture.
  955.  
  956.      `-mv8' will give you SPARC v8 code.  The only difference from v7
  957.      code is that the compiler emits the integer multiply and integer
  958.      divide instructions which exist in SPARC v8 but not in SPARC v7.
  959.  
  960.      `-msparclite' will give you SPARClite code.  This adds the integer
  961.      multiply, integer divide step and scan (`ffs') instructions which
  962.      exist in SPARClite but not in SPARC v7.
  963.  
  964. `-mcypress'
  965. `-msupersparc'
  966.      These two options select the processor for which the code is
  967.      optimised.
  968.  
  969.      With `-mcypress' (the default), the compiler optimizes code for the
  970.      Cypress CY7C602 chip, as used in the SparcStation/SparcSever 3xx
  971.      series.  This is also apropriate for the older SparcStation 1, 2,
  972.      IPX etc.
  973.  
  974.      With `-msupersparc' the compiler optimizes code for the SuperSparc
  975.      cpu, as used in the SparcStation 10, 1000 and 2000 series. This
  976.      flag also enables use of the full SPARC v8 instruction set.
  977.  
  978.    In a future version of GCC, these options will very likely be
  979. renamed to `-mcpu=cypress' and `-mcpu=supersparc'.
  980.  
  981.    These `-m' switches are supported in addition to the above on SPARC
  982. V9 processors:
  983.  
  984. `-mcode-model=medium-low'
  985.      Generate code for the Medium/Low code model: assume a 32 bit
  986.      address space.  Programs are statically linked, PIC is not
  987.      supported.  Pointers are still 64 bits.
  988.  
  989. `-mcode-model=medium-anywhere'
  990.      Generate code for the Medium/Anywhere code model: assume a 32 bit
  991.      text segment starting at offset 0, and a 32 bit data segment
  992.      starting anywhere (determined at link time).  Programs are
  993.      statically linked, PIC is not supported.  Pointers are still 64
  994.      bits.
  995.  
  996. `-mint64'
  997.      Types long and int are 64 bits.
  998.  
  999. `-mlong32'
  1000.      Types long and int are 32 bits.
  1001.  
  1002. `-mlong64'
  1003. `-mint32'
  1004.      Type long is 64 bits, and type int is 32 bits.
  1005.  
  1006. `-mstack-bias'
  1007. `-mno-stack-bias'
  1008.      With `-mstack-bias', GNU CC assumes that the stack pointer, and
  1009.      frame pointer if present, are offset by -2047 which must be added
  1010.      back when making stack frame references.  Otherwise, assume no
  1011.      such offset is present.
  1012.  
  1013. 
  1014. File: gcc.info,  Node: Convex Options,  Next: AMD29K Options,  Prev: SPARC Options,  Up: Submodel Options
  1015.  
  1016. Convex Options
  1017. --------------
  1018.  
  1019.    These `-m' options are defined for Convex:
  1020.  
  1021. `-mc1'
  1022.      Generate output for C1.  The code will run on any Convex machine.
  1023.      The preprocessor symbol `__convex__c1__' is defined.
  1024.  
  1025. `-mc2'
  1026.      Generate output for C2.  Uses instructions not available on C1.
  1027.      Scheduling and other optimizations are chosen for max performance
  1028.      on C2.  The preprocessor symbol `__convex_c2__' is defined.
  1029.  
  1030. `-mc32'
  1031.      Generate output for C32xx.  Uses instructions not available on C1.
  1032.      Scheduling and other optimizations are chosen for max performance
  1033.      on C32.  The preprocessor symbol `__convex_c32__' is defined.
  1034.  
  1035. `-mc34'
  1036.      Generate output for C34xx.  Uses instructions not available on C1.
  1037.      Scheduling and other optimizations are chosen for max performance
  1038.      on C34.  The preprocessor symbol `__convex_c34__' is defined.
  1039.  
  1040. `-mc38'
  1041.      Generate output for C38xx.  Uses instructions not available on C1.
  1042.      Scheduling and other optimizations are chosen for max performance
  1043.      on C38.  The preprocessor symbol `__convex_c38__' is defined.
  1044.  
  1045. `-margcount'
  1046.      Generate code which puts an argument count in the word preceding
  1047.      each argument list.  This is compatible with regular CC, and a few
  1048.      programs may need the argument count word.  GDB and other
  1049.      source-level debuggers do not need it; this info is in the symbol
  1050.      table.
  1051.  
  1052. `-mnoargcount'
  1053.      Omit the argument count word.  This is the default.
  1054.  
  1055. `-mvolatile-cache'
  1056.      Allow volatile references to be cached.  This is the default.
  1057.  
  1058. `-mvolatile-nocache'
  1059.      Volatile references bypass the data cache, going all the way to
  1060.      memory.  This is only needed for multi-processor code that does
  1061.      not use standard synchronization instructions.  Making
  1062.      non-volatile references to volatile locations will not necessarily
  1063.      work.
  1064.  
  1065. `-mlong32'
  1066.      Type long is 32 bits, the same as type int.  This is the default.
  1067.  
  1068. `-mlong64'
  1069.      Type long is 64 bits, the same as type long long.  This option is
  1070.      useless, because no library support exists for it.
  1071.  
  1072. 
  1073. File: gcc.info,  Node: AMD29K Options,  Next: ARM Options,  Prev: Convex Options,  Up: Submodel Options
  1074.  
  1075. AMD29K Options
  1076. --------------
  1077.  
  1078.    These `-m' options are defined for the AMD Am29000:
  1079.  
  1080. `-mdw'
  1081.      Generate code that assumes the `DW' bit is set, i.e., that byte and
  1082.      halfword operations are directly supported by the hardware.  This
  1083.      is the default.
  1084.  
  1085. `-mndw'
  1086.      Generate code that assumes the `DW' bit is not set.
  1087.  
  1088. `-mbw'
  1089.      Generate code that assumes the system supports byte and halfword
  1090.      write operations.  This is the default.
  1091.  
  1092. `-mnbw'
  1093.      Generate code that assumes the systems does not support byte and
  1094.      halfword write operations.  `-mnbw' implies `-mndw'.
  1095.  
  1096. `-msmall'
  1097.      Use a small memory model that assumes that all function addresses
  1098.      are either within a single 256 KB segment or at an absolute
  1099.      address of less than 256k.  This allows the `call' instruction to
  1100.      be used instead of a `const', `consth', `calli' sequence.
  1101.  
  1102. `-mnormal'
  1103.      Use the normal memory model: Generate `call' instructions only when
  1104.      calling functions in the same file and `calli' instructions
  1105.      otherwise.  This works if each file occupies less than 256 KB but
  1106.      allows the entire executable to be larger than 256 KB.  This is
  1107.      the default.
  1108.  
  1109. `-mlarge'
  1110.      Always use `calli' instructions.  Specify this option if you expect
  1111.      a single file to compile into more than 256 KB of code.
  1112.  
  1113. `-m29050'
  1114.      Generate code for the Am29050.
  1115.  
  1116. `-m29000'
  1117.      Generate code for the Am29000.  This is the default.
  1118.  
  1119. `-mkernel-registers'
  1120.      Generate references to registers `gr64-gr95' instead of to
  1121.      registers `gr96-gr127'.  This option can be used when compiling
  1122.      kernel code that wants a set of global registers disjoint from
  1123.      that used by user-mode code.
  1124.  
  1125.      Note that when this option is used, register names in `-f' flags
  1126.      must use the normal, user-mode, names.
  1127.  
  1128. `-muser-registers'
  1129.      Use the normal set of global registers, `gr96-gr127'.  This is the
  1130.      default.
  1131.  
  1132. `-mstack-check'
  1133. `-mno-stack-check'
  1134.      Insert (or do not insert) a call to `__msp_check' after each stack
  1135.      adjustment.  This is often used for kernel code.
  1136.  
  1137. `-mstorem-bug'
  1138. `-mno-storem-bug'
  1139.      `-mstorem-bug' handles 29k processors which cannot handle the
  1140.      separation of a mtsrim insn and a storem instruction (most 29000
  1141.      chips to date, but not the 29050).
  1142.  
  1143. `-mno-reuse-arg-regs'
  1144. `-mreuse-arg-regs'
  1145.      `-mno-reuse-arg-regs' tells the compiler to only use incoming
  1146.      argument registers for copying out arguments.  This helps detect
  1147.      calling a function with fewer arguments than it was declared with.
  1148.  
  1149. `-msoft-float'
  1150.      Generate output containing library calls for floating point.
  1151.      *Warning:* the requisite libraries are not part of GNU CC.
  1152.      Normally the facilities of the machine's usual C compiler are
  1153.      used, but this can't be done directly in cross-compilation.  You
  1154.      must make your own arrangements to provide suitable library
  1155.      functions for cross-compilation.
  1156.  
  1157. 
  1158. File: gcc.info,  Node: ARM Options,  Next: M88K Options,  Prev: AMD29K Options,  Up: Submodel Options
  1159.  
  1160. ARM Options
  1161. -----------
  1162.  
  1163.    These `-m' options are defined for Advanced RISC Machines (ARM)
  1164. architectures:
  1165.  
  1166. `-m2'
  1167. `-m3'
  1168.      These options are identical.  Generate code for the ARM2 and ARM3
  1169.      processors.  This option is the default.  You should also use this
  1170.      option to generate code for ARM6 processors that are running with a
  1171.      26-bit program counter.
  1172.  
  1173. `-m6'
  1174.      Generate code for the ARM6 processor when running with a 32-bit
  1175.      program counter.
  1176.  
  1177. `-mapcs'
  1178.      Generate a stack frame that is compliant with the ARM Proceedure
  1179.      Call Standard for all functions, even if this is not strictly
  1180.      necessary for correct execution of the code.
  1181.  
  1182. `-mbsd'
  1183.      This option only applies to RISC iX.  Emulate the native BSD-mode
  1184.      compiler.  This is the default if `-ansi' is not specified.
  1185.  
  1186. `-mxopen'
  1187.      This option only applies to RISC iX.  Emulate the native
  1188.      X/Open-mode compiler.
  1189.  
  1190. `-mno-symrename'
  1191.      This option only applies to RISC iX.  Do not run the assembler
  1192.      post-processor, `symrename', after code has been assembled.
  1193.      Normally it is necessary to modify some of the standard symbols in
  1194.      preparation for linking with the RISC iX C library; this option
  1195.      suppresses this pass.  The post-processor is never run when the
  1196.      compiler is built for cross-compilation.
  1197.  
  1198.