ACD.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:28k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  2. NAME
  3.      acd - a compiler driver
  4. SYNOPSIS
  5.      acd -v[n] -vn[n] -name name -descr descr -T dir [arg ...]
  6. DESCRIPTION
  7.      Acd is a compiler driver, a program that calls the  several  passes  that
  8.      are needed to compile a source file.  It keeps track of all the temporary
  9.      files used between the passes.  It also  defines  the  interface  of  the
  10.      compiler, the options the user gets to see.
  11.      This text only describes acd itself, it says nothing about the  different
  12.      options the C-compiler accepts.  (It has nothing to do with any language,
  13.      other than being a tool to give a compiler a user interface.)
  14. OPTIONS
  15.      Acd itself takes five options:
  16.      -v[n]
  17.           Sets the diagnostic level to n (by default 2).  The higher n is, the
  18.           more  output  acd  generates:  -v0 does not produce any output.  -v1
  19.           prints the basenames of the programs called.  -v2 prints  names  and
  20.           arguments  of  the programs called.  -v3 shows the commands executed
  21.           from the description file too.  -v4 shows the program read from  the
  22.           description file too.  Levels 3 and 4 use backspace overstrikes that
  23.           look good when viewing the output with a smart pager.
  24.      -vn[n]
  25.           Like -v except that no command is  executed.   The  driver  is  just
  26.           play-acting.
  27.      -name name
  28.           Acd is normally linked to the name the compiler is to be called with
  29.           by  the user.  The basename of this, say cc, is the call name of the
  30.           driver.  It plays a role in selecting the proper  description  file.
  31.           With  the  -name  option  one can change this.  Acd -name cc has the
  32.           same effect as calling the program as cc.
  33.      -descr descr
  34.           Allows one to choose the pass description file of  the  driver.   By
  35.           default descr is the same as name, the call name of the program.  If
  36.           descr  doesn't  start  with  /,   ./,   or   ../   then   the   file
  37.           /usr/lib/descr/descr  will  be  used  for the description, otherwise
  38.           descr itself.  Thus cc -descr newcc  calls  the  C-compiler  with  a
  39.           different description file without changing the call name.  Finally,
  40.           if descr is "-", standard input is read.  (The default lib directory
  41.           /usr/lib,  may  be  changed to dir at compile time by -DLIB="dir".
  42.           The default descr may  be  set  with  -DDESCR="descr"  for  simple
  43.           installations on a system without symlinks.)
  44.                                                                              1
  45. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  46.      -T dir
  47.           Temporary files are made in /tmp by default, which may be overridden
  48.           by  the  environment variable TMPDIR, which may be overridden by the
  49.           -T option.
  50. THE DESCRIPTION FILE
  51.      The description file is a program interpreted  by  the  driver.   It  has
  52.      variables,  lists  of  files,  argument  parsing  commands, and rules for
  53.      transforming input files.
  54.   Syntax
  55.      There are four simple objects:
  56.           Words, Substitutions, Letters, and Operators.
  57.      And there are two ways to group objects:
  58.           Lists, forming sequences of anything but letters,
  59.           Strings, forming sequences of anything but Words and Operators.
  60.      Each object has the following syntax:
  61.      Words
  62.           They are sequences of characters, like cc, -I/usr/include, /lib/cpp.
  63.           No  whitespace  and  no special characters.  The backslash character
  64.           ()  may  be  used  to  make  special  characters   common,   except
  65.           whitespace.   A  backslash  followed  by  whitespace  is  completely
  66.           removed from the input.  The sequence n is changed to a newline.
  67.      Substitutions
  68.           A substitution (henceforth called 'subst') is formed with a $,  e.g.
  69.           $opt,  $PATH,  ${lib}, $*.  The variable name after the $ is made of
  70.           letters, digits and  underscores,  or  any  sequence  of  characters
  71.           between parentheses or braces, or a single other character.  A subst
  72.           indicates that the value of the named variable must  be  substituted
  73.           in the list or string when fully evaluated.
  74.      Letters
  75.           Letters are the single characters that would make up a word.
  76.      Operators
  77.           The characters =, +, -, *, <, and > are the  operators.   The  first
  78.           four  must  be  surrounded  by  whitespace if they are to be seen as
  79.           special (they are often used in arguments).  The last two are always
  80.           special.
  81.      Lists
  82.           One line of objects in the  description  file  forms  a  list.   Put
  83.           parentheses  around  it  and  you  have  a  sublist.   The values of
  84.                                                                              2
  85. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  86.           variables are lists.
  87.      Strings
  88.           Anything that is not yet a word is a string.  All it needs  is  that
  89.           the  substs in it are evaluated, e.g.  $LIBPATH/lib$key.a.  A single
  90.           subst doesn't make a string, it expands to  a  list.   You  need  at
  91.           least one letter or other subst next to it.  Strings (and words) may
  92.           also be formed by enclosing them in double quotes.   Only    and  $
  93.           keep their special meaning within quotes.
  94.   Evaluation
  95.      One thing has to be carefully understood: Substitutions are delayed until
  96.      the  last  possible moment, and description files make heavy use of this.
  97.      Only if a subst is tainted,  either  because  its  variable  is  declared
  98.      local,  or  because  a  subst  in  its variable's value is tainted, is it
  99.      immediately substituted.  So if a list is assigned  to  a  variable  then
  100.      this  list is only checked for tainted substs.  Those substs are replaced
  101.      by the value of their variable.  This is called partial evaluation.
  102.      Full evaluation expands all substs,  the  list  is  flattened,  i.e.  all
  103.      parentheses are removed from sublists.
  104.      Implosive evaluation is the last that has to be done to a list before  it
  105.      can  be  used  as  a command to execute.  The substs within a string have
  106.      been evaluated to lists after full expansion, but a string must be turned
  107.      into  a  single word, not a list.  To make this happen, a string is first
  108.      exploded to all possible combinations of words choosing one member of the
  109.      lists within the string.  These words are tried one by one to see if they
  110.      exist as a file.  The first one that exists is taken, if none exists than
  111.      the  first  choice  is  used.  As an example, assume LIBPATH equals (/lib
  112.      /usr/lib), key is (c) and key happens to be local.  Then we have:
  113.           "$LIBPATH/lib$key.a"
  114.      before evaluation,
  115.           "$LIBPATH/lib(c).a"
  116.      after partial evaluation,
  117.           "(/lib/libc.a /usr/lib/libc.a)"
  118.      after full evaluation, and finally
  119.           /usr/lib/libc.a
  120.      after implosion, if the file exists.
  121.                                                                              3
  122. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  123.   Operators
  124.      The operators modify the way evaluation is done  and  perform  a  special
  125.      function on a list:
  126.      *    Forces full evaluation on all the list elements following  it.   Use
  127.           it  to  force substitution of the current value of a variable.  This
  128.           is the only operator that forces immediate evaluation.
  129.      +    When a + exists in a list that is  fully  evaluated,  then  all  the
  130.           elements  before the + are imploded and all elements after the + are
  131.           imploded and added to the list if they are not already in the  list.
  132.           So  this  operator  can be used either for set addition, or to force
  133.           implosive expansion within a sublist.
  134.      -    Like +, except that elements after the - are removed from the list.
  135.      The set operators can be used to gather options that exclude  each  other
  136.      or for their side effect of implosive expansion.  You may want to write:
  137.           cpp -I$LIBPATH/include
  138.      to call cpp with an extra include directory,  but  $LIBPATH  is  expanded
  139.      using  a  filename  starting  with -I so this won't work.  Given that any
  140.      problem in Computer  Science  can  be  solved  with  an  extra  level  of
  141.      indirection, use this instead:
  142.           cpp -I$INCLUDE
  143.           INCLUDE = $LIBPATH/include +
  144.   Special Variables
  145.      There are three special variables used in a description  file:   $*,  $<,
  146.      and  $>.   These  variables  are always local and mostly read-only.  They
  147.      will be explained later.
  148.   A Program
  149.      The lists in a description file form a program that is executed from  the
  150.      first  to the last list.  The first word in a list may be recognized as a
  151.      builtin command (only if the first list element is indeed simply a word.)
  152.      If  it  is  not a builtin command then the list is imploded and used as a
  153.      UNIX command with arguments.
  154.      Indentation (by tabs or spaces) is not just makeup for a program, but are
  155.      used  to group lines together.  Some builtin commands need a body.  These
  156.      bodies are simply lines at a deeper indentation.
  157.      Empty lines are not ignored either, they have the same indentation  level
  158.      as  the line before it.  Comments (starting with a # and ending at end of
  159.      line) have an indentation of their own and can be used as null commands.
  160.                                                                              4
  161. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  162.      Acd will complain about unexpected indentation shifts and  empty  bodies.
  163.      Commands  can share the same body by placing them at the same indentation
  164.      level before the indented body.  They are then "guards" to the same body,
  165.      and  are  tried  one  by  one until one succeeds, after which the body is
  166.      executed.
  167.      Semicolons may be used to separate commands  instead  of  newlines.   The
  168.      commands are then all at the indentation level of the first.
  169.   Execution phases
  170.      The driver runs in three phases: Initialization, Argument  scanning,  and
  171.      Compilation.   Not  all  commands  work  in  all phases.  This is further
  172.      explained below.
  173.   The Commands
  174.      The commands accept arguments that are usually generic  expressions  that
  175.      implode  to  a  word  or  a list of words.  When var is specified, then a
  176.      single word or subst needs to be given, so an assignment  can  be  either
  177.      name = value, or $name = value.
  178.      var = expr ...
  179.           The partially evaluated list of  expressions  is  assigned  to  var.
  180.           During  the  evaluation  is  var  marked  as  local,  and  after the
  181.           assignment set from undefined to defined.
  182.      unset var
  183.           Var is set to null and is marked as undefined.
  184.      import var
  185.           If var is defined in the environment of acd then it is  assigned  to
  186.           var.  The environment variable is split into words at whitespace and
  187.           colons.  Empty space between two colons (::)  is changed to a dot.
  188.      mktemp var [suffix]
  189.           Assigns to var the name of a new temporary file,  usually  something
  190.           like  /tmp/acd12345x.  If suffix is present then it will be added to
  191.           the temporary file's name.  (Use it because  some  programs  require
  192.           it,  or  just  because it looks good.)  Acd remembers this file, and
  193.           will delete it as soon as you stop referencing it.
  194.      temporary word
  195.           Mark the file named by word as a temporary file.  You have  to  make
  196.           sure  that the name is stored in some list in imploded form, and not
  197.           just temporarily created when word is  evaluated,  because  then  it
  198.           will be immediately removed and forgotten.
  199.      stop suffix
  200.           Sets the target suffix for the compilation  phase.   Something  like
  201.           stop  .o  means  that  the  source  files must be compiled to object
  202.           files.  At least one  stop  command  must  be  executed  before  the
  203.                                                                              5
  204. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  205.           compilation  phase  begins.   It  may  not  be  changed  during  the
  206.           compilation  phase.   (Note:  There  is no restriction on suffix, it
  207.           need not start with a dot.)
  208.      treat file suffix
  209.           Marks the file as having the given suffix  for  the  compile  phase.
  210.           Useful for sending a -l option directly to the loader by treating it
  211.           as having the .a suffix.
  212.      numeric arg
  213.           Checks if arg is a number.  If not then acd will exit  with  a  nice
  214.           error message.
  215.      error expr ...
  216.           Makes the driver print the error message expr ... and exit.
  217.      if expr = expr
  218.           If tests if the two expressions are equal using set comparison, i.e.
  219.           each   expression   should  contain  all  the  words  in  the  other
  220.           expression.  If the test succeeds then the if-body is executed.
  221.      ifdef var
  222.           Executes the ifdef-body if var is defined.
  223.      ifndef var
  224.           Executes the ifndef-body if var is undefined.
  225.      iftemp arg
  226.           Executes the iftemp-body if arg is a temporary file.  Use it when  a
  227.           command  has the same file as input and output and you don't want to
  228.           clobber the source file:
  229.                transform .o .o
  230.                        iftemp $*
  231.                                $> = $*
  232.                        else
  233.                                cp $* $>
  234.                        optimize $>
  235.      ifhash arg
  236.           Executes the ifhash-body if arg is an existing file with  a  '#'  as
  237.           the very first character.  This usually indicates that the file must
  238.           be pre-processed:
  239.                transform .s .o
  240.                        ifhash $*
  241.                                mktemp ASM .s
  242.                                $CPP $* > $ASM
  243.                        else
  244.                                ASM = $*
  245.                                                                              6
  246. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  247.                        $AS -o $> $ASM
  248.                        unset ASM
  249.      else Executes the else-body if  the  last  executed  if,  ifdef,  ifndef,
  250.           iftemp,  or  ifhash  was  unsuccessful.   Note  that  else  need not
  251.           immediately follow an if, but you are advised not  to  make  use  of
  252.           this.  It is a "feature" that may not last.
  253.      apply suffix1 suffix2
  254.           Executed inside a transform rule body to transform  the  input  file
  255.           according  to  another  transform  rule that has the given input and
  256.           output suffixes.  The file under $* will  be  replaced  by  the  new
  257.           file.   So if there is a .c .i preprocessor rule then the example of
  258.           ifhash can be replaced by:
  259.                transform .s .o
  260.                        ifhash $*
  261.                                apply .c .i
  262.                        $AS -o $> $*
  263.      include descr
  264.           Reads another description file and replaces  the  include  with  it.
  265.           Execution  continues  with  the  first list in the new program.  The
  266.           search for descr is the same as used for  the  -descr  option.   Use
  267.           include to switch in different front ends or back ends, or to call a
  268.           shared description file with a different initialization.  Note  that
  269.           descr is only evaluated the first time the include is called.  After
  270.           that the include has been replaced with  the  included  program,  so
  271.           changing its argument won't get you a different file.
  272.      arg string ...
  273.           Arg may be executed in the initialization and scanning phase to post
  274.           an argument scanning rule, that's all the command itself does.  Like
  275.           an if that fails it allows more guards to share the same body.
  276.      transform suffix1 suffix2
  277.           Transform, like arg, only posts a rule to transform a file with  the
  278.           suffix suffix1 into a file with the suffix suffix2.
  279.      prefer suffix1 suffix2
  280.           Tells that the transformation rule from suffix1 to suffix2 is to  be
  281.           preferred when looking for a transformation path to the stop suffix.
  282.           Normally the shortest route to the stop suffix is used.   Prefer  is
  283.           ignored  on  a  combine, because the special nature of combines does
  284.           not allow ambiguity.
  285.           The two suffixes on a transform or prefer may be the same, giving  a
  286.           rule that is only executed when preferred.
  287.                                                                              7
  288. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  289.      combine suffix-list suffix
  290.           Combine is like transform except that it  allows  a  list  of  input
  291.           suffixes to match several types of input files that must be combined
  292.           into one.
  293.      scan The scanning phase may be run early from  the  initialization  phase
  294.           with  the scan command.  Use it if you need to make choices based on
  295.           the  arguments  before  posting  the  transformation  rules.   After
  296.           running this, scan and arg become no-ops.
  297.      compile
  298.           Move on to the compilation phase early, so that you have a chance to
  299.           run  a  few  extra  commands before exiting.  This command implies a
  300.           scan.
  301.      Any other command is seen as a UNIX command.  This is where the <  and  >
  302.      operators  come  into  play.   They  redirect standard input and standard
  303.      output to the file mentioned after them, just like the shell.   Acd  will
  304.      stop with an error if the command is not successful.
  305.   The Initialization Phase
  306.      The driver starts by executing the program once from  top  to  bottom  to
  307.      initialize variables and post argument scanning and transformation rules.
  308.   The Scanning Phase
  309.      In this phase the driver makes a pass over the command line arguments  to
  310.      process  options.   Each  arg  rule is tried one by one in the order they
  311.      were posted against the front of the argument list.  If a match  is  made
  312.      then  the  matched  arguments  are removed from the argument list and the
  313.      arg-body is executed.  If no match can be made then the first argument is
  314.      moved  to  the  list  of  files waiting to be transformed and the scan is
  315.      restarted.
  316.      The match is done as follows: Each of the strings after  arg  must  match
  317.      one  argument at the front of the argument list.  A character in a string
  318.      must match a character in an argument word, a subst in a string may match
  319.      1  to  all  remaining characters in the argument, preferring the shortest
  320.      possible match.  The hyphen in a argument starting with a  hyphen  cannot
  321.      be matched by a subst.  Therefore:
  322.           arg -i
  323.      matches only the argument -i.
  324.           arg -O$n
  325.      matches any argument that starts with -O and is at least three characters
  326.      long.  Lastly,
  327.                                                                              8
  328. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  329.           arg -o $out
  330.      matches -o and the argument following it,  unless  that  argument  starts
  331.      with a hyphen.
  332.      The variable $* is set to all the matched arguments before  the  arg-body
  333.      is executed.  All the substs in the arg strings are set to the characters
  334.      they match.  The variable $> is set to  null.   All  the  values  of  the
  335.      variables are saved and the variables marked local.  All variables except
  336.      $> are marked read-only.  After the arg-body is executed is the value  of
  337.      $>  concatenated  to  the  file list.  This allows one to stuff new files
  338.      into the transformation phase.  These added names are not evaluated until
  339.      the start of the next phase.
  340.   The Compilation Phase
  341.      The files gathered in the  file  list  in  the  scanning  phase  are  now
  342.      transformed  one by one using the transformation rules.  The shortest, or
  343.      preferred route is computed for each file all the way to the stop suffix.
  344.      Each  file  is  transformed  until  it  lands at the stop suffix, or at a
  345.      combine rule.  After a while all files are either fully transformed or at
  346.      a combine rule.
  347.      The driver chooses a combine rule that is not  on  a  path  from  another
  348.      combine  rule and executes it.  The file that results is then transformed
  349.      until it again lands  at  a  combine  rule  or  the  stop  suffix.   This
  350.      continues until all files are at the stop suffix and the program exits.
  351.      The paths through transform rules may be ambiguous and have cycles,  they
  352.      will  be  resolved.   But  paths  through  combines  must be unambiguous,
  353.      because of the many paths from the different files that  meet  there.   A
  354.      description  file will usually have only one combine rule for the loader.
  355.      However if you do have a combine conflict then put a no-op transform rule
  356.      in front of one to resolve the problem.
  357.      If a file matches a long and a short  suffix  then  the  long  suffix  is
  358.      preferred.   By  putting a null input suffix ("") in a rule one can match
  359.      any file that no other rule matches.  You can send unknown files  to  the
  360.      loader this way.
  361.      The variable $* is set to the file to be transformed or the files  to  be
  362.      combined  before the transform or combine-body is executed.  $> is set to
  363.      the output file name, it may  again  be  modified.   $<  is  set  to  the
  364.      original  name  of  the first file of $* with the leading directories and
  365.      the suffix removed.  $* will be made up  of  temporary  files  after  the
  366.      first  rule.  $> will be another temporary file or the name of the target
  367.      file ($< plus the stop suffix), if the stop suffix is reached.
  368.      $> is passed to the next rule; it is imploded and checked to be a  single
  369.      word.   This  driver  does  not  store  intermediate  object files in the
  370.      current directory like most other compilers, but keeps them in /tmp  too.
  371.                                                                              9
  372. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  373.      (Who knows if the current directory can have files created  in?)   As  an
  374.      example, here is how you can express the "normal" method:
  375.           transform .s .o
  376.                   if $> = $<.o
  377.                           # Stop suffix is .o
  378.                   else
  379.                           $> = $<.o
  380.                           temporary $>
  381.                   $AS -o $> $*
  382.      Note that temporary is not called if the target  is  already  the  object
  383.      file,  or  you would lose the intended result!  $> is known to be a word,
  384.      because $< is local.  (Any string whose substs are all  expanded  changes
  385.      to a word.)
  386.   Predefined Variables
  387.      The driver has three variables predefined:  PROGRAM, set to the call name
  388.      of the driver, VERSION, the driver's version number, and ARCH, set to the
  389.      name of the default output architecture.  The  latter  is  optional,  and
  390.      only defined if acd was compiled with -DARCH="arch-name".
  391. EXAMPLE
  392.      As an example a description file for a C compiler is  given.   It  has  a
  393.      front  end (ccom), an intermediate code optimizer (opt), a code generator
  394.      (cg), an assembler (as), and  a  loader  (ld).   The  compiler  can  pre-
  395.      process, but there is also a separate cpp.  If the -D and options like it
  396.      are changed to look like -o then this example  is  even  as  required  by
  397.      POSIX.
  398.           # The compiler support search path.
  399.           C =     /lib /usr/lib /usr/local/lib
  400.           # Compiler passes.
  401.           CPP =   $C/cpp $CPP_F
  402.           CCOM =  $C/ccom $CPP_F
  403.           OPT =   $C/opt
  404.           CG =    $C/cg
  405.           AS =    $C/as
  406.           LD =    $C/ld
  407.           # Predefined symbols.
  408.           CPP_F = -D__EXAMPLE_CC__
  409.           # Library path.
  410.           LIBPATH = $USERLIBPATH $C
  411.           # Default transformation target.
  412.           stop .out
  413.                                                                             10
  414. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  415.           # Preprocessor directives.
  416.           arg -D$name
  417.           arg -U$name
  418.           arg -I$dir
  419.                   CPP_F = $CPP_F $*
  420.           # Stop suffix.
  421.           arg -c
  422.                   stop .o
  423.           arg -E
  424.                   stop .E
  425.           # Optimization.
  426.           arg -O
  427.                   prefer .m .m
  428.                   OPT = $OPT -O1
  429.           arg -O$n
  430.                   numeric $n
  431.                   prefer .m .m
  432.                   OPT = $OPT $*
  433.           # Add debug info to the executable.
  434.           arg -g
  435.                   CCOM = $CCOM -g
  436.           # Add directories to the library path.
  437.           arg -L$dir
  438.                   USERLIBPATH = $USERLIBPATH $dir
  439.           # -llib must be searched in $LIBPATH later.
  440.           arg -l$lib
  441.                   $> = $LIBPATH/lib$lib.a
  442.           # Change output file.
  443.           arg -o$out
  444.           arg -o $out
  445.                   OUT = $out
  446.           # Complain about a missing argument.
  447.           arg -o
  448.                   error "argument expected after '$*'"
  449.           # Any other option (like -s) are for the loader.
  450.           arg -$any
  451.                   LD = $LD $*
  452.           # Preprocess C-source.
  453.           transform .c .i
  454.                                                                             11
  455. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  456.                   $CPP $* > $>
  457.           # Preprocess C-source and send it to standard output or $OUT.
  458.           transform .c .E
  459.                   ifndef OUT
  460.                           $CPP $*
  461.                   else
  462.                           $CPP $* > $OUT
  463.           # Compile C-source to intermediate code.
  464.           transform .c .m
  465.           transform .i .m
  466.                   $CCOM $* $>
  467.           # Intermediate code optimizer.
  468.           transform .m .m
  469.                   $OPT $* > $>
  470.           # Intermediate to assembly.
  471.           transform .m .s
  472.                   $CG $* > $>
  473.           # Assembler to object code.
  474.           transform .s .o
  475.                   if $> = $<.o
  476.                           ifdef OUT
  477.                                   $> = $OUT
  478.                   $AS -o $> $*
  479.           # Combine object files and libraries to an executable.
  480.           combine (.o .a) .out
  481.                   ifndef OUT
  482.                           OUT = a.out
  483.                   $LD -o $OUT $C/crtso.o $* $C/libc.a
  484. FILES
  485.      /usr/lib/descr/descr     - compiler driver description file.
  486. SEE ALSO
  487.      cc(1).
  488. ACKNOWLEDGEMENTS
  489.      Even though the end result doesn't look much like  it,  many  ideas  were
  490.      nevertheless derived from the ACK compiler driver by Ed Keizer.
  491.                                                                             12
  492. ACD(1)                    Minix Programmer's Manual                     ACD(1)
  493. BUGS
  494.      POSIX requires that if compiling one source file to an object file  fails
  495.      then the compiler should continue with the next source file.  There is no
  496.      way acd can do this, it always stops after error.  It doesn't  even  know
  497.      what an object file is!  (The requirement is stupid anyhow.)
  498.      If you don't think that tabs are 8 spaces wide, then don't mix them  with
  499.      spaces for indentation.
  500. AUTHOR
  501.      Kees J. Bot (kjb@cs.vu.nl)
  502.                                                                             13