OSDN Git Service

2004-03-05 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
[pf3gnuchains/gcc-fork.git] / gcc / ada / vms_data.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             V M S _ D A T A                              --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 1996-2004 Free Software Foundation, Inc.          --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 --  This package contains, for each of the command of the GNAT driver, one
28 --  constant array; each component of this array is a string that defines,
29 --  in coded form as explained below, the conversion of a VMS qualifier of the
30 --  command to the corresponding switch of the GNAT tool corresponding to the
31 --  command.
32
33 --  This package is used by the GNAT driver to invokes the GNAT tools with the
34 --  switches corresponding to the VMS qualifier and by the Project Manager to
35 --  convert VMS qualifiers in project files to their corresponding switch
36 --  values.
37
38 --  This package is also an input to the tool that generates the VMS GNAT
39 --  help information automatically.
40
41 --  NOTE: the format of this package must follow the following rules, so that
42 --        the VMS GNAT help tool works properly:
43
44 --    - Each command zone (where the eventual qualifiers are declared must
45 --      begin with a boxed comment of the form:
46
47 --      ---------------------------------
48 --      -- Switches for GNAT <COMMAND> --
49 --      ---------------------------------
50
51 --      where <COMMAND> is the name of a GNAT command in capital letters, for
52 --      example BIND, COMPILE, XREF, ...
53
54 --    - each qualifier declaration must be followed either by
55 --         - a comment starting with "--  NODOC", to indicate that there is
56 --           no documentation for this qualifier, or
57 --         - a contiguous sequence of comments that constitute the
58 --           documentation of the qualifier.
59
60 --    - each command zone ends with the declaration of the contant array
61 --      for the command, of the form:
62
63 --      <Command>__Switches : aliased constant Switches :=
64
65 package VMS_Data is
66
67    ----------------
68    -- QUALIFIERS --
69    ----------------
70
71    --  The syntax of a qualifier delaration is as follows:
72
73    --    SWITCH_STRING ::= "/ command-qualifier-name TRANSLATION"
74
75    --    TRANSLATION ::=
76    --      DIRECT_TRANSLATION
77    --    | DIRECTORIES_TRANSLATION
78    --    | FILE_TRANSLATION
79    --    | NO_SPACE_FILE_TRANSL
80    --    | NUMERIC_TRANSLATION
81    --    | STRING_TRANSLATION
82    --    | OPTIONS_TRANSLATION
83    --    | COMMANDS_TRANSLATION
84    --    | ALPHANUMPLUS_TRANSLATION
85    --    | OTHER_TRANSLATION
86
87    --    DIRECT_TRANSLATION       ::= space UNIX_SWITCHES
88    --    DIRECTORIES_TRANSLATION  ::= =* UNIX_SWITCH *
89    --    DIRECTORY_TRANSLATION    ::= =% UNIX_SWITCH %
90    --    FILE_TRANSLATION         ::= =@ UNIX_SWITCH @
91    --    NO_SPACE_FILE_TRANSL     ::= =< UNIX_SWITCH >
92    --    NUMERIC_TRANSLATION      ::= =# UNIX_SWITCH # | # number #
93    --    STRING_TRANSLATION       ::= =" UNIX_SWITCH "
94    --    OPTIONS_TRANSLATION      ::= =OPTION {space OPTION}
95    --    COMMANDS_TRANSLATION     ::= =? ARGS space command-name
96    --    ALPHANUMPLUS_TRANSLATION ::= =| UNIX_SWITCH |
97
98    --    UNIX_SWITCHES ::= UNIX_SWITCH {, UNIX_SWITCH}
99
100    --    UNIX_SWITCH ::= unix-switch-string | !unix-switch-string | `string'
101
102    --    OPTION ::= option-name space UNIX_SWITCHES
103
104    --    ARGS ::= -cargs | -bargs | -largs
105
106    --  Here command-qual is the name of the switch recognized by the GNATCmd.
107    --  This is always given in upper case in the templates, although in the
108    --  actual commands, either upper or lower case is allowed.
109
110    --  The unix-switch-string always starts with a minus, and has no commas
111    --  or spaces in it. Case is significant in the unix switch string. If a
112    --  unix switch string is preceded by the not sign (!) it means that the
113    --  effect of the corresponding command qualifer is to remove any previous
114    --  occurrence of the given switch in the command line.
115
116    --  The DIRECTORIES_TRANSLATION format is used where a list of directories
117    --  is given. This possible corresponding formats recognized by GNATCmd are
118    --  as shown by the following example for the case of PATH
119
120    --    PATH=direc
121    --    PATH=(direc,direc,direc,direc)
122
123    --  When more than one directory is present for the DIRECTORIES case, then
124    --  multiple instances of the corresponding unix switch are generated,
125    --  with the file name being substituted for the occurrence of *.
126
127    --  The FILE_TRANSLATION format is similar except that only a single
128    --  file is allowed, not a list of files, and only one unix switch is
129    --  generated as a result.
130
131    --  the NO_SPACE_FILE_TRANSL is similar to FILE_TRANSLATION, except that
132    --  no space is inserted between the switch and the file name.
133
134    --  The NUMERIC_TRANSLATION format is similar to the FILE_TRANSLATION case
135    --  except that the parameter is a decimal integer in the range 0 to 999.
136
137    --  For the OPTIONS_TRANSLATION case, GNATCmd similarly permits one or
138    --  more options to appear (although only in some cases does the use of
139    --  multiple options make logical sense). For example, taking the
140    --  case of ERRORS for GCC, the following are all allowed:
141
142    --    /ERRORS=BRIEF
143    --    /ERRORS=(FULL,VERBOSE)
144    --    /ERRORS=(BRIEF IMMEDIATE)
145
146    --  If no option is provided (e.g. just /ERRORS is written), then the
147    --  first option in the list is the default option. For /ERRORS this
148    --  is NORMAL, so /ERRORS with no option is equivalent to /ERRORS=NORMAL.
149
150    --  The COMMANDS_TRANSLATION case is only used for gnatmake, to correspond
151    --  to the use of -cargs, -bargs and -largs (the ARGS string as indicated
152    --  is one of these three possibilities). The name given by COMMAND is the
153    --  corresponding command name to be used to interprete the switches to be
154    --  passed on. Switches of this type set modes, e.g. /COMPILER_QUALIFIERS
155    --  sets the mode so that all subsequent switches, up to another switch
156    --  with COMMANDS_TRANSLATION apply to the corresponding commands issued
157    --  by the make utility. For example
158
159    --    /COMPILER_QUALIFIERS /LIST /BINDER_QUALIFIERS /MAIN
160    --    /COMPILER_QUALIFIERS /NOLIST /COMPILE_CHECKS=SYNTAX
161
162    --  Clearly these switches must come at the end of the list of switches
163    --  since all subsequent switches apply to an issued command.
164
165    --  For the DIRECT_TRANSLATION case, an implicit additional qualifier
166    --  declaration is created by prepending NO to the name of the qualifer,
167    --  and then inverting the sense of the UNIX_SWITCHES string. For example,
168    --  given the qualifier definition:
169
170    --     "/LIST -gnatl"
171
172    --  An implicit qualifier definition is created:
173
174    --     "/NOLIST !-gnatl"
175
176    --  In the case where, a ! is already present, inverting the sense of the
177    --  switch means removing it.
178
179    subtype S is String;
180    --  A synonym to shorten the table
181
182    type String_Ptr is access constant String;
183    --  String pointer type used throughout
184
185    type Switches is array (Natural range <>) of String_Ptr;
186    --  Type used for array of swtiches
187
188    type Switches_Ptr is access constant Switches;
189
190    ----------------------------
191    -- Switches for GNAT BIND --
192    ----------------------------
193
194
195    S_Bind_Bind    : aliased constant S := "/BIND_FILE="                    &
196                                             "ADA "                         &
197                                                "-A "                       &
198                                             "C "                           &
199                                                "-C";
200    --        /BIND_FILE[=bind-file-option]
201    --
202    --   Specifies the language of the binder generated file.
203    --
204    --        ADA (D)    Binder file is Ada.
205    --
206    --        C          Binder file is 'C'.
207
208    S_Bind_Build   : aliased constant S := "/BUILD_LIBRARY=|"               &
209                                             "-L|";
210    --        /BUILD_LIBRARY=xxx
211    --
212    --        Binds the units for library building. In this case the adainit and
213    --        adafinal procedures are rename to xxxinit and xxxfinal. Implies
214    --        /NOMAIN.
215
216    S_Bind_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
217                                             "!-I-";
218    --        /CURRENT_DIRECTORY (D)
219    --        /NOCURRENT_DIRECTORY
220    --
221    --        Look for source, library or object files in the default directory.
222
223    S_Bind_Debug   : aliased constant S := "/DEBUG="                        &
224                                             "TRACEBACK "                   &
225                                                "-g2 "                      &
226                                             "ALL "                         &
227                                                "-g3 "                      &
228                                             "NONE "                        &
229                                                "-g0 "                      &
230                                             "SYMBOLS "                     &
231                                                "-g1 "                      &
232                                             "NOSYMBOLS "                   &
233                                                "!-g1 "                     &
234                                             "LINK "                        &
235                                                "-g3 "                      &
236                                             "NOTRACEBACK "                 &
237                                                "!-g2";
238    --        /DEBUG[=debug-level]
239    --        /NODEBUG
240    --
241    --    Specify level of debugging information generated for the elaboration
242    --    routine.  See corresponding qualifier for GNAT COMPILE.
243
244    S_Bind_DebugX  : aliased constant S := "/NODEBUG "                      &
245                                             "!-g";
246    --  NODOC  (see /DEBUG)
247
248    S_Bind_Elab    : aliased constant S := "/ELABORATION_DEPENDENCIES "     &
249                                             "-e";
250    --        /ELABORATION_DEPENDENCIES
251    --        /NOELABORATION_DEPENDENCIES (D)
252    --
253    --   Output complete list of elaboration-order dependencies, showing the
254    --   reason for each dependency. This output can be rather extensive but may
255    --   be useful in diagnosing problems with elaboration order. The output is
256    --   written to SYS$OUTPUT.
257
258    S_Bind_Error   : aliased constant S := "/ERROR_LIMIT=#"                 &
259                                             "-m#";
260    --        /ERROR_LIMIT=nnn
261    --
262    --   Limit number of detected errors to nnn (1-999999).
263
264    S_Bind_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
265                                             "-X" & '"';
266    --       /EXTERNAL_REFERENCE="name=val"
267    --
268    --   Specifies an external reference to the project manager. Useful only if
269    --   /PROJECT_FILE is used.
270    --
271    --   Example:
272    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
273
274    S_Bind_Force   : aliased constant S := "/FORCE_ELAB_FLAGS "             &
275                                             "-F";
276    --        /NOFORCE_ELAB_FLAGS (D)
277    --        /FORCE_ELAB_FLAGS
278    --
279    --    Force checking of elaboration Flags
280
281    S_Bind_Help    : aliased constant S := "/HELP "                         &
282                                             "-h";
283    --        /HELP
284    --
285    --   Output usage information.
286
287    S_Bind_Init    : aliased constant S := "/INITIALIZE_SCALARS="           &
288                                             "INVALID "                     &
289                                                "-Sin "                     &
290                                             "LOW "                         &
291                                                "-Slo "                     &
292                                             "HIGH "                        &
293                                                "-Shi";
294    --        /INITIALIZE_SCALARS[=scalar-option]
295    --
296    --   Indicate how uninitialized scalar values for which a pragma
297    --   Initialize_Scalars applies should be initialized.
298    --   scalar-option may be one of the following:
299    --
300    --      INVALID (D)  Initialize with an invalid value.
301    --      LOW          Initialize with the lowest valid value of the subtype.
302    --      HIGH         Initialize with the highest valid value of the subtype.
303
304    S_Bind_Library : aliased constant S := "/LIBRARY_SEARCH=*"              &
305                                             "-aO*";
306    --        /LIBRARY_SEARCH=(direc[,...])
307    --
308    --        When looking for library and object files look also in directories
309    --        specified.
310
311    S_Bind_Linker  : aliased constant S := "/LINKER_OPTION_LIST "           &
312                                             "-K";
313    --        /NOLINKER_OPTION_LIST (D)
314    --        /LINKER_OPTION_LIST
315    --
316    --        Output linker options to SYS$OUTPUT.  Includes library search
317    --        paths, contents of pragmas Ident and Linker_Options, and
318    --        libraries added by GNAT BIND.
319
320    S_Bind_Main    : aliased constant S := "/MAIN "                         &
321                                             "!-n";
322    --        /MAIN (D)
323    --
324    --   The main program is in Ada.
325    --
326    --        /NOMAIN
327    --
328    --   The main program is not in Ada.
329
330    S_Bind_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
331                                             "DEFAULT "                     &
332                                                "-vP0 "                     &
333                                             "MEDIUM "                      &
334                                                "-vP1 "                     &
335                                             "HIGH "                        &
336                                                "-vP2";
337    --        /MESSAGES_PROJECT_FILE[=messages-option]
338    --
339    --   Specifies the "verbosity" of the parsing of project files.
340    --   messages-option may be one of the following:
341    --
342    --      DEFAULT (D)  No messages are output if there is no error or warning.
343    --
344    --      MEDIUM       A small number of messages are output.
345    --
346    --      HIGH         A great number of messages are output, most of them not
347    --                   being useful for the user.
348
349    S_Bind_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
350                                             "-nostdinc";
351    --        /NOSTD_INCLUDES
352    --
353    --    Do not look for sources the in the system default directory.
354
355    S_Bind_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
356                                             "-nostdlib";
357    --        /NOSTD_LIBRARIES
358    --
359    --    Do not look for library files in the system default directory.
360
361    S_Bind_No_Time : aliased constant S := "/NO_TIME_STAMP_CHECK "          &
362                                             "-t";
363    --  NODOC (see /TIME_STAMP_CHECK)
364
365    S_Bind_Object  : aliased constant S := "/OBJECT_LIST "                  &
366                                             "-O";
367    --        /NOOBJECT_LIST (D)
368    --        /OBJECT_LIST
369    --
370    --    Output full names of all the object files that must be linker to
371    --    provide the Ada component of the program. The output is written to
372    --    SYS$OUTPUT.
373
374    S_Bind_Order   : aliased constant S := "/ORDER_OF_ELABORATION "         &
375                                             "-l";
376    --        /NOORDER_OF_ELABORATION (D)
377    --        /ORDER_OF_ELABORATION
378    --
379    --   Output chosen elaboration order. The output is written to SYS$OUTPUT.
380
381    S_Bind_Output  : aliased constant S := "/OUTPUT=@"                      &
382                                             "-o@";
383    --        /OUTPUT=filename
384    --
385    --   File name to use for the program containing the elaboration code.
386
387    S_Bind_OutputX : aliased constant S := "/NOOUTPUT "                     &
388                                             "-c";
389    --        /NOOUTPUT
390    --
391    --   Check only. Do not generate the binder output file.
392    --
393    --   In this mode the binder performs all error checks but does not generate
394    --   an output file.
395
396    S_Bind_Pess    : aliased constant S := "/PESSIMISTIC_ELABORATION "      &
397                                             "-p";
398    --        /PESSIMISTIC_ELABORATION
399    --
400    --   Causes the binder to choose a "pessimistic" elaboration order, i.e. one
401    --   which is most likely to cause elaboration order problems. This can be
402    --   useful in testing portable code to make sure that there are no missing
403    --   elaborate pragmas.
404
405    S_Bind_Project : aliased constant S := "/PROJECT_FILE=<"                &
406                                             "-P>";
407    --        /PROJECT_FILE=filename
408    --
409    --   Specifies the main project file to be used. The project files rooted
410    --   at the main project file will be parsed before the invocation of the
411    --   binder. The source and object directories to be searched will be
412    --   communicated to the binder through logical names ADA_PRJ_INCLUDE_FILE
413    --   and ADA_PRJ_OBJECTS_FILE.
414
415    S_Bind_Read    : aliased constant S := "/READ_SOURCES="                 &
416                                             "ALL "                         &
417                                                "-s "                       &
418                                             "NONE "                        &
419                                                "-x "                       &
420                                             "AVAILABLE "                   &
421                                                "!-x,!-s";
422    --        /READ_SOURCES[=(keyword[,...])]
423    --        /NOREAD_SOURCES
424    --
425    --   The following keyword are accepted:
426    --
427    --      ALL (D)      Require source files to be present. In this mode, the
428    --                   binder insists on being able to locate all source files
429    --                   that are referenced and checks their consistency.  In
430    --                   normal mode, if a source file cannot be located it is
431    --                   simply ignored. If you specify the ALL keyword, a
432    --                   missing source file is an error.
433    --
434    --      NONE         Exclude source files. In this mode, the binder only
435    --                   checks that ALI files are consistent with one another.
436    --                   source files are not accessed.  The binder runs faster
437    --                   in this mode, and there is still a guarantee that the
438    --                   resulting program is self-consistent.
439    --
440    --                   If a source file has been edited since it was last
441    --                   compiled and you specify the NONE keyword, the binder
442    --                   will not detect that the object file is out of date
443    --                   with the source file.
444    --
445    --                   This is the same as specifying /NOREAD_SOURCES.
446    --
447    --      AVAILABLE    Check that object files are consistent with one
448    --                   another and are consistent with any source files that
449    --                   can be located.
450
451    S_Bind_ReadX   : aliased constant S := "/NOREAD_SOURCES "               &
452                                             "-x";
453    --  NODOC (see /READ_SOURCES)
454
455    S_Bind_Rename  : aliased constant S := "/RENAME_MAIN=<"                 &
456                                             "-M>";
457    --        /RENAME_MAIN=xxx
458    --
459    --   Renames the generated main program from main to xxx.
460    --   This is useful in the case of some cross-building environments, where
461    --   the actual main program is separate from the one generated
462    --   by GNAT BIND.
463
464    S_Bind_Report  : aliased constant S := "/REPORT_ERRORS="                &
465                                             "VERBOSE "                     &
466                                                "-v "                       &
467                                             "BRIEF "                       &
468                                                "-b "                       &
469                                             "DEFAULT "                     &
470                                                "!-b,!-v";
471    --        /REPORT_ERRORS[=(keyword[,...])]
472    --           VERBOSE (D)
473    --           BRIEF
474    --           DEFAULT
475    --        /NOREPORT_ERRORS
476    --
477    --   With the DEFAULT keyword (which is not the default when the binder is
478    --   run from GNAT BIND) or the /NOREPORT_ERRORS qualifier, brief error
479    --   messages are generated to SYS$ERROR.  If the VERBOSE keyword is
480    --   present, a header is written to SYS$OUTPUT and any error messages are
481    --   directed to SYS$OUTPUT  All that is written to SYS$ERROR is a brief
482    --   summary message.
483    --
484    --   If the BRIEF keyword is specified, the binder will generate brief error
485    --   messages to SYS$ERROR even if verbose mode is specified. This is
486    --   relevant only when used together with the VERBOSE keyword or /VERBOSE
487    --   qualifier.
488
489    S_Bind_ReportX : aliased constant S := "/NOREPORT_ERRORS "              &
490                                             "!-b,!-v";
491    --  NODOC (see /REPORT_ERRORS)
492
493
494    S_Bind_Restr   : aliased constant S := "/RESTRICTION_LIST "             &
495                                             "-r";
496    --        /NORESTRICTION_LIST (D)
497    --        /RESTRICTION_LIST
498    --
499    --   Generate list of pragma Rerstrictions that could be applied to the
500    --   current unit. This is useful for code audit purposes, and also may be
501    --   used to improve code generation in some cases.
502
503    S_Bind_RTS     : aliased constant S := "/RUNTIME_SYSTEM=|"              &
504                                             "--RTS=|";
505    --      /RUNTIME_SYSTEM=xxx
506    --
507    --    Binds against an alternate runtime system named xxx or RTS-xxx.
508
509    S_Bind_Search  : aliased constant S := "/SEARCH=*"                      &
510                                             "-I*";
511    --        /SEARCH=(directory[,...])
512    --
513    --   When looking for source or object files also look in directories
514    --   specified.
515    --
516    --   This is the same as specifying both /LIBRARY_SEARCH and /SOURCE_SEARCH
517    --   for a directory.
518
519    S_Bind_Shared  : aliased constant S := "/SHARED "                       &
520                                             "-shared";
521    --        /SHARED (D)
522    --        /NOSHARED
523    --
524    --    Link against a shared GNAT run time when available.
525
526    S_Bind_Slice   : aliased constant S := "/TIME_SLICE=#"                  &
527                                             "-T#";
528    --        /TIME_SLICE=nnn
529    --
530    --   Set the time slice value to nnn milliseconds. A value of zero means no
531    --   time slicing and also indicates to the tasking run time to match as
532    --   close as possible to the annex D requirements of the RM.
533
534    S_Bind_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
535                                             "-aI*";
536    --        /SOURCE_SEARCH=(directory[,...])
537    --
538    --    When looking for source files also look in directories specified.
539
540    S_Bind_Store   : aliased constant S := "/STORE_TRACEBACKS "             &
541                                             "-E";
542    --        /STORE_TRACEBACKS (D)
543    --        /NOSTORE_TRACEBACKS
544    --
545    --   Store tracebacks in exception occurrences.
546    --   This is the default on VMS, with the zero-cost exception mechanism.
547    --   This qualifier has no impact, except when using the setjmp/longjmp
548    --   exception mechanism, with the GNAT COMPILE qualifier /LONGJMP_SETJMP.
549
550    S_Bind_Time    : aliased constant S := "/TIME_STAMP_CHECK "             &
551                                             "!-t";
552    --      /TIME_STAMP_CHECK (D)
553    --
554    --   Time stamp errors will be treated as errors.
555    --
556    --      /NOTIME_STAMP_CHECK
557    --
558    --   Ignore time stamp errors. Any time stamp error messages are treated as
559    --   warning messages. This switch essentially disconnects the normal
560    --   consistency checking, and the resulting program may have undefined
561    --   semantics if inconsistent units are present.
562    --
563    --   This means that /NOTIME_STAMP_CHECK should be used only in unusual
564    --   situations, with extreme care.
565
566    S_Bind_Verbose : aliased constant S := "/VERBOSE "                      &
567                                             "-v";
568    --        /VERBOSE (D)
569    --        /NOVERBOSE
570    --
571    --   Equivalent to /REPORT_ERRORS=VERBOSE.
572
573    S_Bind_Warn    : aliased constant S := "/WARNINGS="                     &
574                                             "NORMAL "                      &
575                                                "!-ws,!-we "                &
576                                             "SUPPRESS "                    &
577                                                "-ws "                      &
578                                             "ERROR "                       &
579                                                "-we";
580    --      /WARNINGS[=(keyword[,...])]
581    --      /NOWARNINGS
582    --
583    --   The following keywords are supported:
584    --
585    --        NORMAL (D)    Print warning messages and treat them as warning.
586    --        SUPPRESS      Suppress all warning messages (same as /NOWARNINGS).
587    --        ERROR         Treat any warning messages as fatal errors
588
589    S_Bind_WarnX   : aliased constant S := "/NOWARNINGS "                   &
590                                             "-ws";
591    --  NODOC (see /WARNINGS)
592
593    S_Bind_Zero    : aliased constant S := "/ZERO_MAIN "                    &
594                                             "-z";
595    --        /NOZERO_MAIN (D)
596    --        /ZERO_MAIN
597    --
598    --   Normally the binder checks that the unit name given on the command line
599    --   corresponds to a suitable main subprogram. When /ZERO_MAIN is used,
600    --   a list of ALI files can be given, and the execution of the program
601    --   consists of elaboration of these units in an appropriate order.
602
603    Bind_Switches : aliased constant Switches :=
604      (S_Bind_Bind    'Access,
605       S_Bind_Build   'Access,
606       S_Bind_Current 'Access,
607       S_Bind_Debug   'Access,
608       S_Bind_DebugX  'Access,
609       S_Bind_Elab    'Access,
610       S_Bind_Error   'Access,
611       S_Bind_Ext     'Access,
612       S_Bind_Force   'Access,
613       S_Bind_Help    'Access,
614       S_Bind_Init    'Access,
615       S_Bind_Library 'Access,
616       S_Bind_Linker  'Access,
617       S_Bind_Main    'Access,
618       S_Bind_Mess    'Access,
619       S_Bind_Nostinc 'Access,
620       S_Bind_Nostlib 'Access,
621       S_Bind_No_Time 'Access,
622       S_Bind_Object  'Access,
623       S_Bind_Order   'Access,
624       S_Bind_Output  'Access,
625       S_Bind_OutputX 'Access,
626       S_Bind_Pess    'Access,
627       S_Bind_Project 'Access,
628       S_Bind_Read    'Access,
629       S_Bind_ReadX   'Access,
630       S_Bind_Rename  'Access,
631       S_Bind_Report  'Access,
632       S_Bind_ReportX 'Access,
633       S_Bind_Restr   'Access,
634       S_Bind_RTS     'Access,
635       S_Bind_Search  'Access,
636       S_Bind_Shared  'Access,
637       S_Bind_Slice   'Access,
638       S_Bind_Source  'Access,
639       S_Bind_Store   'Access,
640       S_Bind_Time    'Access,
641       S_Bind_Verbose 'Access,
642       S_Bind_Warn    'Access,
643       S_Bind_WarnX   'Access,
644       S_Bind_Zero    'Access);
645
646    ----------------------------
647    -- Switches for GNAT CHOP --
648    ----------------------------
649
650    S_Chop_Comp   : aliased constant S := "/COMPILATION "                   &
651                                             "-c";
652    --        /NOCOMPILATION (D)
653    --        /COMPILATION
654    --
655    --   Compilation mode, handle configuration pragmas strictly according to
656    --   RM rules.
657
658    S_Chop_File   : aliased constant S := "/FILE_NAME_MAX_LENGTH=#"         &
659                                             "-k#";
660    --        /FILE_NAME_MAX_LENGTH[=nnn]
661    --
662    --   Limit generated file names to NNN (default of 8) characters. This is
663    --   useful if the resulting set of files is required to be interoperable
664    --   with systems like MS-DOS which limit the length of file names.
665
666    S_Chop_Help   : aliased constant S := "/HELP "                          &
667                                             "-h";
668    --        /NOHELP (D)
669    --        /HELP
670    --
671    --   Print usage information.
672
673    S_Chop_Over   : aliased constant S := "/OVERWRITE "                     &
674                                             "-w";
675    --        /NOOVERWRITE (D)
676    --        /OVERWRITE
677    --
678    --   Overwrite existing file names. Normally GNAT CHOP regards it as a
679    --   fatal error situation if there is already a file with the same name as
680    --   a file it would otherwise output. The /OVERWRITE qualifier bypasses
681    --   this check, and any such existing files will be silently overwritten.
682
683    S_Chop_Pres   : aliased constant S := "/PRESERVE "                      &
684                                             "-p";
685    --        /NOPRESERVE (D)
686    --        /PRESERVE
687    --
688    --   Causes the file modification time stamp of the input file to be
689    --   preserved and used for the time stamp of the output file(s). This may
690    --   be useful for preserving coherency of time stamps in an enviroment
691    --   where gnatchop is used as part of a standard build process.
692
693    S_Chop_Quiet  : aliased constant S := "/QUIET "                         &
694                                             "-q";
695    --        /NOQUIET (D)
696    --        /QUIET
697    --
698    --   Work quietly, only output warnings and errors.
699
700    S_Chop_Ref    : aliased constant S := "/REFERENCE "                     &
701                                             "-r";
702    --        /NOREFERENCE (D)
703    --        /REFERENCE
704    --
705    --   Generate "Source_Reference" pragmas. Use this qualifier if the output
706    --   files are regarded as temporary and development is to be done in terms
707    --   of the original unchopped file. The /REFERENCE qualifier causes
708    --   "Source_Reference" pragmas to be inserted into each of the generated
709    --   files to refers back to the original file name and line number.  The
710    --   result is that all error messages refer back to the original unchopped
711    --   file.
712    --
713    --   In addition, the debugging information placed into the object file
714    --   (when the /DEBUG qualifier of GNAT COMPILE or GNAT MAKE is specified)
715    --   also refers back to this original file so that tools like profilers
716    --   and debuggers will give information in terms of the original unchopped
717    --   file.
718
719    S_Chop_Verb   : aliased constant S := "/VERBOSE "                       &
720                                             "-v";
721    --        /NOVERBOSE (D)
722    --        /VERBOSE
723    --
724    --   The version number and copyright notice are output, as well as exact
725    --   copies of the gnat1 commands spawned to obtain the chop control
726    --   information.
727
728    Chop_Switches : aliased constant Switches :=
729      (S_Chop_Comp   'Access,
730       S_Chop_File   'Access,
731       S_Chop_Help   'Access,
732       S_Chop_Over   'Access,
733       S_Chop_Pres   'Access,
734       S_Chop_Quiet  'Access,
735       S_Chop_Ref    'Access,
736       S_Chop_Verb   'Access);
737
738    -----------------------------
739    -- Switches for GNAT CLEAN --
740    -----------------------------
741
742    S_Clean_Compil  : aliased constant S := "/COMPILER_FILES_ONLY "         &
743                                              "-c";
744    --        /NOCOMPILER_FILES_ONLY (D)
745    --        /COMPILER_FILES_ONLY
746    --
747    --   Only attempt to delete the files produced by the compiler, not those
748    --   produced by the binder or the linker. The files that are not to be
749    --   deleted are library files, interface copy files, binder generated files
750    --   and executable files.
751
752    S_Clean_Current : aliased constant S := "/CURRENT_DIRECTORY "           &
753                                             "!-I-";
754    --        /CURRENT_DIRECTORY (D)
755    --
756    --   Look for ALI or object files in the directory where GNAT CLEAN was
757    --   invoked.
758    --
759    --        /NOCURRENT_DIRECTORY
760    --
761    --   Do not look for ALI or object files in the directory where GNAT CLEAN
762    --   was invoked.
763
764    S_Clean_Delete  : aliased constant S := "/DELETE "                      &
765                                             "!-n";
766    --        /DELETE (D)
767    --
768    --   Delete the files that are not read-only.
769    --
770    --        /NODELETE
771    --
772    --   Informative-only mode. Do not delete any files. Output the list of the
773    --   files that would have been deleted if this switch was not specified.
774
775    S_Clean_Dirobj  : aliased constant S := "/DIRECTORY_OBJECTS=@"          &
776                                             "-D@";
777    --        /DIRECTORY_OBJECTS=<file>
778    --
779    --   Find the object files and .ALI files in <file>.
780    --   This qualifier is not compatible with /PROJECT_FILE.
781
782    S_Clean_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'    &
783                                             "-X" & '"';
784    --        /EXTERNAL_REFERENCE="name=val"
785    --
786    --   Specifies an external reference to the project manager. Useful only if
787    --   /PROJECT_FILE is used.
788    --
789    --   Example:
790    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
791
792    S_Clean_Full    : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES " &
793                                             "-F";
794    --        /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
795    --        /FULL_PATH_IN_BRIEF_MESSAGES
796    --
797    --   When using project files, if some errors or warnings are detected
798    --   during parsing and verbose mode is not in effect (no use of qualifier
799    --   /VERBOSE), then error lines start with the full path name of the
800    --   project file, rather than its simple file name.
801
802    S_Clean_Help    : aliased constant S := "/HELP "                        &
803                                             "-h";
804    --        /NOHELP (D)
805    --        /HELP
806    --
807    --   Output a message explaining the usage of gnatclean.
808
809    S_Clean_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="       &
810                                             "DEFAULT "                     &
811                                                "-vP0 "                     &
812                                             "MEDIUM "                      &
813                                                "-vP1 "                     &
814                                             "HIGH "                        &
815                                                "-vP2";
816    --        /MESSAGES_PROJECT_FILE[=messages-option]
817    --
818    --   Specifies the "verbosity" of the parsing of project files.
819    --   messages-option may be one of the following:
820    --
821    --      DEFAULT (D) No messages are output if there is no error or warning.
822    --
823    --      MEDIUM      A small number of messages are output.
824    --
825    --      HIGH        A great number of messages are output, most of them not
826    --                  being useful for the user.
827
828
829    S_Clean_Object  : aliased constant S := "/OBJECT_SEARCH=*"              &
830                                             "-aO*";
831    --        /OBJECT_SEARCH=(directory,...)
832    --
833    --   When searching for library and object files, look in the specified
834    --   directories. The order in which library files are searched is the same
835    --   as for MAKE.
836
837    S_Clean_Project : aliased constant S := "/PROJECT_FILE=<"               &
838                                             "-P>";
839    --        /PROJECT_FILE=filename
840    --
841    --   Specifies the main project file to be used. The project files rooted
842    --   at the main project file will be parsed before the invocation of the
843    --   compiler. The source and object directories to be searched will be
844    --   communicated to gnatclean through logical names ADA_PRJ_INCLUDE_FILE
845    --   and ADA_PRJ_OBJECTS_FILE.
846
847    S_Clean_Quiet   : aliased constant S := "/QUIET "                       &
848                                             "-q";
849    --        /NOQUIET (D)
850    --        /QUIET
851    --
852    --   Quiet output. If there are no error, do not ouuput anything, except in
853    --   verbose mode (qualifier /VERBOSE) or in informative-only mode
854    --  (qualifier /NODELETE).
855
856    S_Clean_Recurs  : aliased constant S := "/RECURSIVE "                   &
857                                             "-r";
858    --        /NORECURSIVE (D)
859    --        /RECURSIVE
860    --
861    --   When a project file is specified (using switch -P), clean all imported
862    --   and extended project files, recursively. If this qualifier is not
863    --   specified, only the files related to the main project file are to be
864    --   deleted. This qualifier has no effect if no project file is specified.
865
866    S_Clean_Search  : aliased constant S := "/SEARCH=*"                     &
867                                             "-I*";
868    --        /SEARCH=(directory,...)
869    --
870    --   Equivalent to /OBJECT_SEARCH=(directory,...).
871
872    S_Clean_Verbose : aliased constant S := "/VERBOSE "                     &
873                                             "-v";
874    --        /NOVERBOSE (D)
875    --        /VERBOSE
876    --
877    --   Verbose mode.
878
879    Clean_Switches : aliased constant Switches :=
880      (S_Clean_Compil 'Access,
881       S_Clean_Current'Access,
882       S_Clean_Delete 'Access,
883       S_Clean_Dirobj 'Access,
884       S_Clean_Ext    'Access,
885       S_Clean_Full   'Access,
886       S_Clean_Help   'Access,
887       S_Clean_Mess   'Access,
888       S_Clean_Object 'Access,
889       S_Clean_Project'Access,
890       S_Clean_Quiet  'Access,
891       S_Clean_Recurs 'Access,
892       S_Clean_Search 'Access,
893       S_Clean_Verbose'Access);
894
895    -------------------------------
896    -- Switches for GNAT COMPILE --
897    -------------------------------
898
899    S_GCC_Ada_83  : aliased constant S := "/83 "                            &
900                                              "-gnat83";
901    --        /NO83 (D)
902    --        /83
903    --
904    --   Although GNAT is primarily an Ada 95 compiler, it accepts this
905    --   qualifier to specify that an Ada 83 mode program is being compiled. If
906    --   you specify this qualifier, GNAT rejects Ada 95 extensions and applies
907    --   Ada 83 semantics. It is not possible to guarantee this qualifier does
908    --   a perfect job; for example, some subtle tests of pathological cases,
909    --   such as are found in ACVC tests that have been removed from the ACVC
910    --   suite for Ada 95, may not compile correctly. However for practical
911    --   purposes, using this qualifier should ensure that programs that
912    --   compile correctly under the /83 qualifier can be ported reasonably
913    --   easily to an Ada 83 compiler. This is the main use of this qualifier.
914    --
915    --   With few exceptions (most notably the need to use "<>" on
916    --   unconstrained generic formal parameters), it is not necessary to use
917    --   this qualifier switch when compiling Ada 83 programs, because, with
918    --   rare and obscure exceptions, Ada 95 is upwardly compatible with Ada
919    --   83. This means that a correct Ada 83 program is usually also a correct
920    --   Ada 95 program.
921
922    S_GCC_Ada_95  : aliased constant S := "/95 "                            &
923                                              "!-gnat83";
924    --        /95 (D)
925    --
926    --   Same as /NO83.
927    --
928    --        /NO95
929    --
930    --   Same as /83.
931
932    S_GCC_Asm     : aliased constant S := "/ASM "                           &
933                                              "-S,!-c";
934    --        /NOASM (D)
935    --        /ASM
936    --
937    --   Use to cause the assembler source file to be generated, using S as the
938    --   filetype, instead of the object file.  This may be useful if you need
939    --   to examine the generated assembly code.
940
941    S_GCC_Checks  : aliased constant S := "/CHECKS="                        &
942                                              "FULL "                       &
943                                                 "-gnato,!-gnatE,!-gnatp "  &
944                                              "OVERFLOW "                   &
945                                                 "-gnato "                  &
946                                              "ELABORATION "                &
947                                                 "-gnatE "                  &
948                                              "ASSERTIONS "                 &
949                                                 "-gnata "                  &
950                                              "DEFAULT "                    &
951                                                 "!-gnato,!-gnatp "         &
952                                              "STACK "                      &
953                                                 "-fstack-check "           &
954                                              "SUPPRESS_ALL "               &
955                                                 "-gnatp";
956    --        /NOCHECKS
957    --        /CHECKS[=(keyword[,...])]
958    --
959    --   If you compile with the default options, GNAT will insert many runtime
960    --   checks into the compiled code, including code that performs range
961    --   checking against constraints, but not arithmetic overflow checking for
962    --   integer operations (including division by zero) or checks for access
963    --   before elaboration on subprogram calls.  All other runtime checks, as
964    --   required by the Ada 95 Reference Manual, are generated by default.
965    --
966    --   You may specify one or more of the following keywords to the /CHECKS
967    --   qualifier to modify this behavior:
968    --
969    --     DEFAULT       The behavior described above. This is the default
970    --                   if the /CHECKS qualifier is not present on the
971    --                   command line. Same as /NOCHECKS.
972    --
973    --     OVERFLOW      Enables overflow checking for integer operations and
974    --                   checks for access before elaboration on subprogram
975    --                   calls. This causes GNAT to generate slower and larger
976    --                   executable programs by adding code to check for both
977    --                   overflow and division by zero (resulting in raising
978    --                   "Constraint_Error" as required by Ada semantics).
979    --                   Similarly, GNAT does not generate elaboration check
980    --                   by default, and you must specify this keyword to
981    --                   enable them.
982    --
983    --                   Note that this keyword does not affect the code
984    --                   generated for any floating-point operations; it
985    --                   applies only to integer operations. For floating-point,
986    --                   GNAT has the "Machine_Overflows" attribute set to
987    --                   "False" and the normal mode of operation is to generate
988    --                   IEEE NaN and infinite values on overflow or invalid
989    --                   operations (such as dividing 0.0 by 0.0).
990    --
991    --     ELABORATION   Enables dynamic checks for access-before-elaboration
992    --                   on subprogram calls and generic instantiations.
993    --
994    --     ASSERTIONS    The pragmas "Assert" and "Debug" normally have no
995    --                   effect and are ignored. This keyword causes "Assert"
996    --                   and "Debug" pragmas to be activated.
997    --
998    --     SUPPRESS_ALL  Suppress all runtime checks as though you have "pragma
999    --                   Suppress (all_checks)" in your source. Use this switch
1000    --                   to improve the performance of the code at the expense
1001    --                   of safety in the presence of invalid data or program
1002    --                   bugs.
1003    --
1004    --     DEFAULT       Suppress the effect of any option OVERFLOW or
1005    --                   ASSERTIONS.
1006    --
1007    --     FULL (D)      Similar to OVERFLOW, but suppress the effect of any
1008    --                   option ELABORATION or SUPPRESS_ALL.
1009    --
1010    --   These keywords only control the default setting of the checks.  You
1011    --   may modify them using either "Suppress" (to remove checks) or
1012    --   "Unsuppress" (to add back suppressed checks) pragmas in your program
1013    --   source.
1014
1015    S_GCC_ChecksX : aliased constant S := "/NOCHECKS "                      &
1016                                              "-gnatp,!-gnato,!-gnatE";
1017    --  NODOC (see /CHECKS)
1018
1019    S_GCC_Compres : aliased constant S := "/COMPRESS_NAMES "                &
1020                                              "-gnatC";
1021    --        /NOCOMPRESS_NAMES (D)
1022    --        /COMPRESS_NAMES
1023    --
1024    --   Compress debug information and external symbol name table entries.
1025    --   In the generated debugging information, and also in the case of long
1026    --   external names, the compiler uses a compression mechanism if the name
1027    --   is very long.  This compression method uses a checksum, and avoids
1028    --   trouble on some operating systems which have difficulty with very long
1029    --   names.
1030
1031    S_GCC_Config  : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<"   &
1032                                              "-gnatec>";
1033    --        /CONFIGURATION_PRAGMAS_FILE=file
1034    --
1035    --   Specify a configuration pragmas file that need to be taken into account
1036
1037    S_GCC_Current : aliased constant S := "/CURRENT_DIRECTORY "             &
1038                                              "!-I-";
1039    --        /CURRENT_DIRECTORY (D)
1040    --        /NOCURRENT_DIRECTORY
1041    --
1042    --   Look for source files in the default directory.
1043
1044    S_GCC_Data    : aliased constant S := "/DATA_PREPROCESSING=<"  &
1045                                             "-gnatep>";
1046    --        /DATA_PREPROCESSING=file_name
1047    --
1048    --   This qualifier indicates to the compiler the file name (without
1049    --   directory information) of the preprocessor data file to use.
1050    --   The preprocessor data file should be found in the source directories.
1051    --
1052    --   A preprocessing data file is a text file with significant lines
1053    --   indicating how should be preprocessed either a specific source or all
1054    --   sources not mentioned in other lines. A significant line is a non
1055    --   empty, non comment line. Comments are similar to Ada comments.
1056    --
1057    --  Each significant line starts with either a literal string or the
1058    --  character '*'. A literal string is the file name (without directory
1059    --  information) of the source to preprocess. A character '*' indicates the
1060    --  preprocessing for all the sources that are not specified explicitly on
1061    --  other lines. It is an error to have two lines with the same file name
1062    --  or two lines starting with the character '*'.
1063    --
1064    --  After the file name or the character '*', another optional literal
1065    --  string indicating the file name of the definition file to be used for
1066    --  preprocessing. (see 15.3 Form of Definitions File. The definition files
1067    --  are found by the compiler in one of the source directories. In some
1068    --  cases, when compiling a source in a directory other than the current
1069    --  directory, if the definition file is in the current directory, it may
1070    --  be necessary to add the current directory as a source directory through
1071    --  qualifier "/SEARCH=[]", otherwise the compiler would not find the
1072    --  definition file.
1073    --
1074    --  Then, optionally, switches similar to those of gnatprep may be found.
1075    --  Those switches are:
1076    --
1077    --   -b              Causes both preprocessor lines and the lines deleted by
1078    --                   preprocessing to be replaced by blank lines, preserving
1079    --                   the line number. This switch is always implied;
1080    --                   however, if specified after `-c' it cancels the effect
1081    --                   of `-c'.
1082    --
1083    --   -c              Causes both preprocessor lines and the lines deleted by
1084    --                   preprocessing to be retained as comments marked with
1085    --                   the special string "--! ".
1086    --
1087    --   -Dsymbol=value  Define or redefine a symbol, associated with value.
1088    --                   A symbol is an Ada identifier, or an Ada reserved word,
1089    --                   with the exception of "if", "else", "elsif", "end",
1090    --                   "and", "or" and "then". value is either a literal
1091    --                   string, an Ada identifier or any Ada reserved word.
1092    --                   A symbol declared with this switch replaces a symbol
1093    --                   with the same name defined in a definition file.
1094    --
1095    --   -s              Causes a sorted list of symbol names and values to be
1096    --                   listed on the standard output file.
1097    --
1098    --   -u              Causes undefined symbols to be treated as having the
1099    --                   value FALSE in the context of a preprocessor test.
1100    --                   In the absence of this option, an undefined symbol
1101    --                   in a #if or #elsif test will be treated as an error.
1102    --
1103    --   Examples of valid lines in a preprocessor data file:
1104    --
1105    --     "toto.adb"  "prep.def" -u
1106    --     --  preprocess "toto.adb", using definition file "prep.def",
1107    --     --  undefined symbol are False.
1108    --
1109    --     * -c -DVERSION=V101
1110    --     --  preprocess all other sources without a definition file;
1111    --     --  suppressed lined are commented; symbol VERSION has the value
1112    --     --  V101.
1113    --
1114    --     "titi.adb" "prep2.def" -s
1115    --     --  preprocess "titi.adb", using definition file "prep2.def";
1116    --     --  list all symbols with their values.
1117
1118    S_GCC_Debug   : aliased constant S := "/DEBUG="                         &
1119                                             "SYMBOLS "                     &
1120                                                "-g2 "                      &
1121                                             "NOSYMBOLS "                   &
1122                                                "!-g2 "                     &
1123                                             "TRACEBACK "                   &
1124                                                "-g1 "                      &
1125                                             "ALL "                         &
1126                                                "-g3 "                      &
1127                                             "NONE "                        &
1128                                                "-g0 "                      &
1129                                             "NOTRACEBACK "                 &
1130                                                "-g0";
1131    --        /DEBUG[=debug-level]
1132    --        /NODEBUG
1133    --
1134    --   Specifies how much debugging information is to be included in
1135    --   the resulting object fie.
1136    --
1137    --   'debug-level' is one of the following:
1138    --
1139    --        SYMBOLS (D)    Include both debugger symbol records and traceback
1140    --                       in the object file.
1141    --
1142    --        ALL            Include debugger symbol records, traceback plus
1143    --                       extra debug information in the object file.
1144    --
1145    --        NONE           Excludes both debugger symbol records and traceback
1146    --                       from the object file.  Same as /NODEBUG.
1147    --
1148    --        TRACEBACK      Includes only traceback records in the object
1149    --                       file. This is the default when /DEBUG is not used.
1150
1151    S_GCC_DebugX  : aliased constant S := "/NODEBUG "                       &
1152                                              "!-g";
1153    --  NODOC (see /Debug)
1154
1155    S_GCC_Dist    : aliased constant S := "/DISTRIBUTION_STUBS="            &
1156                                             "RECEIVER "                    &
1157                                                "-gnatzr "                  &
1158                                             "CALLER "                      &
1159                                               "-gnatzc";
1160    --        /NODISTRIBUTION_STUBS (D)
1161    --        /DISTRIBUTION_STUBS[=dist-opt]
1162    --
1163    --   'dist-opt' is either RECEIVER (the default) or SENDER and indicates
1164    --   that stubs for use in distributed programs (see the Distributed
1165    --   Systems Annex of the Ada RM) should be generated.
1166
1167    S_GCC_DistX   : aliased constant S := "/NODISTRIBUTION_STUBS "          &
1168                                             "!-gnatzr,!-gnatzc";
1169    --  NODOC (see /DISTRIBUTION_STUBS)
1170
1171    S_GCC_Error   : aliased constant S := "/ERROR_LIMIT=#"                  &
1172                                             "-gnatm#";
1173    --        /NOERROR_LIMIT (D)
1174    --        /ERROR_LIMIT=nnn
1175    --
1176    --   NNN is a decimal integer in the range of 1 to 999999 and limits the
1177    --   number of error messages to be generated to that number.  Once that
1178    --   number has been reached, the compilation is abandoned.
1179    --   Specifying 999999 is equivalent to /NOERROR_LIMIT.
1180
1181    S_GCC_ErrorX  : aliased constant S := "/NOERROR_LIMIT "                 &
1182                                             "-gnatm999999";
1183    --  NODOC (see /ERROR_LIMIT)
1184
1185    S_GCC_Expand  : aliased constant S := "/EXPAND_SOURCE "                 &
1186                                             "-gnatG";
1187    --        /NOEXPAND_SOURCE (D)
1188    --        /EXPAND_SOURCE
1189    --
1190    --   Produces a listing of the expanded code in Ada source form. For
1191    --   example, all tasking constructs are reduced to appropriate run-time
1192    --   library calls.
1193
1194    S_GCC_Extend  : aliased constant S := "/EXTENSIONS_ALLOWED "            &
1195                                             "-gnatX";
1196    --        /NOEXTENSIONS_ALLOWED (D)
1197    --        /EXTENSIONS_ALLOWED
1198    --
1199    --   GNAT specific language extensions allowed.
1200
1201    S_GCC_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'      &
1202                                             "-X" & '"';
1203    --        /EXTERNAL_REFERENCE="name=val"
1204    --
1205    --   Specifies an external reference to the project manager. Useful only if
1206    --   /PROJECT_FILE is used.
1207    --
1208    --   Example:
1209    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
1210
1211    S_GCC_File    : aliased constant S := "/FILE_NAME_MAX_LENGTH=#"         &
1212                                             "-gnatk#";
1213    --        /FILE_NAME_MAX_LENGTH=nnn
1214    --
1215    --   Activates file name "krunching". NNN, a decimal integer in the range
1216    --   1-999, indicates the maximum allowable length of a file name (not
1217    --   including the ADS or ADB filetype. The default is not to enable file
1218    --   name krunching.
1219
1220    S_GCC_Force   : aliased constant S := "/FORCE_ALI "                     &
1221                                             "-gnatQ";
1222    --        /NOFORCE_ALI (D)
1223    --        /FORCE_ALI
1224    --
1225    --   In normal operation mode, the .ALI file is not generated if any
1226    --   illegalities are detected in the program. The use of this qualifier
1227    --   forces generation of the .ALI file. This file is marked as being
1228    --   in error, so it cannot be used for binding purposes, but it does
1229    --   contain reasonably complete cross-reference information, and thus may
1230    --   be useful for use by tools (e.g. semantic browing tools or integrated
1231    --   development environments) that are driven from the .ALI file.
1232
1233    S_GCC_Full    : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES "   &
1234                                             "-gnatef";
1235    --        /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
1236    --        /FULL_PATH_IN_BRIEF_MESSAGES
1237    --
1238    --   When using project files, if some errors or warnings are detected
1239    --   during parsing and verbose mode is not in effect (no use of qualifier
1240    --   /VERBOSE), then error lines start with the full path name of the
1241    --   project file, rather than its simple file name.
1242
1243    S_GCC_Help    : aliased constant S := "/HELP "                          &
1244                                             "-gnath";
1245    --        /NOHELP (D)
1246    --        /HELP
1247    --
1248    --   Output usage information.
1249
1250    S_GCC_Ident   : aliased constant S := "/IDENTIFIER_CHARACTER_SET="      &
1251                                              "DEFAULT "                    &
1252                                                 "-gnati1 "                 &
1253                                              "1 "                          &
1254                                                 "-gnati1 "                 &
1255                                              "2 "                          &
1256                                                 "-gnati2 "                 &
1257                                              "3 "                          &
1258                                                 "-gnati3 "                 &
1259                                              "4 "                          &
1260                                                 "-gnati4 "                 &
1261                                              "5 "                          &
1262                                                 "-gnati5 "                 &
1263                                              "PC "                         &
1264                                                 "-gnatip "                 &
1265                                              "PC850 "                      &
1266                                                 "-gnati8 "                 &
1267                                              "FULL_UPPER "                 &
1268                                                 "-gnatif "                 &
1269                                              "NO_UPPER "                   &
1270                                                 "-gnatin "                 &
1271                                              "WIDE "                       &
1272                                                 "-gnatiw";
1273    --        /NOIDENTIFIER_CHARACTER_SET (D)
1274    --        /IDENTIFIER_CHARACTER_SET=char-set
1275    --
1276    --   Normally GNAT recognizes the Latin-1 character set in source program
1277    --   identifiers, as described in the reference manual. This qualifier
1278    --   causes GNAT to recognize alternate character sets in identifiers.
1279    --   'char-set' is one of the following strings indicating the character
1280    --   set:
1281    --
1282    --        DEFAULT (D) Equivalent to 1, below. Also equivalent to
1283    --                    /NOIDENTIFIER_CHARACTER_SET.
1284    --
1285    --        1           The basic character set is Latin-1. This character
1286    --                    set is defined by ISO standard 8859, part 1. The lower
1287    --                    half (character codes 16#00# ... 16#7F#) is identical
1288    --                    to standard ASCII coding, but the upper half is used
1289    --                    to represent additional characters. This includes
1290    --                    extended letters used by European languages, such as
1291    --                    the umlaut used in German.
1292    --
1293    --                    You may use any of these extended characters freely
1294    --                    in character or string literals. In addition, the
1295    --                    extended characters that represent letters can be
1296    --                    used in identifiers.
1297    --
1298    --        2           Latin-2 letters allowed in identifiers, with uppercase
1299    --                    and lowercase equivalence.
1300    --
1301    --        3           Latin-3 letters allowed in identifiers, with uppercase
1302    --                    and lower case equivalence.
1303    --
1304    --        4           Latin-4 letters allowed in identifiers, with uppercase
1305    --                    and lower case equivalence.
1306    --
1307    --        PC          IBM PC code page 437.  This code page is the normal
1308    --                    default for PCs in the U.S. It corresponds to the
1309    --                    original IBM PC character set. This set has some, but
1310    --                    not all, of the extended Latin-1 letters, but these
1311    --                    letters do not have the same encoding as Latin-1. In
1312    --                    this mode, these letters are allowed in identifiers
1313    --                    with uppercase and lowercase equivalence.
1314    --
1315    --        PC850       This code page (850) is a modification of 437 extended
1316    --                    to include all the Latin-1 letters, but still not with
1317    --                    the usual Latin-1 encoding. In this mode, all these
1318    --                    letters are allowed in identifiers with uppercase and
1319    --                    lower case equivalence.
1320    --
1321    --        FULL_UPPER  Any character in the range 80-FF allowed in
1322    --                    identifiers, and all are considered distinct.  In
1323    --                    other words, there are no uppercase and lower case
1324    --                    equivalences in this range.
1325    --
1326    --        NO_UPPER    No upper-half characters in the range 80-FF are
1327    --                    allowed in identifiers.  This gives Ada 95
1328    --                    compatibility for identifier names.
1329    --
1330    --        WIDE        GNAT allows wide character codes to appear in
1331    --                    character and string literals, and also optionally
1332    --                    in identifiers.  See the /WIDE_CHARACTER_ENCODING
1333    --                    qualifier for information on encoding formats.
1334
1335    S_GCC_IdentX  : aliased constant S := "/NOIDENTIFIER_CHARACTER_SET "    &
1336                                              "-gnati1";
1337    --  NODOC (see /IDENTIFIER_CHARACTER_SET)
1338
1339    S_GCC_Immed   : aliased constant S := "/IMMEDIATE_ERRORS "    &
1340                                              "-gnatdO";
1341    --        /NOIMMEDIATE_ERRORS (D)
1342    --        /IMMEDIATE_ERRORS
1343    --
1344    --   Causes errors to be displayed as soon as they are encountered, rather
1345    --   than after compilation is terminated. If GNAT terminates prematurely
1346    --   or goes into an infinite loop, the last error message displayed may
1347    --   help to pinpoint the culprit.
1348
1349    S_GCC_Inline  : aliased constant S := "/INLINE="                        &
1350                                             "PRAGMA "                      &
1351                                               "-gnatn "                    &
1352                                             "FULL "                        &
1353                                               "-gnatN "                    &
1354                                             "SUPPRESS "                    &
1355                                               "-fno-inline";
1356    --        /NOINLINE (D)
1357    --        /INLINE[=keyword]
1358    --
1359    --   Selects the level of inlining for your program.  In the absence of this
1360    --   qualifier, GNAT does not attempt inlining across units and does not
1361    --   need to access the bodies of subprograms for which "pragma Inline" is
1362    --   specified if they are not in the current unit.
1363    --
1364    --   The supported keywords are as follows:
1365    --
1366    --        PRAGMA (D)  Recognize and process "Inline" pragmas.  However,
1367    --                    for the inlining to actually occur, optimization
1368    --                    must be enabled.  This enables inlining across unit
1369    --                    boundaries, that is, inlining a call in one unit of
1370    --                    a subprogram declared in a with'ed unit. The compiler
1371    --                    will access these bodies, creating an extra source
1372    --                    dependency for the resulting object file, and where
1373    --                    possible, the call will be inlined.
1374    --
1375    --                    This qualifier also turns on full optimization and
1376    --                    requests GNAT to try to attempt automatic inlining
1377    --                    of small subprograms within a unit.
1378    --
1379    --                    Specifying /OPTIMIZE=NONE will disable the main effect
1380    --                    of this qualifier, but you may specify other
1381    --                    optimization options, to get either lower
1382    --                    (/OPTIMIZE=SOME) or higher (/OPTIMIZE=UNROLL_LOOPS)
1383    --                    levels of optimization.
1384    --
1385    --        FULL        Front end inlining. The front end inlining activated
1386    --                    by this switch is generally more extensive, and quite
1387    --                    often more effective than the standard PRAGMA inlining
1388    --                    mode. It will also generate additional dependencies.
1389    --
1390    --        SUPPRESS    Suppresses all inlining, even if other optimization
1391    --                        or inlining switches are set.
1392
1393    S_GCC_InlineX : aliased constant S := "/NOINLINE "                      &
1394                                              "!-gnatn,!-gnatN";
1395    --  NODOC (see /INLINE)
1396
1397    S_GCC_Jumps   : aliased constant S := "/LONGJMP_SETJMP "                &
1398                                              "-gnatL";
1399    --        /NOLONGJMP_SETJMP (D)
1400    --        /LONGJMP_SETJMP
1401    --
1402    --   Causes the longjmp/setjmp approach to be used for exception handling.
1403    --
1404    --   The default mechanism for OpenVMS is zero cost exceptions. This
1405    --   qualifier can be used to modify this default, but it must be used for
1406    --   all units in the partition, including all run-time library units.
1407    --   One way to achieve this is to use the /ALL_FILES and /FORCE_COMPILE
1408    --   for gnatmake.
1409    --   This option is rarely used. One case in which it may be advantageous is
1410    --   in an application where exception raising is common and the overall
1411    --   performance of the application is improved by favoring exception
1412    --   propagation.
1413
1414    S_GCC_Length  : aliased constant S := "/MAX_LINE_LENGTH=#"              &
1415                                              "-gnatyM#";
1416    --        /MAX_LINE_LENGTH=nnn
1417    --
1418    --   Set maximum line length.
1419    --   The length of lines must not exceed the given value nnn.
1420
1421    S_GCC_List    : aliased constant S := "/LIST "                          &
1422                                              "-gnatl";
1423    --        /NOLIST (D)
1424    --        /LIST
1425    --
1426    --   Cause a full listing of the file to be generated.
1427
1428    S_GCC_Mapping : aliased constant S := "/MAPPING_FILE=<"  &
1429                                             "-gnatem>";
1430    --        /MAPPING_FILE=file_name
1431    --
1432    --   Use mapping file file_name
1433    --
1434    --   A mapping file is a way to communicate to the compiler two mappings:
1435    --   from unit names to file names (without any directory information) and
1436    --   from file names to path names (with full directory information).
1437    --   These mappings are used by the compiler to short-circuit the path
1438    --   search.
1439    --
1440    --   The use of mapping files is not required for correct operation of the
1441    --   compiler, but mapping files can improve efficiency, particularly when
1442    --   sources are read over a slow network connection. In normal operation,
1443    --   you need not be concerned with the format or use of mapping files,
1444    --   and /MAPPING_FILE is not a qualifier that you would use explicitly.
1445    --   It is intended only for use by automatic tools such as GNAT MAKE
1446    --   running under the project file facility. The description here of the
1447    --   format of mapping files is provided for completeness and for possible
1448    --   use by other tools.
1449    --
1450    --   A mapping file is a sequence of sets of three lines. In each set, the
1451    --   first line is the unit name, in lower case, with "%s" appended for
1452    --   specifications and "%b" appended for bodies; the second line is the
1453    --   file name; and the third line is the path name.
1454    --
1455    --   Example:
1456    --
1457    --      main%b
1458    --      main.2_ada
1459    --      /gnat/project1/sources/main.2_ada
1460    --
1461    --   When qualifier ?MAPPING_FILE is specified, the compiler will create in
1462    --   memory the two mappings from the specified file. If there is any
1463    --   problem (non existent file, truncated file or duplicate entries),
1464    --   no mapping will be created.
1465    --
1466    --   Several /MAPPING_FILE qualifiers may be specified; however, only the
1467    --   last one on the command line will be taken into account.
1468    --
1469    --   When using a project file, GNAT MAKE creates a temporary mapping file
1470    --   and communicates it to the compiler using this switch.
1471
1472    S_GCC_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="         &
1473                                             "DEFAULT "                     &
1474                                                "-vP0 "                     &
1475                                             "MEDIUM "                      &
1476                                                "-vP1 "                     &
1477                                             "HIGH "                        &
1478                                                "-vP2";
1479    --        /MESSAGES_PROJECT_FILE[=messages-option]
1480    --
1481    --   Specifies the "verbosity" of the parsing of project files.
1482    --   messages-option may be one of the following:
1483    --
1484    --      DEFAULT (D) No messages are output if there is no error or warning.
1485    --
1486    --      MEDIUM      A small number of messages are output.
1487    --
1488    --      HIGH        A great number of messages are output, most of them not
1489    --                  being useful for the user.
1490
1491    S_GCC_Noadc   : aliased constant S := "/NO_GNAT_ADC "                   &
1492                                              "-gnatA";
1493    --        /NO_GNAT_ADC
1494    --
1495    --   Cause the compiler to ignore any configuration pragmas file GNAT.ADC
1496    --   in the default directory. Implied by qualifier /PROJECT_FILE.
1497    --   Often used in conjunction with qualifier /CONFIGURATION_PRAGMAS_FILE.
1498
1499    S_GCC_Noload  : aliased constant S := "/NOLOAD "                        &
1500                                              "-gnatc";
1501    --        /NOLOAD
1502    --
1503    --   Cause the compiler to operate in semantic check mode with full
1504    --   checking for all illegalities specified in the reference manual, but
1505    --   without generation of any source code (no object or ALI file
1506    --   generated).
1507    --
1508    --   Since dependent files must be accessed, you must follow the GNAT
1509    --   semantic restrictions on file structuring to operate in this mode:
1510    --
1511    --   o The needed source files must be accessible.
1512    --   o Each file must contain only one compilation unit.
1513    --   o The file name and unit name must match.
1514    --
1515    --   The output consists of error messages as appropriate. No object file
1516    --   or ALI file is generated. The checking corresponds exactly to the
1517    --   notion of legality in the Ada reference manual.
1518    --
1519    --   Any unit can be compiled in semantics-checking-only mode, including
1520    --   units that would not normally be compiled (generic library units,
1521    --   subunits, and specifications where a separate body is present).
1522
1523    S_GCC_Nostinc : aliased constant S := "/NOSTD_INCLUDES "                &
1524                                              "-nostdinc";
1525    --        /NOSTD_INCLUDES
1526    --
1527    --   Do not look in the default directory for source files of the runtime.
1528
1529    S_GCC_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
1530                                             "-nostdlib";
1531    --        /NOSTD_LIBRARIES
1532    --
1533    --    Do not look for library files in the system default directory.
1534
1535    S_GCC_Opt     : aliased constant S := "/OPTIMIZE="                      &
1536                                             "ALL "                         &
1537                                                "-O2,!-O0,!-O1,!-O3 "       &
1538                                             "NONE "                        &
1539                                                "-O0,!-O1,!-O2,!-O3 "       &
1540                                             "SOME "                        &
1541                                                "-O1,!-O0,!-O2,!-O3 "       &
1542                                             "DEVELOPMENT "                 &
1543                                                "-O1,!-O0,!-O2,!-O3 "       &
1544                                             "UNROLL_LOOPS "                &
1545                                                "-funroll-loops "           &
1546                                             "NO_STRICT_ALIASING "          &
1547                                                "-fno-strict-aliasing "     &
1548                                             "INLINING "                    &
1549                                                "-O3,!-O0,!-O1,!-O2";
1550    --        /NOOPTIMIZE (D)
1551    --        /OPTIMIZE[=(keyword[,...])]
1552    --
1553    --   Selects the level of optimization for your program.  The supported
1554    --   keywords are as follows:
1555    --
1556    --      ALL (D)       Perform most optimizations, including those that
1557    --                    may be expensive.
1558    --
1559    --      NONE          Do not do any optimizations. Same as /NOOPTIMIZE.
1560    --
1561    --      SOME          Perform some optimizations, but omit ones that
1562    --                    are costly in compilation time.
1563    --
1564    --      DEVELOPMENT   Same as SOME.
1565    --
1566    --      INLINING      Full optimization, and also attempt automatic inlining
1567    --                    of small subprograms within a unit
1568    --
1569    --      UNROLL_LOOPS  Try to unroll loops. This keyword may be specified
1570    --                    with any keyword above other than NONE. Loop
1571    --                    unrolling usually, but not always, improves the
1572    --                    performance of programs.
1573    --
1574    --      NO_STRICT_ALIASING
1575    --                    Suppress aliasing analysis. When optimization is
1576    --                    enabled (ALL or SOME above), the compiler assumes
1577    --                    that pointers do in fact point to legitimate values
1578    --                    of the pointer type (allocated from the proper pool).
1579    --                    If this assumption is violated, e.g. by the use of
1580    --                    unchecked conversion, then it may be necessary to
1581    --                    suppress this assumption using this keyword (which
1582    --                    may be specified only in conjunction with any
1583    --                    keyword above, other than NONE).
1584
1585    S_GCC_OptX    : aliased constant S := "/NOOPTIMIZE "                    &
1586                                             "-O0,!-O1,!-O2,!-O3";
1587    --  NODOC (see /OPTIMIZE)
1588
1589    S_GCC_Polling : aliased constant S := "/POLLING "                       &
1590                                             "-gnatP";
1591    --        /NOPOLLING (D)
1592    --        /POLLING
1593    --
1594    --   Enable polling. See the description of pragma Polling in the GNAT
1595    --   Reference Manual for full details.
1596
1597    S_GCC_Project : aliased constant S := "/PROJECT_FILE=<"                 &
1598                                             "-P>";
1599    --        /PROJECT_FILE=filename
1600    --
1601    --   Specifies the main project file to be used. The project files rooted
1602    --   at the main project file will be parsed before the invocation of the
1603    --   compiler. The source and object directories to be searched will be
1604    --   communicated to the compiler through logical names
1605    --   ADA_PRJ_INCLUDE_FILE and ADA_PRJ_OBJECTS_FILE.
1606
1607    S_GCC_Psta    : aliased constant S := "/PRINT_STANDARD "                &
1608                                             "-gnatS";
1609    --        /PRINT_STANDARD
1610    --
1611    --   cause the compiler to output a representation of package Standard
1612    --   in a form very close to standard Ada. It is not quite possible to
1613    --   do this and remain entirely Standard (since new numeric base types
1614    --   cannot be created in standard Ada), but the output is easily
1615    --   readable to any Ada programmer, and is useful to determine the
1616    --   characteristics of target dependent types in package Standard.
1617
1618    S_GCC_Report  : aliased constant S := "/REPORT_ERRORS="                 &
1619                                             "VERBOSE "                     &
1620                                                "-gnatv "                   &
1621                                             "BRIEF "                       &
1622                                                "-gnatb "                   &
1623                                             "FULL "                        &
1624                                                "-gnatf "                   &
1625                                             "IMMEDIATE "                   &
1626                                                "-gnatdO "                  &
1627                                             "DEFAULT "                     &
1628                                                "!-gnatb,!-gnatv";
1629    --        /NOREPORT_ERRORS (D)
1630    --        /REPORT_ERRORS[=(keyword[,...])]
1631    --
1632    --   Change the way errors are reported.  The following keywords are
1633    --   supported:
1634    --
1635    --        VERBOSE (D)  Verbose mode. Full error output with source lines
1636    --                     to SYS$OUTPUT.
1637    --
1638    --        BRIEF        Generate the brief format error messages to
1639    --                     SYS$OUTPUT as well as the verbose format message or
1640    --                     full listing.
1641    --
1642    --        FULL         Normally, the compiler suppresses error messages that
1643    --                     are likely to be redundant. This keyword causes all
1644    --                     error messages to be generated. One particular effect
1645    --                     is for the case of references to undefined variables.
1646    --                     If a given variable is referenced several times, the
1647    --                     normal format of messages produces one error.  With
1648    --                     FULL, each undefined reference produces a separate
1649    --                     error message.
1650    --
1651    --        IMMEDIATE    Normally, the compiler saves up error messages and
1652    --                     generates them at the end of compilation in proper
1653    --                     sequence.  This keyword causes error messages to be
1654    --                     generated as soon as they are detected. The use of
1655    --                     IMMEDIATE usually causes error messages to be
1656    --                     generated out of sequence. Use it when the compiler
1657    --                     blows up due to an internal error.  In this case, the
1658    --                     error messages may be lost. Sometimes blowups are
1659    --                     the result of mishandled error messages, so you may
1660    --                     want to run with this keyword to determine whether
1661    --                     any error messages were generated.
1662    --
1663    --      DEFAULT        Turn off VERBOSE and BRIEF. Same as /NOREPORT_ERRORS.
1664
1665    S_GCC_ReportX : aliased constant S := "/NOREPORT_ERRORS "               &
1666                                             "!-gnatb,!-gnatv";
1667    --  NODOC (see /REPORT_ERRORS)
1668
1669    S_GCC_Repinfo : aliased constant S := "/REPRESENTATION_INFO="           &
1670                                             "DEFAULT "                     &
1671                                                "-gnatR "                   &
1672                                             "NONE "                        &
1673                                                "-gnatR0 "                  &
1674                                             "ARRAYS "                      &
1675                                                "-gnatR1 "                  &
1676                                             "ARRAYS_FILE "                 &
1677                                                "-gnatR1s "                 &
1678                                             "OBJECTS "                     &
1679                                                "-gnatR2 "                  &
1680                                             "OBJECTS_FILE "                &
1681                                                "-gnatR2s "                 &
1682                                             "SYMBOLIC "                    &
1683                                                "-gnatR3 "                  &
1684                                             "SYMBOLIC_FILE "               &
1685                                                "-gnatR3s";
1686    --        /NOREPRESENTATION_INFO (D)
1687    --        /REPRESENTATION_INFO[=(keyword[,...])]
1688    --
1689    --   This qualifier controls output from the compiler of a listing showing
1690    --   representation information for declared types and objects.
1691    --
1692    --        ARRAYS (D)      Size and alignment information is listed for
1693    --                        declared array and record types.
1694    --
1695    --        ARRAYS_FILE     Similar to ARRAYS, but the output is to a file
1696    --                        with the name 'file_rep' where 'file' is the name
1697    --                        of the corresponding source file.
1698    --
1699    --        NONE            no information is output (equivalent to omitting
1700    --                        the /REPRESENTATION_INFO qualifiers).
1701    --
1702    --        OBJECTS         Size and alignment information is listed for all
1703    --                        declared types and objects.
1704    --
1705    --        OBJECTS_FILE    Similar to OBJECTS, but the output is to a file
1706    --                        with the name 'file_rep' where 'file' is the name
1707    --                        of the corresponding source file.
1708    --
1709    --        SYMBOLIC        Symbolic expression information for values that
1710    --                        are computed at run time for variant records.
1711    --
1712    --        SYMBOLIC_FILE   Similar to SYMBOLIC, but the output is to a file
1713    --                        with the name 'file_rep' where 'file' is the name
1714    --                        of the corresponding source file.
1715    --
1716    --        DEFAULT         Equivalent to ARRAYS.
1717
1718    S_GCC_RepinfX : aliased constant S := "/NOREPRESENTATION_INFO "         &
1719                                             "!-gnatR";
1720    --  NODOC (see /REPRESENTATION_INFO)
1721
1722    S_GCC_RTS     : aliased constant S := "/RUNTIME_SYSTEM=|"               &
1723                                             "--RTS=|";
1724    --        /RUNTIME_SYSTEM=xxx
1725    --
1726    --    Build against an alternate runtime system named xxx or RTS-xxx.
1727
1728    S_GCC_Search  : aliased constant S := "/SEARCH=*"                       &
1729                                             "-I*";
1730    --        /SEARCH=(directory[,...])
1731    --
1732    --    When looking for source files also look in directories specified.
1733
1734    S_GCC_Style   : aliased constant S := "/STYLE_CHECKS="                  &
1735                                             "ALL_BUILTIN "                 &
1736                                                "-gnaty "                   &
1737                                             "1 "                           &
1738                                                "-gnaty1 "                  &
1739                                             "2 "                           &
1740                                                "-gnaty2 "                  &
1741                                             "3 "                           &
1742                                                "-gnaty3 "                  &
1743                                             "4 "                           &
1744                                                "-gnaty4 "                  &
1745                                             "5 "                           &
1746                                                "-gnaty5 "                  &
1747                                             "6 "                           &
1748                                                "-gnaty6 "                  &
1749                                             "7 "                           &
1750                                                "-gnaty7 "                  &
1751                                             "8 "                           &
1752                                                "-gnaty8 "                  &
1753                                             "9 "                           &
1754                                                "-gnaty9 "                  &
1755                                             "ATTRIBUTE "                   &
1756                                                "-gnatya "                  &
1757                                             "BLANKS "                      &
1758                                                "-gnatyb "                  &
1759                                             "COMMENTS "                    &
1760                                                "-gnatyc "                  &
1761                                             "END "                         &
1762                                                "-gnatye "                  &
1763                                             "VTABS "                       &
1764                                                "-gnatyf "                  &
1765                                             "GNAT "                        &
1766                                                "-gnatg "                   &
1767                                             "HTABS "                       &
1768                                                "-gnatyh "                  &
1769                                             "IF_THEN "                     &
1770                                                "-gnatyi "                  &
1771                                             "KEYWORD "                     &
1772                                                "-gnatyk "                  &
1773                                             "LAYOUT "                      &
1774                                                "-gnatyl "                  &
1775                                             "LINE_LENGTH "                 &
1776                                                "-gnatym "                  &
1777                                             "NONE "                        &
1778                                                "-gnatyN "                  &
1779                                             "STANDARD_CASING "             &
1780                                                "-gnatyn "                  &
1781                                             "ORDERED_SUBPROGRAMS "         &
1782                                                "-gnatyo "                  &
1783                                             "NONE "                        &
1784                                                "!-gnatg,!-gnaty* "         &
1785                                             "PRAGMA "                      &
1786                                                "-gnatyp "                  &
1787                                             "REFERENCES "                  &
1788                                                "-gnatyr "                  &
1789                                             "SPECS "                       &
1790                                                "-gnatys "                  &
1791                                             "TOKEN "                       &
1792                                                "-gnatyt ";
1793    --        /NOSTYLE_CHECKS (D)
1794    --        /STYLE_CHECKS[=(keyword,[...])]
1795    --
1796    --   Normally, GNAT permits any code layout consistent with the reference
1797    --   manual requirements.  This qualifier imposes style checking on the
1798    --   input source code.  The following keywords are supported:
1799    --
1800    --      ALL_BUILTIN (D)      Equivalent to the following list of options:
1801    --                           3, ATTRIBUTE, BLANKS, COMMENTS, END, VTABS,
1802    --                           HTABS, IF_THEN, KEYWORD, LAYOUT, LINE_LENGTH,
1803    --                           PRAGMA, REFERENCES, SPECS, TOKEN.
1804    --
1805    --      1 .. 9               Specify indentation level from 1 to 9.
1806    --                           The general style of required indentation is as
1807    --                           specified by the examples in the Ada Reference
1808    --                           Manual. Full line comments must be aligned with
1809    --                           the -- starting on a column that is a multiple
1810    --                           of the alignment level.
1811    --
1812    --      ATTRIBUTE            Check attribute casing.
1813    --                           Attribute names, including the case of keywords
1814    --                           such as digits used as attributes names,
1815    --                           must be written in mixed case, that is,
1816    --                           the initial letter and any letter following an
1817    --                           underscore must be uppercase.
1818    --                           All other letters must be lowercase.
1819    --
1820    --      BLANKS               Blanks not allowed at statement end.
1821    --                           Trailing blanks are not allowed at the end of
1822    --                           statements. The purpose of this rule, together
1823    --                           with option HTABS (no horizontal tabs), is to
1824    --                           enforce a canonical format for the use of
1825    --                           blanks to separate source tokens.
1826    --
1827    --      COMMENTS             Check comments.
1828    --                           Comments must meet the following set of rules:
1829    --
1830    --                             * The "--" that starts the column must either
1831    --                               start in column one, or else at least one
1832    --                               blank must precede this sequence.
1833    --
1834    --                             * Comments that follow other tokens on a line
1835    --                               must have at least one blank following the
1836    --                               "--" at the start of the comment.
1837    --
1838    --                             * Full line comments must have two blanks
1839    --                               following the "--" that starts the comment,
1840    --                               with the following exceptions.
1841    --
1842    --                             * A line consisting only of the "--"
1843    --                               characters, possibly preceded by blanks is
1844    --                               permitted.
1845    --
1846    --                             * A comment starting with "--x" where x is
1847    --                               a special character is permitted. This
1848    --                               allows proper processing of the output
1849    --                               generated by specialized tools including
1850    --                               gnatprep (where --! is used) and the SPARK
1851    --                               annnotation language (where --# is used).
1852    --                               For the purposes of this rule, a special
1853    --                               character is defined as being in one of the
1854    --                               ASCII ranges 16#21#..16#2F# or
1855    --                               16#3A#..16#3F#.
1856    --
1857    --                             * A line consisting entirely of minus signs,
1858    --                               possibly preceded by blanks, is permitted.
1859    --                               This allows the construction of box
1860    --                               comments where lines of minus signs are
1861    --                               used to form the top and bottom of the box.
1862    --
1863    --                             * If a comment starts and ends with "--" is
1864    --                               permitted as long as at least one blank
1865    --                               follows the initial "--". Together with
1866    --                               the preceding rule, this allows the
1867    --                               construction of box comments, as shown in
1868    --                               the following example:
1869    --
1870    --
1871    --                           ---------------------------
1872    --                           -- This is a box comment --
1873    --                           -- with two text lines.  --
1874    --                           ---------------------------
1875    --
1876    --      END                  Check end/exit labels.
1877    --                           Optional labels on end statements ending
1878    --                           subprograms and on exit statements exiting
1879    --                           named loops, are required to be present.
1880    --
1881    --      GNAT                 Enforces a set of style conventions that
1882    --                           correspond to the style used in the GNAT
1883    --                           source code.  All compiler units are always
1884    --                           compile with this keyword specified.
1885    --
1886    --                           You can find the full documentation for the
1887    --                           style conventions imposed by this keyword
1888    --                           in the body of the package "Style" in the
1889    --                           compiler sources.
1890    --
1891    --                           You should not normally use this keyword.
1892    --                           However, you MUST use it for compiling any
1893    --                           language-defined unit, or for adding children
1894    --                           to any language-defined unit other than
1895    --                           "Standard".
1896    --
1897    --      HTABS                No horizontal tabs.
1898    --                           Horizontal tab characters are not permitted in
1899    --                           the source text. Together with the BLANKS
1900    --                           (no blanks at end of line) option, this
1901    --                           enforces a canonical form for the use of blanks
1902    --                           to separate source tokens.
1903    --
1904    --      IF_THEN              Check if-then layout.
1905    --                           The keyword then must appear either on the
1906    --                           same line as the corresponding if, or on a line
1907    --                           on its own, lined up under the if with at least
1908    --                           one non-blank line in between containing all or
1909    --                           part of the condition to be tested.
1910    --
1911    --      KEYWORD              Check keyword casing.
1912    --                           All keywords must be in lower case (with the
1913    --                           exception of keywords such as digits used as
1914    --                           attribute names to which this check does not
1915    --                           apply).
1916    --
1917    --      LAYOUT               Check layout.
1918    --                           Layout of statement and declaration constructs
1919    --                           must follow the recommendations in the Ada
1920    --                           Reference Manual, as indicated by the form of
1921    --                           the syntax rules. For example an else keyword
1922    --                           must be lined up with the corresponding if
1923    --                           keyword.
1924    --
1925    --                           There are two respects in which the style rule
1926    --                           enforced by this check option are more liberal
1927    --                           than those in the Ada Reference Manual.
1928    --                           First in the case of record declarations,
1929    --                           it is permissible to put the record keyword on
1930    --                           the same line as the type keyword, and then
1931    --                           the end in end record must line up under type.
1932    --                           For example, either of the following two
1933    --                           layouts is acceptable:
1934    --
1935    --                           type q is record
1936    --                              a : integer;
1937    --                              b : integer;
1938    --                           end record;
1939    --
1940    --                           type q is
1941    --                              record
1942    --                                 a : integer;
1943    --                                 b : integer;
1944    --                              end record;
1945    --
1946    --                           Second, in the case of a block statement,
1947    --                           a permitted alternative is to put the block
1948    --                           label on the same line as the declare or begin
1949    --                           keyword, and then line the end keyword up under
1950    --                           the block label. For example both the following
1951    --                           are permitted:
1952    --
1953    --
1954    --
1955    --                           Block : declare
1956    --                              A : Integer := 3;
1957    --                           begin
1958    --                              Proc (A, A);
1959    --                           end Block;
1960    --
1961    --                           Block :
1962    --                              declare
1963    --                                 A : Integer := 3;
1964    --                              begin
1965    --                                 Proc (A, A);
1966    --                              end Block;
1967    --
1968    --                           The same alternative format is allowed for
1969    --                           loops. For example, both of the following are
1970    --                           permitted:
1971    --
1972    --
1973    --
1974    --                           Clear : while J < 10 loop
1975    --                              A (J) := 0;
1976    --                           end loop Clear;
1977    --
1978    --                           Clear :
1979    --                              while J < 10 loop
1980    --                                 A (J) := 0;
1981    --                              end loop Clear;
1982    --
1983    --
1984    --
1985    --      LINE_LENGTH          Check maximum line length.
1986    --                           The length of source lines must not exceed 79
1987    --                           characters, including any trailing blanks
1988    --                           The value of 79 allows convenient display on
1989    --                           an 80 character wide device or window, allowing
1990    --                           for possible special treatment of 80 character
1991    --                           lines.
1992    --
1993    --      NONE                 Clear any previously set style checks.
1994    --
1995    --      ORDERED_SUBPROGRAMS  Check order of subprogram bodies.
1996    --                           All subprogram bodies in a given scope (e.g.
1997    --                           a package body) must be in alphabetical order.
1998    --                           The ordering rule uses normal Ada rules for
1999    --                           comparing strings, ignoring casing of letters,
2000    --                           except that if there is a trailing numeric
2001    --                           suffix, then the value of this suffix is used
2002    --                           in the ordering (e.g. Junk2 comes before
2003    --                           Junk10).
2004    --
2005    --      NONE                 The default behavior.  Same as /NOSTYLE_CHECKS.
2006    --
2007    --      PRAGMA               Check pragma casing.
2008    --                           Pragma names must be written in mixed case,
2009    --                           that is, the initial letter and any letter
2010    --                           following an underscore must be uppercase.
2011    --                           All other letters must be lowercase.
2012    --
2013    --      REFERENCES           Check references.
2014    --                           All identifier references must be cased in the
2015    --                           same way as the corresponding declaration.
2016    --                           No specific casing style is imposed on
2017    --                           identifiers. The only requirement is for
2018    --                           consistency of references with declarations.
2019    --
2020    --      RM_COLUMN_LAYOUT     Enforce the layout conventions suggested by
2021    --                           the examples and syntax rules of the Ada
2022    --                           Language Reference Manual. For example, an
2023    --                           "else" must line up with an "if" and code in
2024    --                           the "then" and "else" parts must be indented.
2025    --                           The compiler considers violations of the
2026    --                           layout rules a syntax error if you specify
2027    --                           this keyword.
2028    --
2029    --      SPECS                Check separate specs.
2030    --                           Separate declarations ("specs") are required
2031    --                           for subprograms (a body is not allowed to serve
2032    --                           as its own declaration). The only exception is
2033    --                           that parameterless library level procedures are
2034    --                           not required to have a separate declaration.
2035    --                           This exception covers the most frequent form of
2036    --                           main program procedures.
2037    --
2038    --      STANDARD_CASING      Check casing of entities in Standard.
2039    --                           Any identifier from Standard must be cased to
2040    --                           match the presentation in the Ada Reference
2041    --                           Manual (for example, Integer and ASCII.NUL).
2042    --
2043    --      TOKEN                Check token spacing.
2044    --                           The following token spacing rules are enforced:
2045    --
2046    --                             * The keywords abs and not must be followed
2047    --                               by a space.
2048    --
2049    --                             * The token => must be surrounded by spaces.
2050    --
2051    --                             * The token <> must be preceded by a space or
2052    --                               a left parenthesis.
2053    --
2054    --                             * Binary operators other than ** must be
2055    --                               surrounded by spaces. There is no
2056    --                               restriction on the layout of the ** binary
2057    --                               operator.
2058    --
2059    --                             * Colon must be surrounded by spaces.
2060    --
2061    --                             * Colon-equal (assignment) must be surrounded
2062    --                               by spaces.
2063    --
2064    --                             * Comma must be the first non-blank character
2065    --                               on the line, or be immediately preceded by
2066    --                               a non-blank character, and must be followed
2067    --                               by a space.
2068    --
2069    --                             * If the token preceding a left paren ends
2070    --                               with a letter or digit, then a space must
2071    --                               separate the two tokens.
2072    --
2073    --                             * A right parenthesis must either be the
2074    --                               first non-blank character on a line, or it
2075    --                               must be preceded by a non-blank character.
2076    --
2077    --                             * A semicolon must not be preceded by
2078    --                               a space, and must not be followed by
2079    --                               a non-blank character.
2080    --
2081    --                             * A unary plus or minus may not be followed
2082    --                               by a space.
2083    --
2084    --                             * A vertical bar must be surrounded by
2085    --                               spaces.
2086    --
2087    --                           In the above rules, appearing in column one is
2088    --                           always permitted, that is, counts as meeting
2089    --                           either a requirement for a required preceding
2090    --                           space, or as meeting a requirement for no
2091    --                           preceding space.
2092    --
2093    --                           Appearing at the end of a line is also always
2094    --                           permitted, that is, counts as meeting either
2095    --                           a requirement for a following space,
2096    --                           or as meeting a requirement for no following
2097    --                           space.
2098    --
2099    --      VTABS                No form feeds or vertical tabs.
2100    --                           Form feeds or vertical tab characters are not
2101    --                           permitted in the source text.
2102
2103    S_GCC_StyleX  : aliased constant S := "/NOSTYLE_CHECKS "                &
2104                                             "!-gnatg,!-gnaty*";
2105    --  NODOC (see /STYLE_CHECKS)
2106
2107    S_GCC_Symbol  : aliased constant S := "/SYMBOL_PREPROCESSING=" & '"'    &
2108                                             "-gnateD" & '"';
2109    --        /SYMBOL_PREPROCESSING="symbol=value"
2110    --
2111    --   Define or redefine a preprocessing symbol, associated with value.
2112    --   If "=value" is not specified, then the value of the symbol is True.
2113    --   A symbol is an identifier, following normal Ada (case-insensitive)
2114    --   rules for its syntax, and value is any sequence (including an empty
2115    --   sequence) of characters from the set (letters, digits, period,
2116    --   underline). Ada reserved words may be used as symbols, with the
2117    --   exceptions of "if", "else", "elsif", "end", "and", "or" and "then".
2118    --
2119    --   A symbol declared with this qualifier on the command line replaces
2120    --   a symbol with the same name either in a definition file or specified
2121    --   with a switch -D in the preprocessor data file.
2122    --
2123    --   This qualifier is similar to qualifier /ASSOCIATE of
2124    --   GNAT PREPROCESSING.
2125
2126    S_GCC_Syntax  : aliased constant S := "/SYNTAX_ONLY "                   &
2127                                             "-gnats";
2128    --        /NOSYNTAX_ONLY (D)
2129    --        /SYNTAX_ONLY
2130    --
2131    --   Run GNAT in syntax checking only mode.  You can check a series of
2132    --   files in a single command, and can use wild cards to specify such a
2133    --   group of files.
2134    --
2135    --   You may use other qualifiers in conjunction with this qualifier. In
2136    --   particular, /LIST and /REPORT_ERRORS=VERBOSE are useful to control the
2137    --   format of any generated error messages.
2138    --
2139    --   The output is simply the error messages, if any. No object file or ALI
2140    --   file is generated by a syntax-only compilation. Also, no units other
2141    --   than the one specified are accessed. For example, if a unit "X" with's
2142    --   a unit "Y", compiling unit "X" in syntax check only mode does not
2143    --   access the source file containing unit "Y".
2144    --
2145    --   Normally, GNAT allows only a single unit in a source file. However,
2146    --   this restriction does not apply in syntax-check-only mode, and it is
2147    --   possible to check a file containing multiple compilation units
2148    --   concatenated together. This is primarily used by the GNAT CHOP
2149    --   command.
2150
2151    S_GCC_Table   : aliased constant S := "/TABLE_MULTIPLIER=#"             &
2152                                             "-gnatT#";
2153    --        /TABLE_MULTIPLIER=nnn
2154    --
2155    --   All compiler tables start at nnn times usual starting size.
2156
2157    S_GCC_Trace   : aliased constant S := "/TRACE_UNITS "                   &
2158                                             "-gnatdc";
2159    --        /TRACE_UNITS
2160    --        /NOTRACE_UNITS
2161    --
2162    --   This switch that does for the frontend what /VERBOSE does for the
2163    --   backend. The system prints the name of each unit, either a compilation
2164    --   unit or nested unit, as it is being analyzed.
2165
2166    S_GCC_Tree    : aliased constant S := "/TREE_OUTPUT "                   &
2167                                             "-gnatt";
2168    --        /TREE_OUTPUT
2169    --        /NOTREE_OUTPUT
2170    --
2171    --   Cause GNAT to write the internal tree for a unit to a file (with the
2172    --   filetype ATB for a body or ATS for a spec).  This is not normally
2173    --   required, but is used by separate analysis tools. Typically these
2174    --   tools do the necessary compilations automatically, so you should never
2175    --   have to specify this switch in normal operation.
2176
2177    S_GCC_Trys    : aliased constant S := "/TRY_SEMANTICS "                 &
2178                                             "-gnatq";
2179    --        /TRY_SEMANTICS
2180    --        /NOTRY_SEMANTICS
2181    --
2182    --   In normal operation mode the compiler first parses the program and
2183    --   determines if there are any syntax errors. If there are, appropriate
2184    --   error messages are generated and compilation is immediately
2185    --   terminated.  This qualifier tells GNAT to continue with semantic
2186    --   analysis even if syntax errors have been found.  This may enable the
2187    --   detection of more errors in a single run. On the other hand, the
2188    --   semantic analyzer is more likely to encounter some internal fatal
2189    --   error when given a syntactically invalid tree.
2190
2191    S_GCC_Units   : aliased constant S := "/UNITS_LIST "                    &
2192                                             "-gnatu";
2193    --        /NOUNITS_LIST (D)
2194    --        /UNITS_LIST
2195    --
2196    --   Print a list of units required by this compilation on SYS$OUTPUT.  The
2197    --   listing includes all units on which the unit being compiled depends
2198    --   either directly or indirectly.
2199
2200    S_GCC_Unique  : aliased constant S := "/UNIQUE_ERROR_TAG "              &
2201                                             "-gnatU";
2202    --        /NOUNIQUE_ERROR_TAG (D)
2203    --        /UNIQUE_ERROR_TAG
2204    --
2205    --   Tag compiler error messages with the string "error: ".
2206
2207    S_GCC_Upcase  : aliased constant S := "/UPPERCASE_EXTERNALS "           &
2208                                             "-gnatF";
2209    --        /NOUPPERCASE_EXTERNALS (D)
2210    --        /UPPERCASE_EXTERNALS
2211    --
2212    --   Fold default and explicit external names in pragmas Import and Export
2213    --   to uppercase for compatibility with the default behavior of DEC C.
2214
2215    S_GCC_Valid   : aliased constant S := "/VALIDITY_CHECKING="             &
2216                                             "DEFAULT "                     &
2217                                                "-gnatVd "                  &
2218                                             "NODEFAULT "                   &
2219                                                "-gnatVD "                  &
2220                                             "COPIES "                      &
2221                                                "-gnatVc "                  &
2222                                             "NOCOPIES "                    &
2223                                                "-gnatVC "                  &
2224                                             "FLOATS "                      &
2225                                                "-gnatVf "                  &
2226                                             "NOFLOATS "                    &
2227                                                "-gnatVF "                  &
2228                                             "IN_PARAMS "                   &
2229                                                "-gnatVi "                  &
2230                                             "NOIN_PARAMS "                 &
2231                                                "-gnatVI "                  &
2232                                             "MOD_PARAMS "                  &
2233                                                "-gnatVm "                  &
2234                                             "NOMOD_PARAMS "                &
2235                                                "-gnatVM "                  &
2236                                             "OPERANDS "                    &
2237                                                "-gnatVo "                  &
2238                                             "NOOPERANDS "                  &
2239                                                "-gnatVO "                  &
2240                                             "PARAMETERS "                  &
2241                                                "-gnatVp "                  &
2242                                             "NOPARAMETERS "                &
2243                                                "-gnatVP "                  &
2244                                             "RETURNS "                     &
2245                                                "-gnatVr "                  &
2246                                             "NORETURNS "                   &
2247                                                "-gnatVR "                  &
2248                                             "SUBSCRIPTS "                  &
2249                                                "-gnatVs "                  &
2250                                             "NOSUBSCRIPTS "                &
2251                                                "-gnatVS "                  &
2252                                             "TESTS "                       &
2253                                                "-gnatVt "                  &
2254                                             "NOTESTS "                     &
2255                                                "-gnatVT "                  &
2256                                             "ALL "                         &
2257                                                "-gnatVa "                  &
2258                                             "NONE "                        &
2259                                                "-gnatVn";
2260    --        /VALIDITY_CHECKING[=(keyword,[...])]
2261    --
2262    --   Control level of validity checking.
2263    --
2264    --        DEFAULT (D)     In this mode checks are made to prevent
2265    --                        erroneous behavior in accordance with the RM.
2266    --                        Notably extra checks may be needed for case
2267    --                        statements and subscripted array assignments.
2268    --
2269    --        NONE            No special checks for invalid values are
2270    --                        performed. This means that references to
2271    --                        uninitialized variables can cause erroneous
2272    --                        behavior from constructs like case statements
2273    --                        and subscripted array assignments. In this
2274    --                        mode, invalid values can lead to erroneous
2275    --                        behavior.
2276    --
2277    --        FULL            Every assignment is checked for validity, so
2278    --                        that it is impossible to assign invalid values.
2279    --                        The RM specifically allows such assignments,
2280    --                        but in this mode, invalid values can never be
2281    --                        assigned, and an attempt to perform such an
2282    --                        assignment immediately raises Constraint_Error.
2283    --                        This behavior is allowed (but not required) by
2284    --                        the RM. This mode is intended as a debugging aid,
2285    --                        and may be useful in helping to track down
2286    --                        uninitialized variables. It may be useful to
2287    --                        use this in conjunction with the Normalize_Scalars
2288    --                        pragma which attempts to initialize with invalid
2289    --                        values where possible.
2290
2291    S_GCC_Verbose : aliased constant S := "/VERBOSE "                       &
2292                                             "-v";
2293    --        /VERBOSE
2294    --        /NOVERBOSE
2295    --
2296    --   Show commands generated by the GCC driver. Normally used only for
2297    --   debugging purposes or if you need to be sure what version of the
2298    --   compiler you are executing.
2299
2300    S_GCC_Warn    : aliased constant S := "/WARNINGS="                      &
2301                                             "DEFAULT "                     &
2302                                                "!-gnatws,!-gnatwe "        &
2303                                             "ALL "                         &
2304                                                "-gnatwa "                  &
2305                                             "NOALL "                       &
2306                                                "-gnatwA "                  &
2307                                             "ALL_GCC "                     &
2308                                                "-Wall "                    &
2309                                             "CONDITIONALS "                &
2310                                                "-gnatwc "                  &
2311                                             "NOCONDITIONALS "              &
2312                                                "-gnatwC "                  &
2313                                             "CONSTANT_VARIABLES "          &
2314                                                "-gnatwk "                  &
2315                                             "NOCONSTANT_VARIABLES "        &
2316                                                "-gnatwK "                  &
2317                                             "IMPLICIT_DEREFERENCE "        &
2318                                                "-gnatwd "                  &
2319                                             "NO_IMPLICIT_DEREFERENCE "     &
2320                                                "-gnatwD "                  &
2321                                             "ELABORATION "                 &
2322                                                "-gnatwl "                  &
2323                                             "NOELABORATION "               &
2324                                                "-gnatwL "                  &
2325                                             "ERRORS "                      &
2326                                                "-gnatwe "                  &
2327                                             "HIDING "                      &
2328                                                "-gnatwh "                  &
2329                                             "NOHIDING "                    &
2330                                                "-gnatwH "                  &
2331                                             "IMPLEMENTATION "              &
2332                                                "-gnatwi "                  &
2333                                             "NOIMPLEMENTATION "            &
2334                                                "-gnatwI "                  &
2335                                             "INEFFECTIVE_INLINE "          &
2336                                                "-gnatwp "                  &
2337                                             "NOINEFFECTIVE_INLINE "        &
2338                                                "-gnatwP "                  &
2339                                             "MODIFIED_UNREF "              &
2340                                                "-gnatwm "                  &
2341                                             "NOMODIFIED_UNREF "            &
2342                                                "-gnatwM "                  &
2343                                             "OPTIONAL "                    &
2344                                                "-gnatwa "                  &
2345                                             "NOOPTIONAL "                  &
2346                                                "-gnatwA "                  &
2347                                             "NORMAL "                      &
2348                                                "-gnatwn "                  &
2349                                             "OBSOLESCENT "                 &
2350                                                "-gnatwj "                  &
2351                                             "NOOBSOLESCENT "               &
2352                                                "-gnatwJ "                  &
2353                                             "OVERLAYS "                    &
2354                                                "-gnatwo "                  &
2355                                             "NOOVERLAYS "                  &
2356                                                "-gnatwO "                  &
2357                                             "REDUNDANT "                   &
2358                                                "-gnatwr "                  &
2359                                             "NOREDUNDANT "                 &
2360                                                "-gnatwR "                  &
2361                                             "SUPPRESS "                    &
2362                                                "-gnatws "                  &
2363                                             "UNINITIALIZED "               &
2364                                                "-Wuninitialized "          &
2365                                             "UNREFERENCED_FORMALS "        &
2366                                                "-gnatwf "                  &
2367                                             "NOUNREFERENCED_FORMALS "      &
2368                                                "-gnatwF "                  &
2369                                             "UNRECOGNIZED_PRAGMAS "        &
2370                                                "-gnatwg "                  &
2371                                             "NOUNRECOGNIZED_PRAGMAS "      &
2372                                                "-gnatwG "                  &
2373                                             "UNUSED "                      &
2374                                                "-gnatwu "                  &
2375                                             "NOUNUSED "                    &
2376                                                "-gnatwU "                  &
2377                                             "VARIABLES_UNINITIALIZED "     &
2378                                                "-gnatwv "                  &
2379                                             "NOVARIABLES_UNINITIALIZED "   &
2380                                                "-gnatwV "                  &
2381                                             "IMPORT_EXPORT_PRAGMAS "       &
2382                                                "-gnatwx "                  &
2383                                             "NOIMPORT_EXPORT_PRAGMAS "     &
2384                                                "-gnatwX "                  &
2385                                             "UNCHECKED_CONVERSIONS "       &
2386                                                "-gnatwz "                  &
2387                                             "NOUNCHECKED_CONVERSIONS "     &
2388                                                "-gnatwZ";
2389    --        /NOWARNINGS
2390    --
2391    --   Suppress the output of all warning messages from the GNAT front end.
2392    --   Note that it does not suppress warnings from the gcc back end.
2393    --
2394    --        /WARNINGS[=(keyword[,...])]
2395    --
2396    --   In addition to error messages, corresponding to illegalities as
2397    --   defined in the reference manual, the compiler detects two kinds of
2398    --   warning situations.  First, the compiler considers some constructs
2399    --   suspicious and generates a warning message to alert you to a possible
2400    --   error. Second, if the compiler detects a situation that is sure to
2401    --   raise an exception at runtime, it generates a warning message.
2402    --
2403    --   You may specify the following keywords to change this behavior:
2404    --
2405    --   DEFAULT (D)             The default behavior above.
2406    --
2407    --   ALL                     Activate all optional warnings.
2408    --                           Activates most optional warning messages,
2409    --                           see remaining list in this section for
2410    --                           details on optional warning messages that
2411    --                           can be individually controlled.
2412    --                           The warnings that are not turned on by
2413    --                           this option are BIASED_ROUNDING,
2414    --                           IMPLICIT_DEREFERENCE, HIDING and
2415    --                           ELABORATION. All other optional Ada
2416    --                           warnings are turned on.
2417    --
2418    --   NOALL                   Suppress all optional errors.
2419    --                           Suppresses all optional warning messages
2420    --                           that can be activated by option ALL.
2421    --
2422    --   ALL_GCC                 Request additional messages from the GCC
2423    --                           backend.  Most of these are not relevant
2424    --                           to Ada.
2425    --
2426    --   CONDITIONALS            Activate warnings for conditional
2427    --                           Expressions used in tests that are known
2428    --                           to be True or False at compile time. The
2429    --                           default is that such warnings are not
2430    --                           generated.
2431    --
2432    --   NOCONDITIONALS          Suppress warnings for conditional
2433    --                           expressions used in tests that are known
2434    --                           to be True or False at compile time.
2435    --
2436    --   IMPLICIT_DEREFERENCE    Activate warnings on implicit dereferencing.
2437    --                           The use of a prefix of an access type in an
2438    --                           indexed component, slice, or selected component
2439    --                           without an explicit .all will generate
2440    --                           a warning. With this warning enabled, access
2441    --                           checks occur only at points where an explicit
2442    --                           .all appears in the source code (assuming no
2443    --                           warnings are generated as a result of this
2444    --                           option). The default is that such warnings are
2445    --                           not generated. Note that /WARNINGS=ALL does not
2446    --                           affect the setting of this warning option.
2447    --
2448    --   NOIMPLICIT_DEREFERENCE  Suppress warnings on implicit dereferencing.
2449    --                           in indexed components, slices, and selected
2450    --                           components.
2451    --
2452    --   ELABORATION             Activate warnings on missing pragma
2453    --                           Elaborate_All statements. The default is
2454    --                           that such warnings are not generated.
2455    --
2456    --   NOELABORATION           Suppress warnings on missing pragma
2457    --                           Elaborate_All statements.
2458    --
2459    --   ERRORS                  Warning messages are to be treated as errors.
2460    --                           The warning string still appears, but the
2461    --                           warning messages are counted as errors, and
2462    --                           prevent the generation of an object file.
2463    --
2464    --   HIDING                  Activate warnings on hiding declarations.
2465    --                           A declaration is considered hiding if it is
2466    --                           for a non-overloadable entity, and it declares
2467    --                           an entity with the same name as some other
2468    --                           entity that is directly or use-visible. The
2469    --                           default is that such warnings are not
2470    --                           generated.
2471    --
2472    --   NOHIDING                Suppress warnings on hiding declarations.
2473    --
2474    --   IMPLEMENTATION          Activate warnings for a with of an internal
2475    --                           GNAT implementation unit, defined as any unit
2476    --                           from the Ada, Interfaces, GNAT, DEC or
2477    --                           System hierarchies that is not documented in
2478    --                           either the Ada Reference Manual or the GNAT
2479    --                           Programmer's Reference Manual. Such units are
2480    --                           intended only for internal implementation
2481    --                           purposes and should not be with'ed by user
2482    --                           programs. The default is that such warnings
2483    --                           are generated.
2484    --
2485    --   NOIMPLEMENTATION        Disables warnings for a with of an internal
2486    --                           GNAT implementation unit.
2487    --
2488    --   INEFFECTIVE_INLINE      Activate warnings on ineffective pragma Inlines
2489    --                           Activates warnings for failure of front end
2490    --                           inlining (activated by /INLINE=FULL) to inline
2491    --                           a particular call. There are many reasons for
2492    --                           not being able to inline a call, including most
2493    --                           commonly that the call is too complex to
2494    --                           inline. This warning can also be turned on
2495    --                           using /INLINE=FULL.
2496    --
2497    --   NOINEFFECTIVE_INLINE    Suppress warnings on ineffective pragma Inlines
2498    --                           Suppresses warnings on ineffective pragma
2499    --                           Inlines. If the inlining mechanism cannot
2500    --                           inline a call, it will simply ignore the
2501    --                           request silently.
2502    --
2503    --   MODIFIED_UNREF          Activates warnings for variables that are
2504    --                           assigned (using an initialization value or with
2505    --                           one or more assignment statements) but whose
2506    --                           value is never read. The warning is suppressed
2507    --                           for volatile variables and also for variables
2508    --                           that are renamings of other variables or for
2509    --                           which an address clause is given. This warning
2510    --                           can also be turned on using /WARNINGS/OPTIONAL.
2511    --
2512    --   NOMODIFIED_UNREF        Disables warnings for variables that are
2513    --                           assigned or initialized, but never read.
2514    --
2515    --   NORMAL                  Sets normal warning mode, in which enabled
2516    --                           warnings are issued and treated as warnings
2517    --                           rather than errors. This is the default mode.
2518    --                           It can be used to cancel the effect of an
2519    --                           explicit /WARNINGS=SUPPRESS or
2520    --                           /WARNINGS=ERRORS. It also cancels the effect
2521    --                           of the implicit /WARNINGS=ERRORS that is
2522    --                           activated by the use of /STYLE=GNAT.
2523    --
2524    --   OBSOLESCENT             Activates warnings for calls to subprograms
2525    --                           marked with pragma Obsolescent and for use of
2526    --                           features in Annex J of the Ada Reference
2527    --                           Manual. In the case of Annex J, not all
2528    --                           features are flagged. In particular use of the
2529    --                           renamed packages (like Text_IO), use of package
2530    --                           ASCII and use of the attribute 'Constrained are
2531    --                           not flagged, since these are very common and
2532    --                           would generate many annoying positive warnings.
2533    --                           The default is that such warnings are not
2534    --                           generated.
2535    --
2536    --   NOOBSOLESCENT           Disables warnings on use of obsolescent
2537    --                           features.
2538    --
2539    --   OPTIONAL                Activate all optional warning messages.
2540    --                           See other options under this qualifier
2541    --                           for details on optional warning messages
2542    --                           that can be individually controlled. The
2543    --                           one exception is that /WARNINGS=OPTIONAL
2544    --                           doesn't activate warnings for hiding
2545    --                           variables (/WARNINGS=HIDING), so if this
2546    --                           warning is required it must be explicitly
2547    --                           set.
2548    --
2549    --   NOOPTIONAL              Suppress all optional warning messages.
2550    --                           See other options under this qualifier
2551    --                           for details on optional warning messages
2552    --                           that can be individually controlled.
2553    --
2554    --   OVERLAYS                Activate warnings for possibly unintended
2555    --                           initialization effects of defining address
2556    --                           clauses that cause one variable to overlap
2557    --                           another. The default is that such warnings
2558    --                           are generated.
2559    --
2560    --   NOOVERLAYS              Suppress warnings on possibly unintended
2561    --                           initialization effects of defining address
2562    --                           clauses that cause one variable to overlap
2563    --                           another.
2564    --
2565    --   REDUNDANT               Activate warnings for redundant constructs.
2566    --                           In particular assignments of a variable to
2567    --                           itself, and a type conversion that converts
2568    --                           an object to its own type. The default
2569    --                           is that such warnings are not generated.
2570    --
2571    --   NOREDUNDANT             Suppress warnings for redundant constructs.
2572    --
2573    --   SUPPRESS                Completely suppresse the output of all warning
2574    --                           messages.  Same as /NOWARNINGS.
2575    --
2576    --   UNCHECKED_CONVERSIONS   Activates warnings on unchecked conversions.
2577    --                           Causes warnings to be generated for
2578    --                           unchecked conversions when the two types are
2579    --                           known at compile time to have different sizes.
2580    --                           The default is that such warnings are
2581    --                           generated.
2582    --
2583    --   NOUNCHECKED_CONVERSIONS Suppress warnings for unchecked conversions.
2584    --
2585    --   UNINITIALIZED           Generate warnings for uninitialized variables.
2586    --                           This is a GCC option, not an Ada option.
2587    --                           You must also specify the /OPTIMIZE qualifier
2588    --                           with a value other than NONE (in other words,
2589    --                           this keyword works only if optimization is
2590    --                           turned on).
2591    --
2592    --   UNREFERENCED_FORMALS    Activate warnings on unreferenced formals.
2593    --                           Causes a warning to be generated if a formal
2594    --                           parameter is not referenced in the body of
2595    --                           the subprogram. This warning can also be turned
2596    --                           on using option ALL or UNUSED.
2597    --
2598    --   NOUNREFERENCED_FORMALS  Suppress warnings on unreferenced formals.
2599    --                           Suppresses warnings for unreferenced formal
2600    --                           parameters. Note that the combination UNUSED
2601    --                           followed by NOUNREFERENCED_FORMALS has the
2602    --                           effect of warning on unreferenced entities
2603    --                           other than subprogram formals.
2604    --
2605    --   UNUSED                  Activates warnings to be generated for entities
2606    --                           that are defined but not referenced, and for
2607    --                           units that are with'ed and not referenced. In
2608    --                           the case of packages, a warning is also
2609    --                           generated if no entities in the package are
2610    --                           referenced. This means that if the package
2611    --                           is referenced but the only references are in
2612    --                           use clauses or renames declarations, a warning
2613    --                           is still generated. A warning is also generated
2614    --                           for a generic package that is with'ed but never
2615    --                           instantiated.  In the case where a package or
2616    --                           subprogram body is compiled, and there is a
2617    --                           with on the corresponding spec that is only
2618    --                           referenced in the body, a warning is also
2619    --                           generated, noting that the with can be moved
2620    --                           to the body. The default is that such warnings
2621    --                           are not generated.
2622    --
2623    --   NOUNUSED                Suppress warnings for unused entities and
2624    --                           packages.
2625    --
2626    --   VARIABLES_UNINITIALIZED Activates warnings on unassigned variables.
2627    --                           Causes warnings to be generated when a variable
2628    --                           is accessed which may not be properly
2629    --                           uninitialized.
2630    --                           The default is that such warnings are
2631    --                           generated.
2632    --
2633    --   NOVARIABLES_UNINITIALIZED       Suppress warnings for uninitialized
2634    --                                   variables.
2635
2636    S_GCC_WarnX   : aliased constant S := "/NOWARNINGS "                    &
2637                                             "-gnatws";
2638    --  NODOC (see /WARNINGS)
2639
2640    S_GCC_No_Back : aliased constant S := "/NO_BACK_END_WARNINGS "          &
2641                                             "-w";
2642    --        /NO_BACK_END_WARNINGS
2643    --
2644    --   Inhibit all warning messages of the GCC back-end.
2645
2646    S_GCC_Wide    : aliased constant S := "/WIDE_CHARACTER_ENCODING="       &
2647                                              "BRACKETS "                   &
2648                                                 "-gnatWb "                 &
2649                                              "NONE "                       &
2650                                                 "-gnatWn "                 &
2651                                              "HEX "                        &
2652                                                 "-gnatWh "                 &
2653                                              "UPPER "                      &
2654                                                 "-gnatWu "                 &
2655                                              "SHIFT_JIS "                  &
2656                                                 "-gnatWs "                 &
2657                                              "UTF8 "                       &
2658                                                 "-gnatW8 "                 &
2659                                              "EUC "                        &
2660                                                 "-gnatWe";
2661    --        /NOWIDE_CHARACTER_ENCODING (D)
2662    --        /WIDE_CHARACTER_ENCODING[=encode-type]
2663    --
2664    --   Specifies the mechanism used to encode wide characters.  'encode-type'
2665    --   is one of the following:
2666    --
2667    --   BRACKETS (D)    A wide character is encoded as ["xxxx"] where XXXX
2668    --                   are four hexadecimal digits representing the coding
2669    --                   ('Pos value) of the character in type
2670    --                   Wide_Character. The hexadecimal digits may use upper
2671    --                   or lower case letters.
2672    --
2673    --                   This notation can also be used for upper half
2674    --                   Character values using the format ["xx"] where XX is
2675    --                   two hexadecimal digits representing the coding ('Pos
2676    --                   value) of the character in type Character (or
2677    --                   Wide_Character). The hexadecimal digits may use upper
2678    --                   of lower case.
2679    --
2680    --   NONE            No wide characters are allowed.  Same
2681    --                   as /NOWIDE_CHARCTER_ENCODING.
2682    --
2683    --   HEX             In this encoding, a wide character is represented by
2684    --                   the following five character sequence: ESC a b c d
2685    --                   Where 'a', 'b', 'c', and 'd' are the four hexadecimal
2686    --                   characters (using uppercase letters) of the wide
2687    --                   character code. For example, ESC A345 is used to
2688    --                   represent the wide character with code 16#A345#. This
2689    --                   scheme is compatible with use of the full
2690    --                   Wide_Character set.
2691    --
2692    --   UPPER           The wide character with encoding 16#abcd# where the
2693    --                   upper bit is on (in other words, "a" is in the range
2694    --                   8-F) is represented as two bytes, 16#ab# and 16#cd#.
2695    --                   The second byte may never be a format control
2696    --                   character, but is not required to be in the upper
2697    --                   half. This method can be also used for shift-JIS or
2698    --                   EUC, where the internal coding matches the external
2699    --                   coding.
2700    --
2701    --   SHIFT_JIS       A wide character is represented by a two-character
2702    --                   sequence, 16#ab# and 16#cd#, with the restrictions
2703    --                   described for upper-half encoding as described above.
2704    --                   The internal character code is the corresponding JIS
2705    --                   character according to the standard algorithm for
2706    --                   Shift-JIS conversion. Only characters defined in the
2707    --                   JIS code set table can be used with this encoding
2708    --                   method.
2709    --
2710    --   UTF8            A wide character is represented using
2711    --                   UCS Transformation Format 8 (UTF-8) as defined in Annex
2712    --                   R of ISO 10646-1/Am.2.  Depending on the character
2713    --                   value, the representation is a one, two, or three byte
2714    --                   sequence:
2715    --
2716    --                   16#0000#-16#007f#: 2#0xxxxxxx#
2717    --                   16#0080#-16#07ff#: 2#110xxxxx# 2#10xxxxxx#
2718    --                   16#0800#-16#ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx#
2719    --
2720    --                   where the xxx bits correspond to the left-padded bits
2721    --                   of the the 16-bit character value. Note that all lower
2722    --                   half ASCII characters are represented as ASCII bytes
2723    --                   and all upper half characters and other wide characters
2724    --                   are represented as sequences of upper-half (The full
2725    --                   UTF-8 scheme allows for encoding 31-bit characters as
2726    --                   6-byte sequences, but in this implementation, all UTF-8
2727    --                   sequences of four or more bytes length will be treated
2728    --                   as illegal).
2729    --
2730    --   EUC             A wide character is represented by a two-character
2731    --                   sequence 16#ab# and 16#cd#, with both characters being
2732    --                   in the upper half. The internal character code is the
2733    --                   corresponding JIS character according to the EUC
2734    --                   encoding algorithm. Only characters defined in the JIS
2735    --                   code set table can be used with this encoding method.
2736
2737    S_GCC_WideX   : aliased constant S := "/NOWIDE_CHARACTER_ENCODING "     &
2738                                              "-gnatWn";
2739    --  NODOC (see /WIDE_CHARACTER_ENCODING)
2740
2741    S_GCC_Xdebug  : aliased constant S := "/XDEBUG "                        &
2742                                              "-gnatD";
2743    --        /NOXDEBUG (D)
2744    --        /XDEBUG
2745    --
2746    --   Output expanded source files for source level debugging.
2747    --   The expanded source (see /EXPAND_SOURCE) is written to files
2748    --   with names formed by appending "_DG" to the input file name,
2749    --   The debugging information generated by the /DEBUG qualifier will then
2750    --   refer to the generated file. This allows source level debugging using
2751    --   the generated code which is sometimes useful for complex code, for
2752    --   example to find out exactly which part of a complex construction
2753    --   raised an exception.
2754
2755    S_GCC_Xref    : aliased constant S := "/XREF="                          &
2756                                             "GENERATE "                    &
2757                                                "!-gnatx "                  &
2758                                             "SUPPRESS "                    &
2759                                                "-gnatx";
2760    --        /XREF[=keyword]
2761    --
2762    --   Normally the compiler generates full cross-referencing information in
2763    --   the .ALI file. This information is used by a number of tools,
2764    --   including GNAT FIND and GNAT XREF.
2765    --
2766    --        GENERATE (D)            Generate cross-referencing information.
2767    --
2768    --        SUPPRESS                Suppress cross-referencing information.
2769    --                                This saves some space and may slightly
2770    --                                speed up compilation, but means that some
2771    --                                tools cannot be used.
2772
2773    S_GCC_Zero    : aliased constant S := "/ZERO_COST_EXCEPTIONS "          &
2774                                              "-gnatZ";
2775    --        /ZERO_COST_EXCEPTIONS
2776    --        /NOZERO_COST_EXCEPTIONS
2777    --
2778    --   As zero-cost exceptions is the default on VMS, this qualifier has
2779    --   no effect, except that it cancels the effect of a previous
2780    --   /LONGJMP_SETJUMP qualifier.
2781
2782    GCC_Switches : aliased constant Switches :=
2783      (S_GCC_Ada_83  'Access,
2784       S_GCC_Ada_95  'Access,
2785       S_GCC_Asm     'Access,
2786       S_GCC_Checks  'Access,
2787       S_GCC_ChecksX 'Access,
2788       S_GCC_Compres 'Access,
2789       S_GCC_Config  'Access,
2790       S_GCC_Current 'Access,
2791       S_GCC_Debug   'Access,
2792       S_GCC_DebugX  'Access,
2793       S_GCC_Data    'Access,
2794       S_GCC_Dist    'Access,
2795       S_GCC_DistX   'Access,
2796       S_GCC_Error   'Access,
2797       S_GCC_ErrorX  'Access,
2798       S_GCC_Expand  'Access,
2799       S_GCC_Extend  'Access,
2800       S_GCC_Ext     'Access,
2801       S_GCC_File    'Access,
2802       S_GCC_Force   'Access,
2803       S_GCC_Full    'Access,
2804       S_GCC_Help    'Access,
2805       S_GCC_Ident   'Access,
2806       S_GCC_IdentX  'Access,
2807       S_GCC_Immed   'Access,
2808       S_GCC_Inline  'Access,
2809       S_GCC_InlineX 'Access,
2810       S_GCC_Jumps   'Access,
2811       S_GCC_Length  'Access,
2812       S_GCC_List    'Access,
2813       S_GCC_Mapping 'Access,
2814       S_GCC_Mess    'Access,
2815       S_GCC_Noadc   'Access,
2816       S_GCC_Noload  'Access,
2817       S_GCC_Nostinc 'Access,
2818       S_GCC_Nostlib 'Access,
2819       S_GCC_Opt     'Access,
2820       S_GCC_OptX    'Access,
2821       S_GCC_Polling 'Access,
2822       S_GCC_Project 'Access,
2823       S_GCC_Psta    'Access,
2824       S_GCC_Report  'Access,
2825       S_GCC_ReportX 'Access,
2826       S_GCC_Repinfo 'Access,
2827       S_GCC_RepinfX 'Access,
2828       S_GCC_RTS     'Access,
2829       S_GCC_Search  'Access,
2830       S_GCC_Style   'Access,
2831       S_GCC_StyleX  'Access,
2832       S_GCC_Symbol  'Access,
2833       S_GCC_Syntax  'Access,
2834       S_GCC_Table   'Access,
2835       S_GCC_Trace   'Access,
2836       S_GCC_Tree    'Access,
2837       S_GCC_Trys    'Access,
2838       S_GCC_Units   'Access,
2839       S_GCC_Unique  'Access,
2840       S_GCC_Upcase  'Access,
2841       S_GCC_Valid   'Access,
2842       S_GCC_Verbose 'Access,
2843       S_GCC_Warn    'Access,
2844       S_GCC_WarnX   'Access,
2845       S_GCC_Wide    'Access,
2846       S_GCC_WideX   'Access,
2847       S_GCC_No_Back 'Access,
2848       S_GCC_Xdebug  'Access,
2849       S_GCC_Xref    'Access,
2850       S_GCC_Zero    'Access);
2851
2852    ----------------------------
2853    -- Switches for GNAT ELIM --
2854    ----------------------------
2855
2856    S_Elim_All    : aliased constant S := "/ALL "                           &
2857                                             "-a";
2858    --        /NOALL (D)
2859    --        /ALL
2860    --
2861    --   Also look for subprograms from the GNAT run time that can be
2862    --   eliminated. Note that when 'gnat.adc' is produced using this switch,
2863    --   the entire program must be recompiled with qualifier /ALL_FILES of
2864    --   GNAT MAKE.
2865
2866    S_Elim_Bind   : aliased constant S := "/BIND_FILE=<"                    &
2867                                             "-b>";
2868    --        /BIND_FILE=file_name
2869    --
2870    --   Specifies file_name as the bind file to process. If this qualifier is
2871    --   not used, the name of the bind file is computed from the full expanded
2872    --   Ada name of a main subprogram.
2873
2874    S_Elim_Comp   : aliased constant S := "/COMPILER=@"                     &
2875                                             "--GCC=@";
2876    --        /COMPILER=path_name
2877    --
2878    --   Instructs GNAT ELIM to use a specific gcc compiler instead of one
2879    --   available on the path.
2880
2881    S_Elim_Config : aliased constant S := "/CONFIGURATION_PRAGMAS=<"        &
2882                                             "-C>";
2883    --        /CONFIGURATION_PRAGMAS=path_name
2884    --
2885    --   Specifies a file that contains configuration pragmas.
2886    --   The file must be specified with absolute path.
2887
2888    S_Elim_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
2889                                            "!-I-";
2890    --        /CURRENT_DIRECTORY (D)
2891    --        /NOCURRENT_DIRECTORY
2892    --
2893    --        Look for source files in the default directory.
2894
2895    S_Elim_GNATMAKE : aliased constant S := "/GNATMAKE=@"                   &
2896                                             "--GNATMAKE=@";
2897    --        /GNATMAKE=path_name
2898    --
2899    --   Instructs GNAT MAKE to use a specific gnatmake instead of one available
2900    --   on the path.
2901
2902    S_Elim_Quiet  : aliased constant S := "/QUIET "                         &
2903                                             "-q";
2904    --        /NOQUIET (D)
2905    --        /QUIET
2906    --
2907    --   Quiet mode: by default GNAT ELIM outputs to the standard error stream
2908    --   the number of program units left to be processed. This option turns
2909    --   this trace off.
2910
2911    S_Elim_Search : aliased constant S := "/SEARCH=*"                       &
2912                                             "-I*";
2913    --        /SEARCH=(directory, ...)
2914    --
2915    --   When looking for source files also look in the specified directories.
2916
2917    S_Elim_Verb   : aliased constant S := "/VERBOSE "                       &
2918                                             "-v";
2919    --        /NOVERBOSE (D)
2920    --        /VERBOSE
2921    --
2922    --   Verbose mode: GNAT ELIM version information is output as Ada comments
2923    --   to the standard output stream. Also, in addition to the number of
2924    --   program units left, GNAT ELIM will output the name of the current unit
2925    --   being processed.
2926
2927    Elim_Switches : aliased constant Switches :=
2928      (S_Elim_All     'Access,
2929       S_Elim_Bind    'Access,
2930       S_Elim_Comp    'Access,
2931       S_Elim_Config  'Access,
2932       S_Elim_Current 'Access,
2933       S_Elim_GNATMAKE'Access,
2934       S_Elim_Quiet   'Access,
2935       S_Elim_Search  'Access,
2936       S_Elim_Verb    'Access);
2937
2938    ----------------------------
2939    -- Switches for GNAT FIND --
2940    ----------------------------
2941
2942    S_Find_All     : aliased constant S := "/ALL_FILES "                    &
2943                                             "-a";
2944    --        /NOALL_FILES (D)
2945    --        /ALL_FILES
2946    --
2947    --   If this switch is present, FIND and XREF will parse the read-only
2948    --   files found in the library search path. Otherwise, these files will
2949    --   be ignored. This option can be used to protect Gnat sources or your
2950    --   own libraries from being parsed, thus making FIND and XREF much
2951    --   faster, and their output much smaller.
2952
2953    S_Find_Deriv   : aliased constant S := "/DERIVED_TYPE_INFORMATION "     &
2954                                             "-d";
2955    --        /NODERIVED_TYPE_INFORMATION (D)
2956    --        /DERIVED_TYPE_INFORMATION
2957    --
2958    --   Output the parent type reference for each matching derived types.
2959
2960    S_Find_Expr    : aliased constant S := "/EXPRESSIONS "                  &
2961                                             "-e";
2962    --        /NOEXPRESSIONS (D)
2963    --        /EXPRESSIONS
2964    --
2965    --   By default, FIND accepts the simple regular expression set for pattern.
2966    --   If this switch is set, then the pattern will be considered as a full
2967    --   Unix-style regular expression.
2968
2969    S_Find_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
2970                                             "-X" & '"';
2971    --        /EXTERNAL_REFERENCE="name=val"
2972    --
2973    --   Specifies an external reference to the project manager. Useful only if
2974    --   /PROJECT_FILE is used.
2975    --
2976    --   Example:
2977    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
2978
2979    S_Find_Full    : aliased constant S := "/FULL_PATHNAME "                &
2980                                             "-f";
2981    --        /NOFULL_PATHNAME (D)
2982    --        /FULL_PATHNAME
2983    --
2984    --   If this switch is set, the output file names will be preceded by their
2985    --   directory (if the file was found in the search path). If this switch
2986    --   is not set, the directory will not be printed.
2987
2988    S_Find_Ignore  : aliased constant S := "/IGNORE_LOCALS "                &
2989                                             "-g";
2990    --        /NOIGNORE_LOCALS (D)
2991    --        /IGNORE_LOCALS
2992    --
2993    --   If this switch is set, information is output only for library-level
2994    --   entities, ignoring local entities. The use of this switch may
2995    --   accelerate FIND and XREF.
2996
2997    S_Find_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
2998                                             "DEFAULT "                     &
2999                                                "-vP0 "                     &
3000                                             "MEDIUM "                      &
3001                                                "-vP1 "                     &
3002                                             "HIGH "                        &
3003                                                "-vP2";
3004    --        /MESSAGES_PROJECT_FILE[=messages-option]
3005    --
3006    --   Specifies the "verbosity" of the parsing of project files.
3007    --   messages-option may be one of the following:
3008    --
3009    --      DEFAULT (D)  No messages are output if there is no error or warning.
3010    --
3011    --      MEDIUM       A small number of messages are output.
3012    --
3013    --      HIGH         A great number of messages are output, most of them not
3014    --                   being useful for the user.
3015
3016    S_Find_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
3017                                             "-nostdinc";
3018    --        /NOSTD_INCLUDES
3019    --
3020    --   Do not look for sources in the system default directory.
3021
3022    S_Find_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
3023                                             "-nostdlib";
3024    --        /NOSTD_LIBRARIES
3025    --
3026    --   Do not look for library files in the system default directory.
3027
3028    S_Find_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
3029                                             "-aO*";
3030    --        /OBJECT_SEARCH=(directory,...)
3031    --
3032    --   When searching for library and object files, look in the specified
3033    --   directories. The order in which library files are searched is the same
3034    --   as for MAKE.
3035
3036    S_Find_Print   : aliased constant S := "/PRINT_LINES "                  &
3037                                             "-s";
3038    --        /NOPRINT_LINES (D)
3039    --        /PRINT_LINES
3040    --
3041    --   Output the content of the Ada source file lines were the entity was
3042    --   found.
3043
3044    S_Find_Project : aliased constant S := "/PROJECT=@"                     &
3045                                             "-p@";
3046    --        /PROJECT=file
3047    --
3048    --   Specify a project file to use. By default, FIND and XREF will try to
3049    --   locate a project file in the current directory.
3050    --
3051    --   If a project file is either specified or found by the tools, then the
3052    --   content of the source directory and object directory lines are added
3053    --   as if they had been specified respectively by /SOURCE_SEARCH and
3054    --   /OBJECT_SEARCH.
3055    --
3056    --   This qualifier is not compatible with /PROJECT_FILE
3057
3058    S_Find_Prj     : aliased constant S := "/PROJECT_FILE=<"               &
3059                                             "-P>";
3060    --        /PROJECT_FILE=filename
3061    --
3062    --   Specifies the main project file to be used. The project files rooted
3063    --   at the main project file will be parsed before looking for sources.
3064    --   The source and object directories to be searched will be communicated
3065    --   to gnatfind  through logical names ADA_PRJ_INCLUDE_FILE and
3066    --   ADA_PRJ_OBJECTS_FILE.
3067
3068    S_Find_Ref     : aliased constant S := "/REFERENCES "                   &
3069                                             "-r";
3070    --        /NOREFERENCES (D)
3071    --        /REFERENCES
3072    --
3073    --   By default, FIND will output only the information about the
3074    --   declaration, body or type completion of the entities. If this switch
3075    --   is set, the FIND will locate every reference to the entities in the
3076    --   files specified on the command line (or in every file in the search
3077    --   path if no file is given on the command line).
3078
3079    S_Find_Search  : aliased constant S := "/SEARCH=*"                      &
3080                                             "-I*";
3081    --        /SEARCH=(directory,...)
3082    --
3083    --   Equivalent to:
3084    --   /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
3085
3086    S_Find_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
3087                                             "-aI*";
3088    --        /SOURCE_SEARCH=(directory,...)
3089    --
3090    --   When looking for source files also look in the specified directories.
3091    --   The order in which source file search is undertaken is the same as for
3092    --   MAKE.
3093
3094    S_Find_Types   : aliased constant S := "/TYPE_HIERARCHY "               &
3095                                             "-t";
3096    --        /NOTYPE_HIERARCHY (D)
3097    --        /TYPE_HIERARCHY
3098    --
3099    --   Output the type hierarchy for the specified type. It acts like the
3100    --   /DERIVED_TYPE_INFORMATION qualifier, but recursively from parent type
3101    --   to parent type. When this qualifier is specified it is not possible to
3102    --   specify more than one file.
3103
3104    Find_Switches : aliased constant Switches :=
3105      (S_Find_All     'Access,
3106       S_Find_Deriv   'Access,
3107       S_Find_Expr    'Access,
3108       S_Find_Ext     'Access,
3109       S_Find_Full    'Access,
3110       S_Find_Ignore  'Access,
3111       S_Find_Mess    'Access,
3112       S_Find_Nostinc 'Access,
3113       S_Find_Nostlib 'Access,
3114       S_Find_Object  'Access,
3115       S_Find_Print   'Access,
3116       S_Find_Project 'Access,
3117       S_Find_Prj     'Access,
3118       S_Find_Ref     'Access,
3119       S_Find_Search  'Access,
3120       S_Find_Source  'Access,
3121       S_Find_Types   'Access);
3122
3123    ------------------------------
3124    -- Switches for GNAT KRUNCH --
3125    ------------------------------
3126
3127    S_Krunch_Count  : aliased constant S := "/COUNT=#"                      &
3128                                             "`#";
3129    --        /COUNT=39 (D)
3130    --        /COUNT=nnn
3131    --
3132    --   Limit file names to nnn characters (where nnn is a decimal
3133    --   integer). The maximum file name length is 39, but if you want to
3134    --   generate a set of files that would be usable if ported to a system
3135    --   with some different maximum file length, then a different value can
3136    --   be specified.
3137
3138    Krunch_Switches : aliased constant Switches  :=
3139      (1 .. 1 => S_Krunch_Count  'Access);
3140
3141    -------------------------------
3142    -- Switches for GNAT LIBRARY --
3143    -------------------------------
3144
3145    S_Lbr_Config    : aliased constant S := "/CONFIG=@"                     &
3146                                             "--config=@";
3147    --        /CONFIG=file
3148    --
3149    --   File containing configuration pragmas.
3150
3151    S_Lbr_Create    : aliased constant S := "/CREATE=%"                     &
3152                                             "--create=%";
3153    --        /CREATE=directory
3154    --
3155    --   Directory to create and build alternate library in.
3156
3157    S_Lbr_Delete    : aliased constant S := "/DELETE=%"                     &
3158                                             "--delete=%";
3159    --        /DELETE=directory
3160    --
3161    --   Directory containing alternate library to be deleted.
3162
3163    S_Lbr_Set       : aliased constant S := "/SET=%"                        &
3164                                             "--set=%";
3165    --        /SET=directory
3166    --
3167    --   Directory containing alternate library to be made the current library.
3168
3169    Lbr_Switches : aliased constant Switches  :=
3170      (S_Lbr_Config 'Access,
3171       S_Lbr_Create 'Access,
3172       S_Lbr_Delete 'Access,
3173       S_Lbr_Set    'Access);
3174
3175    ----------------------------
3176    -- Switches for GNAT LINK --
3177    ----------------------------
3178
3179    S_Link_Bind    : aliased constant S := "/BIND_FILE="                    &
3180                                             "ADA "                         &
3181                                                "-A "                       &
3182                                             "C "                           &
3183                                                "-C";
3184    --        /BIND_FILE=[bind-file-option]
3185    --
3186    --   Specifies the language of the binder generated file.
3187    --
3188    --        ADA (D)         Binder file is Ada.
3189    --
3190    --        C               Binder file is 'C'.
3191
3192    S_Link_Debug   : aliased constant S := "/DEBUG="                        &
3193                                             "ALL "                         &
3194                                                "-g3 "                      &
3195                                             "NONE "                        &
3196                                                "-g0 "                      &
3197                                             "TRACEBACK "                   &
3198                                                "-g1 "                      &
3199                                             "NOTRACEBACK "                 &
3200                                                "-g0";
3201    --        /NODEBUG (D)
3202    --        /DEBUG[=debug-option]
3203    --
3204    --   Specifies the amount of debugging information included. 'debug-option'
3205    --   is one of the following:
3206    --
3207    --        ALL (D)      Include full debugging information.
3208    --
3209    --        NONE         Provide no debugging information.  Same as /NODEBUG.
3210    --
3211    --        TRACEBACK    Provide sufficient debug information for a traceback.
3212    --
3213    --        NOTRACEBACK  Same as NONE.
3214
3215    S_Link_Nodebug : aliased constant S := "/NODEBUG "                      &
3216                                             "-g0";
3217    --  NODOC (see /DEBUG)
3218
3219    S_Link_Execut  : aliased constant S := "/EXECUTABLE=@"                  &
3220                                             "-o@";
3221    --        /EXECUTABLE=exec-name
3222    --
3223    --   'exec-name' specifies an alternative name for the generated executable
3224    --   program. If this qualifier switch is omitted, the executable is called
3225    --   the name of the main unit. So "$ GNAT LINK TRY.ALI" creates an
3226    --   executable called TRY.EXE.
3227
3228    S_Link_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3229                                             "-X" & '"';
3230    --        /EXTERNAL_REFERENCE="name=val"
3231    --
3232    --   Specifies an external reference to the project manager. Useful only if
3233    --   /PROJECT_FILE is used.
3234    --
3235    --   Example:
3236    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3237
3238    S_Link_Forlink : aliased constant S := "/FOR_LINKER=" & '"'             &
3239                                             "--for-linker=" & '"';
3240    --        /FOR_LINKER=<string>
3241    --
3242    --   Transmit the option <string> to the underlying linker.
3243
3244    S_Link_Force   : aliased constant S := "/FORCE_OBJECT_FILE_LIST "       &
3245                                             "-f";
3246    --        /NOFORCE_OBJECT_FILE_LIST (D)
3247    --        /FORCE_OBJECT_FILE_LIST
3248    --
3249    --   Forces the generation of a file that contains commands for the linker.
3250    --   This is useful in some cases to deal with special situations where the
3251    --   command line length is exceeded.
3252
3253    S_Link_Ident   : aliased constant S := "/IDENTIFICATION=" & '"'         &
3254                                             "--for-linker=IDENT="          &
3255                                             '"';
3256    --        /IDENTIFICATION="<string>"
3257    --
3258    --   "<string>" specifies the string to be stored in the image file ident-
3259    --   ification field in the image header. It overrides any pragma Ident
3260    --   specified string.
3261
3262    S_Link_Libdir  : aliased constant S := "/LIBDIR=*"                      &
3263                                             "-L*";
3264    --        /LIBDIR=(directory, ...)
3265    --
3266    --   Look for libraries in the specified directories.
3267
3268    S_Link_Library : aliased constant S := "/LIBRARY=|"                     &
3269                                             "-l|";
3270    --        /LYBRARY=xyz
3271    --
3272    --   Link with library named "xyz".
3273
3274    S_Link_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3275                                             "DEFAULT "                     &
3276                                                "-vP0 "                     &
3277                                             "MEDIUM "                      &
3278                                                "-vP1 "                     &
3279                                             "HIGH "                        &
3280                                                "-vP2";
3281    --        /MESSAGES_PROJECT_FILE[=messages-option]
3282    --
3283    --   Specifies the "verbosity" of the parsing of project files.
3284    --   messages-option may be one of the following:
3285    --
3286    --      DEFAULT (D)  No messages are output if there is no error or warning.
3287    --
3288    --      MEDIUM       A small number of messages are output.
3289    --
3290    --      HIGH         A great number of messages are output, most of them not
3291    --                   being useful for the user.
3292
3293    S_Link_Nocomp  : aliased constant S := "/NOCOMPILE "                    &
3294                                             "-n";
3295    --        /NOCOMPILE
3296    --
3297    --   Do not compile the file generated by the binder.
3298    --   This may be used when a link is rerun with different options,
3299    --   but there is no need to recompile the binder generated file.
3300
3301    S_Link_Noinhib : aliased constant S := "/NOINHIBIT-EXEC "               &
3302                                             "--for-linker=--noinhibit-exec";
3303    --        /NOINHIBIT-EXEC
3304    --
3305    --   Delete executable if there are errors or warnings.
3306
3307    S_Link_Nofiles : aliased constant S := "/NOSTART_FILES "                &
3308                                             "-nostartfiles";
3309    --        /NOSTART_FILES
3310    --
3311    --   Link in default image initialization and startup functions.
3312
3313    S_Link_Project : aliased constant S := "/PROJECT_FILE=<"                &
3314                                             "-P>";
3315    --        /PROJECT_FILE=filename
3316    --
3317    --   Specifies the main project file to be used. The project files rooted
3318    --   at the main project file will be parsed before the invocation of the
3319    --   linker.
3320    --   The source and object directories to be searched will be communicated
3321    --   to the linker through logical names ADA_PRJ_INCLUDE_FILE and
3322    --   ADA_PRJ_OBJECTS_FILE.
3323
3324    S_Link_Return  : aliased constant S := "/RETURN_CODES="                 &
3325                                             "POSIX "                       &
3326                                                "!-mvms-return-codes "      &
3327                                             "VMS "                         &
3328                                                "-mvms-return-codes";
3329    --        /RETURN_CODES=POSIX (D)
3330    --        /RETURN_CODES=VMS
3331    --
3332    --   Specifies the style of codes returned by
3333    --   Ada.Command_Line.Set_Exit_Status.
3334    --
3335    --        POSIX (D)   Return Posix compatible exit codes.
3336    --
3337    --        VMS         Return VMS compatible exit codes. The value returned
3338    --                    is identically equal to the Set_Exit_Status parameter.
3339
3340    S_Link_Static  : aliased constant S := "/STATIC "                       &
3341                                             "--for-linker=-static";
3342    --        /NOSTATIC (D)
3343    --        /STATIC
3344    --
3345    --   Indicate to the linker that the link is static.
3346
3347    S_Link_Verb    : aliased constant S := "/VERBOSE "                      &
3348                                             "-v";
3349    --        /NOVERBOSE (D)
3350    --        /VERBOSE
3351    --
3352    --   Causes additional information to be output, including a full list of
3353    --   the included object files. This switch option is most useful when you
3354    --   want to see what set of object files are being used in the link step.
3355
3356    S_Link_ZZZZZ   : aliased constant S := "/<other> "                      &
3357                                             "--for-linker=";
3358    --        /<other>
3359    --
3360    --   Any other switch that will be transmited to the underlying linker.
3361
3362    Link_Switches : aliased constant Switches :=
3363      (S_Link_Bind    'Access,
3364       S_Link_Debug   'Access,
3365       S_Link_Nodebug 'Access,
3366       S_Link_Execut  'Access,
3367       S_Link_Ext     'Access,
3368       S_Link_Forlink 'Access,
3369       S_Link_Force   'Access,
3370       S_Link_Ident   'Access,
3371       S_Link_Libdir  'Access,
3372       S_Link_Library 'Access,
3373       S_Link_Mess    'Access,
3374       S_Link_Nocomp  'Access,
3375       S_Link_Nofiles 'Access,
3376       S_Link_Noinhib 'Access,
3377       S_Link_Project 'Access,
3378       S_Link_Return  'Access,
3379       S_Link_Static  'Access,
3380       S_Link_Verb    'Access,
3381       S_Link_ZZZZZ   'Access);
3382
3383    ----------------------------
3384    -- Switches for GNAT LIST --
3385    ----------------------------
3386
3387    S_List_All     : aliased constant S := "/ALL_UNITS "                    &
3388                                             "-a";
3389    --        /NOALL_UNITS (D)
3390    --        /ALL_UNITS
3391    --
3392    --   Consider all units, including those of the predefined Ada library.
3393    --   Especially useful with /DEPENDENCIES.
3394
3395    S_List_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
3396                                             "!-I-";
3397    --        /CURRENT_DIRECTORY (D)
3398    --        /NOCURRENT_DIRECTORY
3399    --
3400    --   Look for source, library or object files in the default directory.
3401
3402    S_List_Depend  : aliased constant S := "/DEPENDENCIES "                 &
3403                                             "-d";
3404    --        /NODEPENDENCIES (D)
3405    --        /DEPENDENCIES
3406
3407    S_List_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3408                                             "-X" & '"';
3409    --        /EXTERNAL_REFERENCE="name=val"
3410    --
3411    --   Specifies an external reference to the project manager. Useful only if
3412    --   /PROJECT_FILE is used.
3413    --
3414    --   Example:
3415    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3416
3417    S_List_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3418                                             "DEFAULT "                     &
3419                                                "-vP0 "                     &
3420                                             "MEDIUM "                      &
3421                                                "-vP1 "                     &
3422                                             "HIGH "                        &
3423                                                "-vP2";
3424    --        /MESSAGES_PROJECT_FILE[=messages-option]
3425    --
3426    --   Specifies the "verbosity" of the parsing of project files.
3427    --   messages-option may be one of the following:
3428    --
3429    --      DEFAULT (D)  No messages are output if there is no error or warning.
3430    --
3431    --      MEDIUM       A small number of messages are output.
3432    --
3433    --      HIGH         A great number of messages are output, most of them not
3434    --                   being useful for the user.
3435
3436    S_List_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
3437                                             "-nostdinc";
3438    --        /NOSTD_INCLUDES
3439    --
3440    --   Do not look for sources of the run time in the standard directory.
3441
3442    S_List_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
3443                                             "-aO*";
3444    --        /OBJECT_SEARCH=(directory,...)
3445    --
3446    --   When looking for library and object files look also in the specified
3447    --   directories.
3448
3449    S_List_Output  : aliased constant S := "/OUTPUT="                       &
3450                                             "SOURCES "                     &
3451                                                "-s "                       &
3452                                             "DEPEND "                      &
3453                                                "-d "                       &
3454                                             "OBJECTS "                     &
3455                                                "-o "                       &
3456                                             "UNITS "                       &
3457                                                "-u "                       &
3458                                             "OPTIONS "                     &
3459                                                "-h "                       &
3460                                             "VERBOSE "                     &
3461                                                "-v ";
3462    --        /OUTPUT=(option,option,...)
3463    --
3464    --        SOURCES (D)     Only output information about source files.
3465    --
3466    --        DEPEND          List sources from which specified units depend on.
3467    --
3468    --        OBJECTS         Only output information about object files.
3469    --
3470    --        UNITS           Only output information about compilation units.
3471    --
3472    --        OPTIONS         Output the list of options.
3473    --
3474    --        VERBOSE         Output the complete source and object paths.
3475    --                        Do not use the default column layout but instead
3476    --                        use long format giving as much as information
3477    --                        possible on each requested units, including
3478    --                        special characteristics.
3479
3480    S_List_Project : aliased constant S := "/PROJECT_FILE=<"                &
3481                                             "-P>";
3482    --        /PROJECT_FILE=filename
3483    --
3484    --   Specifies the main project file to be used. The project files rooted
3485    --   at the main project file will be parsed before doing any listing.
3486    --   The source and object directories to be searched will be communicated
3487    --   to gnatlist through logical names ADA_PRJ_INCLUDE_FILE and
3488    --   ADA_PRJ_OBJECTS_FILE.
3489
3490    S_List_Search  : aliased constant S := "/SEARCH=*"                      &
3491                                             "-I*";
3492    --        /SEARCH=(directory,...)
3493    --
3494    --   Search the specified directories for both source and object files.
3495
3496    S_List_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
3497                                             "-aI*";
3498    --        /SOURCE_SEARCH=(directory,...)
3499    --
3500    --   When looking for source files also look in the specified directories.
3501
3502    List_Switches : aliased constant Switches :=
3503      (S_List_All     'Access,
3504       S_List_Current 'Access,
3505       S_List_Depend  'Access,
3506       S_List_Ext     'Access,
3507       S_List_Mess    'Access,
3508       S_List_Nostinc 'Access,
3509       S_List_Object  'Access,
3510       S_List_Output  'Access,
3511       S_List_Project 'Access,
3512       S_List_Search  'Access,
3513       S_List_Source  'Access);
3514
3515    ----------------------------
3516    -- Switches for GNAT MAKE --
3517    ----------------------------
3518
3519    S_Make_Actions : aliased constant S := "/ACTIONS="                      &
3520                                             "COMPILE "                     &
3521                                                "-c "                       &
3522                                             "BIND "                        &
3523                                                "-b "                       &
3524                                             "LINK "                        &
3525                                                "-l ";
3526    --        /ACTIONS=(keyword[,...])
3527    --
3528    --  GNAT MAKE default behavior is to check if the sources are up to date,
3529    --  compile those sources that are not up to date, bind the main source,
3530    --  then link the executable.
3531    --
3532    --  With the /ACTIONS qualifier, GNAT MAKE may be restricted to one or
3533    --  two of these three steps:
3534    --
3535    --  o Compile
3536    --  o Bind
3537    --  o Link
3538    --
3539    --
3540    --   You may specify one or more of the following keywords to the /ACTIONS
3541    --   qualifier:
3542    --
3543    --   BIND            Bind only. Can be combined with /ACTIONS=COMPILE
3544    --                   to do compilation and binding, but no linking.
3545    --                   Can be combined with /ACTIONS=LINK to do binding and
3546    --                   linking. When not combined with /ACTIONS=COMPILE,
3547    --                   all the units in the closure of the main program must
3548    --                   have been previously compiled and must be up to date.
3549    --
3550    --   COMPILE         Compile only. Do not perform binding, except when
3551    --                   /ACTIONS=BIND is also specified. Do not perform
3552    --                   linking, except if both /ACTIONS=BIND and /ACTIONS=LINK
3553    --                   are also specified.
3554    --
3555    --   LINK            Link only. Can be combined with /ACTIONS=BIND to do
3556    --                   binding and linking. Linking will not be performed
3557    --                   if combined with /ACTIONS=COMPILE but not with
3558    --                   /ACTIONS=BIND\. When not combined with /ACTIONS=BIND
3559    --                   all the units in the closure of the main program must
3560    --                   have been previously compiled and must be up to date,
3561    --                   and the main program need to have been bound.
3562
3563    S_Make_All     : aliased constant S := "/ALL_FILES "                    &
3564                                             "-a";
3565    --        /NOALL_FILES (D)
3566    --        /ALL_FILES
3567    --
3568    --   Consider all files in the make process, even the GNAT internal system
3569    --   files (for example, the predefined Ada library files). By default,
3570    --   GNAT MAKE does not check these files (however, if there is an
3571    --   installation problem, it will be caught when GNAT MAKE binds your
3572    --   program). You may have to specify this qualifier if you are working on
3573    --   GNAT itself.  The vast majority of GNAT MAKE users never need to
3574    --   specify this switch.  All GNAT internal files with will be compiled
3575    --   with /STYLE_CHECK=GNAT.
3576
3577    S_Make_Allproj : aliased constant S := "/ALL_PROJECTS "                 &
3578                                             "-U";
3579    --        /NOALL_PROJECTS (D)
3580    --        /ALL_PROJECTS
3581    --
3582    --   Implies /Unique.
3583    --   When used without project files, it is equivalent to /UNIQUE.
3584    --   When used with a project file wit no main (neither on the command
3585    --   line nor in the attribute Main) check every source of every project,
3586    --   recompile all sources that are not up to date and rebuild libraries
3587    --   if necessary.
3588
3589    S_Make_Bind    : aliased constant S := "/BINDER_QUALIFIERS=?"           &
3590                                             "-bargs BIND";
3591    --        /BINDER_QUALIFIERS
3592    --
3593    --   Any qualifiers specified after this qualifier other than
3594    --   /COMPILER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
3595    --   passed to any GNAT BIND commands generated by GNAT MAKE.
3596
3597    S_Make_Bindprj : aliased constant S := "/BND_LNK_FULL_PROJECT "         &
3598                                             "-B";
3599    --        /BND_LNK_FULL_PROJECT
3600    --
3601    --   Bind and link all sources of a project, without any consideration
3602    --   to attribute Main, if there is one. This qualifier need to be
3603    --   used in conjunction with the /PROJECT_FILE= qualifier and cannot
3604    --   be used with a main subprogram on the command line or for
3605    --   a library project file. As the binder is invoked with the option
3606    --   meaning "No Ada main subprogram", the user must ensure that the
3607    --   proper options are specified to the linker. This qualifier is
3608    --   normally used when the main subprogram is in a foreign language
3609    --   such as C.
3610
3611    S_Make_Comp    : aliased constant S := "/COMPILER_QUALIFIERS=?"         &
3612                                             "-cargs COMPILE";
3613    --        /COMPILER_QUALIFIERS
3614    --
3615    --   Any qualifiers specified after this qualifier other than
3616    --   /BINDER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
3617    --   passed to any GNAT COMPILE commands generated by GNAT MAKE.
3618
3619    S_Make_Cond    : aliased constant S := "/CONDITIONAL_SOURCE_SEARCH=*"   &
3620                                             "-A*";
3621    --        /CONDITIONAL_SOURCE_SEARCH=dir
3622    --
3623    --   Equivalent to "/SOURCE_SEARCH=dir /SKIP_MISSING=dir".
3624
3625    S_Make_Cont    : aliased constant S := "/CONTINUE_ON_ERROR "            &
3626                                             "-k";
3627    --        /NOCONTINUE_ON_ERROR (D)
3628    --        /CONTINUE_ON_ERROR
3629    --
3630    --   Keep going. Continue as much as possible after a compilation error.
3631    --   To ease the programmer's task in case of compilation errors, the list
3632    --   of sources for which the compile fails is given when GNAT MAKE
3633    --   terminates.
3634
3635    S_Make_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
3636                                             "!-I-";
3637    --        /CURRENT_DIRECTORY (D)
3638    --        /NOCURRENT_DIRECTORY
3639    --
3640    --   Look for source, library or object files in the default directory.
3641
3642    S_Make_Dep     : aliased constant S := "/DEPENDENCIES_LIST "            &
3643                                             "-M";
3644    --        /NODEPENDENCIES_LIST (D)
3645    --        /DEPENDENCIES_LIST
3646    --
3647    --   Check if all objects are up to date. If they are, output the object
3648    --   dependences to SYS$OUTPUT in a form that can be directly exploited in
3649    --   a Unix-style Makefile. By default, each source file is prefixed with
3650    --   its (relative or absolute) directory name. This name is whatever you
3651    --   specified in the various /SOURCE_SEARCH and /SEARCH qualifiers.  If
3652    --   you also speficy the /QUIET qualifier, only the source file names,
3653    --   without relative paths, are output. If you just specify the
3654    --   /DEPENDENCY_LIST qualifier, dependencies of the GNAT internal system
3655    --   files are omitted.  This is typically what you want. If you also
3656    --   specify the /ALL_FILES qualifier, dependencies of the GNAT internal
3657    --   files are also listed. Note that dependencies of the objects in
3658    --   external Ada libraries (see the /SKIP_MISSING qualifier) are never
3659    --   reported.
3660
3661    S_Make_Dirobj  : aliased constant S := "/DIRECTORY_OBJECTS=@"           &
3662                                             "-D@";
3663    --        /DIRECTORY_OBJECTS=<file>
3664    --
3665    --   Put all object files and .ALI files in <file>.
3666    --   This qualifier is not compatible with /PROJECT_FILE.
3667
3668    S_Make_Doobj   : aliased constant S := "/DO_OBJECT_CHECK "              &
3669                                             "-n";
3670    --        /NODO_OBJECT_CHECK (D)
3671    --        /DO_OBJECT_CHECK
3672    --
3673    --   Don't compile, bind, or link. Output a single command that will
3674    --   recompile an out of date unit, if any. Repeated use of this option,
3675    --   followed by carrying out the indicated compilation, will eventually
3676    --   result in recompiling all required units.
3677    --
3678    --   If any ALI is missing during the process, GNAT MAKE halts and
3679    --   displays an error message.
3680
3681    S_Make_Execut  : aliased constant S := "/EXECUTABLE=@"                  &
3682                                             "-o@";
3683    --        /EXECUTABLE=exec-name
3684    --
3685    --   The name of the final executable program will be 'exec_name'. If this
3686    --   qualifier is omitted the default name for the executable will be the
3687    --   name of the input file with an EXE filetype.  You may prefix
3688    --   'exec_name' with a relative or absolute directory path.
3689
3690    S_Make_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3691                                             "-X" & '"';
3692    --        /EXTERNAL_REFERENCE="name=val"
3693    --
3694    --   Specifies an external reference to the project manager. Useful only if
3695    --   /PROJECT_FILE is used.
3696    --
3697    --   Example:
3698    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3699
3700    S_Make_Force   : aliased constant S := "/FORCE_COMPILE "                &
3701                                             "-f";
3702    --        /NOFORCE_COMPILE (D)
3703    --        /FORCE_COMPILE
3704    --
3705    --   Force recompilations. Recompile all sources, even though some object
3706    --   files may be up to date, but don't recompile predefined or GNAT
3707    --   internal files unless the /ALL_FILES qualfier is also specified.
3708
3709    S_Make_Full    : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES "  &
3710                                             "-F";
3711    --        /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
3712    --        /FULL_PATH_IN_BRIEF_MESSAGES
3713    --
3714    --   When using project files, if some errors or warnings are detected
3715    --   during parsing and verbose mode is not in effect (no use of qualifier
3716    --   /VERBOSE), then error lines start with the full path name of the
3717    --   project file, rather than its simple file name.
3718
3719    S_Make_Inplace : aliased constant S := "/IN_PLACE "                     &
3720                                             "-i";
3721    --        /NOIN_PLACE (D)
3722    --        /IN_PLACE
3723    --
3724    --   In normal mode, GNAT MAKE compiles all object files and ALI files
3725    --   into the current directory. If the /IN_PLACE switch is used,
3726    --   then instead object files and ALI files that already exist are over-
3727    --   written in place. This means that once a large project is organized
3728    --   into separate directories in the desired manner, then GNAT MAKE will
3729    --   automatically maintain and update this organization. If no ALI files
3730    --   are found on the Ada object path, the new object and ALI files are
3731    --   created in the directory containing the source being compiled.
3732
3733    S_Make_Library : aliased constant S := "/LIBRARY_SEARCH=*"              &
3734                                             "-L*";
3735    --        /LIBRARY_SEARCH=(directory[,...])
3736    --
3737    --   Add the specified directories to the list of directories in which the
3738    --   linker will search for libraries.
3739
3740    S_Make_Link    : aliased constant S := "/LINKER_QUALIFIERS=?"           &
3741                                             "-largs LINK";
3742    --        /LINKER_QUALIFIERS
3743    --
3744    --   Any qualifiers specified after this qualifier other than
3745    --   /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /MAKE_QUALIFIERS will be
3746    --   passed to any GNAT LINK commands generated by GNAT LINK.
3747
3748    S_Make_Make    : aliased constant S := "/MAKE_QUALIFIERS=?"             &
3749                                             "-margs MAKE";
3750    --        /MAKE_QUALIFIERS
3751    --
3752    --   Any qualifiers specified after this qualifier other than
3753    --   /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /LINKER_QUALIFIERS
3754    --   are for the benefit of GNAT MAKE itself.
3755
3756    S_Make_Mapping : aliased constant S := "/MAPPING "                      &
3757                                             "-C";
3758    --        /NOMAPPING (D)
3759    --        /MAPPING
3760    --
3761    --   Use a mapping file.  A mapping file is a way to communicate to the
3762    --   compiler two mappings: from unit names to file names (without any
3763    --   directory information) and from file names to path names (with full
3764    --   directory information). These mappings are used by the compiler to
3765    --   short-circuit the path search. When GNAT MAKE is invoked with this
3766    --   qualifier, it will create a mapping file, initially populated by the
3767    --   project manager, if /PROJECT_File= is used, otherwise initially empty.
3768    --   Each invocation of the compiler will add the newly accessed sources to
3769    --   the mapping file. This will improve the source search during the next
3770    --   invocations of the compiler
3771
3772    S_Make_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3773                                             "DEFAULT "                     &
3774                                                "-vP0 "                     &
3775                                             "MEDIUM "                      &
3776                                                "-vP1 "                     &
3777                                             "HIGH "                        &
3778                                                "-vP2";
3779    --        /MESSAGES_PROJECT_FILE[=messages-option]
3780    --
3781    --   Specifies the "verbosity" of the parsing of project files.
3782    --   messages-option may be one of the following:
3783    --
3784    --      DEFAULT (D)  No messages are output if there is no error or warning.
3785    --
3786    --      MEDIUM       A small number of messages are output.
3787    --
3788    --      HIGH         A great number of messages are output, most of them not
3789    --                   being useful for the user.
3790
3791    S_Make_Minimal : aliased constant S := "/MINIMAL_RECOMPILATION "        &
3792                                             "-m";
3793    --        /NOMINIMAL_RECOMPILATION (D)
3794    --        /MINIMAL_RECOMPILATION
3795    --
3796    --   Specifies that the minimum necessary amount of recompilation
3797    --   be performed. In this mode GNAT MAKE ignores time stamp differences
3798    --   when the only modifications to a source file consist in
3799    --   adding/removing comments, empty lines, spaces or tabs.
3800
3801    S_Make_Nolink  : aliased constant S := "/NOLINK "                       &
3802                                             "-c";
3803    --        /NOLINK
3804    --
3805    --   Compile only. Do not perform binding and linking. If the root unit is
3806    --   not a main unit, this is the default.  Otherwise GNAT MAKE will
3807    --   attempt binding and linking unless all objects are up to date and the
3808    --   executable is more recent than the objects.
3809    --   This is equivalent to /ACTIONS=COMPILE
3810
3811    S_Make_Nomain  : aliased constant S := "/NOMAIN "                       &
3812                                             "-z";
3813    --        /NOMAIN
3814    --
3815    --   No main subprogram. Bind and link the program even if the unit name
3816    --   given on the command line is a package name. The resulting executable
3817    --   will execute the elaboration routines of the package and its closure,
3818    --   then the finalization routines.
3819
3820    S_Make_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
3821                                             "-nostdinc";
3822    --        /NOSTD_INCLUDES
3823    --
3824    --    Do not look for sources the in the system default directory.
3825
3826    S_Make_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
3827                                             "-nostdlib";
3828    --        /NOSTD_LIBRARIES
3829    --
3830    --    Do not look for library files in the system default directory.
3831
3832    S_Make_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
3833                                             "-aO*";
3834    --        /OBJECT_SEARCH=(directory[,...])
3835    --
3836    --   When looking for library and object files look also in the specified
3837    --   directories.
3838
3839    S_Make_Proc    : aliased constant S := "/PROCESSES=#"                   &
3840                                             "-j#";
3841    --        /NOPROCESSES (D)
3842    --        /PROCESSES=NNN
3843    --
3844    --   Use NNN processes to carry out the (re)complations. If you have a
3845    --   multiprocessor machine, compilations will occur in parallel.  In the
3846    --   event of compilation errors, messages from various compilations might
3847    --   get interspersed (but GNAT MAKE will give you the full ordered list of
3848    --   failing compiles at the end). This can at times be annoying.  To get a
3849    --   clean list of error messages don't use this qualifier.
3850
3851    S_Make_Nojobs  : aliased constant S := "/NOPROCESSES "                  &
3852                                             "-j1";
3853    --  NODOC (see /PROCESS)
3854
3855    S_Make_Project : aliased constant S := "/PROJECT_FILE=<"                &
3856                                             "-P>";
3857    --        /PROJECT_FILE=filename
3858    --
3859    --   Specifies the main project file to be used. The project files rooted
3860    --   at the main project file will be parsed before any other processing to
3861    --   set the building environment.
3862
3863    S_Make_Quiet   : aliased constant S := "/QUIET "                        &
3864                                             "-q";
3865    --        /NOQUIET (D)
3866    --        /QUIET
3867    --
3868    --   When this qualifiers is specified, the commands carried out by GNAT
3869    --   MAKE are not displayed.
3870
3871    S_Make_Reason  : aliased constant S := "/REASONS "                      &
3872                                             "-v";
3873    --        /NOREASONS (D)
3874    --        /REASONS
3875    --
3876    --   Displays the reason for all recompilations GNAT MAKE decides are
3877    --   necessary.
3878
3879    S_Make_RTS     : aliased constant S := "/RUNTIME_SYSTEM=|"              &
3880                                             "--RTS=|";
3881    --        /RUNTIME_SYSTEM=xxx
3882    --
3883    --    Build against an alternate runtime system named xxx or RTS-xxx.
3884
3885    S_Make_Search  : aliased constant S := "/SEARCH=*"                      &
3886                                             "-I*";
3887    --        /SEARCH=(directory[,...])
3888    --
3889    --   Search the specified directories for both source and object files.
3890
3891    S_Make_Skip    : aliased constant S := "/SKIP_MISSING=*"                &
3892                                             "-aL*";
3893    --        /SKIP_MISSING=(directory[,...])
3894    --
3895    --   Skip missing library sources if ALI in 'directory'.
3896
3897    S_Make_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
3898                                             "-aI*";
3899    --        /SOURCE_SEARCH=(directory[,...])
3900    --
3901    --   When looking for source files also look in the specified directories.
3902
3903    S_Make_Switch  : aliased constant S := "/SWITCH_CHECK "                 &
3904                                             "-s";
3905    --        /NOSWITCH_CHECK (D)
3906    --        /SWITCH_CHECK
3907    --
3908    --   Recompile if compiler switches have changed since last compilation.
3909    --   All compiler switches but -I and -o are taken into account in the
3910    --   following way: orders between different "first letter" switches are
3911    --   ignored, but orders between same switches are taken into account.
3912    --   For example, -O -O2 is different than -O2 -O, but -g -O is equivalent
3913    --   to -O -g.
3914
3915    S_Make_Unique  : aliased constant S := "/UNIQUE "                       &
3916                                             "-u";
3917    --        /NOUNIQUE (D)
3918    --        /UNIQUE
3919    --
3920    --  Recompile at most the main file. It implies /ACTIONS=COMPILE.
3921    --  Combined with /FORCE_COMPILE, it is equivalent to calling the compiler
3922    --  directly.
3923
3924    S_Make_Use_Map : aliased constant S := "/USE_MAPPING_File=@"            &
3925                                             "-C=@";
3926    --        /USE_MAPPING_FILE=file_name
3927    --
3928    --   Use a specific mapping file. The file 'file_name', specified as a path
3929    --   name (absolute or relative) by this qualifier, should already exist,
3930    --   otherwise the qualifier is ineffective. The specified mapping file
3931    --   will be communicated to the compiler. This switch is not compatible
3932    --   with a project file (/PROJECT_FILE=) or with multiple compiling
3933    --   processes (/PROCESSES=nnn, when nnn is greater than 1).
3934
3935    S_Make_Verbose : aliased constant S := "/VERBOSE "                      &
3936                                             "-v";
3937    --        /NOVERBOSE (D)
3938    --        /VERBOSE
3939    --
3940    --   Displays the reason for all recompilations GNAT MAKE decides are
3941    --   necessary.
3942
3943    Make_Switches : aliased constant Switches :=
3944      (S_Make_Actions 'Access,
3945       S_Make_All     'Access,
3946       S_Make_Allproj 'Access,
3947       S_Make_Bind    'Access,
3948       S_Make_Comp    'Access,
3949       S_Make_Cond    'Access,
3950       S_Make_Cont    'Access,
3951       S_Make_Current 'Access,
3952       S_Make_Dep     'Access,
3953       S_Make_Dirobj  'Access,
3954       S_Make_Doobj   'Access,
3955       S_Make_Execut  'Access,
3956       S_Make_Ext     'Access,
3957       S_Make_Force   'Access,
3958       S_Make_Full    'Access,
3959       S_Make_Inplace 'Access,
3960       S_Make_Library 'Access,
3961       S_Make_Link    'Access,
3962       S_Make_Make    'Access,
3963       S_Make_Mapping 'Access,
3964       S_Make_Mess    'Access,
3965       S_Make_Minimal 'Access,
3966       S_Make_Nolink  'Access,
3967       S_Make_Nomain  'Access,
3968       S_Make_Nostinc 'Access,
3969       S_Make_Nostlib 'Access,
3970       S_Make_Object  'Access,
3971       S_Make_Proc    'Access,
3972       S_Make_Nojobs  'Access,
3973       S_Make_Project 'Access,
3974       S_Make_Quiet   'Access,
3975       S_Make_Reason  'Access,
3976       S_Make_RTS     'Access,
3977       S_Make_Search  'Access,
3978       S_Make_Skip    'Access,
3979       S_Make_Source  'Access,
3980       S_Make_Switch  'Access,
3981       S_Make_Unique  'Access,
3982       S_Make_Use_Map 'Access,
3983       S_Make_Verbose 'Access);
3984
3985    ----------------------------
3986    -- Switches for GNAT NAME --
3987    ----------------------------
3988
3989    S_Name_Conf    : aliased constant S := "/CONFIG_FILE=<"                 &
3990                                             "-c>";
3991    --        /CONFIG_FILE=path_name
3992    --
3993    --   Create a configuration pragmas file 'path_name' (instead of the default
3994    --   'gnat.adc'). 'path_name' may include directory information. 'path_name'
3995    --   must be writable. There may be only one qualifier /CONFIG_FILE.
3996    --   This qualifier is not compatible with qualifier /PROJECT_FILE.
3997
3998    S_Name_Dirs    : aliased constant S := "/SOURCE_DIRS=*"                 &
3999                                             "-d*";
4000    --        /SOURCE_DIRS=(directory, ...)
4001    --
4002    --   Look for source files in the specified directories. When this qualifier
4003    --   is specified, the current working directory will not be searched for
4004    --   source files, unless it is explicitly specified with a qualifier
4005    --   /SOURCE_DIRS or /DIRS_FILE. Several qualifiers /SOURCE_DIRS may be
4006    --   specified. If a directory is specified as a relative path, it is
4007    --   relative to the directory of the configuration pragmas file specified
4008    --   with qualifier /CONFIG_FILE, or to the directory of the project file
4009    --   specified with qualifier /PROJECT_FILE or, if neither qualifier
4010    --   /CONFIG_FILE nor qualifier /PROJECT_FILE are specified, it is relative
4011    --   to the current working directory. The directories specified with
4012    --   qualifiers /SOURCE_DIRS must exist and be readable.
4013
4014    S_Name_Dfile   : aliased constant S := "/DIRS_FILE=<"                   &
4015                                             "-D>";
4016    --        /DIRS_FILE=file_name
4017    --
4018    --   Look for source files in all directories listed in text file
4019    --   'file_name'. 'file_name' must be an existing, readable text file.
4020    --   Each non empty line in the specified file must be a directory.
4021    --   Specifying qualifier /DIRS_FILE is equivalent to specifying as many
4022    --   qualifiers /SOURCE_DIRS as there are non empty lines in the specified
4023    --   text file.
4024
4025    S_Name_Frng    : aliased constant S := "/FOREIGN_PATTERN=" & '"'        &
4026                                             "-f" & '"';
4027    --        /FOREIGN_PATTERN=<string>
4028    --
4029    --   Specify a foreign pattern.
4030    --   Using this qualifier, it is possible to add sources of languages other
4031    --   than Ada to the list of sources of a project file. It is only useful
4032    --   if a qualifier /PROJECT_FILE is used. For example,
4033    --
4034    --   GNAT NAME /PROJECT_FILE=PRJ /FOREIGN_PATTERN="*.C" "*.ADA"
4035    --
4036    --   will look for Ada units in all files with the '.ADA' extension, and
4037    --   will add to the list of file for project PRJ.GPR the C files with
4038    --   extension ".C".
4039
4040    S_Name_Help    : aliased constant S := "/HELP "                         &
4041                                             "-h";
4042    --        /NOHELP (D)
4043    --        /HELP
4044    --
4045    --   Output usage information to the standard output stream.
4046
4047    S_Name_Proj    : aliased constant S := "/PROJECT_FILE=<"                &
4048                                             "-P>";
4049    --        /PROJECT_FILE=file_name
4050    --
4051    --   Create or update a project file. 'file_name' may include directory
4052    --   information. The specified file must be writable. There may be only
4053    --   one qualifier /PROJECT_FILE. When a qualifier /PROJECT_DILE is
4054    --   specified, no qualifier /CONFIG_FILE may be specified.
4055
4056    S_Name_Verbose : aliased constant S := "/VERBOSE "                      &
4057                                             "-v";
4058    --        /NOVERBOSE (D)
4059    --        /VERBOSE
4060    --
4061    --   Verbose mode. Output detailed explanation of behavior to the standard
4062    --   output stream. This includes name of the file written, the name of the
4063    --   directories to search and, for each file in those directories whose
4064    --   name matches at least one of the Naming Patterns, an indication of
4065    --   whether the file contains a unit, and if so the name of the unit.
4066
4067    S_Name_Excl    : aliased constant S := "/EXCLUDED_PATTERN=" & '"'       &
4068                                             "-x" & '"';
4069    --      /EXCLUDED_PATTERN=<string>
4070    --
4071    --   Specify an excluded pattern.
4072    --   Using this qualifier, it is possible to exclude some files that would
4073    --   match the Naming patterns. For example,
4074    --
4075    --   GNAT NAME /EXCLUDED_PATTERN="*_NT.ADA" "*.ADA"
4076    --
4077    --   will look for Ada units in all files with the '.ADA' extension, except
4078    --   those whose names end with '_NT.ADA'.
4079
4080    Name_Switches : aliased constant Switches :=
4081      (S_Name_Conf         'Access,
4082       S_Name_Dirs         'Access,
4083       S_Name_Dfile        'Access,
4084       S_Name_Frng         'Access,
4085       S_Name_Help         'Access,
4086       S_Name_Proj         'Access,
4087       S_Name_Verbose      'Access,
4088       S_Name_Excl         'Access);
4089
4090    ----------------------------------
4091    -- Switches for GNAT PREPROCESS --
4092    ----------------------------------
4093
4094    S_Prep_Assoc   : aliased constant S := "/ASSOCIATE=" & '"'              &
4095                                             "-D" & '"';
4096    --        /ASSOCIATE="name=val"
4097    --
4098    --   Defines a new symbol, associated with value. If no value is given
4099    --   on the command line, then symbol is considered to be True.
4100    --   This qualifier can be used in place of a definition file.
4101
4102    S_Prep_Blank   : aliased constant S := "/BLANK_LINES "                  &
4103                                             "-b";
4104    --        /NOBLANK_LINES (D)
4105    --        /BLANK_LINES
4106    --
4107    --   Causes both preprocessor lines and the lines deleted by preprocessing
4108    --   to be replaced by blank lines in the output source file, thus
4109    --   preserving line numbers in the output file.
4110
4111    S_Prep_Com     : aliased constant S := "/COMMENTS "                     &
4112                                             "-c";
4113    --        /NOCOMMENTS (D)
4114    --        /COMMENTS
4115    --
4116    --   /COMMENTS causes both preprocessor lines and the lines deleted
4117    --   by preprocessing to be retained in the output source as comments marked
4118    --   with the special string "--! ". This option will result in line numbers
4119    --   being preserved in the output file.
4120    --
4121    --   /NOCOMMENTS causes both preprocessor lines and the lines deleted by
4122    --   preprocessing to be replaced by blank lines in the output source file,
4123    --   thus preserving line numbers in the output file.
4124
4125    S_Prep_Ref     : aliased constant S := "/REFERENCE "                    &
4126                                             "-r";
4127    --        /NOREFERENCE (D)
4128    --        /REFERENCE
4129    --
4130    --   Causes a "Source_Reference" pragma to be generated that references the
4131    --   original input file, so that error messages will use the file name of
4132    --   this original file.  Also implies /BLANK_LINES if /COMMENTS is not
4133    --   specified.
4134
4135    S_Prep_Remove  : aliased constant S := "/REMOVE "                       &
4136                                             "!-b,!-c";
4137    --        /REMOVE (D)
4138    --        /NOREMOVE
4139    --
4140    --   Preprocessor lines and deleted lines are completely removed from the
4141    --   output.
4142
4143    S_Prep_Symbols : aliased constant S := "/SYMBOLS "                      &
4144                                             "-s";
4145    --        /NOSYMBOLS (D)
4146    --        /SYMBOLS
4147    --
4148    --   Causes a sorted list of symbol names and values to be listed on
4149    --   SYS$OUTPUT.
4150
4151    S_Prep_Undef   : aliased constant S := "/UNDEFINED "                    &
4152                                             "-u";
4153    --        /NOUNDEFINED (D)
4154    --        /UNDEFINED
4155
4156    Prep_Switches : aliased constant Switches :=
4157      (S_Prep_Assoc   'Access,
4158       S_Prep_Blank   'Access,
4159       S_Prep_Com     'Access,
4160       S_Prep_Ref     'Access,
4161       S_Prep_Remove  'Access,
4162       S_Prep_Symbols 'Access,
4163       S_Prep_Undef   'Access);
4164
4165    ------------------------------
4166    -- Switches for GNAT PRETTY --
4167    ------------------------------
4168
4169    S_Pretty_Align  : aliased constant S := "/ALIGN="                       &
4170                                            "DEFAULT "                      &
4171                                                "-A1234 "                   &
4172                                            "OFF "                          &
4173                                                "-A0 "                      &
4174                                            "COLONS "                       &
4175                                                "-A1 "                      &
4176                                            "DECLARATIONS "                 &
4177                                                "-A2 "                      &
4178                                            "STATEMENTS "                   &
4179                                                "-A3 "                      &
4180                                            "ARROWS "                       &
4181                                               "-A4";
4182    --        /ALIGN[=align-option, align-option, ...]
4183    --
4184    --   Set alignments. By default, all alignments (colons in declarations,
4185    --   initialisations in declarations, assignments and arrow delimiters) are
4186    --   ON.
4187    --
4188    --   align-option may be one of the following:
4189    --
4190    --      OFF (D)      Set all alignments to OFF
4191    --      COLONS       Set alignments of colons in declarations to ON
4192    --      DECLARATIONS Set alignments of initialisations in declarations to ON
4193    --      STATEMENTS   Set alignments of assignments statements to ON
4194    --      ARROWS       Set alignments of arrow delimiters to ON.
4195    --
4196    --   Specifying one of the ON options without first specifying the OFF
4197    --   option has no effect, because by default all alignments are set to ON.
4198
4199    S_Pretty_Attrib : aliased constant S := "/ATTRIBUTE_CASING="            &
4200                                            "MIXED_CASE "                   &
4201                                                "-aM "                      &
4202                                            "LOWER_CASE "                   &
4203                                                "-aL "                      &
4204                                            "UPPER_CASE "                   &
4205                                                "-aU";
4206    --        /ATTRIBUTE_CASING[=casing-option]
4207    --
4208    --   Set the case of the attributes. By default the attributes are in mixed
4209    --   case.
4210    --   casing-option may be one of the following:
4211    --
4212    --      MIXED_CASE (D)
4213    --      LOWER_CASE
4214    --      UPPER_CASE
4215
4216    S_Pretty_Comments  : aliased constant S := "/COMMENTS_LAYOUT="          &
4217                                               "DEFAULT "                   &
4218                                                  "-c1 "                    &
4219                                               "STANDARD_INDENT "           &
4220                                                  "-c2 "                    &
4221                                               "GNAT_BEGINNING "            &
4222                                                  "-c3 "                    &
4223                                               "REFORMAT "                  &
4224                                                  "-c4";
4225    --        /COMMENTS_LAYOUT[=layout-option, layout-option, ...]
4226    --
4227    --   Set the comment layout. By default, comments use the GNAT style comment
4228    --   line indentation.
4229    --   layout-option may be one of the following:
4230    --
4231    --     DEFAULT (D)         GNAT style comment line indentation
4232    --     STANDARD_INDENT     Standard comment line indentation
4233    --     GNAT_BEGINNING      GNAT style comment beginning
4234    --     REFORMAT            Reformat comment blocks
4235    --
4236    --     All combinations of layout options are allowed, except for DEFAULT
4237    --     and STANDARD_INDENT which are mutually exclusive.
4238    --
4239    --     The difference between "GNAT style comment line indentation" and
4240    --     "standard comment line indentation" is the following: for standard
4241    --     comment indentation, any comment line is indented as if it were
4242    --     a declaration or statement at the same place.
4243    --     For GNAT style comment indentation, comment lines which are
4244    --     immediately followed by if or case statement alternative, record
4245    --     variant or 'begin' keyword are indented as the keyword that follows
4246    --     them.:
4247    --
4248    --     Standard indentation:
4249    --
4250    --        if A then
4251    --           null;
4252    --           -- some comment
4253    --        else
4254    --           null;
4255    --        end if;
4256    --
4257    --     GNAT style indentation:
4258    --
4259    --        if A then
4260    --           null;
4261    --        -- some comment
4262    --        else
4263    --           null;
4264    --        end if;
4265    --
4266    --     Option "GNAT style comment beginning" means that for each comment
4267    --     which is not considered as non-formattable separator (that is, the
4268    --     comment line contains only dashes, or a comment line ends with two
4269    --     dashes), there will be at least two spaces between starting "--" and
4270    --     the first non-blank character of the comment.
4271
4272    S_Pretty_Config    : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
4273                                               "-gnatec>";
4274    --        /CONFIGURATION_PRAGMAS_FILE=file
4275    --
4276    --   Specify a configuration pragmas file that need to be passed to the
4277    --   compiler.
4278
4279    S_Pretty_Constr    : aliased constant S := "/CONSTRUCT_LAYOUT="         &
4280                                                "GNAT "                     &
4281                                                   "-l1 "                   &
4282                                                "COMPACT "                  &
4283                                                   "-l2 "                   &
4284                                                "UNCOMPACT "                &
4285                                                    "-l3";
4286    --        /CONSTRUCT_LAYOUT[=construct-option]
4287    --
4288    --   Set construct layout. Default is GNAT style layout.
4289    --   construct-option may be one of the following:
4290    --
4291    --      GNAT (D)
4292    --      COMPACT
4293    --      UNCOMPACT
4294    --
4295    --   The difference between GNAT style and Compact layout on one hand
4296    --   and Uncompact layout on the other hand can be illustrated by the
4297    --   following examples:
4298    --
4299    --       GNAT style and                          Uncompact layout
4300    --       Compact layout
4301    --
4302    --       type q is record                        type q is
4303    --          a : integer;                            record
4304    --          b : integer;                               a : integer;
4305    --       end record;                                   b : integer;
4306    --                                                  end record;
4307    --
4308    --
4309    --       Block : declare                         Block :
4310    --          A : Integer := 3;                       declare
4311    --       begin                                         A : Integer := 3;
4312    --          Proc (A, A);                            begin
4313    --       end Block;                                    Proc (A, A);
4314    --                                                  end Block;
4315    --
4316    --       Clear : for J in 1 .. 10 loop           Clear :
4317    --          A (J) := 0;                             for J in 1 .. 10 loop
4318    --       end loop Clear;                               A (J) := 0;
4319    --                                                  end loop Clear;
4320    --
4321    --
4322    --   A further difference between GNAT style layout and compact layout is
4323    --   that in GNAT style layout compound statements, return statements and
4324    --   bodies are always separated by empty lines.
4325
4326    S_Pretty_Comind    : aliased constant S := "/CONTINUATION_INDENT=#"     &
4327                                                  "-cl#";
4328    --        /CONTINUATION_INDENT=nnn
4329    --
4330    --   Indentation level for continuation lines, nnn from 1 .. 9.
4331    --   The default value is one less then the (normal) indentation level,
4332    --   unless the indentation is set to 1: in that case the default value for
4333    --   continuation line indentation is also 1.
4334
4335    S_Pretty_Ext       : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
4336                                             "-X" & '"';
4337    --        /EXTERNAL_REFERENCE="name=val"
4338    --
4339    --   Specifies an external reference to the project manager. Useful only if
4340    --   /PROJECT_FILE is used.
4341    --
4342    --   Example:
4343    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4344
4345    S_Pretty_Current   : aliased constant S := "/CURRENT_DIRECTORY "        &
4346                                               "!-I-";
4347    --        /CURRENT_DIRECTORY (D)
4348    --
4349    --   Look for source files in the current working directory.
4350    --
4351    --        /NOCURRENT_DIRECTORY
4352    --   Do not look for source files in the current working directory.
4353
4354    S_Pretty_Dico      : aliased constant S := "/DICTIONARY=*"              &
4355                                               "-D*";
4356    --        /DICTIONARY=(file_name, ...)
4357    --
4358    --   Use each specified file as a dictionary file that defines the casing
4359    --   for a set of specified names, thereby overriding the effect on these
4360    --   names by any explicit or implicit /NAME_CASING qualifier.
4361    --
4362    --   GNAT PRETTY implicitly uses a default dictionary file to define the
4363    --   casing for the Ada predefined names and the names declared in the GNAT
4364    --   libraries.
4365    --
4366    --   The structure of a dictionary file, and details on the conventions
4367    --   used in the default dictionary file, are defined in the GNAT User's
4368    --   Guide.
4369
4370    S_Pretty_Forced    : aliased constant S := "/FORCED_OUTPUT=@"           &
4371                                                  "-of@";
4372    --        /FORCED_OUTPUT=file
4373    --
4374    --   Write the output into the specified file, overriding any possibly
4375    --   existing file.
4376
4377    S_Pretty_Formfeed  : aliased constant S := "/FORM_FEED_AFTER_PRAGMA_PAGE " &
4378                                               "-ff";
4379    --        /FORM_FEED_AFTER_PRAGMA_PAGE
4380    --
4381    --   When there is a pragma Page in the source, insert a Form Feed
4382    --   character immediately after the semicolon that follows the pragma
4383    --   Page.
4384
4385    S_Pretty_Indent    : aliased constant S := "/INDENTATION_LEVEL=#"       &
4386                                                 "-i#";
4387    --        /INDENTATION_LEVEL=nnn
4388    --
4389    --   Specify the number of spaces to add for each indentation level.
4390    --   nnn must be between 1 and 9. The default is 3.
4391
4392    S_Pretty_Keyword   : aliased constant S := "/KEYWORD_CASING="           &
4393                                               "LOWER_CASE "                &
4394                                                  "-kL "                    &
4395                                               "UPPER_CASE "                &
4396                                                  "-kU";
4397    --        /KEYWORD_CASING[=keyword-option]
4398    --
4399    --   Specify the case of Ada keywords. The default is keywords in lower
4400    --   case.
4401    --   keyword-option may be one of the following:
4402    --
4403    --      LOWER_CASE (D)
4404    --      UPPER_CASE
4405
4406    S_Pretty_Maxlen    : aliased constant S := "/LINE_LENGTH_MAX=#"         &
4407                                                  "-M#";
4408    --        /LINE_LENGTH_MAX=nnn
4409    --
4410    --   Set the maximum line length, nnn from 32 ..256. The default is 79.
4411
4412    S_Pretty_Maxind    : aliased constant S := "/MAX_INDENT=#"              &
4413                                                  "-T#";
4414    --        /MAX_INDENT=nnn
4415    --
4416    --   Do not use an additional indentation level for case alternatives
4417    --   and variants if their number is nnn or more. The default is  10.
4418    --   If nnn is zero, an additional indentation level is  used for any number
4419    --   of case alternatives and variants.
4420
4421    S_Pretty_Mess      : aliased constant S := "/MESSAGES_PROJECT_FILE="    &
4422                                             "DEFAULT "                     &
4423                                                "-vP0 "                     &
4424                                             "MEDIUM "                      &
4425                                                "-vP1 "                     &
4426                                             "HIGH "                        &
4427                                                "-vP2";
4428    --        /MESSAGES_PROJECT_FILE[=messages-option]
4429    --
4430    --   Specifies the "verbosity" of the parsing of project files.
4431    --   messages-option may be one of the following:
4432    --
4433    --      DEFAULT (D)  No messages are output if there is no error or warning.
4434    --
4435    --      MEDIUM       A small number of messages are output.
4436    --
4437    --      HIGH         A great number of messages are output, most of them not
4438    --                   being useful for the user.
4439
4440    S_Pretty_Names     : aliased constant S := "/NAME_CASING="              &
4441                                               "AS_DECLARED "               &
4442                                                  "-nD "                    &
4443                                               "LOWER_CASE "                &
4444                                                  "-nL "                    &
4445                                               "UPPER_CASE "                &
4446                                                  "-nU "                    &
4447                                               "MIXED_CASE "                &
4448                                                  "-nM";
4449    --        /NAME_CASING[=name-option]
4450    --
4451    --   Specify the casing of names.
4452    --   'name-option' may be one of:
4453    --
4454    --      AS_DECLARED (D)   Name casing for defining occurrences are as they
4455    --                        appear in the source file.
4456    --
4457    --      LOWER_CASE        Names are in lower case.
4458    --
4459    --      UPPER_CASE        Names are in upper case.
4460    --
4461    --      MIXED_CASE        Names are in mixed case.
4462
4463    S_Pretty_No_Labels : aliased constant S := "/NO_MISSED_LABELS "         &
4464                                                  "-e";
4465    --        /NO_MISSED_LABELS
4466    --
4467    --   Do not insert missing end/exit labels. The end label is the name of
4468    --   a construct that may optionally appear at the end of the construct.
4469    --   This includes the names of packages and subprograms.
4470    --   Similarly, the exit label is the name of a loop that may appear as the
4471    --   argument of an exit statement within the loop. By default, GNAT PRETTY
4472    --   inserts these end/exit labels when they are absent in the original
4473    --   source. This qualifier /NO_MISSED_LABELS suppresses this insertion,
4474    --   so that the formatted source reflects the original.
4475
4476    S_Pretty_Notabs    : aliased constant S := "/NOTABS "                   &
4477                                                  "-notabs";
4478    --        /NOTABS
4479    --
4480    --   Replace all tabulations in comments with spaces.
4481
4482    S_Pretty_Output    : aliased constant S := "/OUTPUT=@"                  &
4483                                               "-o@";
4484    --        /OUTPUT=file
4485    --
4486    --   Write the output to the specified file. If the file already exists,
4487    --   an error is reported.
4488
4489    S_Pretty_Override  : aliased constant S := "/OVERRIDING_REPLACE "       &
4490                                                  "-rf";
4491    --        /NOOVERRIDING_REPLACE (D)
4492    --        /OVERRIDING_REPLACE
4493    --
4494    --   Replace the argument source with the pretty-printed source and copy the
4495    --   argument source into filename.NPP, overriding any existing file if
4496    --   needed.
4497
4498    S_Pretty_Pragma    : aliased constant S := "/PRAGMA_CASING="            &
4499                                               "MIXED_CASE "                &
4500                                                  "-pM "                    &
4501                                               "LOWER_CASE "                &
4502                                                  "-pL "                    &
4503                                               "UPPER_CASE "                &
4504       --        /PRAGMA_CASING[=pragma-option]
4505    --
4506    --   Set the case of pragma identifiers. The default is Mixed case.
4507    --   pragma-option may be one of the following:
4508    --
4509    --      MIXED_CASE (D)
4510    --      LOWER_CASE
4511    --      UPPER_CASE
4512                                               "-pU";
4513    S_Pretty_Project   : aliased constant S := "/PROJECT_FILE=<"               &
4514                                             "-P>";
4515    --        /PROJECT_FILE=filename
4516    --
4517    --   Specifies the main project file to be used. The project files rooted
4518    --   at the main project file will be parsed before any other processing to
4519    --   set the building environment.
4520
4521    S_Pretty_Replace   : aliased constant S := "/REPLACE "                  &
4522                                                  "-r";
4523    --        /NOREPLACE (D)
4524    --        /REPLACE
4525    --
4526    --   Replace the argument source with the pretty-printed source and copy the
4527    --   argument source into filename.NPP. If filename.NPP already exists,
4528    --   report an error and exit.
4529
4530    S_Pretty_RTS       : aliased constant S := "/RUNTIME_SYSTEM=|"          &
4531                                                "--RTS=|";
4532    --        /RUNTIME_SYSTEM=xxx
4533    --
4534    --    Compile against an alternate runtime system named xxx or RTS-xxx.
4535
4536    S_Pretty_Search    : aliased constant S := "/SEARCH=*"                  &
4537                                               "-I*";
4538    --        /SEARCH=(directory[,...])
4539    --
4540    --    When looking for source files also look in directories specified.
4541
4542    S_Pretty_Specific  : aliased constant S := "/SPECIFIC_CASING "          &
4543                                               "-D-";
4544    --        /SPECIFIC_CASING
4545    --
4546    --   Do not use the default dictionary file; instead, use the casing
4547    --   defined by a qualifier /NAME_CASING and/or any explicit dictionary
4548    --   file specified by a qualifier /DICTIONARY.
4549
4550    S_Pretty_Standard  : aliased constant S := "/STANDARD_OUTPUT "          &
4551                                               "-pipe";
4552    --        /NOSTANDARD_OUTPUT (D)
4553    --        /STANDARD_OUTPUT
4554    --
4555    --   Redirect the output to the standard output.
4556
4557    S_Pretty_Verbose   : aliased constant S := "/VERBOSE "                  &
4558                                               "-v";
4559    --        /NOVERBOSE (D)
4560    --        /VERBOSE
4561    --
4562    --   Verbose mode; GNAT PRETTY generates version information and then a
4563    --   trace of the actions it takes to produce or obtain the ASIS tree.
4564
4565    S_Pretty_Warnings  : aliased constant S := "/WARNINGS "                 &
4566                                               "-w";
4567    --        /NOWARNINGS (D)
4568    --        /WARNINGS
4569    --
4570    --   Issue a warning to the standard error stream if it is not possible
4571    --   to provide the required layout in the result source.
4572    --   By default such warnings are not activated.
4573
4574    Pretty_Switches : aliased constant Switches :=
4575      (S_Pretty_Align     'Access,
4576       S_Pretty_Attrib    'Access,
4577       S_Pretty_Comments  'Access,
4578       S_Pretty_Config    'Access,
4579       S_Pretty_Constr    'Access,
4580       S_Pretty_Comind    'Access,
4581       S_Pretty_Ext       'Access,
4582       S_Pretty_Current   'Access,
4583       S_Pretty_Dico      'Access,
4584       S_Pretty_Forced    'Access,
4585       S_Pretty_Formfeed  'Access,
4586       S_Pretty_Indent    'Access,
4587       S_Pretty_Keyword   'Access,
4588       S_Pretty_Maxlen    'Access,
4589       S_Pretty_Maxind    'Access,
4590       S_Pretty_Mess      'Access,
4591       S_Pretty_Names     'Access,
4592       S_Pretty_No_Labels 'Access,
4593       S_Pretty_Notabs    'Access,
4594       S_Pretty_Output    'Access,
4595       S_Pretty_Override  'Access,
4596       S_Pretty_Pragma    'Access,
4597       S_Pretty_Replace   'Access,
4598       S_Pretty_Project   'Access,
4599       S_Pretty_RTS       'Access,
4600       S_Pretty_Search    'Access,
4601       S_Pretty_Specific  'Access,
4602       S_Pretty_Standard  'Access,
4603       S_Pretty_Verbose   'Access,
4604       S_Pretty_Warnings  'Access);
4605
4606    ------------------------------
4607    -- Switches for GNAT SHARED --
4608    ------------------------------
4609
4610    S_Shared_Debug   : aliased constant S := "/DEBUG="                      &
4611                                             "ALL "                         &
4612                                                "-g3 "                      &
4613                                             "NONE "                        &
4614                                                "-g0 "                      &
4615                                             "TRACEBACK "                   &
4616                                                "-g1 "                      &
4617                                             "NOTRACEBACK "                 &
4618                                                "-g0";
4619    --        /DEBUG[=debug-option]
4620    --        /NODEBUG
4621    --
4622    --   Specifies the amount of debugging information included. 'debug-option'
4623    --   is one of the following:
4624    --
4625    --        ALL (D)      Include full debugging information.
4626    --
4627    --        NONE         Provide no debugging information. Same as /NODEBUG.
4628    --
4629    --        TRACEBACK    Provide sufficient debug information for a traceback.
4630    --
4631    --        NOTRACEBACK  Same as NONE.
4632
4633    S_Shared_Image  : aliased constant S := "/IMAGE=@"                      &
4634                                             "-o@";
4635    --        /IMAGE=image-name
4636    --
4637    --   'image-name' specifies the name for the generated shared library.
4638
4639    S_Shared_Ident   : aliased constant S := "/IDENTIFICATION=" & '"'       &
4640                                             "--for-linker=IDENT="          &
4641                                             '"';
4642    --        /IDENTIFICATION="<string>"
4643    --
4644    --   "<string>" specifies the string to be stored in the image file ident-
4645    --   ification field in the image header. It overrides any pragma Ident
4646    --   specified string.
4647
4648    S_Shared_Nofiles : aliased constant S := "/NOSTART_FILES "              &
4649                                             "-nostartfiles";
4650    --        /NOSTART_FILES
4651    --
4652    --   Link in default image initialization and startup functions.
4653
4654    S_Shared_Noinhib : aliased constant S := "/NOINHIBIT-IMAGE "            &
4655                                             "--for-linker=--noinhibit-exec";
4656    --        /NOINHIBIT-IMAGE
4657    --
4658    --   Delete image if there are errors or warnings.
4659
4660    S_Shared_Verb    : aliased constant S := "/VERBOSE "                    &
4661                                             "-v";
4662    --        /NOVERBOSE (D)
4663    --        /VERBOSE
4664    --
4665    --   Causes additional information to be output, including a full list of
4666    --   the included object files. This switch option is most useful when you
4667    --   want to see what set of object files are being used in the link step.
4668
4669    S_Shared_ZZZZZ   : aliased constant S := "/<other> "                    &
4670                                             "--for-linker=";
4671    --        /<other>
4672    --
4673    --   Any other switch transmitted to the underlying linker.
4674
4675    Shared_Switches : aliased constant Switches :=
4676      (S_Shared_Debug   'Access,
4677       S_Shared_Image   'Access,
4678       S_Shared_Ident   'Access,
4679       S_Shared_Nofiles 'Access,
4680       S_Shared_Noinhib 'Access,
4681       S_Shared_Verb    'Access,
4682       S_Shared_ZZZZZ   'Access);
4683
4684    ----------------------------
4685    -- Switches for GNAT STUB --
4686    ----------------------------
4687
4688    S_Stub_Config  : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<"  &
4689                                             "-gnatec>";
4690    --        /CONFIGURATION_PRAGMAS_FILE=filespec
4691    --
4692    --   Specifies a configuration pragmas file that must be taken into account
4693    --   when compiling.
4694
4695    S_Stub_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
4696                                             "!-I-";
4697    --        /CURRENT_DIRECTORY (D)
4698    --        /NOCURRENT_DIRECTORY
4699    --
4700    --   Look for source, library or object files in the default directory.
4701
4702    S_Stub_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
4703                                             "-X" & '"';
4704    --        /EXTERNAL_REFERENCE="name=val"
4705    --
4706    --   Specifies an external reference to the project manager. Useful only if
4707    --   /PROJECT_FILE is used.
4708    --
4709    --   Example:
4710    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4711
4712    S_Stub_Full    : aliased constant S := "/FULL "                         &
4713                                             "-f";
4714    --        /NOFULL (D)
4715    --        /FULL
4716    --
4717    --   If the destination directory already contains a file with the name of
4718    --   the body file for the argument file spec, replace it with the generated
4719    --   body stub. If /FULL is not used and there is already a body file, this
4720    --   existing body file is not replaced.
4721
4722    S_Stub_Header  : aliased constant S := "/HEADER="                       &
4723                                             "GENERAL "                     &
4724                                                "-hg "                      &
4725                                             "SPEC "                        &
4726                                                "-hs";
4727    --        /HEADER[=header-option]
4728    --
4729    --   Specifies the form of the comment header above the generated body stub.
4730    --   If no /HEADER qualifier is specified, there is no comment header.
4731    --   header-option is one of the following:
4732    --
4733    --
4734    --      GENERAL (D)  Put a sample comment header into the body stub.
4735    --
4736    --      SPEC         Put the comment header (i.e., all the comments
4737    --                   preceding the compilation unit) from the source of the
4738    --                   library unit declaration into the body stub.
4739
4740    S_Stub_Indent  : aliased constant S := "/INDENTATION=#"                 &
4741                                             "-i#";
4742    --        /INDENTATION=nnn
4743    --
4744    --   (nnn is a non-negative integer). Set the indentation level in the
4745    --   generated body stub to nnn. nnn=0 means "no indentation".
4746    --   Default insdentation is 3.
4747
4748    S_Stub_Keep    : aliased constant S := "/KEEP "                         &
4749                                             "-k";
4750    --        /NOKEEP (D)
4751    --        /KEEP
4752    --
4753    --   Do not delete the tree file (i.e., the snapshot of the compiler
4754    --   internal structures used by gnatstub) after creating the body stub.
4755
4756    S_Stub_Length  : aliased constant S := "/LINE_LENGTH=#"                 &
4757                                             "-l#";
4758    --        /LINE_LENGTH=nnn
4759    --
4760    --   (n is a non-negative integer). Set the maximum line length in the body
4761    --   stub to nnn. Default is 78.
4762
4763    S_Stub_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
4764                                             "DEFAULT "                     &
4765                                                "-vP0 "                     &
4766                                             "MEDIUM "                      &
4767                                                "-vP1 "                     &
4768                                             "HIGH "                        &
4769                                                "-vP2";
4770    --        /MESSAGES_PROJECT_FILE[=messages-option]
4771    --
4772    --   Specifies the "verbosity" of the parsing of project files.
4773    --   messages-option may be one of the following:
4774    --
4775    --      DEFAULT (D)  No messages are output if there is no error or warning.
4776    --
4777    --      MEDIUM       A small number of messages are output.
4778    --
4779    --      HIGH         A great number of messages are output, most of them not
4780    --                   being useful for the user.
4781
4782    S_Stub_Output  : aliased constant S := "/OUTPUT=@"                      &
4783                                             "-o@";
4784    --        /OUTPUT=filespec
4785    --
4786    --   Body file name. This should be set if the argument file name does not
4787    --   follow the GNAT file naming conventions. If this switch is omitted,
4788    --   the default name for the body will be obtained from the argument file
4789    --   name according to the GNAT file naming conventions.
4790
4791    S_Stub_Project : aliased constant S := "/PROJECT_FILE=<"                &
4792                                             "-P>";
4793    --        /PROJECT_FILE=filename
4794    --
4795    --   Specifies the main project file to be used. The project files rooted
4796    --   at the main project file will be parsed before any other processing.
4797    --   The source and object directories to be searched will be communicated
4798    --   to gnatstub through logical names ADA_PRJ_INCLUDE_FILE and
4799    --   ADA_PRJ_OBJECTS_FILE.
4800
4801    S_Stub_Quiet   : aliased constant S := "/QUIET "                        &
4802                                             "-q";
4803    --        /NOQUIET (D)
4804    --        /QUIET
4805    --
4806    --   Quiet mode: do not generate a confirmation when a body is successfully
4807    --   created, and do not generate a message when a body is not required for
4808    --   an argument unit.
4809
4810    S_Stub_Search  : aliased constant S := "/SEARCH=*"                      &
4811                                             "-I*";
4812    --        /SEARCH=(directory[,...])
4813    --
4814    --    When looking for source files also look in directories specified.
4815
4816    S_Stub_Tree    : aliased constant S := "/TREE_FILE="                    &
4817                                             "OVERWRITE "                   &
4818                                                "-t "                       &
4819                                             "SAVE "                        &
4820                                                "-k "                       &
4821                                             "REUSE "                       &
4822                                                "-r";
4823    --        /TREE_FILE[=treefile-option]
4824    --
4825    --   Specify what to do with the tree file.
4826    --   treefile-option is one of the following:
4827    --
4828    --      OVERWRITE (D)  Overwrite the existing tree file. If the current
4829    --                     directory already contains the file which, according
4830    --                     to the GNAT file naming rules should be considered
4831    --                     as a tree file for the argument source file,
4832    --                     gnatstub will refuse to create the tree file needed
4833    --                     to create a sample body unless this option is chosen.
4834    --
4835    --      SAVE           Do not remove the tree file (i.e., the snapshot
4836    --                     of the compiler internal structures used by gnatstub)
4837    --                     after creating the body stub.
4838    --
4839    --      REUSE          Reuse the tree file (if it exists) instead of
4840    --                     creating it.
4841    --                     Instead of creating the tree file for the library
4842    --                     unit declaration, gnatstub tries to find it in the
4843    --                     current directory and use it for creating a body.
4844    --                     If the tree file is not found, no body is created.
4845    --                     This option also implies `SAVE', whether or not the
4846    --                     latter is set explicitly.
4847
4848    S_Stub_Verbose : aliased constant S := "/VERBOSE "                      &
4849                                             "-v";
4850    --        /NOVERBOSE (D)
4851    --        /VERBOSE
4852    --
4853    --   Verbose mode: generate version information.
4854
4855    Stub_Switches : aliased constant Switches :=
4856      (S_Stub_Config  'Access,
4857       S_Stub_Current 'Access,
4858       S_Stub_Ext     'Access,
4859       S_Stub_Full    'Access,
4860       S_Stub_Header  'Access,
4861       S_Stub_Indent  'Access,
4862       S_Stub_Keep    'Access,
4863       S_Stub_Length  'Access,
4864       S_Stub_Mess    'Access,
4865       S_Stub_Output  'Access,
4866       S_Stub_Project 'Access,
4867       S_Stub_Quiet   'Access,
4868       S_Stub_Search  'Access,
4869       S_Stub_Tree    'Access,
4870       S_Stub_Verbose 'Access);
4871
4872    ----------------------------
4873    -- Switches for GNAT XREF --
4874    ----------------------------
4875
4876    S_Xref_All     : aliased constant S := "/ALL_FILES "                    &
4877                                             "-a";
4878    --        /NOALL_FILES (D)
4879    --        /ALL_FILES
4880    --
4881    --   If this switch is present, FIND and XREF will parse the read-only
4882    --   files found in the library search path. Otherwise, these files will
4883    --   be ignored. This option can be used to protect Gnat sources or your
4884    --   own libraries from being parsed, thus making FIND and XREF much
4885    --   faster, and their output much smaller.
4886
4887    S_Xref_Deriv   : aliased constant S := "/DERIVED_TYPES "                &
4888                                             "-d";
4889    --        /NODERIVED_TYPES (D)
4890    --        /DERIVED_TYPES
4891    --
4892    --   Output the parent type reference for each matching derived types.
4893
4894    S_Xref_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
4895                                             "-X" & '"';
4896    --        /EXTERNAL_REFERENCE="name=val"
4897    --
4898    --   Specifies an external reference to the project manager. Useful only if
4899    --   /PROJECT_FILE is used.
4900    --
4901    --   Example:
4902    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4903
4904    S_Xref_Full    : aliased constant S := "/FULL_PATHNAME "                &
4905                                             "-f";
4906    --        /NOFULL_PATHNAME (D)
4907    --        /FULL_PATHNAME
4908    --
4909    --   If this switch is set, the output file names will be preceded by their
4910    --   directory (if the file was found in the search path). If this switch
4911    --   is not set, the directory will not be printed.
4912
4913    S_Xref_Global  : aliased constant S := "/IGNORE_LOCALS "                &
4914                                             "-g";
4915    --        /NOIGNORE_LOCALS (D)
4916    --        /IGNORE_LOCALS
4917    --
4918    --   If this switch is set, information is output only for library-level
4919    --   entities, ignoring local entities. The use of this switch may
4920    --   accelerate FIND and XREF.
4921
4922    S_Xref_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
4923                                             "DEFAULT "                     &
4924                                                "-vP0 "                     &
4925                                             "MEDIUM "                      &
4926                                                "-vP1 "                     &
4927                                             "HIGH "                        &
4928                                                "-vP2";
4929    --        /MESSAGES_PROJECT_FILE[=messages-option]
4930    --
4931    --   Specifies the "verbosity" of the parsing of project files.
4932    --   messages-option may be one of the following:
4933    --
4934    --      DEFAULT (D)  No messages are output if there is no error or warning.
4935    --
4936    --      MEDIUM       A small number of messages are output.
4937    --
4938    --      HIGH         A great number of messages are output, most of them not
4939    --                   being useful for the user.
4940
4941    S_Xref_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
4942                                             "-nostdinc";
4943    --        /NOSTD_INCLUDES
4944    --
4945    --   Do not look for sources in the system default directory.
4946
4947    S_Xref_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
4948                                             "-nostdlib";
4949    --        /NOSTD_LIBRARIES
4950    --
4951    --   Do not look for library files in the system default directory.
4952
4953    S_Xref_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
4954                                             "-aO*";
4955    --        /OBJECT_SEARCH=(directory,...)
4956    --
4957    --   When searching for library and object files, look in the specified
4958    --   directories. The order in which library files are searched is the same
4959    --   as for MAKE.
4960
4961    S_Xref_Project : aliased constant S := "/PROJECT=@"                     &
4962                                             "-p@";
4963    --        /PROJECT=file
4964    --
4965    --   Specify a project file to use. By default, FIND and XREF will try to
4966    --   locate a project file in the current directory.
4967    --
4968    --   If a project file is either specified or found by the tools, then the
4969    --   content of the source directory and object directory lines are added
4970    --   as if they had been specified respectively by /SOURCE_SEARCH and
4971    --   /OBJECT_SEARCH.
4972
4973    S_Xref_Prj     : aliased constant S := "/PROJECT_FILE=<"                &
4974                                             "-P>";
4975    --        /PROJECT_FILE=filename
4976    --
4977    --   Specifies the main project file to be used. The project files rooted
4978    --   at the main project file will be parsed before doing any processing.
4979    --   The source and object directories to be searched will be communicated
4980    --   to gnatxref through logical names ADA_PRJ_INCLUDE_FILE and
4981    --   ADA_PRJ_OBJECTS_FILE.
4982
4983    S_Xref_Search  : aliased constant S := "/SEARCH=*"                      &
4984                                             "-I*";
4985    --        /SEARCH=(directory,...)
4986    --
4987    --   Equivalent to:
4988    --           /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
4989
4990    S_Xref_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
4991                                             "-aI*";
4992    --        /SOURCE_SEARCH=(directory,...)
4993    --
4994    --   When looking for source files also look in the specified directories.
4995    --   The order in which source file search is undertaken is the same as for
4996    --   MAKE.
4997
4998    S_Xref_Output  : aliased constant S := "/UNUSED "                       &
4999                                             "-u";
5000    --        /SOURCE_SEARCH=(directory,...)
5001    --
5002    --   When looking for source files also look in the specified directories.
5003    --   The order in which source file search is undertaken is the same as for
5004    --   MAKE.
5005
5006    S_Xref_Tags    : aliased constant S := "/TAGS "                         &
5007                                             "-v";
5008    --        /NOTAGS (D)
5009    --        /TAGS
5010    --
5011    --   Print a 'tags' file for vi.
5012
5013    Xref_Switches : aliased constant Switches :=
5014      (S_Xref_All     'Access,
5015       S_Xref_Deriv   'Access,
5016       S_Xref_Ext     'Access,
5017       S_Xref_Full    'Access,
5018       S_Xref_Global  'Access,
5019       S_Xref_Mess    'Access,
5020       S_Xref_Nostinc 'Access,
5021       S_Xref_Nostlib 'Access,
5022       S_Xref_Object  'Access,
5023       S_Xref_Project 'Access,
5024       S_Xref_Prj     'Access,
5025       S_Xref_Search  'Access,
5026       S_Xref_Source  'Access,
5027       S_Xref_Output  'Access,
5028       S_Xref_Tags    'Access);
5029
5030 end VMS_Data;