OSDN Git Service

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