home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / usage.adb < prev    next >
Text File  |  1996-09-28  |  6KB  |  233 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                               U S A G E                                  --
  6. --                                                                          --
  7. --                                B o d y                                   --
  8. --                                                                          --
  9. --                           $Revision: 1.54 $                              --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. with Osint;  use Osint;
  26. with Output; use Output;
  27.  
  28. with System.WCh_Con; use System.WCh_Con;
  29.  
  30. procedure Usage is
  31.  
  32.    procedure Write_Switch_Char;
  33.    --  Output two spaces followed by default switch character
  34.  
  35.    procedure Write_Switch_Char is
  36.    begin
  37.       Write_Str ("  ");
  38.       Write_Char (Switch_Character);
  39.    end Write_Switch_Char;
  40.  
  41. --  Start of processing for Usage
  42.  
  43. begin
  44.    --  Usage line
  45.  
  46.    Write_Str ("Usage: ");
  47.    Write_Program_Name;
  48.    Write_Char (' ');
  49.    Write_Str ("switches sfile");
  50.    Write_Eol;
  51.    Write_Eol;
  52.  
  53.    --  Line for -a switch
  54.  
  55.    Write_Switch_Char;
  56.    Write_Str ("a      Assertions enabled. Pragma Ass");
  57.    Write_Str ("ert and pragma Debug to be activated");
  58.    Write_Eol;
  59.  
  60.    --  Line for -b switch
  61.  
  62.    Write_Switch_Char;
  63.    Write_Str ("b      Generate brief messages to std");
  64.    Write_Str ("err even if verbose mode set");
  65.    Write_Eol;
  66.  
  67.    --  Line for -c switch
  68.  
  69.    Write_Switch_Char;
  70.    Write_Str ("c      Check syntax and semantics onl");
  71.    Write_Str ("y (no code generation attempted)");
  72.    Write_Eol;
  73.  
  74.    --  Line for -e switch
  75.  
  76.    Write_Switch_Char;
  77.    Write_Str ("e      Error messages generated immed");
  78.    Write_Str ("iately, not saved up till end");
  79.    Write_Eol;
  80.  
  81.    --  Line for -f switch
  82.  
  83.    Write_Switch_Char;
  84.    Write_Str ("f      Full errors. Multiple errors/l");
  85.    Write_Str ("ine, all undefined references");
  86.    Write_Eol;
  87.  
  88.    --  Line for -g switch
  89.  
  90.    Write_Switch_Char;
  91.    Write_Str ("g      GNAT style checks enabled");
  92.    Write_Eol;
  93.  
  94.    --  Line for -i switch
  95.  
  96.    Write_Switch_Char;
  97.    Write_Str ("i?     Identifier char set (?=1/2/3/4");
  98.    Write_Str ("/8/p/f/n/w)");
  99.    Write_Eol;
  100.  
  101.    --  Line for -j switch
  102.  
  103.    Write_Switch_Char;
  104.    Write_Str ("j?     Wide character encoding method");
  105.    Write_Str (" (?=");
  106.  
  107.    for J in WC_Encoding_Method loop
  108.       Write_Char (WC_Encoding_Letters (J));
  109.  
  110.       if J = WC_Encoding_Method'Last then
  111.          Write_Char (')');
  112.       else
  113.          Write_Char ('/');
  114.       end if;
  115.    end loop;
  116.  
  117.    Write_Eol;
  118.  
  119.    --  Line for -k switch
  120.  
  121.    Write_Switch_Char;
  122.    Write_Str ("knnn   Limit file names to nnn charac");
  123.    Write_Str ("ters (k = krunch)");
  124.    Write_Eol;
  125.  
  126.    --  Line for -l switch
  127.  
  128.    Write_Switch_Char;
  129.    Write_Str ("l      Output full source listing wit");
  130.    Write_Str ("h embedded error messages");
  131.    Write_Eol;
  132.  
  133.    --  Line for -m switch
  134.  
  135.    Write_Switch_Char;
  136.    Write_Str ("mnnn   Limit number of detected error");
  137.    Write_Str ("s to nnn (1-999)");
  138.    Write_Eol;
  139.  
  140.    --  Line for -n switch
  141.  
  142.    Write_Switch_Char;
  143.    Write_Str ("n      Inlining of subprograms (apply ");
  144.    Write_Str ("pragma Inline across units)");
  145.    Write_Eol;
  146.  
  147.    --  Line for -o switch
  148.  
  149.    Write_Switch_Char;
  150.    Write_Str ("o      Enable optional checks (overfl");
  151.    Write_Str ("ow, stack check, elaboration checks");
  152.    Write_Eol;
  153.  
  154.    --  Line for -p switch
  155.  
  156.    Write_Switch_Char;
  157.    Write_Str ("p      Suppress all checks");
  158.    Write_Eol;
  159.  
  160.    --  Lines for -q switch
  161.  
  162.    Write_Switch_Char;
  163.    Write_Str ("q      Don't quit, try semantics, eve");
  164.    Write_Str ("n if parse errors");
  165.    Write_Eol;
  166.  
  167.    --  Line for -r switch
  168.  
  169.    Write_Switch_Char;
  170.    Write_Str ("r      Reference manual column layout");
  171.    Write_Str (" required");
  172.    Write_Eol;
  173.  
  174.    --  Lines for -s switch
  175.  
  176.    Write_Switch_Char;
  177.    Write_Str ("s      Syntax check only");
  178.    Write_Eol;
  179.  
  180.    --  Lines for -t switch
  181.  
  182.    Write_Switch_Char;
  183.    Write_Str ("t      Tree output file to be generated");
  184.    Write_Eol;
  185.  
  186.    --  Line for -u switch
  187.  
  188.    Write_Switch_Char;
  189.    Write_Str ("u      List units for this compilatio");
  190.    Write_Str ("n");
  191.    Write_Eol;
  192.  
  193.    --  Line for -v switch
  194.  
  195.    Write_Switch_Char;
  196.    Write_Str ("v      Verbose mode. Full error outpu");
  197.    Write_Str ("t with source lines to stdout");
  198.    Write_Eol;
  199.  
  200.    --  Lines for -w switch
  201.  
  202.    Write_Switch_Char;
  203.    Write_Str ("w?     Warning mode. (?=s/e for suppr");
  204.    Write_Str ("ess/treat as error)");
  205.    Write_Eol;
  206.  
  207.    --  Lines for -x switch
  208.  
  209.    Write_Switch_Char;
  210.    Write_Str ("x?     Cross-reference level and swit");
  211.    Write_Str ("ches (?=1/2/3/4/5/9/b/s)");
  212.    Write_Eol;
  213.  
  214.    --  Lines for -z switch
  215.  
  216.    Write_Switch_Char;
  217.    Write_Str ("z?     Distribution stub generation (");
  218.    Write_Str ("r/s for receiver/sender stubs)");
  219.    Write_Eol;
  220.  
  221.    --  Line for -83 switch
  222.  
  223.    Write_Switch_Char;
  224.    Write_Str ("83     Enforce Ada 83 restrictions");
  225.    Write_Eol;
  226.  
  227.    --  Line for sfile
  228.  
  229.    Write_Str ("  sfile   Source file names");
  230.    Write_Eol;
  231.  
  232. end Usage;
  233.