OSDN Git Service

2007-04-20 Vincent Celier <celier@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_Intsrc  : aliased constant S := "/INTERSPERSE_SOURCE "            &
1570                                              "-gnatL";
1571
1572    --        /NO_INTERSPERSE_SOURCE (D)
1573    --        /INTERSPERSE_SOURCE
1574    --
1575    --   Causes output from /XDEBUG or /EXPAND_SOURCE to be interspersed with
1576    --   lines from the original source file, output as comment lines with the
1577    --   associated line number.
1578
1579    S_GCC_Just   : aliased constant S := "/JUSTIFY_MESSAGES=#"             &
1580                                              "-gnatj#";
1581
1582    --        /NO_JUSTIFY_MESSAGES (D)
1583    --        /JUSTIFY_MESSAGES=nnn
1584    --
1585    --   Causes error messages to be reformatted so that a message and all its
1586    --   continuation lines count as one warning or error in the statistics on
1587    --   total errors, and the message is broken down into lines (justified) so
1588    --   that no line is longer than nnn characters. The default message
1589    --   behavior (each message counted separately and not reformatted to fit
1590    --   a particular line length) can be obtained using /NO_JUSTIFY_MESSAGES.
1591
1592    S_GCC_JustX  : aliased constant S := "/NO_JUSTIFY_MESSAGES "           &
1593                                              "-gnatj0";
1594
1595    --  NODOC (see /JUSTIFY_MESSAGES)
1596
1597    S_GCC_Length  : aliased constant S := "/MAX_LINE_LENGTH=#"              &
1598                                              "-gnatyM#";
1599    --        /MAX_LINE_LENGTH=nnn
1600    --
1601    --   Set maximum line length.
1602    --   The length of lines must not exceed the given value nnn.
1603
1604    S_GCC_List    : aliased constant S := "/LIST "                          &
1605                                              "-gnatl";
1606    --        /NOLIST (D)
1607    --        /LIST
1608    --
1609    --   Cause a full listing of the file to be generated. In the case where
1610    --   a body is compiled, the corresponding spec is also listed, along
1611    --   with any subunits.
1612
1613    S_GCC_Mapping : aliased constant S := "/MAPPING_FILE=<"  &
1614                                             "-gnatem>";
1615    --        /MAPPING_FILE=file_name
1616    --
1617    --   Use mapping file file_name
1618    --
1619    --   A mapping file is a way to communicate to the compiler two mappings:
1620    --   from unit names to file names (without any directory information) and
1621    --   from file names to path names (with full directory information).
1622    --   These mappings are used by the compiler to short-circuit the path
1623    --   search.
1624    --
1625    --   The use of mapping files is not required for correct operation of the
1626    --   compiler, but mapping files can improve efficiency, particularly when
1627    --   sources are read over a slow network connection. In normal operation,
1628    --   you need not be concerned with the format or use of mapping files,
1629    --   and /MAPPING_FILE is not a qualifier that you would use explicitly.
1630    --   It is intended only for use by automatic tools such as GNAT MAKE
1631    --   running under the project file facility. The description here of the
1632    --   format of mapping files is provided for completeness and for possible
1633    --   use by other tools.
1634    --
1635    --   A mapping file is a sequence of sets of three lines. In each set, the
1636    --   first line is the unit name, in lower case, with "%s" appended for
1637    --   specifications and "%b" appended for bodies; the second line is the
1638    --   file name; and the third line is the path name.
1639    --
1640    --   Example:
1641    --
1642    --      main%b
1643    --      main.2_ada
1644    --      /gnat/project1/sources/main.2_ada
1645    --
1646    --   When qualifier ?MAPPING_FILE is specified, the compiler will create in
1647    --   memory the two mappings from the specified file. If there is any
1648    --   problem (non existent file, truncated file or duplicate entries),
1649    --   no mapping will be created.
1650    --
1651    --   Several /MAPPING_FILE qualifiers may be specified; however, only the
1652    --   last one on the command line will be taken into account.
1653    --
1654    --   When using a project file, GNAT MAKE creates a temporary mapping file
1655    --   and communicates it to the compiler using this switch.
1656
1657    S_GCC_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="         &
1658                                             "DEFAULT "                     &
1659                                                "-vP0 "                     &
1660                                             "MEDIUM "                      &
1661                                                "-vP1 "                     &
1662                                             "HIGH "                        &
1663                                                "-vP2";
1664    --        /MESSAGES_PROJECT_FILE[=messages-option]
1665    --
1666    --   Specifies the "verbosity" of the parsing of project files.
1667    --   messages-option may be one of the following:
1668    --
1669    --      DEFAULT (D) No messages are output if there is no error or warning.
1670    --
1671    --      MEDIUM      A small number of messages are output.
1672    --
1673    --      HIGH        A great number of messages are output, most of them not
1674    --                  being useful for the user.
1675
1676    S_GCC_Nesting  : aliased constant S := "/MAX_NESTING=#"                &
1677                                              "-gnatyL#";
1678    --        /MAX_NESTING=nnn
1679    --
1680    --   Set maximum level of nesting of constructs (including subprograms,
1681    --   loops, blocks, packages, and conditionals).
1682    --   The level of nesting must not exceed the given value nnn.
1683    --   A value of zero disable this style check (not enabled by default).
1684
1685    S_GCC_Noadc   : aliased constant S := "/NO_GNAT_ADC "                   &
1686                                              "-gnatA";
1687    --        /NO_GNAT_ADC
1688    --
1689    --   Cause the compiler to ignore any configuration pragmas file GNAT.ADC
1690    --   in the default directory. Implied by qualifier /PROJECT_FILE.
1691    --   Often used in conjunction with qualifier /CONFIGURATION_PRAGMAS_FILE.
1692
1693    S_GCC_Noload  : aliased constant S := "/NOLOAD "                        &
1694                                              "-gnatc";
1695    --        /NOLOAD
1696    --
1697    --   Cause the compiler to operate in semantic check mode with full
1698    --   checking for all illegalities specified in the reference manual, but
1699    --   without generation of any source code (no object or ALI file
1700    --   generated).
1701    --
1702    --   Since dependent files must be accessed, you must follow the GNAT
1703    --   semantic restrictions on file structuring to operate in this mode:
1704    --
1705    --   o The needed source files must be accessible.
1706    --   o Each file must contain only one compilation unit.
1707    --   o The file name and unit name must match.
1708    --
1709    --   The output consists of error messages as appropriate. No object file
1710    --   or ALI file is generated. The checking corresponds exactly to the
1711    --   notion of legality in the Ada reference manual.
1712    --
1713    --   Any unit can be compiled in semantics-checking-only mode, including
1714    --   units that would not normally be compiled (generic library units,
1715    --   subunits, and specifications where a separate body is present).
1716
1717    S_GCC_Nostinc : aliased constant S := "/NOSTD_INCLUDES "                &
1718                                              "-nostdinc";
1719    --        /NOSTD_INCLUDES
1720    --
1721    --   Do not look in the default directory for source files of the runtime.
1722
1723    S_GCC_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
1724                                             "-nostdlib";
1725    --        /NOSTD_LIBRARIES
1726    --
1727    --    Do not look for library files in the system default directory.
1728
1729    S_GCC_Opt     : aliased constant S := "/OPTIMIZE="                      &
1730                                             "ALL "                         &
1731                                                "-O2,!-O0,!-O1,!-O3 "       &
1732                                             "NONE "                        &
1733                                                "-O0,!-O1,!-O2,!-O3 "       &
1734                                             "SOME "                        &
1735                                                "-O1,!-O0,!-O2,!-O3 "       &
1736                                             "DEVELOPMENT "                 &
1737                                                "-O1,!-O0,!-O2,!-O3 "       &
1738                                             "UNROLL_LOOPS "                &
1739                                                "-funroll-loops "           &
1740                                             "NO_STRICT_ALIASING "          &
1741                                                "-fno-strict-aliasing "     &
1742                                             "INLINING "                    &
1743                                                "-O3,!-O0,!-O1,!-O2";
1744    --        /NOOPTIMIZE (D)
1745    --        /OPTIMIZE[=(keyword[,...])]
1746    --
1747    --   Selects the level of optimization for your program.  The supported
1748    --   keywords are as follows:
1749    --
1750    --      ALL (D)       Perform most optimizations, including those that
1751    --                    may be expensive.
1752    --
1753    --      NONE          Do not do any optimizations. Same as /NOOPTIMIZE.
1754    --
1755    --      SOME          Perform some optimizations, but omit ones that
1756    --                    are costly in compilation time.
1757    --
1758    --      DEVELOPMENT   Same as SOME.
1759    --
1760    --      INLINING      Full optimization, and also attempt automatic inlining
1761    --                    of small subprograms within a unit
1762    --
1763    --      UNROLL_LOOPS  Try to unroll loops. This keyword may be specified
1764    --                    with any keyword above other than NONE. Loop
1765    --                    unrolling usually, but not always, improves the
1766    --                    performance of programs.
1767    --
1768    --      NO_STRICT_ALIASING
1769    --                    Suppress aliasing analysis. When optimization is
1770    --                    enabled (ALL or SOME above), the compiler assumes
1771    --                    that pointers do in fact point to legitimate values
1772    --                    of the pointer type (allocated from the proper pool).
1773    --                    If this assumption is violated, e.g. by the use of
1774    --                    unchecked conversion, then it may be necessary to
1775    --                    suppress this assumption using this keyword (which
1776    --                    may be specified only in conjunction with any
1777    --                    keyword above, other than NONE).
1778
1779    S_GCC_OptX    : aliased constant S := "/NOOPTIMIZE "                    &
1780                                             "-O0,!-O1,!-O2,!-O3";
1781    --  NODOC (see /OPTIMIZE)
1782
1783    S_GCC_Output  : aliased constant S := "/OUTPUT_FILE=<"                  &
1784                                             "-gnatl=>";
1785    --        /OUTPUT_FILE=fname
1786    --
1787    --   This has the same effect as /LIST except that the output is written
1788    --   to a file instead of to standard output. If the given fname
1789    --   does not start with a period, then it is the full name of the file
1790    --   to be written. If fname starts with a period, the name of the file
1791    --   is the concatenation of to the name of the file being compiled with
1792    --   fname where the period is replace by an underline. For example, if
1793    --   file xyz.adb is compiled with -gnatl=.lst, then the output is written
1794    --   to file xyz.adb_lst.
1795
1796    S_GCC_Polling : aliased constant S := "/POLLING "                       &
1797                                             "-gnatP";
1798    --        /NOPOLLING (D)
1799    --        /POLLING
1800    --
1801    --   Enable polling. See the description of pragma Polling in the GNAT
1802    --   Reference Manual for full details.
1803
1804    S_GCC_Project : aliased constant S := "/PROJECT_FILE=<"                 &
1805                                             "-P>";
1806    --        /PROJECT_FILE=filename
1807    --
1808    --   Specifies the main project file to be used. The project files rooted
1809    --   at the main project file will be parsed before the invocation of the
1810    --   compiler. The source and object directories to be searched will be
1811    --   communicated to the compiler through logical names
1812    --   ADA_PRJ_INCLUDE_FILE and ADA_PRJ_OBJECTS_FILE.
1813
1814    S_GCC_Psta    : aliased constant S := "/PRINT_STANDARD "                &
1815                                             "-gnatS";
1816    --        /PRINT_STANDARD
1817    --
1818    --   cause the compiler to output a representation of package Standard
1819    --   in a form very close to standard Ada. It is not quite possible to
1820    --   do this and remain entirely Standard (since new numeric base types
1821    --   cannot be created in standard Ada), but the output is easily
1822    --   readable to any Ada programmer, and is useful to determine the
1823    --   characteristics of target dependent types in package Standard.
1824
1825    S_GCC_Report  : aliased constant S := "/REPORT_ERRORS="                 &
1826                                             "VERBOSE "                     &
1827                                                "-gnatv "                   &
1828                                             "BRIEF "                       &
1829                                                "-gnatb "                   &
1830                                             "FULL "                        &
1831                                                "-gnatf "                   &
1832                                             "IMMEDIATE "                   &
1833                                                "-gnatdO "                  &
1834                                             "DEFAULT "                     &
1835                                                "!-gnatb,!-gnatv";
1836    --        /NOREPORT_ERRORS (D)
1837    --        /REPORT_ERRORS[=(keyword[,...])]
1838    --
1839    --   Change the way errors are reported.  The following keywords are
1840    --   supported:
1841    --
1842    --        VERBOSE (D)  Verbose mode. Full error output with source lines
1843    --                     to SYS$OUTPUT.
1844    --
1845    --        BRIEF        Generate the brief format error messages to
1846    --                     SYS$OUTPUT as well as the verbose format message or
1847    --                     full listing.
1848    --
1849    --        FULL         Normally, the compiler suppresses error messages that
1850    --                     are likely to be redundant. This keyword causes all
1851    --                     error messages to be generated. One particular effect
1852    --                     is for the case of references to undefined variables.
1853    --                     If a given variable is referenced several times, the
1854    --                     normal format of messages produces one error.  With
1855    --                     FULL, each undefined reference produces a separate
1856    --                     error message.
1857    --
1858    --        IMMEDIATE    Normally, the compiler saves up error messages and
1859    --                     generates them at the end of compilation in proper
1860    --                     sequence.  This keyword causes error messages to be
1861    --                     generated as soon as they are detected. The use of
1862    --                     IMMEDIATE usually causes error messages to be
1863    --                     generated out of sequence. Use it when the compiler
1864    --                     blows up due to an internal error.  In this case, the
1865    --                     error messages may be lost. Sometimes blowups are
1866    --                     the result of mishandled error messages, so you may
1867    --                     want to run with this keyword to determine whether
1868    --                     any error messages were generated.
1869    --
1870    --      DEFAULT        Turn off VERBOSE and BRIEF. Same as /NOREPORT_ERRORS.
1871
1872    S_GCC_ReportX : aliased constant S := "/NOREPORT_ERRORS "               &
1873                                             "!-gnatb,!-gnatv";
1874    --  NODOC (see /REPORT_ERRORS)
1875
1876    S_GCC_Repinfo : aliased constant S := "/REPRESENTATION_INFO="           &
1877                                             "DEFAULT "                     &
1878                                                "-gnatR "                   &
1879                                             "NONE "                        &
1880                                                "-gnatR0 "                  &
1881                                             "ARRAYS "                      &
1882                                                "-gnatR1 "                  &
1883                                             "ARRAYS_FILE "                 &
1884                                                "-gnatR1s "                 &
1885                                             "OBJECTS "                     &
1886                                                "-gnatR2 "                  &
1887                                             "OBJECTS_FILE "                &
1888                                                "-gnatR2s "                 &
1889                                             "SYMBOLIC "                    &
1890                                                "-gnatR3 "                  &
1891                                             "SYMBOLIC_FILE "               &
1892                                                "-gnatR3s";
1893    --        /NOREPRESENTATION_INFO (D)
1894    --        /REPRESENTATION_INFO[=(keyword[,...])]
1895    --
1896    --   This qualifier controls output from the compiler of a listing showing
1897    --   representation information for declared types and objects.
1898    --
1899    --        ARRAYS (D)      Size and alignment information is listed for
1900    --                        declared array and record types.
1901    --
1902    --        ARRAYS_FILE     Similar to ARRAYS, but the output is to a file
1903    --                        with the name 'file_rep' where 'file' is the name
1904    --                        of the corresponding source file.
1905    --
1906    --        NONE            no information is output (equivalent to omitting
1907    --                        the /REPRESENTATION_INFO qualifiers).
1908    --
1909    --        OBJECTS         Size and alignment information is listed for all
1910    --                        declared types and objects.
1911    --
1912    --        OBJECTS_FILE    Similar to OBJECTS, but the output is to a file
1913    --                        with the name 'file_rep' where 'file' is the name
1914    --                        of the corresponding source file.
1915    --
1916    --        SYMBOLIC        Symbolic expression information for values that
1917    --                        are computed at run time for variant records.
1918    --
1919    --        SYMBOLIC_FILE   Similar to SYMBOLIC, but the output is to a file
1920    --                        with the name 'file_rep' where 'file' is the name
1921    --                        of the corresponding source file.
1922    --
1923    --        DEFAULT         Equivalent to ARRAYS.
1924
1925    S_GCC_RepinfX : aliased constant S := "/NOREPRESENTATION_INFO "         &
1926                                             "!-gnatR";
1927    --  NODOC (see /REPRESENTATION_INFO)
1928
1929    S_GCC_RTS     : aliased constant S := "/RUNTIME_SYSTEM=|"               &
1930                                             "--RTS=|";
1931    --        /RUNTIME_SYSTEM=xxx
1932    --
1933    --    Build against an alternate runtime system named xxx or RTS-xxx.
1934
1935    S_GCC_Search  : aliased constant S := "/SEARCH=*"                       &
1936                                             "-I*";
1937    --        /SEARCH=(directory[,...])
1938    --
1939    --    When looking for source files also look in directories specified.
1940
1941    S_GCC_Style   : aliased constant S := "/STYLE_CHECKS="                  &
1942                                             "ALL_BUILTIN "                 &
1943                                                "-gnaty "                   &
1944                                             "1 "                           &
1945                                                "-gnaty1 "                  &
1946                                             "2 "                           &
1947                                                "-gnaty2 "                  &
1948                                             "3 "                           &
1949                                                "-gnaty3 "                  &
1950                                             "4 "                           &
1951                                                "-gnaty4 "                  &
1952                                             "5 "                           &
1953                                                "-gnaty5 "                  &
1954                                             "6 "                           &
1955                                                "-gnaty6 "                  &
1956                                             "7 "                           &
1957                                                "-gnaty7 "                  &
1958                                             "8 "                           &
1959                                                "-gnaty8 "                  &
1960                                             "9 "                           &
1961                                                "-gnaty9 "                  &
1962                                             "ATTRIBUTE "                   &
1963                                                "-gnatya "                  &
1964                                             "ARRAY_INDEXES "               &
1965                                                "-gnatyA "                  &
1966                                             "BLANKS "                      &
1967                                                "-gnatyb "                  &
1968                                             "COMMENTS "                    &
1969                                                "-gnatyc "                  &
1970                                             "DOS_LINE_ENDINGS "            &
1971                                                "-gnatyd "                  &
1972                                             "END "                         &
1973                                                "-gnatye "                  &
1974                                             "VTABS "                       &
1975                                                "-gnatyf "                  &
1976                                             "GNAT "                        &
1977                                                "-gnatg "                   &
1978                                             "HTABS "                       &
1979                                                "-gnatyh "                  &
1980                                             "IF_THEN "                     &
1981                                                "-gnatyi "                  &
1982                                             "KEYWORD "                     &
1983                                                "-gnatyk "                  &
1984                                             "LAYOUT "                      &
1985                                                "-gnatyl "                  &
1986                                             "LINE_LENGTH "                 &
1987                                                "-gnatym "                  &
1988                                             "MODE_IN "                     &
1989                                                "-gnatyI "                  &
1990                                             "NONE "                        &
1991                                                "-gnatyN "                  &
1992                                             "STANDARD_CASING "             &
1993                                                "-gnatyn "                  &
1994                                             "ORDERED_SUBPROGRAMS "         &
1995                                                "-gnatyo "                  &
1996                                             "PRAGMA "                      &
1997                                                "-gnatyp "                  &
1998                                             "REFERENCES "                  &
1999                                                "-gnatyr "                  &
2000                                             "SPECS "                       &
2001                                                "-gnatys "                  &
2002                                             "TOKEN "                       &
2003                                                "-gnatyt "                  &
2004                                             "UNNECESSARY_BLANK_LINES "     &
2005                                                "-gnatyu "                  &
2006                                             "XTRA_PARENS "                 &
2007                                                "-gnatyx ";
2008    --        /NOSTYLE_CHECKS (D)
2009    --        /STYLE_CHECKS[=(keyword,[...])]
2010    --
2011    --   Normally, GNAT permits any code layout consistent with the reference
2012    --   manual requirements.  This qualifier imposes style checking on the
2013    --   input source code.  The following keywords are supported:
2014    --
2015    --      ALL_BUILTIN (D)      Equivalent to the following list of options:
2016    --                           3, ATTRIBUTE, BLANKS, COMMENTS, END, VTABS,
2017    --                           HTABS, IF_THEN, KEYWORD, LAYOUT, LINE_LENGTH,
2018    --                           PRAGMA, REFERENCES, SPECS, TOKEN.
2019    --
2020    --      1 .. 9               Specify indentation level from 1 to 9.
2021    --                           The general style of required indentation is as
2022    --                           specified by the examples in the Ada Reference
2023    --                           Manual. Full line comments must be aligned with
2024    --                           the -- starting on a column that is a multiple
2025    --                           of the alignment level.
2026    --
2027    --      ATTRIBUTE            Check attribute casing.
2028    --                           Attribute names, including the case of keywords
2029    --                           such as digits used as attributes names,
2030    --                           must be written in mixed case, that is,
2031    --                           the initial letter and any letter following an
2032    --                           underscore must be uppercase.
2033    --                           All other letters must be lowercase.
2034    --
2035    --      ARRAY_INDEXES        Check indexes of array attributes.
2036    --                           For array attributes First, Last, Range,
2037    --                           or Length, the index number must be omitted
2038    --                           for one-dimensional arrays and is required
2039    --                           for multi-dimensional arrays.
2040    --
2041    --      BLANKS               Blanks not allowed at statement end.
2042    --                           Trailing blanks are not allowed at the end of
2043    --                           statements. The purpose of this rule, together
2044    --                           with option HTABS (no horizontal tabs), is to
2045    --                           enforce a canonical format for the use of
2046    --                           blanks to separate source tokens.
2047    --
2048    --      COMMENTS             Check comments.
2049    --                           Comments must meet the following set of rules:
2050    --
2051    --                             * The "--" that starts the column must either
2052    --                               start in column one, or else at least one
2053    --                               blank must precede this sequence.
2054    --
2055    --                             * Comments that follow other tokens on a line
2056    --                               must have at least one blank following the
2057    --                               "--" at the start of the comment.
2058    --
2059    --                             * Full line comments must have two blanks
2060    --                               following the "--" that starts the comment,
2061    --                               with the following exceptions.
2062    --
2063    --                             * A line consisting only of the "--"
2064    --                               characters, possibly preceded by blanks is
2065    --                               permitted.
2066    --
2067    --                             * A comment starting with "--x" where x is
2068    --                               a special character is permitted. This
2069    --                               allows proper processing of the output
2070    --                               generated by specialized tools including
2071    --                               gnatprep (where --! is used) and the SPARK
2072    --                               annnotation language (where --# is used).
2073    --                               For the purposes of this rule, a special
2074    --                               character is defined as being in one of the
2075    --                               ASCII ranges 16#21#..16#2F# or
2076    --                               16#3A#..16#3F#.
2077    --
2078    --                             * A line consisting entirely of minus signs,
2079    --                               possibly preceded by blanks, is permitted.
2080    --                               This allows the construction of box
2081    --                               comments where lines of minus signs are
2082    --                               used to form the top and bottom of the box.
2083    --
2084    --                             * If a comment starts and ends with "--" is
2085    --                               permitted as long as at least one blank
2086    --                               follows the initial "--". Together with
2087    --                               the preceding rule, this allows the
2088    --                               construction of box comments, as shown in
2089    --                               the following example:
2090    --
2091    --                               ---------------------------
2092    --                               -- This is a box comment --
2093    --                               ---------------------------
2094    --
2095    --      DOS_LINE_ENDINGS     Check that no DOS line terminators are present
2096    --                           All lines must be terminated by a single
2097    --                           ASCII.LF character. In particular the DOS line
2098    --                           terminator sequence CR / LF is not allowed).
2099    --
2100    --      END                  Check end/exit labels.
2101    --                           Optional labels on end statements ending
2102    --                           subprograms and on exit statements exiting
2103    --                           named loops, are required to be present.
2104    --
2105    --      GNAT                 Enforces a set of style conventions that
2106    --                           correspond to the style used in the GNAT
2107    --                           source code.  All compiler units are always
2108    --                           compile with this keyword specified.
2109    --
2110    --                           You can find the full documentation for the
2111    --                           style conventions imposed by this keyword
2112    --                           in the body of the package "Style" in the
2113    --                           compiler sources.
2114    --
2115    --                           You should not normally use this keyword.
2116    --                           However, you MUST use it for compiling any
2117    --                           language-defined unit, or for adding children
2118    --                           to any language-defined unit other than
2119    --                           "Standard".
2120    --
2121    --      HTABS                No horizontal tabs.
2122    --                           Horizontal tab characters are not permitted in
2123    --                           the source text. Together with the BLANKS
2124    --                           (no blanks at end of line) option, this
2125    --                           enforces a canonical form for the use of blanks
2126    --                           to separate source tokens.
2127    --
2128    --      IF_THEN              Check if-then layout.
2129    --                           The keyword then must appear either on the
2130    --                           same line as the corresponding if, or on a line
2131    --                           on its own, lined up under the if with at least
2132    --                           one non-blank line in between containing all or
2133    --                           part of the condition to be tested.
2134    --
2135    --      KEYWORD              Check keyword casing.
2136    --                           All keywords must be in lower case (with the
2137    --                           exception of keywords such as digits used as
2138    --                           attribute names to which this check does not
2139    --                           apply).
2140    --
2141    --      LAYOUT               Check layout.
2142    --                           Layout of statement and declaration constructs
2143    --                           must follow the recommendations in the Ada
2144    --                           Reference Manual, as indicated by the form of
2145    --                           the syntax rules. For example an else keyword
2146    --                           must be lined up with the corresponding if
2147    --                           keyword.
2148    --
2149    --                           There are two respects in which the style rule
2150    --                           enforced by this check option are more liberal
2151    --                           than those in the Ada Reference Manual.
2152    --                           First in the case of record declarations,
2153    --                           it is permissible to put the record keyword on
2154    --                           the same line as the type keyword, and then
2155    --                           the end in end record must line up under type.
2156    --                           For example, either of the following two
2157    --                           layouts is acceptable:
2158    --
2159    --                           type q is record
2160    --                              a : integer;
2161    --                              b : integer;
2162    --                           end record;
2163    --
2164    --                           type q is
2165    --                              record
2166    --                                 a : integer;
2167    --                                 b : integer;
2168    --                              end record;
2169    --
2170    --                           Second, in the case of a block statement,
2171    --                           a permitted alternative is to put the block
2172    --                           label on the same line as the declare or begin
2173    --                           keyword, and then line the end keyword up under
2174    --                           the block label. For example both the following
2175    --                           are permitted:
2176    --
2177    --
2178    --
2179    --                           Block : declare
2180    --                              A : Integer := 3;
2181    --                           begin
2182    --                              Proc (A, A);
2183    --                           end Block;
2184    --
2185    --                           Block :
2186    --                              declare
2187    --                                 A : Integer := 3;
2188    --                              begin
2189    --                                 Proc (A, A);
2190    --                              end Block;
2191    --
2192    --                           The same alternative format is allowed for
2193    --                           loops. For example, both of the following are
2194    --                           permitted:
2195    --
2196    --
2197    --
2198    --                           Clear : while J < 10 loop
2199    --                              A (J) := 0;
2200    --                           end loop Clear;
2201    --
2202    --                           Clear :
2203    --                              while J < 10 loop
2204    --                                 A (J) := 0;
2205    --                              end loop Clear;
2206    --
2207    --
2208    --
2209    --      LINE_LENGTH          Check maximum line length.
2210    --                           The length of source lines must not exceed 79
2211    --                           characters, including any trailing blanks
2212    --                           The value of 79 allows convenient display on
2213    --                           an 80 character wide device or window, allowing
2214    --                           for possible special treatment of 80 character
2215    --                           lines.
2216    --
2217    --      NONE                 Clear any previously set style checks.
2218    --
2219    --      ORDERED_SUBPROGRAMS  Check order of subprogram bodies.
2220    --                           All subprogram bodies in a given scope (e.g.
2221    --                           a package body) must be in alphabetical order.
2222    --                           The ordering rule uses normal Ada rules for
2223    --                           comparing strings, ignoring casing of letters,
2224    --                           except that if there is a trailing numeric
2225    --                           suffix, then the value of this suffix is used
2226    --                           in the ordering (e.g. Junk2 comes before
2227    --                           Junk10).
2228    --
2229    --      PRAGMA               Check pragma casing.
2230    --                           Pragma names must be written in mixed case,
2231    --                           that is, the initial letter and any letter
2232    --                           following an underscore must be uppercase.
2233    --                           All other letters must be lowercase.
2234    --
2235    --      REFERENCES           Check references.
2236    --                           All identifier references must be cased in the
2237    --                           same way as the corresponding declaration.
2238    --                           No specific casing style is imposed on
2239    --                           identifiers. The only requirement is for
2240    --                           consistency of references with declarations.
2241    --
2242    --      SPECS                Check separate specs.
2243    --                           Separate declarations ("specs") are required
2244    --                           for subprograms (a body is not allowed to serve
2245    --                           as its own declaration). The only exception is
2246    --                           that parameterless library level procedures are
2247    --                           not required to have a separate declaration.
2248    --                           This exception covers the most frequent form of
2249    --                           main program procedures.
2250    --
2251    --      STANDARD_CASING      Check casing of entities in Standard.
2252    --                           Any identifier from Standard must be cased to
2253    --                           match the presentation in the Ada Reference
2254    --                           Manual (for example, Integer and ASCII.NUL).
2255    --
2256    --      TOKEN                Check token spacing.
2257    --                           The following token spacing rules are enforced:
2258    --
2259    --                             * The keywords abs and not must be followed
2260    --                               by a space.
2261    --
2262    --                             * The token => must be surrounded by spaces.
2263    --
2264    --                             * The token <> must be preceded by a space or
2265    --                               a left parenthesis.
2266    --
2267    --                             * Binary operators other than ** must be
2268    --                               surrounded by spaces. There is no
2269    --                               restriction on the layout of the ** binary
2270    --                               operator.
2271    --
2272    --                             * Colon must be surrounded by spaces.
2273    --
2274    --                             * Colon-equal (assignment) must be surrounded
2275    --                               by spaces.
2276    --
2277    --                             * Comma must be the first non-blank character
2278    --                               on the line, or be immediately preceded by
2279    --                               a non-blank character, and must be followed
2280    --                               by a space.
2281    --
2282    --                             * If the token preceding a left paren ends
2283    --                               with a letter or digit, then a space must
2284    --                               separate the two tokens.
2285    --
2286    --                             * A right parenthesis must either be the
2287    --                               first non-blank character on a line, or it
2288    --                               must be preceded by a non-blank character.
2289    --
2290    --                             * A semicolon must not be preceded by
2291    --                               a space, and must not be followed by
2292    --                               a non-blank character.
2293    --
2294    --                             * A unary plus or minus may not be followed
2295    --                               by a space.
2296    --
2297    --                             * A vertical bar must be surrounded by
2298    --                               spaces.
2299    --
2300    --                           In the above rules, appearing in column one is
2301    --                           always permitted, that is, counts as meeting
2302    --                           either a requirement for a required preceding
2303    --                           space, or as meeting a requirement for no
2304    --                           preceding space.
2305    --
2306    --                           Appearing at the end of a line is also always
2307    --                           permitted, that is, counts as meeting either
2308    --                           a requirement for a following space,
2309    --                           or as meeting a requirement for no following
2310    --                           space.
2311    --
2312    --      UNNECESSARY_BLANK_LINES
2313    --                           Check for unnecessary blank lines.
2314    --                           A blank line is considered unnecessary if it
2315    --                           appears at the end of the file, or if more
2316    --                           than one blank line occurs in sequence.
2317    --
2318    --      VTABS                No form feeds or vertical tabs.
2319    --                           Form feeds or vertical tab characters are not
2320    --                           permitted in the source text.
2321    --
2322    --      XTRA_PARENS          Check for the use of an unnecessary extra
2323    --                           level of parentheses (C - style) around
2324    --                           conditions in if statements, while statements
2325    --                           and exit statements.
2326
2327    S_GCC_StyleX  : aliased constant S := "/NOSTYLE_CHECKS "                &
2328                                             "!-gnatg,!-gnaty*";
2329    --  NODOC (see /STYLE_CHECKS)
2330
2331    S_GCC_Symbol  : aliased constant S := "/SYMBOL_PREPROCESSING=" & '"'    &
2332                                             "-gnateD" & '"';
2333    --        /SYMBOL_PREPROCESSING="symbol=value"
2334    --
2335    --   Define or redefine a preprocessing symbol, associated with value.
2336    --   If "=value" is not specified, then the value of the symbol is True.
2337    --   A symbol is an identifier, following normal Ada (case-insensitive)
2338    --   rules for its syntax, and value is any sequence (including an empty
2339    --   sequence) of characters from the set (letters, digits, period,
2340    --   underline). Ada reserved words may be used as symbols, with the
2341    --   exceptions of "if", "else", "elsif", "end", "and", "or" and "then".
2342    --
2343    --   A symbol declared with this qualifier on the command line replaces
2344    --   a symbol with the same name either in a definition file or specified
2345    --   with a switch -D in the preprocessor data file.
2346    --
2347    --   This qualifier is similar to qualifier /ASSOCIATE of
2348    --   GNAT PREPROCESSING.
2349
2350    S_GCC_Syntax  : aliased constant S := "/SYNTAX_ONLY "                   &
2351                                             "-gnats";
2352    --        /NOSYNTAX_ONLY (D)
2353    --        /SYNTAX_ONLY
2354    --
2355    --   Run GNAT in syntax checking only mode.  You can check a series of
2356    --   files in a single command, and can use wild cards to specify such a
2357    --   group of files.
2358    --
2359    --   You may use other qualifiers in conjunction with this qualifier. In
2360    --   particular, /LIST and /REPORT_ERRORS=VERBOSE are useful to control the
2361    --   format of any generated error messages.
2362    --
2363    --   The output is simply the error messages, if any. No object file or ALI
2364    --   file is generated by a syntax-only compilation. Also, no units other
2365    --   than the one specified are accessed. For example, if a unit "X" with's
2366    --   a unit "Y", compiling unit "X" in syntax check only mode does not
2367    --   access the source file containing unit "Y".
2368    --
2369    --   Normally, GNAT allows only a single unit in a source file. However,
2370    --   this restriction does not apply in syntax-check-only mode, and it is
2371    --   possible to check a file containing multiple compilation units
2372    --   concatenated together. This is primarily used by the GNAT CHOP
2373    --   command.
2374
2375    S_GCC_Table   : aliased constant S := "/TABLE_MULTIPLIER=#"             &
2376                                             "-gnatT#";
2377    --        /TABLE_MULTIPLIER=nnn
2378    --
2379    --   All compiler tables start at nnn times usual starting size.
2380
2381    S_GCC_Trace   : aliased constant S := "/TRACE_UNITS "                   &
2382                                             "-gnatdc";
2383    --        /TRACE_UNITS
2384    --        /NOTRACE_UNITS
2385    --
2386    --   This switch that does for the frontend what /VERBOSE does for the
2387    --   backend. The system prints the name of each unit, either a compilation
2388    --   unit or nested unit, as it is being analyzed.
2389
2390    S_GCC_Tree    : aliased constant S := "/TREE_OUTPUT "                   &
2391                                             "-gnatt";
2392    --        /TREE_OUTPUT
2393    --        /NOTREE_OUTPUT
2394    --
2395    --   Cause GNAT to write the internal tree for a unit to a file (with the
2396    --   filetype ATB for a body or ATS for a spec).  This is not normally
2397    --   required, but is used by separate analysis tools. Typically these
2398    --   tools do the necessary compilations automatically, so you should never
2399    --   have to specify this switch in normal operation.
2400
2401    S_GCC_Trys    : aliased constant S := "/TRY_SEMANTICS "                 &
2402                                             "-gnatq";
2403    --        /TRY_SEMANTICS
2404    --        /NOTRY_SEMANTICS
2405    --
2406    --   In normal operation mode the compiler first parses the program and
2407    --   determines if there are any syntax errors. If there are, appropriate
2408    --   error messages are generated and compilation is immediately
2409    --   terminated.  This qualifier tells GNAT to continue with semantic
2410    --   analysis even if syntax errors have been found.  This may enable the
2411    --   detection of more errors in a single run. On the other hand, the
2412    --   semantic analyzer is more likely to encounter some internal fatal
2413    --   error when given a syntactically invalid tree.
2414
2415    S_GCC_Units   : aliased constant S := "/UNITS_LIST "                    &
2416                                             "-gnatu";
2417    --        /NOUNITS_LIST (D)
2418    --        /UNITS_LIST
2419    --
2420    --   Print a list of units required by this compilation on SYS$OUTPUT.  The
2421    --   listing includes all units on which the unit being compiled depends
2422    --   either directly or indirectly.
2423
2424    S_GCC_Unique  : aliased constant S := "/UNIQUE_ERROR_TAG "              &
2425                                             "-gnatU";
2426    --        /NOUNIQUE_ERROR_TAG (D)
2427    --        /UNIQUE_ERROR_TAG
2428    --
2429    --   Tag compiler error messages with the string "error: ".
2430
2431    S_GCC_Upcase  : aliased constant S := "/UPPERCASE_EXTERNALS "           &
2432                                             "-gnatF";
2433    --        /NOUPPERCASE_EXTERNALS (D)
2434    --        /UPPERCASE_EXTERNALS
2435    --
2436    --   Fold default and explicit external names in pragmas Import and Export
2437    --   to uppercase for compatibility with the default behavior of DEC C.
2438
2439    S_GCC_Valid   : aliased constant S := "/VALIDITY_CHECKING="             &
2440                                             "DEFAULT "                     &
2441                                                "-gnatVd "                  &
2442                                             "NODEFAULT "                   &
2443                                                "-gnatVD "                  &
2444                                             "COPIES "                      &
2445                                                "-gnatVc "                  &
2446                                             "NOCOPIES "                    &
2447                                                "-gnatVC "                  &
2448                                             "FLOATS "                      &
2449                                                "-gnatVf "                  &
2450                                             "NOFLOATS "                    &
2451                                                "-gnatVF "                  &
2452                                             "IN_PARAMS "                   &
2453                                                "-gnatVi "                  &
2454                                             "NOIN_PARAMS "                 &
2455                                                "-gnatVI "                  &
2456                                             "MOD_PARAMS "                  &
2457                                                "-gnatVm "                  &
2458                                             "NOMOD_PARAMS "                &
2459                                                "-gnatVM "                  &
2460                                             "OPERANDS "                    &
2461                                                "-gnatVo "                  &
2462                                             "NOOPERANDS "                  &
2463                                                "-gnatVO "                  &
2464                                             "PARAMETERS "                  &
2465                                                "-gnatVp "                  &
2466                                             "NOPARAMETERS "                &
2467                                                "-gnatVP "                  &
2468                                             "RETURNS "                     &
2469                                                "-gnatVr "                  &
2470                                             "NORETURNS "                   &
2471                                                "-gnatVR "                  &
2472                                             "SUBSCRIPTS "                  &
2473                                                "-gnatVs "                  &
2474                                             "NOSUBSCRIPTS "                &
2475                                                "-gnatVS "                  &
2476                                             "TESTS "                       &
2477                                                "-gnatVt "                  &
2478                                             "NOTESTS "                     &
2479                                                "-gnatVT "                  &
2480                                             "ALL "                         &
2481                                                "-gnatVa "                  &
2482                                             "NONE "                        &
2483                                                "-gnatVn";
2484    --        /VALIDITY_CHECKING[=(keyword,[...])]
2485    --
2486    --   Control level of validity checking.
2487    --
2488    --        DEFAULT (D)     In this mode checks are made to prevent
2489    --                        erroneous behavior in accordance with the RM.
2490    --                        Notably extra checks may be needed for case
2491    --                        statements and subscripted array assignments.
2492    --
2493    --        NONE            No special checks for invalid values are
2494    --                        performed. This means that references to
2495    --                        uninitialized variables can cause erroneous
2496    --                        behavior from constructs like case statements
2497    --                        and subscripted array assignments. In this
2498    --                        mode, invalid values can lead to erroneous
2499    --                        behavior.
2500    --
2501    --        FULL            Every assignment is checked for validity, so
2502    --                        that it is impossible to assign invalid values.
2503    --                        The RM specifically allows such assignments,
2504    --                        but in this mode, invalid values can never be
2505    --                        assigned, and an attempt to perform such an
2506    --                        assignment immediately raises Constraint_Error.
2507    --                        This behavior is allowed (but not required) by
2508    --                        the RM. This mode is intended as a debugging aid,
2509    --                        and may be useful in helping to track down
2510    --                        uninitialized variables. It may be useful to
2511    --                        use this in conjunction with the Normalize_Scalars
2512    --                        pragma which attempts to initialize with invalid
2513    --                        values where possible.
2514
2515    S_GCC_Verbose : aliased constant S := "/VERBOSE "                       &
2516                                             "-v";
2517    --        /VERBOSE
2518    --        /NOVERBOSE
2519    --
2520    --   Show commands generated by the GCC driver. Normally used only for
2521    --   debugging purposes or if you need to be sure what version of the
2522    --   compiler you are executing.
2523
2524    S_GCC_Verb_Asm : aliased constant S := "/VERBOSE_ASM " &
2525                                           "-S,-verbose_asm,!-c";
2526    --        /NOASM (D)
2527    --        /ASM
2528    --
2529    --   Use to cause the assembler source file to be generated, using S as the
2530    --   filetype, instead of the object file. This may be useful if you need
2531    --   to examine the generated assembly code.
2532
2533    S_GCC_Warn    : aliased constant S := "/WARNINGS="                      &
2534                                             "DEFAULT "                     &
2535                                                "!-gnatws,!-gnatwe "        &
2536                                             "ALL "                         &
2537                                                "-gnatwa "                  &
2538                                             "NOALL "                       &
2539                                                "-gnatwA "                  &
2540                                             "ALL_GCC "                     &
2541                                                "-Wall "                    &
2542                                             "BAD_FIXED_VALUES "            &
2543                                                "-gnatwb "                  &
2544                                             "NO_BAD_FIXED_VALUES "         &
2545                                                "-gnatwB "                  &
2546                                             "CONDITIONALS "                &
2547                                                "-gnatwc "                  &
2548                                             "NOCONDITIONALS "              &
2549                                                "-gnatwC "                  &
2550                                             "CONSTANT_VARIABLES "          &
2551                                                "-gnatwk "                  &
2552                                             "NOCONSTANT_VARIABLES "        &
2553                                                "-gnatwK "                  &
2554                                             "IMPLICIT_DEREFERENCE "        &
2555                                                "-gnatwd "                  &
2556                                             "NO_IMPLICIT_DEREFERENCE "     &
2557                                                "-gnatwD "                  &
2558                                             "ELABORATION "                 &
2559                                                "-gnatwl "                  &
2560                                             "NOELABORATION "               &
2561                                                "-gnatwL "                  &
2562                                             "ERRORS "                      &
2563                                                "-gnatwe "                  &
2564                                             "HIDING "                      &
2565                                                "-gnatwh "                  &
2566                                             "NOHIDING "                    &
2567                                                "-gnatwH "                  &
2568                                             "IMPLEMENTATION "              &
2569                                                "-gnatwi "                  &
2570                                             "NOIMPLEMENTATION "            &
2571                                                "-gnatwI "                  &
2572                                             "INEFFECTIVE_INLINE "          &
2573                                                "-gnatwp "                  &
2574                                             "NOINEFFECTIVE_INLINE "        &
2575                                                "-gnatwP "                  &
2576                                             "MISSING_PARENS "              &
2577                                                "-gnatwq "                  &
2578                                             "NOMISSING_PARENS "            &
2579                                                "-gnatwQ "                  &
2580                                             "MODIFIED_UNREF "              &
2581                                                "-gnatwm "                  &
2582                                             "NOMODIFIED_UNREF "            &
2583                                                "-gnatwM "                  &
2584                                             "NORMAL "                      &
2585                                                "-gnatwn "                  &
2586                                             "OBSOLESCENT "                 &
2587                                                "-gnatwj "                  &
2588                                             "NOOBSOLESCENT "               &
2589                                                "-gnatwJ "                  &
2590                                             "OPTIONAL "                    &
2591                                                "-gnatwa "                  &
2592                                             "NOOPTIONAL "                  &
2593                                                "-gnatwA "                  &
2594                                             "OVERLAYS "                    &
2595                                                "-gnatwo "                  &
2596                                             "NOOVERLAYS "                  &
2597                                                "-gnatwO "                  &
2598                                             "REDUNDANT "                   &
2599                                                "-gnatwr "                  &
2600                                             "NOREDUNDANT "                 &
2601                                                "-gnatwR "                  &
2602                                             "SUPPRESS "                    &
2603                                                "-gnatws "                  &
2604                                             "DELETED_CODE "                &
2605                                                "-gnatwt "                  &
2606                                             "NODELETED_CODE "              &
2607                                                "-gnatwT "                  &
2608                                             "UNINITIALIZED "               &
2609                                                "-Wuninitialized "          &
2610                                             "UNREFERENCED_FORMALS "        &
2611                                                "-gnatwf "                  &
2612                                             "NOUNREFERENCED_FORMALS "      &
2613                                                "-gnatwF "                  &
2614                                             "UNRECOGNIZED_PRAGMAS "        &
2615                                                "-gnatwg "                  &
2616                                             "NOUNRECOGNIZED_PRAGMAS "      &
2617                                                "-gnatwG "                  &
2618                                             "UNUSED "                      &
2619                                                "-gnatwu "                  &
2620                                             "NOUNUSED "                    &
2621                                                "-gnatwU "                  &
2622                                             "VARIABLES_UNINITIALIZED "     &
2623                                                "-gnatwv "                  &
2624                                             "NOVARIABLES_UNINITIALIZED "   &
2625                                                "-gnatwV "                  &
2626                                             "LOWBOUND_ASSUMED "            &
2627                                                "-gnatww "                  &
2628                                             "NOLOWBOUND_ASSUMED "          &
2629                                                "-gnatwW "                  &
2630                                             "IMPORT_EXPORT_PRAGMAS "       &
2631                                                "-gnatwx "                  &
2632                                             "NOIMPORT_EXPORT_PRAGMAS "     &
2633                                                "-gnatwX "                  &
2634                                             "ADA_2005_COMPATIBILITY "      &
2635                                                "-gnatwy "                  &
2636                                             "NOADA_2005_COMPATIBILITY "    &
2637                                                "-gnatwY "                  &
2638                                             "UNCHECKED_CONVERSIONS "       &
2639                                                "-gnatwz "                  &
2640                                             "NOUNCHECKED_CONVERSIONS "     &
2641                                                "-gnatwZ";
2642    --        /NOWARNINGS
2643    --
2644    --   Suppress the output of all warning messages from the GNAT front end.
2645    --   Note that it does not suppress warnings from the gcc back end.
2646    --
2647    --        /WARNINGS[=(keyword[,...])]
2648    --
2649    --   In addition to error messages, corresponding to illegalities as
2650    --   defined in the reference manual, the compiler detects two kinds of
2651    --   warning situations.  First, the compiler considers some constructs
2652    --   suspicious and generates a warning message to alert you to a possible
2653    --   error. Second, if the compiler detects a situation that is sure to
2654    --   raise an exception at runtime, it generates a warning message.
2655    --
2656    --   You may specify the following keywords to change this behavior:
2657    --
2658    --   DEFAULT (D)             The default behavior above.
2659    --
2660    --   ALL                     Activate all optional warnings.
2661    --                           Activates most optional warning messages,
2662    --                           see remaining list in this section for
2663    --                           details on optional warning messages that
2664    --                           can be individually controlled.
2665    --                           The warnings that are not turned on by
2666    --                           this option are BIASED_ROUNDING,
2667    --                           IMPLICIT_DEREFERENCE, HIDING and
2668    --                           ELABORATION. All other optional Ada
2669    --                           warnings are turned on.
2670    --
2671    --   NOALL                   Suppress all optional errors.
2672    --                           Suppresses all optional warning messages
2673    --                           that can be activated by option ALL.
2674    --
2675    --   ALL_GCC                 Request additional messages from the GCC
2676    --                           backend.  Most of these are not relevant
2677    --                           to Ada.
2678    --
2679    --   CONDITIONALS            Activate warnings for conditional
2680    --                           Expressions used in tests that are known
2681    --                           to be True or False at compile time. The
2682    --                           default is that such warnings are not
2683    --                           generated.
2684    --
2685    --   NOCONDITIONALS          Suppress warnings for conditional
2686    --                           expressions used in tests that are known
2687    --                           to be True or False at compile time.
2688    --
2689    --   IMPLICIT_DEREFERENCE    Activate warnings on implicit dereferencing.
2690    --                           The use of a prefix of an access type in an
2691    --                           indexed component, slice, or selected component
2692    --                           without an explicit .all will generate
2693    --                           a warning. With this warning enabled, access
2694    --                           checks occur only at points where an explicit
2695    --                           .all appears in the source code (assuming no
2696    --                           warnings are generated as a result of this
2697    --                           option). The default is that such warnings are
2698    --                           not generated. Note that /WARNINGS=ALL does not
2699    --                           affect the setting of this warning option.
2700    --
2701    --   NOIMPLICIT_DEREFERENCE  Suppress warnings on implicit dereferencing.
2702    --                           in indexed components, slices, and selected
2703    --                           components.
2704    --
2705    --   ELABORATION             Activate warnings on missing pragma
2706    --                           Elaborate_All statements. The default is
2707    --                           that such warnings are not generated.
2708    --
2709    --   NOELABORATION           Suppress warnings on missing pragma
2710    --                           Elaborate_All statements.
2711    --
2712    --   ERRORS                  Warning messages are to be treated as errors.
2713    --                           The warning string still appears, but the
2714    --                           warning messages are counted as errors, and
2715    --                           prevent the generation of an object file.
2716    --
2717    --   HIDING                  Activate warnings on hiding declarations.
2718    --                           A declaration is considered hiding if it is
2719    --                           for a non-overloadable entity, and it declares
2720    --                           an entity with the same name as some other
2721    --                           entity that is directly or use-visible. The
2722    --                           default is that such warnings are not
2723    --                           generated.
2724    --
2725    --   NOHIDING                Suppress warnings on hiding declarations.
2726    --
2727    --   IMPLEMENTATION          Activate warnings for a with of an internal
2728    --                           GNAT implementation unit, defined as any unit
2729    --                           from the Ada, Interfaces, GNAT, DEC or
2730    --                           System hierarchies that is not documented in
2731    --                           either the Ada Reference Manual or the GNAT
2732    --                           Programmer's Reference Manual. Such units are
2733    --                           intended only for internal implementation
2734    --                           purposes and should not be with'ed by user
2735    --                           programs. The default is that such warnings
2736    --                           are generated.
2737    --
2738    --   NOIMPLEMENTATION        Disables warnings for a with of an internal
2739    --                           GNAT implementation unit.
2740    --
2741    --   INEFFECTIVE_INLINE      Activate warnings on ineffective pragma Inlines
2742    --                           Activates warnings for failure of front end
2743    --                           inlining (activated by /INLINE=FULL) to inline
2744    --                           a particular call. There are many reasons for
2745    --                           not being able to inline a call, including most
2746    --                           commonly that the call is too complex to
2747    --                           inline. This warning can also be turned on
2748    --                           using /INLINE=FULL.
2749    --
2750    --   NOINEFFECTIVE_INLINE    Suppress warnings on ineffective pragma Inlines
2751    --                           Suppresses warnings on ineffective pragma
2752    --                           Inlines. If the inlining mechanism cannot
2753    --                           inline a call, it will simply ignore the
2754    --                           request silently.
2755    --
2756    --   MISSING_PARENS
2757    --                           Activate warnings for cases where parentheses
2758    --                           are not used and the result is potential
2759    --                           ambiguity from a reader's point of view.
2760    --                           For example (not a > b) when a and b are
2761    --                           modular means (not (a) > b) and very likely
2762    --                           the programmer intended (not (a > b)).
2763    --
2764    --   NOMISSING_PARENS
2765    --                           Suppress warnings for cases where parentheses
2766    --                           are not used and the result is potential
2767    --                           ambiguity from a reader's point of view.
2768    --
2769    --   MODIFIED_UNREF          Activates warnings for variables that are
2770    --                           assigned (using an initialization value or with
2771    --                           one or more assignment statements) but whose
2772    --                           value is never read. The warning is suppressed
2773    --                           for volatile variables and also for variables
2774    --                           that are renamings of other variables or for
2775    --                           which an address clause is given. This warning
2776    --                           can also be turned on using /WARNINGS/OPTIONAL.
2777    --
2778    --   NOMODIFIED_UNREF        Disables warnings for variables that are
2779    --                           assigned or initialized, but never read.
2780    --
2781    --   NORMAL                  Sets normal warning mode, in which enabled
2782    --                           warnings are issued and treated as warnings
2783    --                           rather than errors. This is the default mode.
2784    --                           It can be used to cancel the effect of an
2785    --                           explicit /WARNINGS=SUPPRESS or
2786    --                           /WARNINGS=ERRORS. It also cancels the effect
2787    --                           of the implicit /WARNINGS=ERRORS that is
2788    --                           activated by the use of /STYLE=GNAT.
2789    --
2790    --   OBSOLESCENT             Activates warnings for calls to subprograms
2791    --                           marked with pragma Obsolescent and for use of
2792    --                           features in Annex J of the Ada Reference
2793    --                           Manual. In the case of Annex J, not all
2794    --                           features are flagged. In particular use of the
2795    --                           renamed packages (like Text_IO), use of package
2796    --                           ASCII and use of the attribute 'Constrained are
2797    --                           not flagged, since these are very common and
2798    --                           would generate many annoying positive warnings.
2799    --                           The default is that such warnings are not
2800    --                           generated.
2801    --
2802    --   NOOBSOLESCENT           Disables warnings on use of obsolescent
2803    --                           features.
2804    --
2805    --   OPTIONAL                Activate all optional warning messages.
2806    --                           See other options under this qualifier
2807    --                           for details on optional warning messages
2808    --                           that can be individually controlled. The
2809    --                           one exception is that /WARNINGS=OPTIONAL
2810    --                           doesn't activate warnings for hiding
2811    --                           variables (/WARNINGS=HIDING), so if this
2812    --                           warning is required it must be explicitly
2813    --                           set.
2814    --
2815    --   NOOPTIONAL              Suppress all optional warning messages.
2816    --                           See other options under this qualifier
2817    --                           for details on optional warning messages
2818    --                           that can be individually controlled.
2819    --
2820    --   OVERLAYS                Activate warnings for possibly unintended
2821    --                           initialization effects of defining address
2822    --                           clauses that cause one variable to overlap
2823    --                           another. The default is that such warnings
2824    --                           are generated.
2825    --
2826    --   NOOVERLAYS              Suppress warnings on possibly unintended
2827    --                           initialization effects of defining address
2828    --                           clauses that cause one variable to overlap
2829    --                           another.
2830    --
2831    --   REDUNDANT               Activate warnings for redundant constructs.
2832    --                           In particular assignments of a variable to
2833    --                           itself, and a type conversion that converts
2834    --                           an object to its own type. The default
2835    --                           is that such warnings are not generated.
2836    --
2837    --   NOREDUNDANT             Suppress warnings for redundant constructs.
2838    --
2839    --   SUPPRESS                Completely suppresse the output of all warning
2840    --                           messages.  Same as /NOWARNINGS.
2841    --
2842    --   UNCHECKED_CONVERSIONS   Activates warnings on unchecked conversions.
2843    --                           Causes warnings to be generated for
2844    --                           unchecked conversions when the two types are
2845    --                           known at compile time to have different sizes.
2846    --                           The default is that such warnings are
2847    --                           generated.
2848    --
2849    --   NOUNCHECKED_CONVERSIONS Suppress warnings for unchecked conversions.
2850    --
2851    --   UNINITIALIZED           Generate warnings for uninitialized variables.
2852    --                           This is a GCC option, not an Ada option.
2853    --                           You must also specify the /OPTIMIZE qualifier
2854    --                           with a value other than NONE (in other words,
2855    --                           this keyword works only if optimization is
2856    --                           turned on).
2857    --
2858    --   UNREFERENCED_FORMALS    Activate warnings on unreferenced formals.
2859    --                           Causes a warning to be generated if a formal
2860    --                           parameter is not referenced in the body of
2861    --                           the subprogram. This warning can also be turned
2862    --                           on using option ALL or UNUSED.
2863    --
2864    --   NOUNREFERENCED_FORMALS  Suppress warnings on unreferenced formals.
2865    --                           Suppresses warnings for unreferenced formal
2866    --                           parameters. Note that the combination UNUSED
2867    --                           followed by NOUNREFERENCED_FORMALS has the
2868    --                           effect of warning on unreferenced entities
2869    --                           other than subprogram formals.
2870    --
2871    --   UNUSED                  Activates warnings to be generated for entities
2872    --                           that are defined but not referenced, and for
2873    --                           units that are with'ed and not referenced. In
2874    --                           the case of packages, a warning is also
2875    --                           generated if no entities in the package are
2876    --                           referenced. This means that if the package
2877    --                           is referenced but the only references are in
2878    --                           use clauses or renames declarations, a warning
2879    --                           is still generated. A warning is also generated
2880    --                           for a generic package that is with'ed but never
2881    --                           instantiated.  In the case where a package or
2882    --                           subprogram body is compiled, and there is a
2883    --                           with on the corresponding spec that is only
2884    --                           referenced in the body, a warning is also
2885    --                           generated, noting that the with can be moved
2886    --                           to the body. The default is that such warnings
2887    --                           are not generated.
2888    --
2889    --   NOUNUSED                Suppress warnings for unused entities and
2890    --                           packages.
2891    --
2892    --   VARIABLES_UNINITIALIZED Activates warnings on unassigned variables.
2893    --                           Causes warnings to be generated when a variable
2894    --                           is accessed which may not be properly
2895    --                           uninitialized.
2896    --                           The default is that such warnings are
2897    --                           generated.
2898    --
2899    --   NOVARIABLES_UNINITIALIZED       Suppress warnings for uninitialized
2900    --                                   variables.
2901
2902    S_GCC_WarnX   : aliased constant S := "/NOWARNINGS "                    &
2903                                             "-gnatws";
2904    --  NODOC (see /WARNINGS)
2905
2906    S_GCC_No_Back : aliased constant S := "/NO_BACK_END_WARNINGS "          &
2907                                             "-w";
2908    --        /NO_BACK_END_WARNINGS
2909    --
2910    --   Inhibit all warning messages of the GCC back-end.
2911
2912    S_GCC_Wide    : aliased constant S := "/WIDE_CHARACTER_ENCODING="       &
2913                                              "BRACKETS "                   &
2914                                                 "-gnatWb "                 &
2915                                              "HEX "                        &
2916                                                 "-gnatWh "                 &
2917                                              "UPPER "                      &
2918                                                 "-gnatWu "                 &
2919                                              "SHIFT_JIS "                  &
2920                                                 "-gnatWs "                 &
2921                                              "UTF8 "                       &
2922                                                 "-gnatW8 "                 &
2923                                              "EUC "                        &
2924                                                 "-gnatWe";
2925    --        /NOWIDE_CHARACTER_ENCODING (D)
2926    --        /WIDE_CHARACTER_ENCODING[=encode-type]
2927    --
2928    --   Specifies the mechanism used to encode wide characters.  'encode-type'
2929    --   is one of the following:
2930    --
2931    --   BRACKETS (D)    A wide character is encoded as ["xxxx"] where XXXX
2932    --                   are four hexadecimal digits representing the coding
2933    --                   ('Pos value) of the character in type
2934    --                   Wide_Character. The hexadecimal digits may use upper
2935    --                   or lower case letters.
2936    --
2937    --                   This notation can also be used for upper half
2938    --                   Character values using the format ["xx"] where XX is
2939    --                   two hexadecimal digits representing the coding ('Pos
2940    --                   value) of the character in type Character (or
2941    --                   Wide_Character). The hexadecimal digits may use upper
2942    --                   of lower case.
2943    --
2944    --   NONE            No wide characters are allowed.  Same
2945    --                   as /NOWIDE_CHARCTER_ENCODING.
2946    --
2947    --   HEX             In this encoding, a wide character is represented by
2948    --                   the following five character sequence: ESC a b c d
2949    --                   Where 'a', 'b', 'c', and 'd' are the four hexadecimal
2950    --                   characters (using uppercase letters) of the wide
2951    --                   character code. For example, ESC A345 is used to
2952    --                   represent the wide character with code 16#A345#. This
2953    --                   scheme is compatible with use of the full
2954    --                   Wide_Character set.
2955    --
2956    --   UPPER           The wide character with encoding 16#abcd# where the
2957    --                   upper bit is on (in other words, "a" is in the range
2958    --                   8-F) is represented as two bytes, 16#ab# and 16#cd#.
2959    --                   The second byte may never be a format control
2960    --                   character, but is not required to be in the upper
2961    --                   half. This method can be also used for shift-JIS or
2962    --                   EUC, where the internal coding matches the external
2963    --                   coding.
2964    --
2965    --   SHIFT_JIS       A wide character is represented by a two-character
2966    --                   sequence, 16#ab# and 16#cd#, with the restrictions
2967    --                   described for upper-half encoding as described above.
2968    --                   The internal character code is the corresponding JIS
2969    --                   character according to the standard algorithm for
2970    --                   Shift-JIS conversion. Only characters defined in the
2971    --                   JIS code set table can be used with this encoding
2972    --                   method.
2973    --
2974    --   UTF8            A wide character is represented using
2975    --                   UCS Transformation Format 8 (UTF-8) as defined in Annex
2976    --                   R of ISO 10646-1/Am.2.  Depending on the character
2977    --                   value, the representation is a one, two, or three byte
2978    --                   sequence:
2979    --
2980    --                   16#0000#-16#007f#: 2#0xxxxxxx#
2981    --                   16#0080#-16#07ff#: 2#110xxxxx# 2#10xxxxxx#
2982    --                   16#0800#-16#ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx#
2983    --
2984    --                   where the xxx bits correspond to the left-padded bits
2985    --                   of the the 16-bit character value. Note that all lower
2986    --                   half ASCII characters are represented as ASCII bytes
2987    --                   and all upper half characters and other wide characters
2988    --                   are represented as sequences of upper-half (The full
2989    --                   UTF-8 scheme allows for encoding 31-bit characters as
2990    --                   6-byte sequences, but in this implementation, all UTF-8
2991    --                   sequences of four or more bytes length will be treated
2992    --                   as illegal).
2993    --
2994    --   EUC             A wide character is represented by a two-character
2995    --                   sequence 16#ab# and 16#cd#, with both characters being
2996    --                   in the upper half. The internal character code is the
2997    --                   corresponding JIS character according to the EUC
2998    --                   encoding algorithm. Only characters defined in the JIS
2999    --                   code set table can be used with this encoding method.
3000
3001    S_GCC_WideX   : aliased constant S := "/NOWIDE_CHARACTER_ENCODING "     &
3002                                              "-gnatWn";
3003    --  NODOC (see /WIDE_CHARACTER_ENCODING)
3004
3005    S_GCC_Xdebug  : aliased constant S := "/XDEBUG "                        &
3006                                              "-gnatD";
3007    --        /NOXDEBUG (D)
3008    --        /XDEBUG
3009    --
3010    --   Output expanded source files for source level debugging.
3011    --   The expanded source (see /EXPAND_SOURCE) is written to files
3012    --   with names formed by appending "_DG" to the input file name,
3013    --   The debugging information generated by the /DEBUG qualifier will then
3014    --   refer to the generated file. This allows source level debugging using
3015    --   the generated code which is sometimes useful for complex code, for
3016    --   example to find out exactly which part of a complex construction
3017    --   raised an exception.
3018
3019    S_GCC_Xref    : aliased constant S := "/XREF="                          &
3020                                             "GENERATE "                    &
3021                                                "!-gnatx "                  &
3022                                             "SUPPRESS "                    &
3023                                                "-gnatx";
3024    --        /XREF[=keyword]
3025    --
3026    --   Normally the compiler generates full cross-referencing information in
3027    --   the .ALI file. This information is used by a number of tools,
3028    --   including GNAT FIND and GNAT XREF.
3029    --
3030    --        GENERATE (D)            Generate cross-referencing information.
3031    --
3032    --        SUPPRESS                Suppress cross-referencing information.
3033    --                                This saves some space and may slightly
3034    --                                speed up compilation, but means that some
3035    --                                tools cannot be used.
3036
3037    GCC_Switches : aliased constant Switches :=
3038      (S_GCC_Ada_83  'Access,
3039       S_GCC_Ada_95  'Access,
3040       S_GCC_Ada_05  'Access,
3041       S_GCC_Asm     'Access,
3042       S_GCC_Checks  'Access,
3043       S_GCC_ChecksX 'Access,
3044       S_GCC_Compres 'Access,
3045       S_GCC_Config  'Access,
3046       S_GCC_Current 'Access,
3047       S_GCC_Debug   'Access,
3048       S_GCC_DebugX  'Access,
3049       S_GCC_Data    'Access,
3050       S_GCC_Dist    'Access,
3051       S_GCC_DistX   'Access,
3052       S_GCC_Error   'Access,
3053       S_GCC_ErrorX  'Access,
3054       S_GCC_Expand  'Access,
3055       S_GCC_Extend  'Access,
3056       S_GCC_Ext     'Access,
3057       S_GCC_File    'Access,
3058       S_GCC_Force   'Access,
3059       S_GCC_Full    'Access,
3060       S_GCC_Help    'Access,
3061       S_GCC_Ident   'Access,
3062       S_GCC_IdentX  'Access,
3063       S_GCC_Immed   'Access,
3064       S_GCC_Inline  'Access,
3065       S_GCC_InlineX 'Access,
3066       S_GCC_Intsrc  'Access,
3067       S_GCC_Just    'Access,
3068       S_GCC_JustX   'Access,
3069       S_GCC_Length  'Access,
3070       S_GCC_List    'Access,
3071       S_GCC_Output  'Access,
3072       S_GCC_Mapping 'Access,
3073       S_GCC_Mess    'Access,
3074       S_GCC_Nesting 'Access,
3075       S_GCC_Noadc   'Access,
3076       S_GCC_Noload  'Access,
3077       S_GCC_Nostinc 'Access,
3078       S_GCC_Nostlib 'Access,
3079       S_GCC_Opt     'Access,
3080       S_GCC_OptX    'Access,
3081       S_GCC_Polling 'Access,
3082       S_GCC_Project 'Access,
3083       S_GCC_Psta    'Access,
3084       S_GCC_Report  'Access,
3085       S_GCC_ReportX 'Access,
3086       S_GCC_Repinfo 'Access,
3087       S_GCC_RepinfX 'Access,
3088       S_GCC_RTS     'Access,
3089       S_GCC_Search  'Access,
3090       S_GCC_Style   'Access,
3091       S_GCC_StyleX  'Access,
3092       S_GCC_Symbol  'Access,
3093       S_GCC_Syntax  'Access,
3094       S_GCC_Table   'Access,
3095       S_GCC_Trace   'Access,
3096       S_GCC_Tree    'Access,
3097       S_GCC_Trys    'Access,
3098       S_GCC_Units   'Access,
3099       S_GCC_Unique  'Access,
3100       S_GCC_Upcase  'Access,
3101       S_GCC_Valid   'Access,
3102       S_GCC_Verbose 'Access,
3103       S_GCC_Verb_Asm'Access,
3104       S_GCC_Warn    'Access,
3105       S_GCC_WarnX   'Access,
3106       S_GCC_Wide    'Access,
3107       S_GCC_WideX   'Access,
3108       S_GCC_No_Back 'Access,
3109       S_GCC_Xdebug  'Access,
3110       S_GCC_Xref    'Access);
3111
3112    ----------------------------
3113    -- Switches for GNAT ELIM --
3114    ----------------------------
3115
3116    S_Elim_All    : aliased constant S := "/ALL "                           &
3117                                             "-a";
3118    --        /NOALL (D)
3119    --        /ALL
3120    --
3121    --   Also look for subprograms from the GNAT run time that can be
3122    --   eliminated. Note that when 'gnat.adc' is produced using this switch,
3123    --   the entire program must be recompiled with qualifier /ALL_FILES of
3124    --   GNAT MAKE.
3125
3126    S_Elim_Bind   : aliased constant S := "/BIND_FILE=<"                    &
3127                                             "-b>";
3128    --        /BIND_FILE=file_name
3129    --
3130    --   Specifies file_name as the bind file to process. If this qualifier is
3131    --   not used, the name of the bind file is computed from the full expanded
3132    --   Ada name of a main subprogram.
3133
3134    S_Elim_Comp   : aliased constant S := "/COMPILER=@"                     &
3135                                             "--GCC=@";
3136    --        /COMPILER=path_name
3137    --
3138    --   Instructs GNAT ELIM to use a specific gcc compiler instead of one
3139    --   available on the path.
3140
3141    S_Elim_Config : aliased constant S := "/CONFIGURATION_PRAGMAS=<"        &
3142                                             "-C>";
3143    --        /CONFIGURATION_PRAGMAS=path_name
3144    --
3145    --   Specifies a file that contains configuration pragmas.
3146    --   The file must be specified with absolute path.
3147
3148    S_Elim_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
3149                                            "!-I-";
3150    --        /CURRENT_DIRECTORY (D)
3151    --        /NOCURRENT_DIRECTORY
3152    --
3153    --        Look for source files in the default directory.
3154
3155    S_Elim_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3156                                              "-X" & '"';
3157    --       /EXTERNAL_REFERENCE="name=val"
3158    --
3159    --   Specifies an external reference to the project manager. Useful only if
3160    --   /PROJECT_FILE is used.
3161    --
3162    --   Example:
3163    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3164
3165    S_Elim_GNATMAKE : aliased constant S := "/GNATMAKE=@"                   &
3166                                             "--GNATMAKE=@";
3167    --        /GNATMAKE=path_name
3168    --
3169    --   Instructs GNAT MAKE to use a specific gnatmake instead of one available
3170    --   on the path.
3171
3172    S_Elim_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3173                                              "DEFAULT "                    &
3174                                                 "-vP0 "                    &
3175                                              "MEDIUM "                     &
3176                                                 "-vP1 "                    &
3177                                              "HIGH "                       &
3178                                                 "-vP2";
3179    --        /MESSAGES_PROJECT_FILE[=messages-option]
3180    --
3181    --   Specifies the "verbosity" of the parsing of project files.
3182    --   messages-option may be one of the following:
3183    --
3184    --      DEFAULT (D)  No messages are output if there is no error or warning.
3185    --
3186    --      MEDIUM       A small number of messages are output.
3187    --
3188    --      HIGH         A great number of messages are output, most of them not
3189    --                   being useful for the user.
3190
3191    S_Elim_Project : aliased constant S := "/PROJECT_FILE=<"                &
3192                                              "-P>";
3193    --        /PROJECT_FILE=filename
3194    --
3195    --   Specifies the main project file to be used. The project files rooted
3196    --   at the main project file will be parsed before the invocation of the
3197    --   gnatelim. The source directories to be searched will be communicated
3198    --   to gnatelim through logical name ADA_PRJ_INCLUDE_FILE.
3199
3200    S_Elim_Quiet  : aliased constant S := "/QUIET "                         &
3201                                             "-q";
3202    --        /NOQUIET (D)
3203    --        /QUIET
3204    --
3205    --   Quiet mode: by default GNAT ELIM outputs to the standard error stream
3206    --   the number of program units left to be processed. This option turns
3207    --   this trace off.
3208
3209    S_Elim_Search : aliased constant S := "/SEARCH=*"                       &
3210                                             "-I*";
3211    --        /SEARCH=(directory, ...)
3212    --
3213    --   When looking for source files also look in the specified directories.
3214
3215    S_Elim_Verb   : aliased constant S := "/VERBOSE "                       &
3216                                             "-v";
3217    --        /NOVERBOSE (D)
3218    --        /VERBOSE
3219    --
3220    --   Verbose mode: GNAT ELIM version information is output as Ada comments
3221    --   to the standard output stream. Also, in addition to the number of
3222    --   program units left, GNAT ELIM will output the name of the current unit
3223    --   being processed.
3224
3225    Elim_Switches : aliased constant Switches :=
3226                      (S_Elim_All     'Access,
3227                       S_Elim_Bind    'Access,
3228                       S_Elim_Comp    'Access,
3229                       S_Elim_Config  'Access,
3230                       S_Elim_Current 'Access,
3231                       S_Elim_Ext     'Access,
3232                       S_Elim_GNATMAKE'Access,
3233                       S_Elim_Mess    'Access,
3234                       S_Elim_Project 'Access,
3235                       S_Elim_Quiet   'Access,
3236                       S_Elim_Search  'Access,
3237                       S_Elim_Verb    'Access);
3238
3239    ----------------------------
3240    -- Switches for GNAT FIND --
3241    ----------------------------
3242
3243    S_Find_All     : aliased constant S := "/ALL_FILES "                    &
3244                                             "-a";
3245    --        /NOALL_FILES (D)
3246    --        /ALL_FILES
3247    --
3248    --   If this switch is present, FIND and XREF will parse the read-only
3249    --   files found in the library search path. Otherwise, these files will
3250    --   be ignored. This option can be used to protect Gnat sources or your
3251    --   own libraries from being parsed, thus making FIND and XREF much
3252    --   faster, and their output much smaller.
3253
3254    S_Find_Deriv   : aliased constant S := "/DERIVED_TYPE_INFORMATION "     &
3255                                             "-d";
3256    --        /NODERIVED_TYPE_INFORMATION (D)
3257    --        /DERIVED_TYPE_INFORMATION
3258    --
3259    --   Output the parent type reference for each matching derived types.
3260
3261    S_Find_Expr    : aliased constant S := "/EXPRESSIONS "                  &
3262                                             "-e";
3263    --        /NOEXPRESSIONS (D)
3264    --        /EXPRESSIONS
3265    --
3266    --   By default, FIND accepts the simple regular expression set for pattern.
3267    --   If this switch is set, then the pattern will be considered as a full
3268    --   Unix-style regular expression.
3269
3270    S_Find_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3271                                             "-X" & '"';
3272    --        /EXTERNAL_REFERENCE="name=val"
3273    --
3274    --   Specifies an external reference to the project manager. Useful only if
3275    --   /PROJECT_FILE is used.
3276    --
3277    --   Example:
3278    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3279
3280    S_Find_Full    : aliased constant S := "/FULL_PATHNAME "                &
3281                                             "-f";
3282    --        /NOFULL_PATHNAME (D)
3283    --        /FULL_PATHNAME
3284    --
3285    --   If this switch is set, the output file names will be preceded by their
3286    --   directory (if the file was found in the search path). If this switch
3287    --   is not set, the directory will not be printed.
3288
3289    S_Find_Ignore  : aliased constant S := "/IGNORE_LOCALS "                &
3290                                             "-g";
3291    --        /NOIGNORE_LOCALS (D)
3292    --        /IGNORE_LOCALS
3293    --
3294    --   If this switch is set, information is output only for library-level
3295    --   entities, ignoring local entities. The use of this switch may
3296    --   accelerate FIND and XREF.
3297
3298    S_Find_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3299                                             "DEFAULT "                     &
3300                                                "-vP0 "                     &
3301                                             "MEDIUM "                      &
3302                                                "-vP1 "                     &
3303                                             "HIGH "                        &
3304                                                "-vP2";
3305    --        /MESSAGES_PROJECT_FILE[=messages-option]
3306    --
3307    --   Specifies the "verbosity" of the parsing of project files.
3308    --   messages-option may be one of the following:
3309    --
3310    --      DEFAULT (D)  No messages are output if there is no error or warning.
3311    --
3312    --      MEDIUM       A small number of messages are output.
3313    --
3314    --      HIGH         A great number of messages are output, most of them not
3315    --                   being useful for the user.
3316
3317    S_Find_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
3318                                             "-nostdinc";
3319    --        /NOSTD_INCLUDES
3320    --
3321    --   Do not look for sources in the system default directory.
3322
3323    S_Find_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
3324                                             "-nostdlib";
3325    --        /NOSTD_LIBRARIES
3326    --
3327    --   Do not look for library files in the system default directory.
3328
3329    S_Find_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
3330                                             "-aO*";
3331    --        /OBJECT_SEARCH=(directory,...)
3332    --
3333    --   When searching for library and object files, look in the specified
3334    --   directories. The order in which library files are searched is the same
3335    --   as for MAKE.
3336
3337    S_Find_Print   : aliased constant S := "/PRINT_LINES "                  &
3338                                             "-s";
3339    --        /NOPRINT_LINES (D)
3340    --        /PRINT_LINES
3341    --
3342    --   Output the content of the Ada source file lines were the entity was
3343    --   found.
3344
3345    S_Find_Project : aliased constant S := "/PROJECT=@"                     &
3346                                             "-p@";
3347    --        /PROJECT=file
3348    --
3349    --   Specify a project file to use. By default, FIND and XREF will try to
3350    --   locate a project file in the current directory.
3351    --
3352    --   If a project file is either specified or found by the tools, then the
3353    --   content of the source directory and object directory lines are added
3354    --   as if they had been specified respectively by /SOURCE_SEARCH and
3355    --   /OBJECT_SEARCH.
3356    --
3357    --   This qualifier is not compatible with /PROJECT_FILE
3358
3359    S_Find_Prj     : aliased constant S := "/PROJECT_FILE=<"               &
3360                                             "-P>";
3361    --        /PROJECT_FILE=filename
3362    --
3363    --   Specifies the main project file to be used. The project files rooted
3364    --   at the main project file will be parsed before looking for sources.
3365    --   The source and object directories to be searched will be communicated
3366    --   to gnatfind  through logical names ADA_PRJ_INCLUDE_FILE and
3367    --   ADA_PRJ_OBJECTS_FILE.
3368
3369    S_Find_Ref     : aliased constant S := "/REFERENCES "                   &
3370                                             "-r";
3371    --        /NOREFERENCES (D)
3372    --        /REFERENCES
3373    --
3374    --   By default, FIND will output only the information about the
3375    --   declaration, body or type completion of the entities. If this switch
3376    --   is set, the FIND will locate every reference to the entities in the
3377    --   files specified on the command line (or in every file in the search
3378    --   path if no file is given on the command line).
3379
3380    S_Find_Search  : aliased constant S := "/SEARCH=*"                      &
3381                                             "-I*";
3382    --        /SEARCH=(directory,...)
3383    --
3384    --   Equivalent to:
3385    --   /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
3386
3387    S_Find_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
3388                                             "-aI*";
3389    --        /SOURCE_SEARCH=(directory,...)
3390    --
3391    --   When looking for source files also look in the specified directories.
3392    --   The order in which source file search is undertaken is the same as for
3393    --   MAKE.
3394
3395    S_Find_Types   : aliased constant S := "/TYPE_HIERARCHY "               &
3396                                             "-t";
3397    --        /NOTYPE_HIERARCHY (D)
3398    --        /TYPE_HIERARCHY
3399    --
3400    --   Output the type hierarchy for the specified type. It acts like the
3401    --   /DERIVED_TYPE_INFORMATION qualifier, but recursively from parent type
3402    --   to parent type. When this qualifier is specified it is not possible to
3403    --   specify more than one file.
3404
3405    Find_Switches : aliased constant Switches :=
3406      (S_Find_All     'Access,
3407       S_Find_Deriv   'Access,
3408       S_Find_Expr    'Access,
3409       S_Find_Ext     'Access,
3410       S_Find_Full    'Access,
3411       S_Find_Ignore  'Access,
3412       S_Find_Mess    'Access,
3413       S_Find_Nostinc 'Access,
3414       S_Find_Nostlib 'Access,
3415       S_Find_Object  'Access,
3416       S_Find_Print   'Access,
3417       S_Find_Project 'Access,
3418       S_Find_Prj     'Access,
3419       S_Find_Ref     'Access,
3420       S_Find_Search  'Access,
3421       S_Find_Source  'Access,
3422       S_Find_Types   'Access);
3423
3424    ------------------------------
3425    -- Switches for GNAT KRUNCH --
3426    ------------------------------
3427
3428    S_Krunch_Count  : aliased constant S := "/COUNT=#"                      &
3429                                             "`#";
3430    --        /COUNT=39 (D)
3431    --        /COUNT=nnn
3432    --
3433    --   Limit file names to nnn characters (where nnn is a decimal
3434    --   integer). The maximum file name length is 39, but if you want to
3435    --   generate a set of files that would be usable if ported to a system
3436    --   with some different maximum file length, then a different value can
3437    --   be specified.
3438
3439    Krunch_Switches : aliased constant Switches  :=
3440      (1 .. 1 => S_Krunch_Count  'Access);
3441
3442    ----------------------------
3443    -- Switches for GNAT LINK --
3444    ----------------------------
3445
3446    S_Link_Bind    : aliased constant S := "/BIND_FILE="                    &
3447                                             "ADA "                         &
3448                                                "-A "                       &
3449                                             "C "                           &
3450                                                "-C";
3451    --        /BIND_FILE=[bind-file-option]
3452    --
3453    --   Specifies the language of the binder generated file.
3454    --
3455    --        ADA (D)         Binder file is Ada.
3456    --
3457    --        C               Binder file is 'C'.
3458
3459    S_Link_Debug   : aliased constant S := "/DEBUG="                        &
3460                                             "ALL "                         &
3461                                                "-g3 "                      &
3462                                             "NONE "                        &
3463                                                "-g0 "                      &
3464                                             "TRACEBACK "                   &
3465                                                "-g1 "                      &
3466                                             "NOTRACEBACK "                 &
3467                                                "-g0";
3468    --        /NODEBUG (D)
3469    --        /DEBUG[=debug-option]
3470    --
3471    --   Specifies the amount of debugging information included. 'debug-option'
3472    --   is one of the following:
3473    --
3474    --        ALL (D)      Include full debugging information.
3475    --
3476    --        NONE         Provide no debugging information.  Same as /NODEBUG.
3477    --
3478    --        TRACEBACK    Provide sufficient debug information for a traceback.
3479    --
3480    --        NOTRACEBACK  Same as NONE.
3481
3482    S_Link_Nodebug : aliased constant S := "/NODEBUG "                      &
3483                                             "-g0";
3484    --  NODOC (see /DEBUG)
3485
3486    S_Link_Execut  : aliased constant S := "/EXECUTABLE=@"                  &
3487                                             "-o@";
3488    --        /EXECUTABLE=exec-name
3489    --
3490    --   'exec-name' specifies an alternative name for the generated executable
3491    --   program. If this qualifier switch is omitted, the executable is called
3492    --   the name of the main unit. So "$ GNAT LINK TRY.ALI" creates an
3493    --   executable called TRY.EXE.
3494
3495    S_Link_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3496                                             "-X" & '"';
3497    --        /EXTERNAL_REFERENCE="name=val"
3498    --
3499    --   Specifies an external reference to the project manager. Useful only if
3500    --   /PROJECT_FILE is used.
3501    --
3502    --   Example:
3503    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3504
3505    S_Link_Forlink : aliased constant S := "/FOR_LINKER=" & '"'             &
3506                                             "--for-linker=" & '"';
3507    --        /FOR_LINKER=<string>
3508    --
3509    --   Transmit the option <string> to the underlying linker.
3510
3511    S_Link_Force   : aliased constant S := "/FORCE_OBJECT_FILE_LIST "       &
3512                                             "-f";
3513    --        /NOFORCE_OBJECT_FILE_LIST (D)
3514    --        /FORCE_OBJECT_FILE_LIST
3515    --
3516    --   Forces the generation of a file that contains commands for the linker.
3517    --   This is useful in some cases to deal with special situations where the
3518    --   command line length is exceeded.
3519
3520    S_Link_Ident   : aliased constant S := "/IDENTIFICATION=" & '"'         &
3521                                             "--for-linker=IDENT="          &
3522                                             '"';
3523    --        /IDENTIFICATION="<string>"
3524    --
3525    --   "<string>" specifies the string to be stored in the image file ident-
3526    --   ification field in the image header. It overrides any pragma Ident
3527    --   specified string.
3528
3529    S_Link_Libdir  : aliased constant S := "/LIBDIR=*"                      &
3530                                             "-L*";
3531    --        /LIBDIR=(directory, ...)
3532    --
3533    --   Look for libraries in the specified directories.
3534
3535    S_Link_Library : aliased constant S := "/LIBRARY=|"                     &
3536                                             "-l|";
3537    --        /LYBRARY=xyz
3538    --
3539    --   Link with library named "xyz".
3540
3541    S_Link_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3542                                             "DEFAULT "                     &
3543                                                "-vP0 "                     &
3544                                             "MEDIUM "                      &
3545                                                "-vP1 "                     &
3546                                             "HIGH "                        &
3547                                                "-vP2";
3548    --        /MESSAGES_PROJECT_FILE[=messages-option]
3549    --
3550    --   Specifies the "verbosity" of the parsing of project files.
3551    --   messages-option may be one of the following:
3552    --
3553    --      DEFAULT (D)  No messages are output if there is no error or warning.
3554    --
3555    --      MEDIUM       A small number of messages are output.
3556    --
3557    --      HIGH         A great number of messages are output, most of them not
3558    --                   being useful for the user.
3559
3560    S_Link_Nocomp  : aliased constant S := "/NOCOMPILE "                    &
3561                                             "-n";
3562    --        /NOCOMPILE
3563    --
3564    --   Do not compile the file generated by the binder.
3565    --   This may be used when a link is rerun with different options,
3566    --   but there is no need to recompile the binder generated file.
3567
3568    S_Link_Noinhib : aliased constant S := "/NOINHIBIT-EXEC "               &
3569                                             "--for-linker=--noinhibit-exec";
3570    --        /NOINHIBIT-EXEC
3571    --
3572    --   Delete executable if there are errors or warnings.
3573
3574    S_Link_Nofiles : aliased constant S := "/NOSTART_FILES "                &
3575                                             "-nostartfiles";
3576    --        /NOSTART_FILES
3577    --
3578    --   Link in default image initialization and startup functions.
3579
3580    S_Link_Project : aliased constant S := "/PROJECT_FILE=<"                &
3581                                             "-P>";
3582    --        /PROJECT_FILE=filename
3583    --
3584    --   Specifies the main project file to be used. The project files rooted
3585    --   at the main project file will be parsed before the invocation of the
3586    --   linker.
3587    --   The source and object directories to be searched will be communicated
3588    --   to the linker through logical names ADA_PRJ_INCLUDE_FILE and
3589    --   ADA_PRJ_OBJECTS_FILE.
3590
3591    S_Link_Return  : aliased constant S := "/RETURN_CODES="                 &
3592                                             "POSIX "                       &
3593                                                "!-mvms-return-codes "      &
3594                                             "VMS "                         &
3595                                                "-mvms-return-codes";
3596    --        /RETURN_CODES=POSIX (D)
3597    --        /RETURN_CODES=VMS
3598    --
3599    --   Specifies the style of codes returned by
3600    --   Ada.Command_Line.Set_Exit_Status. Must be used in conjunction with
3601    --   and match the Bind qualifer with the same name.
3602    --
3603    --        POSIX (D)   Return Posix compatible exit codes.
3604    --
3605    --        VMS         Return VMS compatible exit codes. The value returned
3606    --                    is identically equal to the Set_Exit_Status parameter.
3607
3608    S_Link_Static  : aliased constant S := "/STATIC "                       &
3609                                             "--for-linker=-static";
3610    --        /NOSTATIC (D)
3611    --        /STATIC
3612    --
3613    --   Indicate to the linker that the link is static.
3614
3615    S_Link_Verb    : aliased constant S := "/VERBOSE "                      &
3616                                             "-v";
3617    --        /NOVERBOSE (D)
3618    --        /VERBOSE
3619    --
3620    --   Causes additional information to be output, including a full list of
3621    --   the included object files. This switch option is most useful when you
3622    --   want to see what set of object files are being used in the link step.
3623
3624    S_Link_ZZZZZ   : aliased constant S := "/<other> "                      &
3625                                             "--for-linker=";
3626    --        /<other>
3627    --
3628    --   Any other switch that will be transmited to the underlying linker.
3629
3630    Link_Switches : aliased constant Switches :=
3631      (S_Link_Bind    'Access,
3632       S_Link_Debug   'Access,
3633       S_Link_Nodebug 'Access,
3634       S_Link_Execut  'Access,
3635       S_Link_Ext     'Access,
3636       S_Link_Forlink 'Access,
3637       S_Link_Force   'Access,
3638       S_Link_Ident   'Access,
3639       S_Link_Libdir  'Access,
3640       S_Link_Library 'Access,
3641       S_Link_Mess    'Access,
3642       S_Link_Nocomp  'Access,
3643       S_Link_Nofiles 'Access,
3644       S_Link_Noinhib 'Access,
3645       S_Link_Project 'Access,
3646       S_Link_Return  'Access,
3647       S_Link_Static  'Access,
3648       S_Link_Verb    'Access,
3649       S_Link_ZZZZZ   'Access);
3650
3651    ----------------------------
3652    -- Switches for GNAT LIST --
3653    ----------------------------
3654
3655    S_List_All     : aliased constant S := "/ALL_UNITS "                    &
3656                                             "-a";
3657    --        /NOALL_UNITS (D)
3658    --        /ALL_UNITS
3659    --
3660    --   Consider all units, including those of the predefined Ada library.
3661    --   Especially useful with /DEPENDENCIES.
3662
3663    S_List_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
3664                                             "!-I-";
3665    --        /CURRENT_DIRECTORY (D)
3666    --        /NOCURRENT_DIRECTORY
3667    --
3668    --   Look for source, library or object files in the default directory.
3669
3670    S_List_Depend  : aliased constant S := "/DEPENDENCIES "                 &
3671                                             "-d";
3672    --        /NODEPENDENCIES (D)
3673    --        /DEPENDENCIES
3674
3675    S_List_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3676                                             "-X" & '"';
3677    --        /EXTERNAL_REFERENCE="name=val"
3678    --
3679    --   Specifies an external reference to the project manager. Useful only if
3680    --   /PROJECT_FILE is used.
3681    --
3682    --   Example:
3683    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3684
3685    S_List_Files   : aliased constant S := "/FILES=@"                       &
3686                                             "-files=@";
3687    --        /FILES=filename
3688    --
3689    --   Take as arguments the files that are listed in the specified
3690    --   text file.
3691
3692    S_List_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3693                                             "DEFAULT "                     &
3694                                                "-vP0 "                     &
3695                                             "MEDIUM "                      &
3696                                                "-vP1 "                     &
3697                                             "HIGH "                        &
3698                                                "-vP2";
3699    --        /MESSAGES_PROJECT_FILE[=messages-option]
3700    --
3701    --   Specifies the "verbosity" of the parsing of project files.
3702    --   messages-option may be one of the following:
3703    --
3704    --      DEFAULT (D)  No messages are output if there is no error or warning.
3705    --
3706    --      MEDIUM       A small number of messages are output.
3707    --
3708    --      HIGH         A great number of messages are output, most of them not
3709    --                   being useful for the user.
3710
3711    S_List_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
3712                                             "-nostdinc";
3713    --        /NOSTD_INCLUDES
3714    --
3715    --   Do not look for sources of the run time in the standard directory.
3716
3717    S_List_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
3718                                             "-aO*";
3719    --        /OBJECT_SEARCH=(directory,...)
3720    --
3721    --   When looking for library and object files look also in the specified
3722    --   directories.
3723
3724    S_List_Output  : aliased constant S := "/OUTPUT="                       &
3725                                             "SOURCES "                     &
3726                                                "-s "                       &
3727                                             "DEPEND "                      &
3728                                                "-d "                       &
3729                                             "OBJECTS "                     &
3730                                                "-o "                       &
3731                                             "UNITS "                       &
3732                                                "-u "                       &
3733                                             "OPTIONS "                     &
3734                                                "-h "                       &
3735                                             "VERBOSE "                     &
3736                                                "-v ";
3737    --        /OUTPUT=(option,option,...)
3738    --
3739    --        SOURCES (D)     Only output information about source files.
3740    --
3741    --        DEPEND          List sources from which specified units depend on.
3742    --
3743    --        OBJECTS         Only output information about object files.
3744    --
3745    --        UNITS           Only output information about compilation units.
3746    --
3747    --        OPTIONS         Output the list of options.
3748    --
3749    --        VERBOSE         Output the complete source and object paths.
3750    --                        Do not use the default column layout but instead
3751    --                        use long format giving as much as information
3752    --                        possible on each requested units, including
3753    --                        special characteristics.
3754
3755    S_List_Project : aliased constant S := "/PROJECT_FILE=<"                &
3756                                             "-P>";
3757    --        /PROJECT_FILE=filename
3758    --
3759    --   Specifies the main project file to be used. The project files rooted
3760    --   at the main project file will be parsed before doing any listing.
3761    --   The source and object directories to be searched will be communicated
3762    --   to gnatlist through logical names ADA_PRJ_INCLUDE_FILE and
3763    --   ADA_PRJ_OBJECTS_FILE.
3764
3765    S_List_Search  : aliased constant S := "/SEARCH=*"                      &
3766                                             "-I*";
3767    --        /SEARCH=(directory,...)
3768    --
3769    --   Search the specified directories for both source and object files.
3770
3771    S_List_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
3772                                             "-aI*";
3773    --        /SOURCE_SEARCH=(directory,...)
3774    --
3775    --   When looking for source files also look in the specified directories.
3776
3777    List_Switches : aliased constant Switches :=
3778      (S_List_All     'Access,
3779       S_List_Current 'Access,
3780       S_List_Depend  'Access,
3781       S_List_Ext     'Access,
3782       S_List_Files   'Access,
3783       S_List_Mess    'Access,
3784       S_List_Nostinc 'Access,
3785       S_List_Object  'Access,
3786       S_List_Output  'Access,
3787       S_List_Project 'Access,
3788       S_List_Search  'Access,
3789       S_List_Source  'Access);
3790
3791    ----------------------------
3792    -- Switches for GNAT MAKE --
3793    ----------------------------
3794
3795    S_Make_Actions : aliased constant S := "/ACTIONS="                      &
3796                                             "COMPILE "                     &
3797                                                "-c "                       &
3798                                             "BIND "                        &
3799                                                "-b "                       &
3800                                             "LINK "                        &
3801                                                "-l ";
3802    --        /ACTIONS=(keyword[,...])
3803    --
3804    --  GNAT MAKE default behavior is to check if the sources are up to date,
3805    --  compile those sources that are not up to date, bind the main source,
3806    --  then link the executable.
3807    --
3808    --  With the /ACTIONS qualifier, GNAT MAKE may be restricted to one or
3809    --  two of these three steps:
3810    --
3811    --  o Compile
3812    --  o Bind
3813    --  o Link
3814    --
3815    --
3816    --   You may specify one or more of the following keywords to the /ACTIONS
3817    --   qualifier:
3818    --
3819    --   BIND            Bind only. Can be combined with /ACTIONS=COMPILE
3820    --                   to do compilation and binding, but no linking.
3821    --                   Can be combined with /ACTIONS=LINK to do binding and
3822    --                   linking. When not combined with /ACTIONS=COMPILE,
3823    --                   all the units in the closure of the main program must
3824    --                   have been previously compiled and must be up to date.
3825    --
3826    --   COMPILE         Compile only. Do not perform binding, except when
3827    --                   /ACTIONS=BIND is also specified. Do not perform
3828    --                   linking, except if both /ACTIONS=BIND and /ACTIONS=LINK
3829    --                   are also specified.
3830    --
3831    --   LINK            Link only. Can be combined with /ACTIONS=BIND to do
3832    --                   binding and linking. Linking will not be performed
3833    --                   if combined with /ACTIONS=COMPILE but not with
3834    --                   /ACTIONS=BIND\. When not combined with /ACTIONS=BIND
3835    --                   all the units in the closure of the main program must
3836    --                   have been previously compiled and must be up to date,
3837    --                   and the main program need to have been bound.
3838
3839    S_Make_All     : aliased constant S := "/ALL_FILES "                    &
3840                                             "-a";
3841    --        /NOALL_FILES (D)
3842    --        /ALL_FILES
3843    --
3844    --   Consider all files in the make process, even the GNAT internal system
3845    --   files (for example, the predefined Ada library files). By default,
3846    --   GNAT MAKE does not check these files (however, if there is an
3847    --   installation problem, it will be caught when GNAT MAKE binds your
3848    --   program). You may have to specify this qualifier if you are working on
3849    --   GNAT itself.  The vast majority of GNAT MAKE users never need to
3850    --   specify this switch.  All GNAT internal files with will be compiled
3851    --   with /STYLE_CHECK=GNAT.
3852
3853    S_Make_Allproj : aliased constant S := "/ALL_PROJECTS "                 &
3854                                             "-U";
3855    --        /NOALL_PROJECTS (D)
3856    --        /ALL_PROJECTS
3857    --
3858    --   Implies /Unique.
3859    --   When used without project files, it is equivalent to /UNIQUE.
3860    --   When used with a project file with no main (neither on the command
3861    --   line nor in the attribute Main) check every source of every project,
3862    --   recompile all sources that are not up to date and rebuild libraries
3863    --   if necessary.
3864
3865    S_Make_Bind    : aliased constant S := "/BINDER_QUALIFIERS=?"           &
3866                                             "-bargs BIND";
3867    --        /BINDER_QUALIFIERS
3868    --
3869    --   Any qualifiers specified after this qualifier other than
3870    --   /COMPILER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
3871    --   passed to any GNAT BIND commands generated by GNAT MAKE.
3872
3873    S_Make_Bindprj : aliased constant S := "/BND_LNK_FULL_PROJECT "         &
3874                                             "-B";
3875    --        /BND_LNK_FULL_PROJECT
3876    --
3877    --   Bind and link all sources of a project, without any consideration
3878    --   to attribute Main, if there is one. This qualifier need to be
3879    --   used in conjunction with the /PROJECT_FILE= qualifier and cannot
3880    --   be used with a main subprogram on the command line or for
3881    --   a library project file. As the binder is invoked with the option
3882    --   meaning "No Ada main subprogram", the user must ensure that the
3883    --   proper options are specified to the linker. This qualifier is
3884    --   normally used when the main subprogram is in a foreign language
3885    --   such as C.
3886
3887    S_Make_Comp    : aliased constant S := "/COMPILER_QUALIFIERS=?"         &
3888                                             "-cargs COMPILE";
3889    --        /COMPILER_QUALIFIERS
3890    --
3891    --   Any qualifiers specified after this qualifier other than
3892    --   /BINDER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
3893    --   passed to any GNAT COMPILE commands generated by GNAT MAKE.
3894
3895    S_Make_Cond    : aliased constant S := "/CONDITIONAL_SOURCE_SEARCH=*"   &
3896                                             "-A*";
3897    --        /CONDITIONAL_SOURCE_SEARCH=dir
3898    --
3899    --   Equivalent to "/SOURCE_SEARCH=dir /SKIP_MISSING=dir".
3900
3901    S_Make_Cont    : aliased constant S := "/CONTINUE_ON_ERROR "            &
3902                                             "-k";
3903    --        /NOCONTINUE_ON_ERROR (D)
3904    --        /CONTINUE_ON_ERROR
3905    --
3906    --   Keep going. Continue as much as possible after a compilation error.
3907    --   To ease the programmer's task in case of compilation errors, the list
3908    --   of sources for which the compile fails is given when GNAT MAKE
3909    --   terminates.
3910
3911    S_Make_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
3912                                             "!-I-";
3913    --        /CURRENT_DIRECTORY (D)
3914    --        /NOCURRENT_DIRECTORY
3915    --
3916    --   Look for source, library or object files in the default directory.
3917
3918    S_Make_Dep     : aliased constant S := "/DEPENDENCIES_LIST "            &
3919                                             "-M";
3920    --        /NODEPENDENCIES_LIST (D)
3921    --        /DEPENDENCIES_LIST
3922    --
3923    --   Check if all objects are up to date. If they are, output the object
3924    --   dependences to SYS$OUTPUT in a form that can be directly exploited in
3925    --   a Unix-style Makefile. By default, each source file is prefixed with
3926    --   its (relative or absolute) directory name. This name is whatever you
3927    --   specified in the various /SOURCE_SEARCH and /SEARCH qualifiers.  If
3928    --   you also speficy the /QUIET qualifier, only the source file names,
3929    --   without relative paths, are output. If you just specify the
3930    --   /DEPENDENCY_LIST qualifier, dependencies of the GNAT internal system
3931    --   files are omitted.  This is typically what you want. If you also
3932    --   specify the /ALL_FILES qualifier, dependencies of the GNAT internal
3933    --   files are also listed. Note that dependencies of the objects in
3934    --   external Ada libraries (see the /SKIP_MISSING qualifier) are never
3935    --   reported.
3936
3937    S_Make_Dirobj  : aliased constant S := "/DIRECTORY_OBJECTS=@"           &
3938                                             "-D@";
3939    --        /DIRECTORY_OBJECTS=<file>
3940    --
3941    --   Put all object files and .ALI files in <file>.
3942    --   This qualifier is not compatible with /PROJECT_FILE.
3943
3944    S_Make_Doobj   : aliased constant S := "/DO_OBJECT_CHECK "              &
3945                                             "-n";
3946    --        /NODO_OBJECT_CHECK (D)
3947    --        /DO_OBJECT_CHECK
3948    --
3949    --   Don't compile, bind, or link. Output a single command that will
3950    --   recompile an out of date unit, if any. Repeated use of this option,
3951    --   followed by carrying out the indicated compilation, will eventually
3952    --   result in recompiling all required units.
3953    --
3954    --   If any ALI is missing during the process, GNAT MAKE halts and
3955    --   displays an error message.
3956
3957    S_Make_Execut  : aliased constant S := "/EXECUTABLE=@"                  &
3958                                             "-o@";
3959    --        /EXECUTABLE=exec-name
3960    --
3961    --   The name of the final executable program will be 'exec_name'. If this
3962    --   qualifier is omitted the default name for the executable will be the
3963    --   name of the input file with an EXE filetype.  You may prefix
3964    --   'exec_name' with a relative or absolute directory path.
3965
3966    S_Make_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3967                                             "-X" & '"';
3968    --        /EXTERNAL_REFERENCE="name=val"
3969    --
3970    --   Specifies an external reference to the project manager. Useful only if
3971    --   /PROJECT_FILE is used.
3972    --
3973    --   Example:
3974    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3975
3976    S_Make_Force   : aliased constant S := "/FORCE_COMPILE "                &
3977                                             "-f";
3978    --        /NOFORCE_COMPILE (D)
3979    --        /FORCE_COMPILE
3980    --
3981    --   Force recompilations. Recompile all sources, even though some object
3982    --   files may be up to date, but don't recompile predefined or GNAT
3983    --   internal files unless the /ALL_FILES qualfier is also specified.
3984
3985    S_Make_Full    : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES "  &
3986                                             "-F";
3987    --        /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
3988    --        /FULL_PATH_IN_BRIEF_MESSAGES
3989    --
3990    --   When using project files, if some errors or warnings are detected
3991    --   during parsing and verbose mode is not in effect (no use of qualifier
3992    --   /VERBOSE), then error lines start with the full path name of the
3993    --   project file, rather than its simple file name.
3994
3995    S_Make_Hi_Verb : aliased constant S := "/HIGH_VERBOSITY "               &
3996                                           "-vh";
3997    --        /NOHIGH_VERBOSITY (D)
3998    --        /HIGH_VERBOSITY
3999    --
4000    --   Displays the reason for all recompilations GNAT MAKE decides are
4001    --   necessary, in high verbosity. Equivalent to /VERBOSE.
4002
4003    S_Make_Inplace : aliased constant S := "/IN_PLACE "                     &
4004                                             "-i";
4005    --        /NOIN_PLACE (D)
4006    --        /IN_PLACE
4007    --
4008    --   In normal mode, GNAT MAKE compiles all object files and ALI files
4009    --   into the current directory. If the /IN_PLACE switch is used,
4010    --   then instead object files and ALI files that already exist are over-
4011    --   written in place. This means that once a large project is organized
4012    --   into separate directories in the desired manner, then GNAT MAKE will
4013    --   automatically maintain and update this organization. If no ALI files
4014    --   are found on the Ada object path, the new object and ALI files are
4015    --   created in the directory containing the source being compiled.
4016
4017    S_Make_Index   : aliased constant S := "/SOURCE_INDEX=#"               &
4018                                              "-eI#";
4019    --        /SOURCE_INDEX=nnn
4020    --
4021    --   Specifies the index of the units in the source file
4022    --   By default, source files are mono-unit and there is no index
4023    --   When /SOURCE_INDEX=nnn is specified, only one main may be specified
4024    --   on the command line.
4025
4026    S_Make_Library : aliased constant S := "/LIBRARY_SEARCH=*"              &
4027                                             "-L*";
4028    --        /LIBRARY_SEARCH=(directory[,...])
4029    --
4030    --   Add the specified directories to the list of directories in which the
4031    --   linker will search for libraries.
4032
4033    S_Make_Link    : aliased constant S := "/LINKER_QUALIFIERS=?"           &
4034                                             "-largs LINK";
4035    --        /LINKER_QUALIFIERS
4036    --
4037    --   Any qualifiers specified after this qualifier other than
4038    --   /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /MAKE_QUALIFIERS will be
4039    --   passed to any GNAT LINK commands generated by GNAT LINK.
4040
4041    S_Make_Low_Verb : aliased constant S := "/LOW_VERBOSITY "               &
4042                                            "-vl";
4043    --        /NOLOW_VERBOSITY (D)
4044    --        /LOW_VERBOSITY
4045    --
4046    --   Displays the reason for all recompilations GNAT MAKE decides are
4047    --   necessary, in low verbosity, that is with less output than
4048    --   /MEDIUM_VERBOSITY, /HIGH_VERBOSITY or /VERBOSE.
4049
4050    S_Make_Make    : aliased constant S := "/MAKE_QUALIFIERS=?"             &
4051                                             "-margs MAKE";
4052    --        /MAKE_QUALIFIERS
4053    --
4054    --   Any qualifiers specified after this qualifier other than
4055    --   /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /LINKER_QUALIFIERS
4056    --   are for the benefit of GNAT MAKE itself.
4057
4058    S_Make_Mapping : aliased constant S := "/MAPPING "                      &
4059                                             "-C";
4060    --        /NOMAPPING (D)
4061    --        /MAPPING
4062    --
4063    --   Use a mapping file.  A mapping file is a way to communicate to the
4064    --   compiler two mappings: from unit names to file names (without any
4065    --   directory information) and from file names to path names (with full
4066    --   directory information). These mappings are used by the compiler to
4067    --   short-circuit the path search. When GNAT MAKE is invoked with this
4068    --   qualifier, it will create a mapping file, initially populated by the
4069    --   project manager, if /PROJECT_File= is used, otherwise initially empty.
4070    --   Each invocation of the compiler will add the newly accessed sources to
4071    --   the mapping file. This will improve the source search during the next
4072    --   invocations of the compiler
4073
4074    S_Make_Med_Verb : aliased constant S := "/MEDIUM_VERBOSITY "            &
4075                                            "-vm";
4076    --        /NOMEDIUM_VERBOSITY (D)
4077    --        /MEDIUM_VERBOSITY
4078    --
4079    --   Displays the reason for all recompilations GNAT MAKE decides are
4080    --   necessary, in medium verbosity, that is with potentially less output
4081    --   than /HIGH_VERBOSITY or /VERBOSE.
4082
4083    S_Make_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
4084                                             "DEFAULT "                     &
4085                                                "-vP0 "                     &
4086                                             "MEDIUM "                      &
4087                                                "-vP1 "                     &
4088                                             "HIGH "                        &
4089                                                "-vP2";
4090    --        /MESSAGES_PROJECT_FILE[=messages-option]
4091    --
4092    --   Specifies the "verbosity" of the parsing of project files.
4093    --   messages-option may be one of the following:
4094    --
4095    --      DEFAULT (D)  No messages are output if there is no error or warning.
4096    --
4097    --      MEDIUM       A small number of messages are output.
4098    --
4099    --      HIGH         A great number of messages are output, most of them not
4100    --                   being useful for the user.
4101
4102    S_Make_Minimal : aliased constant S := "/MINIMAL_RECOMPILATION "        &
4103                                             "-m";
4104    --        /NOMINIMAL_RECOMPILATION (D)
4105    --        /MINIMAL_RECOMPILATION
4106    --
4107    --   Specifies that the minimum necessary amount of recompilation
4108    --   be performed. In this mode GNAT MAKE ignores time stamp differences
4109    --   when the only modifications to a source file consist in
4110    --   adding/removing comments, empty lines, spaces or tabs.
4111
4112    S_Make_Missing : aliased constant S := "/CREATE_MISSING_DIRS "          &
4113                                             "-p";
4114    --        /NOCREATE_MISSING_DIRS (D)
4115    --        /CREATE_MISSING_DIRS
4116    --
4117    --   When an object directory, a library directory or an exec directory
4118    --   in missing, attempt to create the directory.
4119
4120    S_Make_Nolink  : aliased constant S := "/NOLINK "                       &
4121                                             "-c";
4122    --        /NOLINK
4123    --
4124    --   Compile only. Do not perform binding and linking. If the root unit is
4125    --   not a main unit, this is the default.  Otherwise GNAT MAKE will
4126    --   attempt binding and linking unless all objects are up to date and the
4127    --   executable is more recent than the objects.
4128    --   This is equivalent to /ACTIONS=COMPILE
4129
4130    S_Make_Nomain  : aliased constant S := "/NOMAIN "                       &
4131                                             "-z";
4132    --        /NOMAIN
4133    --
4134    --   No main subprogram. Bind and link the program even if the unit name
4135    --   given on the command line is a package name. The resulting executable
4136    --   will execute the elaboration routines of the package and its closure,
4137    --   then the finalization routines.
4138
4139    S_Make_Nonpro  : aliased constant S := "/NON_PROJECT_UNIT_COMPILATION " &
4140                                             "-x";
4141    --        /NON_PROJECT_UNIT_COMPILATION
4142    --
4143    --    Normally, when using project files, a unit that is not part of any
4144    --    project file, cannot be compile. These units may be compile, when
4145    --    needed, if this qualifier is specified.
4146
4147    S_Make_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
4148                                             "-nostdinc";
4149    --        /NOSTD_INCLUDES
4150    --
4151    --    Do not look for sources the in the system default directory.
4152
4153    S_Make_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
4154                                             "-nostdlib";
4155    --        /NOSTD_LIBRARIES
4156    --
4157    --    Do not look for library files in the system default directory.
4158
4159    S_Make_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
4160                                             "-aO*";
4161    --        /OBJECT_SEARCH=(directory[,...])
4162    --
4163    --   When looking for library and object files look also in the specified
4164    --   directories.
4165
4166    S_Make_Proc    : aliased constant S := "/PROCESSES=#"                   &
4167                                             "-j#";
4168    --        /NOPROCESSES (D)
4169    --        /PROCESSES=NNN
4170    --
4171    --   Use NNN processes to carry out the (re)complations. If you have a
4172    --   multiprocessor machine, compilations will occur in parallel.  In the
4173    --   event of compilation errors, messages from various compilations might
4174    --   get interspersed (but GNAT MAKE will give you the full ordered list of
4175    --   failing compiles at the end). This can at times be annoying.  To get a
4176    --   clean list of error messages don't use this qualifier.
4177
4178    S_Make_Nojobs  : aliased constant S := "/NOPROCESSES "                  &
4179                                             "-j1";
4180    --  NODOC (see /PROCESS)
4181
4182    S_Make_Project : aliased constant S := "/PROJECT_FILE=<"                &
4183                                             "-P>";
4184    --        /PROJECT_FILE=filename
4185    --
4186    --   Specifies the main project file to be used. The project files rooted
4187    --   at the main project file will be parsed before any other processing to
4188    --   set the building environment.
4189
4190    S_Make_Quiet   : aliased constant S := "/QUIET "                        &
4191                                             "-q";
4192    --        /NOQUIET (D)
4193    --        /QUIET
4194    --
4195    --   When this qualifiers is specified, the commands carried out by GNAT
4196    --   MAKE are not displayed.
4197
4198    S_Make_Reason  : aliased constant S := "/REASONS "                      &
4199                                             "-v";
4200    --        /NOREASONS (D)
4201    --        /REASONS
4202    --
4203    --   Displays the reason for all recompilations GNAT MAKE decides are
4204    --   necessary.
4205
4206    S_Make_RTS     : aliased constant S := "/RUNTIME_SYSTEM=|"              &
4207                                             "--RTS=|";
4208    --        /RUNTIME_SYSTEM=xxx
4209    --
4210    --    Build against an alternate runtime system named xxx or RTS-xxx.
4211
4212    S_Make_Search  : aliased constant S := "/SEARCH=*"                      &
4213                                             "-I*";
4214    --        /SEARCH=(directory[,...])
4215    --
4216    --   Search the specified directories for both source and object files.
4217
4218    S_Make_Skip    : aliased constant S := "/SKIP_MISSING=*"                &
4219                                             "-aL*";
4220    --        /SKIP_MISSING=(directory[,...])
4221    --
4222    --   Skip missing library sources if ALI in 'directory'.
4223
4224    S_Make_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
4225                                             "-aI*";
4226    --        /SOURCE_SEARCH=(directory[,...])
4227    --
4228    --   When looking for source files also look in the specified directories.
4229
4230    S_Make_Stand   : aliased constant S := "/STANDARD_OUTPUT_FOR_COMMANDS " &
4231                                             "-eS";
4232    --        /NOSTANDARD_OUTPUT_FOR_COMMANDS (D)
4233    --        /STANDARD_OUTPUT_FOR_COMMANDS
4234    --
4235    --   Output the commands for the compiler, the binder and the linker
4236    --   on SYS$OUTPUT, instead of SYS$ERROR.
4237
4238    S_Make_Switch  : aliased constant S := "/SWITCH_CHECK "                 &
4239                                             "-s";
4240    --        /NOSWITCH_CHECK (D)
4241    --        /SWITCH_CHECK
4242    --
4243    --   Recompile if compiler switches have changed since last compilation.
4244    --   All compiler switches but -I and -o are taken into account in the
4245    --   following way: orders between different "first letter" switches are
4246    --   ignored, but orders between same switches are taken into account.
4247    --   For example, -O -O2 is different than -O2 -O, but -g -O is equivalent
4248    --   to -O -g.
4249
4250    S_Make_Unique  : aliased constant S := "/UNIQUE "                       &
4251                                             "-u";
4252    --        /NOUNIQUE (D)
4253    --        /UNIQUE
4254    --
4255    --  Recompile at most the main file. It implies /ACTIONS=COMPILE.
4256    --  Combined with /FORCE_COMPILE, it is equivalent to calling the compiler
4257    --  directly.
4258
4259    S_Make_Use_Map : aliased constant S := "/USE_MAPPING_File=@"            &
4260                                             "-C=@";
4261    --        /USE_MAPPING_FILE=file_name
4262    --
4263    --   Use a specific mapping file. The file 'file_name', specified as a path
4264    --   name (absolute or relative) by this qualifier, should already exist,
4265    --   otherwise the qualifier is ineffective. The specified mapping file
4266    --   will be communicated to the compiler. This switch is not compatible
4267    --   with a project file (/PROJECT_FILE=) or with multiple compiling
4268    --   processes (/PROCESSES=nnn, when nnn is greater than 1).
4269
4270    S_Make_Verbose : aliased constant S := "/VERBOSE "                      &
4271                                             "-v";
4272    --        /NOVERBOSE (D)
4273    --        /VERBOSE
4274    --
4275    --   Displays the reason for all recompilations GNAT MAKE decides are
4276    --   necessary.
4277
4278    Make_Switches : aliased constant Switches :=
4279      (S_Make_Actions 'Access,
4280       S_Make_All     'Access,
4281       S_Make_Allproj 'Access,
4282       S_Make_Bind    'Access,
4283       S_Make_Comp    'Access,
4284       S_Make_Cond    'Access,
4285       S_Make_Cont    'Access,
4286       S_Make_Current 'Access,
4287       S_Make_Dep     'Access,
4288       S_Make_Dirobj  'Access,
4289       S_Make_Doobj   'Access,
4290       S_Make_Execut  'Access,
4291       S_Make_Ext     'Access,
4292       S_Make_Force   'Access,
4293       S_Make_Full    'Access,
4294       S_Make_Hi_Verb 'Access,
4295       S_Make_Inplace 'Access,
4296       S_Make_Index   'Access,
4297       S_Make_Library 'Access,
4298       S_Make_Link    'Access,
4299       S_Make_Low_Verb'Access,
4300       S_Make_Make    'Access,
4301       S_Make_Mapping 'Access,
4302       S_Make_Med_Verb'Access,
4303       S_Make_Mess    'Access,
4304       S_Make_Minimal 'Access,
4305       S_Make_Missing 'Access,
4306       S_Make_Nolink  'Access,
4307       S_Make_Nomain  'Access,
4308       S_Make_Nonpro  'Access,
4309       S_Make_Nostinc 'Access,
4310       S_Make_Nostlib 'Access,
4311       S_Make_Object  'Access,
4312       S_Make_Proc    'Access,
4313       S_Make_Nojobs  'Access,
4314       S_Make_Project 'Access,
4315       S_Make_Quiet   'Access,
4316       S_Make_Reason  'Access,
4317       S_Make_RTS     'Access,
4318       S_Make_Search  'Access,
4319       S_Make_Skip    'Access,
4320       S_Make_Source  'Access,
4321       S_Make_Stand   'Access,
4322       S_Make_Switch  'Access,
4323       S_Make_Unique  'Access,
4324       S_Make_Use_Map 'Access,
4325       S_Make_Verbose 'Access);
4326
4327    ------------------------------
4328    -- Switches for GNAT METRIC --
4329    ------------------------------
4330
4331    S_Metric_All_Prjs : aliased constant S := "/ALL_PROJECTS "              &
4332                                                "-U";
4333    --        /NOALL_PROJECTS (D)
4334    --        /ALL_PROJECTS
4335    --   When GNAT METRIC is used with a Project File and no source is
4336    --   specified, the underlying tool gnatmetric is called for all the
4337    --   sources of all the Project Files in the project tree.
4338
4339    S_Metric_Debug    : aliased constant S := "/DEBUG_OUTPUT "               &
4340                                              "-dv";
4341    --      /DEBUG_OUTPUT
4342    --
4343    --   Generate the debug information
4344
4345    S_Metric_Direct   : aliased constant S := "/DIRECTORY=@"                 &
4346                                              "-d=@";
4347    --      /DIRECTORY=pathname
4348    --
4349    --   Put the files with detailed metric information into the specified
4350    --   directory
4351
4352    S_Metric_Element : aliased constant S := "/ELEMENT_METRICS="             &
4353                                              "ALL "                         &
4354                                               "!-ed,!-es,!-enl,!-eps,"      &
4355                                               "!-eas,!-ept,!-eat,!-enu,"    &
4356                                               "!-ec "                       &
4357                                              "DECLARATION_TOTAL "           &
4358                                               "-ed "                        &
4359                                              "STATEMENT_TOTAL "             &
4360                                               "-es "                        &
4361                                              "LOOP_NESTING_MAX "            &
4362                                               "-enl "                       &
4363                                              "INT_SUBPROGRAMS "             &
4364                                               "-eps "                       &
4365                                              "SUBPROGRAMS_ALL "             &
4366                                               "-eas "                       &
4367                                              "INT_TYPES "                   &
4368                                               "-ept "                       &
4369                                              "TYPES_ALL "                   &
4370                                               "-eat "                       &
4371                                              "PROGRAM_NESTING_MAX "         &
4372                                               "-enu "                       &
4373                                              "CONSTRUCT_NESTING_MAX "       &
4374                                               "-ec";
4375    --       /ELEMENT_METRICS=(option, option ...)
4376    --
4377    --   Specifies the element metrics to be computed (if not set, all the
4378    --   element metrics are set on, otherwise only specified metrics are
4379    --   computed and reported)
4380    --
4381    --   option may be one of the following:
4382    --
4383    --     ALL (D)               All the element metrics are computed
4384    --     DECLARATION_TOTAL     Compute the total number of declarations
4385    --     STATEMENT_TOTAL       Compute the total number of statements
4386    --     LOOP_NESTING_MAX      Compute the maximal loop nesting level
4387    --     INT_SUBPROGRAMS       Compute the number of interface subprograms
4388    --     SUBPROGRAMS_ALL       Compute the number of all the subprograms
4389    --     INT_TYPES             Compute the number of interface types
4390    --     TYPES_ALL             Compute the number of all the types
4391    --     PROGRAM_NESTING_MAX   Compute the maximal program unit nesting level
4392    --
4393    --   All combinations of element metrics options are allowed.
4394
4395    S_Metric_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'    &
4396                                              "-X" & '"';
4397    --       /EXTERNAL_REFERENCE="name=val"
4398    --
4399    --   Specifies an external reference to the project manager. Useful only if
4400    --   /PROJECT_FILE is used.
4401    --
4402    --   Example:
4403    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4404
4405    S_Metric_Files   : aliased constant S := "/FILES=@"                 &
4406                                              "-files=@";
4407    --      /FILES=filename
4408    --
4409    --   Take as arguments the files that are listed in the specified
4410    --   text file.
4411
4412    S_Metric_Format  : aliased constant S := "/FORMAT_OUTPUT="               &
4413                                              "DEFAULT "                     &
4414                                               "!-x,!-nt,!-sfn "             &
4415                                              "XML "                         &
4416                                               "-x "                         &
4417                                              "NO_TEXT "                     &
4418                                               "-nt "                        &
4419                                              "SHORT_SOURCE_FILE_NAME "      &
4420                                               "-sfn";
4421    --       /FORMAT_OUTPUT=(option, option ...)
4422    --
4423    --   Specifies the details of the tool output
4424    --
4425    --   option may be one of the following:
4426    --
4427    --     DEFAULT (D)             Generate the text output only, use full
4428    --                             argument source names in global information
4429    --     XML                     Generate the output in XML format
4430    --     NO_TEXT                 Do not generate the text output (implies XML)
4431    --     SHORT_SOURCE_FILE_NAME  Use short argument source names in output
4432
4433    S_Metric_Globout : aliased constant S := "/GLOBAL_OUTPUT=@"              &
4434                                              "-og@";
4435    --        /GLOBAL_OUTPUT=filename
4436    --
4437    --   Put the textual global metric information into the specified file
4438
4439    S_Metric_Line     : aliased constant S := "/LINE_METRICS="               &
4440                                                 "ALL "                      &
4441                                                  "!-la,!-lcode,!-lcomm,"    &
4442                                                  "!-leol,!-lb "             &
4443                                                 "LINES_ALL "                &
4444                                                  "-la "                     &
4445                                                 "CODE_LINES "               &
4446                                                  "-lcode "                  &
4447                                                 "COMENT_LINES "             &
4448                                                  "-lcomm "                  &
4449                                                 "MIXED_CODE_COMMENTS "      &
4450                                                  "-leol "                   &
4451                                                 "BLANK_LINES "              &
4452                                                  "-lb ";
4453    --      /LINE_METRICS=(option, option ...)
4454
4455    --   Specifies the line metrics to be computed (if not set, all the line
4456    --   metrics are set on, otherwise only specified metrics are computed and
4457    --   reported)
4458    --
4459    --   option may be one of the following:
4460    --
4461    --     ALL (D)              All the line metrics are computed
4462    --     LINES_ALL            All lines are computed
4463    --     CODE_LINES           Lines with Ada code are computed
4464    --     COMENT_LINES         All comment lines are computed
4465    --     MIXED_CODE_COMMENTS  All lines containing both code and comment are
4466    --                          computed
4467    --     BLANK_LINES          Blank lines are computed
4468    --
4469    --   All combinations of line metrics options are allowed.
4470
4471    S_Metric_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="       &
4472                                              "DEFAULT "                     &
4473                                                 "-vP0 "                     &
4474                                              "MEDIUM "                      &
4475                                                 "-vP1 "                     &
4476                                              "HIGH "                        &
4477                                                 "-vP2";
4478    --        /MESSAGES_PROJECT_FILE[=messages-option]
4479    --
4480    --   Specifies the "verbosity" of the parsing of project files.
4481    --   messages-option may be one of the following:
4482    --
4483    --      DEFAULT (D)  No messages are output if there is no error or warning.
4484    --
4485    --      MEDIUM       A small number of messages are output.
4486    --
4487    --      HIGH         A great number of messages are output, most of them not
4488    --                   being useful for the user.
4489
4490    S_Metric_Project : aliased constant S := "/PROJECT_FILE=<"               &
4491                                              "-P>";
4492    --        /PROJECT_FILE=filename
4493    --
4494    --   Specifies the main project file to be used. The project files rooted
4495    --   at the main project file will be parsed before the invocation of the
4496    --   binder.
4497
4498    S_Metric_Quiet    : aliased constant S := "/QUIET "                      &
4499                                              "-q";
4500    --        /NOQUIET (D)
4501    --        /QUIET
4502    --
4503    --   Quiet mode: by default GNAT METRIC outputs to the standard error stream
4504    --   the number of program units left to be processed. This option turns
4505    --   this trace off.
4506
4507    S_Metric_Suffix  : aliased constant S := "/SUFFIX_DETAILS=" & '"'        &
4508                                              "-o" & '"';
4509    --        /SUFFIX_DETAILS=suffix
4510    --
4511    --   Use the given suffix as the suffix for the name of the file to place
4512    --   the detailed metrics into.
4513
4514    S_Metric_Suppress : aliased constant S :=  "/SUPPRESS="                  &
4515                                                "NOTHING "                   &
4516                                                 "!-nocc,!-noec,!-nonl,"     &
4517                                                 "!-ne,!-nolocal "           &
4518                                                "CYCLOMATIC_COMPLEXITY "     &
4519                                                 "-nocc "                    &
4520                                                "ESSENTIAL_COMPLEXITY "      &
4521                                                 "-noec "                    &
4522                                                "MAXIMAL_LOOP_NESTING "      &
4523                                                 "-nonl "                    &
4524                                                "EXITS_AS_GOTOS "            &
4525                                                 "-ne "                      &
4526                                                "LOCAL_DETAILS "             &
4527                                                 "-nolocal ";
4528    --      /SUPPRESS=(option, option ...)
4529    --
4530    --   Specifies the metric that should not be computed
4531    --
4532    --   option may be one of the following:
4533    --
4534    --     NOTHING (D)             Do not suppress computation of any metric
4535    --     CYCLOMATIC_COMPLEXITY   Do not compute the Cyclomatic Complexity
4536    --     ESSENTIAL_COMPLEXITY    Do not compute the Essential Complexity
4537    --     MAXIMAL_LOOP_NESTING    Do not compute the maximal loop nesting
4538    --     EXITS_AS_GOTOS          Do not count EXIT statements as GOTOs when
4539    --                             computing the  Essential Complexity
4540    --     LOCAL_DETAILS           Do not compute the detailed metrics for local
4541    --                             program units
4542    --
4543    --   All combinations of options are allowed.
4544
4545    S_Metric_Verbose  : aliased constant S := "/VERBOSE "                    &
4546                                              "-v";
4547    --        /NOVERBOSE (D)
4548    --        /VERBOSE
4549    --
4550    --   Verbose mode.
4551
4552    S_Metric_XMLout  : aliased constant S := "/XML_OUTPUT=@"                 &
4553                                              "-ox@";
4554    --        /XML_OUTPUT=filename
4555    --
4556    --   Place the XML output into the specified file
4557
4558    Metric_Switches : aliased constant Switches :=
4559      (S_Metric_All_Prjs 'Access,
4560       S_Metric_Debug    'Access,
4561       S_Metric_Direct   'Access,
4562       S_Metric_Element  'Access,
4563       S_Metric_Ext      'Access,
4564       S_Metric_Files    'Access,
4565       S_Metric_Format   'Access,
4566       S_Metric_Globout  'Access,
4567       S_Metric_Line     'Access,
4568       S_Metric_Mess     'Access,
4569       S_Metric_Project  'Access,
4570       S_Metric_Quiet    'Access,
4571       S_Metric_Suffix   'Access,
4572       S_Metric_Suppress 'Access,
4573       S_Metric_Verbose  'Access,
4574       S_Metric_XMLout   'Access);
4575
4576    ----------------------------
4577    -- Switches for GNAT NAME --
4578    ----------------------------
4579
4580    S_Name_Conf    : aliased constant S := "/CONFIG_FILE=<"                 &
4581                                             "-c>";
4582    --        /CONFIG_FILE=path_name
4583    --
4584    --   Create a configuration pragmas file 'path_name' (instead of the default
4585    --   'gnat.adc'). 'path_name' may include directory information. 'path_name'
4586    --   must be writable. There may be only one qualifier /CONFIG_FILE.
4587    --   This qualifier is not compatible with qualifier /PROJECT_FILE.
4588
4589    S_Name_Dirs    : aliased constant S := "/SOURCE_DIRS=*"                 &
4590                                             "-d*";
4591    --        /SOURCE_DIRS=(directory, ...)
4592    --
4593    --   Look for source files in the specified directories. When this qualifier
4594    --   is specified, the current working directory will not be searched for
4595    --   source files, unless it is explicitly specified with a qualifier
4596    --   /SOURCE_DIRS or /DIRS_FILE. Several qualifiers /SOURCE_DIRS may be
4597    --   specified. If a directory is specified as a relative path, it is
4598    --   relative to the directory of the configuration pragmas file specified
4599    --   with qualifier /CONFIG_FILE, or to the directory of the project file
4600    --   specified with qualifier /PROJECT_FILE or, if neither qualifier
4601    --   /CONFIG_FILE nor qualifier /PROJECT_FILE are specified, it is relative
4602    --   to the current working directory. The directories specified with
4603    --   qualifiers /SOURCE_DIRS must exist and be readable.
4604
4605    S_Name_Dfile   : aliased constant S := "/DIRS_FILE=<"                   &
4606                                             "-D>";
4607    --        /DIRS_FILE=file_name
4608    --
4609    --   Look for source files in all directories listed in text file
4610    --   'file_name'. 'file_name' must be an existing, readable text file.
4611    --   Each non empty line in the specified file must be a directory.
4612    --   Specifying qualifier /DIRS_FILE is equivalent to specifying as many
4613    --   qualifiers /SOURCE_DIRS as there are non empty lines in the specified
4614    --   text file.
4615
4616    S_Name_Frng    : aliased constant S := "/FOREIGN_PATTERN=" & '"'        &
4617                                             "-f" & '"';
4618    --        /FOREIGN_PATTERN=<string>
4619    --
4620    --   Specify a foreign pattern.
4621    --   Using this qualifier, it is possible to add sources of languages other
4622    --   than Ada to the list of sources of a project file. It is only useful
4623    --   if a qualifier /PROJECT_FILE is used. For example,
4624    --
4625    --   GNAT NAME /PROJECT_FILE=PRJ /FOREIGN_PATTERN="*.C" "*.ADA"
4626    --
4627    --   will look for Ada units in all files with the '.ADA' extension, and
4628    --   will add to the list of file for project PRJ.GPR the C files with
4629    --   extension ".C".
4630
4631    S_Name_Help    : aliased constant S := "/HELP "                         &
4632                                             "-h";
4633    --        /NOHELP (D)
4634    --        /HELP
4635    --
4636    --   Output usage information to the standard output stream.
4637
4638    S_Name_Proj    : aliased constant S := "/PROJECT_FILE=<"                &
4639                                             "-P>";
4640    --        /PROJECT_FILE=file_name
4641    --
4642    --   Create or update a project file. 'file_name' may include directory
4643    --   information. The specified file must be writable. There may be only
4644    --   one qualifier /PROJECT_FILE. When a qualifier /PROJECT_DILE is
4645    --   specified, no qualifier /CONFIG_FILE may be specified.
4646
4647    S_Name_Verbose : aliased constant S := "/VERBOSE "                      &
4648                                             "-v";
4649    --        /NOVERBOSE (D)
4650    --        /VERBOSE
4651    --
4652    --   Verbose mode. Output detailed explanation of behavior to the standard
4653    --   output stream. This includes name of the file written, the name of the
4654    --   directories to search and, for each file in those directories whose
4655    --   name matches at least one of the Naming Patterns, an indication of
4656    --   whether the file contains a unit, and if so the name of the unit.
4657
4658    S_Name_Excl    : aliased constant S := "/EXCLUDED_PATTERN=" & '"'       &
4659                                             "-x" & '"';
4660    --      /EXCLUDED_PATTERN=<string>
4661    --
4662    --   Specify an excluded pattern.
4663    --   Using this qualifier, it is possible to exclude some files that would
4664    --   match the Naming patterns. For example,
4665    --
4666    --   GNAT NAME /EXCLUDED_PATTERN="*_NT.ADA" "*.ADA"
4667    --
4668    --   will look for Ada units in all files with the '.ADA' extension, except
4669    --   those whose names end with '_NT.ADA'.
4670
4671    Name_Switches : aliased constant Switches :=
4672      (S_Name_Conf         'Access,
4673       S_Name_Dirs         'Access,
4674       S_Name_Dfile        'Access,
4675       S_Name_Frng         'Access,
4676       S_Name_Help         'Access,
4677       S_Name_Proj         'Access,
4678       S_Name_Verbose      'Access,
4679       S_Name_Excl         'Access);
4680
4681    ----------------------------------
4682    -- Switches for GNAT PREPROCESS --
4683    ----------------------------------
4684
4685    S_Prep_Assoc   : aliased constant S := "/ASSOCIATE=" & '"'              &
4686                                             "-D" & '"';
4687    --        /ASSOCIATE="name=val"
4688    --
4689    --   Defines a new symbol, associated with value. If no value is given
4690    --   on the command line, then symbol is considered to be True.
4691    --   This qualifier can be used in place of a definition file.
4692
4693    S_Prep_Blank   : aliased constant S := "/BLANK_LINES "                  &
4694                                             "-b";
4695    --        /NOBLANK_LINES (D)
4696    --        /BLANK_LINES
4697    --
4698    --   Causes both preprocessor lines and the lines deleted by preprocessing
4699    --   to be replaced by blank lines in the output source file, thus
4700    --   preserving line numbers in the output file.
4701
4702    S_Prep_Com     : aliased constant S := "/COMMENTS "                     &
4703                                             "-c";
4704    --        /NOCOMMENTS (D)
4705    --        /COMMENTS
4706    --
4707    --   /COMMENTS causes both preprocessor lines and the lines deleted
4708    --   by preprocessing to be retained in the output source as comments marked
4709    --   with the special string "--! ". This option will result in line numbers
4710    --   being preserved in the output file.
4711    --
4712    --   /NOCOMMENTS causes both preprocessor lines and the lines deleted by
4713    --   preprocessing to be replaced by blank lines in the output source file,
4714    --   thus preserving line numbers in the output file.
4715
4716    S_Prep_Ref     : aliased constant S := "/REFERENCE "                    &
4717                                             "-r";
4718    --        /NOREFERENCE (D)
4719    --        /REFERENCE
4720    --
4721    --   Causes a "Source_Reference" pragma to be generated that references the
4722    --   original input file, so that error messages will use the file name of
4723    --   this original file.  Also implies /BLANK_LINES if /COMMENTS is not
4724    --   specified.
4725
4726    S_Prep_Remove  : aliased constant S := "/REMOVE "                       &
4727                                             "!-b,!-c";
4728    --        /REMOVE (D)
4729    --        /NOREMOVE
4730    --
4731    --   Preprocessor lines and deleted lines are completely removed from the
4732    --   output.
4733
4734    S_Prep_Replace : aliased constant S := "/REPLACE_IN_COMMENTS "          &
4735                                             "-C";
4736    --        /NOREPLACE_IN_COMMENTS (D)
4737    --        /REPLACE_IN_COMMENTS
4738    --
4739    --   Causes preprocessor to scan comments and perform replacements on
4740    --   any $symbol occurrences within the comment text.
4741
4742    S_Prep_Symbols : aliased constant S := "/SYMBOLS "                      &
4743                                             "-s";
4744    --        /NOSYMBOLS (D)
4745    --        /SYMBOLS
4746    --
4747    --   Causes a sorted list of symbol names and values to be listed on
4748    --   SYS$OUTPUT.
4749
4750    S_Prep_Undef   : aliased constant S := "/UNDEFINED "                    &
4751                                             "-u";
4752    --        /NOUNDEFINED (D)
4753    --        /UNDEFINED
4754
4755    Prep_Switches : aliased constant Switches :=
4756      (S_Prep_Assoc   'Access,
4757       S_Prep_Blank   'Access,
4758       S_Prep_Com     'Access,
4759       S_Prep_Ref     'Access,
4760       S_Prep_Remove  'Access,
4761       S_Prep_Replace 'Access,
4762       S_Prep_Symbols 'Access,
4763       S_Prep_Undef   'Access);
4764
4765    ------------------------------
4766    -- Switches for GNAT PRETTY --
4767    ------------------------------
4768
4769    S_Pretty_Align  : aliased constant S := "/ALIGN="                       &
4770                                            "DEFAULT "                      &
4771                                                "-A12345 "                  &
4772                                            "OFF "                          &
4773                                                "-A0 "                      &
4774                                            "COLONS "                       &
4775                                                "-A1 "                      &
4776                                            "DECLARATIONS "                 &
4777                                                "-A2 "                      &
4778                                            "STATEMENTS "                   &
4779                                                "-A3 "                      &
4780                                            "ARROWS "                       &
4781                                                "-A4 "                      &
4782                                            "COMPONENT_CLAUSES "            &
4783                                                "-A5";
4784    --        /ALIGN[=align-option, align-option, ...]
4785    --
4786    --   Set alignments. By default, all alignments (colons in declarations,
4787    --   initialisations in declarations, assignments and arrow delimiters) are
4788    --   ON.
4789    --
4790    --   align-option may be one of the following:
4791    --
4792    --      OFF (D)           Set all alignments to OFF
4793    --      COLONS            Set alignments of colons in declarations to ON
4794    --      DECLARATIONS      Set alignments of initialisations in declarations
4795    --                        to ON
4796    --      STATEMENTS        Set alignments of assignments statements to ON
4797    --      ARROWS            Set alignments of arrow delimiters to ON.
4798    --      COMPONENT_CLAUSES Set alignments of AT keywords in component
4799    --                        clauses ON
4800    --
4801    --   Specifying one of the ON options without first specifying the OFF
4802    --   option has no effect, because by default all alignments are set to ON.
4803
4804    S_Pretty_All_Prjs : aliased constant S := "/ALL_PROJECTS "             &
4805                                               "-U";
4806    --        /NOALL_PROJECTS (D)
4807    --        /ALL_PROJECTS
4808    --   When GNAT PRETTY is used with a Project File and no source is
4809    --   specified, the underlying tool gnatpp is called for all the
4810    --   sources of all the Project Files in the project tree.
4811
4812    S_Pretty_Attrib : aliased constant S := "/ATTRIBUTE_CASING="            &
4813                                            "MIXED_CASE "                   &
4814                                                "-aM "                      &
4815                                            "LOWER_CASE "                   &
4816                                                "-aL "                      &
4817                                            "UPPER_CASE "                   &
4818                                                "-aU";
4819    --        /ATTRIBUTE_CASING[=casing-option]
4820    --
4821    --   Set the case of the attributes. By default the attributes are in mixed
4822    --   case.
4823    --   casing-option may be one of the following:
4824    --
4825    --      MIXED_CASE (D)
4826    --      LOWER_CASE
4827    --      UPPER_CASE
4828
4829    S_Pretty_Comments  : aliased constant S := "/COMMENTS_LAYOUT="          &
4830                                               "UNTOUCHED "                 &
4831                                                  "-c0 "                    &
4832                                               "DEFAULT "                   &
4833                                                  "-c1 "                    &
4834                                               "STANDARD_INDENT "           &
4835                                                  "-c2 "                    &
4836                                               "GNAT_BEGINNING "            &
4837                                                  "-c3 "                    &
4838                                               "REFORMAT "                  &
4839                                                  "-c4";
4840    --        /COMMENTS_LAYOUT[=layout-option, layout-option, ...]
4841    --
4842    --   Set the comment layout. By default, comments use the GNAT style
4843    --   comment line indentation.
4844    --
4845    --   layout-option may be one of the following:
4846    --
4847    --     UNTOUCHED           All the comments remain unchanged
4848    --     DEFAULT (D)         GNAT style comment line indentation
4849    --     STANDARD_INDENT     Standard comment line indentation
4850    --     GNAT_BEGINNING      GNAT style comment beginning
4851    --     REFORMAT            Reformat comment blocks
4852    --
4853    --     All combinations of layout options are allowed, except for DEFAULT
4854    --     and STANDARD_INDENT which are mutually exclusive, and also if
4855    --     UNTOUCHED is specified, this must be the only option.
4856    --
4857    --     The difference between "GNAT style comment line indentation" and
4858    --     "standard comment line indentation" is the following: for standard
4859    --     comment indentation, any comment line is indented as if it were
4860    --     a declaration or statement at the same place.
4861    --     For GNAT style comment indentation, comment lines which are
4862    --     immediately followed by if or case statement alternative, record
4863    --     variant or 'begin' keyword are indented as the keyword that follows
4864    --     them.:
4865    --
4866    --     Standard indentation:
4867    --
4868    --        if A then
4869    --           null;
4870    --           -- some comment
4871    --        else
4872    --           null;
4873    --        end if;
4874    --
4875    --     GNAT style indentation:
4876    --
4877    --        if A then
4878    --           null;
4879    --        -- some comment
4880    --        else
4881    --           null;
4882    --        end if;
4883    --
4884    --     Option "GNAT style comment beginning" means that for each comment
4885    --     which is not considered as non-formattable separator (that is, the
4886    --     comment line contains only dashes, or a comment line ends with two
4887    --     dashes), there will be at least two spaces between starting "--" and
4888    --     the first non-blank character of the comment.
4889
4890    S_Pretty_Config    : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
4891                                               "-gnatec>";
4892    --        /CONFIGURATION_PRAGMAS_FILE=file
4893    --
4894    --   Specify a configuration pragmas file that need to be passed to the
4895    --   compiler.
4896
4897    S_Pretty_Constr    : aliased constant S := "/CONSTRUCT_LAYOUT="         &
4898                                                "GNAT "                     &
4899                                                   "-l1 "                   &
4900                                                "COMPACT "                  &
4901                                                   "-l2 "                   &
4902                                                "UNCOMPACT "                &
4903                                                    "-l3";
4904    --        /CONSTRUCT_LAYOUT[=construct-option]
4905    --
4906    --   Set construct layout. Default is GNAT style layout.
4907    --   construct-option may be one of the following:
4908    --
4909    --      GNAT (D)
4910    --      COMPACT
4911    --      UNCOMPACT
4912    --
4913    --   The difference between GNAT style and Compact layout on one hand
4914    --   and Uncompact layout on the other hand can be illustrated by the
4915    --   following examples:
4916    --
4917    --       GNAT style and                          Uncompact layout
4918    --       Compact layout
4919    --
4920    --       type q is record                        type q is
4921    --          a : integer;                            record
4922    --          b : integer;                               a : integer;
4923    --       end record;                                   b : integer;
4924    --                                                  end record;
4925    --
4926    --
4927    --       Block : declare                         Block :
4928    --          A : Integer := 3;                       declare
4929    --       begin                                         A : Integer := 3;
4930    --          Proc (A, A);                            begin
4931    --       end Block;                                    Proc (A, A);
4932    --                                                  end Block;
4933    --
4934    --       Clear : for J in 1 .. 10 loop           Clear :
4935    --          A (J) := 0;                             for J in 1 .. 10 loop
4936    --       end loop Clear;                               A (J) := 0;
4937    --                                                  end loop Clear;
4938    --
4939    --
4940    --   A further difference between GNAT style layout and compact layout is
4941    --   that in GNAT style layout compound statements, return statements and
4942    --   bodies are always separated by empty lines.
4943
4944    S_Pretty_Comind    : aliased constant S := "/CONTINUATION_INDENT=#"     &
4945                                                  "-cl#";
4946    --        /CONTINUATION_INDENT=nnn
4947    --
4948    --   Indentation level for continuation lines, nnn from 1 .. 9.
4949    --   The default value is one less then the (normal) indentation level,
4950    --   unless the indentation is set to 1: in that case the default value for
4951    --   continuation line indentation is also 1.
4952
4953    S_Pretty_Compact_Is : aliased constant S := "/NO_SEPARATE_IS "          &
4954                                                  "--no-separate-is";
4955    --        /NO_SEPARATE_IS
4956    --
4957    --   Do not place the IS keyword on a separate line in a subprogram body in
4958    --   case if the specification occupies more then one line.
4959
4960    S_Pretty_Eol       : aliased constant S := "/END_OF_LINE="              &
4961                                                 "DOS "                     &
4962                                                    "--eol=dos "            &
4963                                                 "UNIX "                    &
4964                                                    "--eol=unix "           &
4965                                                 "CRLF "                    &
4966                                                    "--eol=crlf "           &
4967                                                 "LF "                      &
4968                                                    "--eol=lf";
4969    --        /END_OF_LINE=[option]
4970    --
4971    --   Specifies the form of the line terminators in the produced source.
4972    --   By default, the form of the line terminator depends on the platforms.
4973    --   On Unix and VMS, it is a Line Feed (LF) chararcter. On Windows (DOS),
4974    --   It is a Carriage Return (CR) followed by a Line Feed.
4975    --   The Options DOS and CRLF are equivalent. The options UNIX and LF are
4976    --   also equivalent.
4977
4978    S_Pretty_Ext       : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
4979                                             "-X" & '"';
4980    --        /EXTERNAL_REFERENCE="name=val"
4981    --
4982    --   Specifies an external reference to the project manager. Useful only if
4983    --   /PROJECT_FILE is used.
4984    --
4985    --   Example:
4986    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4987
4988    S_Pretty_Current   : aliased constant S := "/CURRENT_DIRECTORY "        &
4989                                               "!-I-";
4990    --        /CURRENT_DIRECTORY (D)
4991    --
4992    --   Look for source files in the current working directory.
4993    --
4994    --        /NOCURRENT_DIRECTORY
4995    --   Do not look for source files in the current working directory.
4996
4997    S_Pretty_Dico      : aliased constant S := "/DICTIONARY=*"              &
4998                                               "-D*";
4999    --        /DICTIONARY=(file_name, ...)
5000    --
5001    --   Use each specified file as a dictionary file that defines the casing
5002    --   for a set of specified names, thereby overriding the effect on these
5003    --   names by any explicit or implicit /NAME_CASING qualifier.
5004    --
5005    --   GNAT PRETTY implicitly uses a default dictionary file to define the
5006    --   casing for the Ada predefined names and the names declared in the GNAT
5007    --   libraries.
5008    --
5009    --   The structure of a dictionary file, and details on the conventions
5010    --   used in the default dictionary file, are defined in the GNAT User's
5011    --   Guide.
5012
5013    S_Pretty_Encoding  : aliased constant S := "/RESULT_ENCODING="          &
5014                                               "BRACKETS "                  &
5015                                                  "-Wb "                    &
5016                                               "HEX_ESC "                   &
5017                                                  "-Wh "                    &
5018                                               "UPPER_HALF "                &
5019                                                  "-Wu "                    &
5020                                               "SHIFT_JIS "                 &
5021                                                  "-Ws "                    &
5022                                               "EUC "                       &
5023                                                  "-We "                    &
5024                                               "UTF_8 "                     &
5025                                                  "-W8";
5026    --        /RESULT_ENCODING[=encoding-option]
5027    --
5028    --   Specify the wide character encoding of the result file.
5029    --   '=encoding-option' may be one of:
5030    --
5031    --      BRACKETS (D)      Brackets encoding.
5032    --
5033    --      HEX_ESC           Hex ESC encoding.
5034    --
5035    --      UPPER_HALF        Upper half encoding.
5036    --
5037    --      SHIFT_JIS         Shift-JIS encoding.
5038    --
5039    --      EUC               EUC Encoding.
5040    --
5041    --      UTF_8             UTF-8 encoding.
5042
5043    S_Pretty_Files     : aliased constant S := "/FILES=@"                   &
5044                                                  "-files=@";
5045    --      /FILES=filename
5046    --
5047    --   Take as arguments the files that are listed in the specified
5048    --   text file.
5049
5050    S_Pretty_Forced    : aliased constant S := "/FORCED_OUTPUT=@"           &
5051                                                  "-of@";
5052    --        /FORCED_OUTPUT=file
5053    --
5054    --   Write the output into the specified file, overriding any possibly
5055    --   existing file.
5056
5057    S_Pretty_Formfeed  : aliased constant S := "/FORM_FEED_AFTER_PRAGMA_PAGE " &
5058                                               "-ff";
5059    --        /FORM_FEED_AFTER_PRAGMA_PAGE
5060    --
5061    --   When there is a pragma Page in the source, insert a Form Feed
5062    --   character immediately after the semicolon that follows the pragma
5063    --   Page.
5064
5065    S_Pretty_Indent    : aliased constant S := "/INDENTATION_LEVEL=#"       &
5066                                                 "-i#";
5067    --        /INDENTATION_LEVEL=nnn
5068    --
5069    --   Specify the number of spaces to add for each indentation level.
5070    --   nnn must be between 1 and 9. The default is 3.
5071
5072    S_Pretty_Keyword   : aliased constant S := "/KEYWORD_CASING="           &
5073                                               "LOWER_CASE "                &
5074                                                  "-kL "                    &
5075                                               "UPPER_CASE "                &
5076                                                  "-kU";
5077    --        /KEYWORD_CASING[=keyword-option]
5078    --
5079    --   Specify the case of Ada keywords. The default is keywords in lower
5080    --   case.
5081    --   keyword-option may be one of the following:
5082    --
5083    --      LOWER_CASE (D)
5084    --      UPPER_CASE
5085
5086    S_Pretty_Maxlen    : aliased constant S := "/LINE_LENGTH_MAX=#"         &
5087                                                  "-M#";
5088    --        /LINE_LENGTH_MAX=nnn
5089    --
5090    --   Set the maximum line length, nnn from 32 ..256. The default is 79.
5091
5092    S_Pretty_Maxind    : aliased constant S := "/MAX_INDENT=#"              &
5093                                                  "-T#";
5094    --        /MAX_INDENT=nnn
5095    --
5096    --   Do not use an additional indentation level for case alternatives
5097    --   and variants if their number is nnn or more. The default is  10.
5098    --   If nnn is zero, an additional indentation level is  used for any number
5099    --   of case alternatives and variants.
5100
5101    S_Pretty_Mess      : aliased constant S := "/MESSAGES_PROJECT_FILE="    &
5102                                             "DEFAULT "                     &
5103                                                "-vP0 "                     &
5104                                             "MEDIUM "                      &
5105                                                "-vP1 "                     &
5106                                             "HIGH "                        &
5107                                                "-vP2";
5108    --        /MESSAGES_PROJECT_FILE[=messages-option]
5109    --
5110    --   Specifies the "verbosity" of the parsing of project files.
5111    --   messages-option may be one of the following:
5112    --
5113    --      DEFAULT (D)  No messages are output if there is no error or warning.
5114    --
5115    --      MEDIUM       A small number of messages are output.
5116    --
5117    --      HIGH         A great number of messages are output, most of them not
5118    --                   being useful for the user.
5119
5120    S_Pretty_Names     : aliased constant S := "/NAME_CASING="              &
5121                                               "AS_DECLARED "               &
5122                                                  "-nD "                    &
5123                                               "LOWER_CASE "                &
5124                                                  "-nL "                    &
5125                                               "UPPER_CASE "                &
5126                                                  "-nU "                    &
5127                                               "MIXED_CASE "                &
5128                                                  "-nM";
5129    --        /NAME_CASING[=name-option]
5130    --
5131    --   Specify the casing of names.
5132    --   'name-option' may be one of:
5133    --
5134    --      AS_DECLARED (D)   Name casing for defining occurrences are as they
5135    --                        appear in the source file.
5136    --
5137    --      LOWER_CASE        Names are in lower case.
5138    --
5139    --      UPPER_CASE        Names are in upper case.
5140    --
5141    --      MIXED_CASE        Names are in mixed case.
5142
5143    S_Pretty_No_Backup : aliased constant S := "/NO_BACKUP "               &
5144                                                  "-rnb";
5145    --        /REPLACE_NO_BACKUP
5146    --
5147    --   Replace the argument source with the pretty-printed source without
5148    --   creating any backup copy of the argument source.
5149
5150    S_Pretty_No_Labels : aliased constant S := "/NO_MISSED_LABELS "         &
5151                                                  "-e";
5152    --        /NO_MISSED_LABELS
5153    --
5154    --   Do not insert missing end/exit labels. The end label is the name of
5155    --   a construct that may optionally appear at the end of the construct.
5156    --   This includes the names of packages and subprograms.
5157    --   Similarly, the exit label is the name of a loop that may appear as the
5158    --   argument of an exit statement within the loop. By default, GNAT PRETTY
5159    --   inserts these end/exit labels when they are absent in the original
5160    --   source. This qualifier /NO_MISSED_LABELS suppresses this insertion,
5161    --   so that the formatted source reflects the original.
5162
5163    S_Pretty_Notabs    : aliased constant S := "/NOTABS "                   &
5164                                                  "-notabs";
5165    --        /NOTABS
5166    --
5167    --   Replace all tabulations in comments with spaces.
5168
5169    S_Pretty_Output    : aliased constant S := "/OUTPUT=@"                  &
5170                                               "-o@";
5171    --        /OUTPUT=file
5172    --
5173    --   Write the output to the specified file. If the file already exists,
5174    --   an error is reported.
5175
5176    S_Pretty_Override  : aliased constant S := "/OVERRIDING_REPLACE "       &
5177                                                  "-rf";
5178    --        /NOOVERRIDING_REPLACE (D)
5179    --        /OVERRIDING_REPLACE
5180    --
5181    --   Replace the argument source with the pretty-printed source and copy the
5182    --   argument source into filename.NPP, overriding any existing file if
5183    --   needed.
5184
5185    S_Pretty_Pragma    : aliased constant S := "/PRAGMA_CASING="            &
5186                                               "MIXED_CASE "                &
5187                                                  "-pM "                    &
5188                                               "LOWER_CASE "                &
5189                                                  "-pL "                    &
5190                                               "UPPER_CASE "                &
5191                                                  "-pU";
5192    --        /PRAGMA_CASING[=pragma-option]
5193    --
5194    --   Set the case of pragma identifiers. The default is Mixed case.
5195    --   pragma-option may be one of the following:
5196    --
5197    --      MIXED_CASE (D)
5198    --      LOWER_CASE
5199    --      UPPER_CASE
5200
5201    S_Pretty_Project   : aliased constant S := "/PROJECT_FILE=<"            &
5202                                                 "-P>";
5203    --        /PROJECT_FILE=filename
5204    --
5205    --   Specifies the main project file to be used. The project files rooted
5206    --   at the main project file will be parsed before any other processing to
5207    --   set the building environment.
5208
5209    S_Pretty_Replace   : aliased constant S := "/REPLACE "                  &
5210                                                  "-r";
5211    --        /NOREPLACE (D)
5212    --        /REPLACE
5213    --
5214    --   Replace the argument source with the pretty-printed source and copy the
5215    --   argument source into filename.NPP. If filename.NPP already exists,
5216    --   report an error and exit.
5217
5218    S_Pretty_RTS       : aliased constant S := "/RUNTIME_SYSTEM=|"          &
5219                                                "--RTS=|";
5220    --        /RUNTIME_SYSTEM=xxx
5221    --
5222    --    Compile against an alternate runtime system named xxx or RTS-xxx.
5223
5224    S_Pretty_Search    : aliased constant S := "/SEARCH=*"                  &
5225                                               "-I*";
5226    --        /SEARCH=(directory[,...])
5227    --
5228    --    When looking for source files also look in directories specified.
5229
5230    S_Pretty_Specific  : aliased constant S := "/SPECIFIC_CASING "          &
5231                                               "-D-";
5232    --        /SPECIFIC_CASING
5233    --
5234    --   Do not use the default dictionary file; instead, use the casing
5235    --   defined by a qualifier /NAME_CASING and/or any explicit dictionary
5236    --   file specified by a qualifier /DICTIONARY.
5237
5238    S_Pretty_Standard  : aliased constant S := "/STANDARD_OUTPUT "          &
5239                                               "-pipe";
5240    --        /NOSTANDARD_OUTPUT (D)
5241    --        /STANDARD_OUTPUT
5242    --
5243    --   Redirect the output to the standard output.
5244
5245    S_Pretty_Verbose   : aliased constant S := "/VERBOSE "                  &
5246                                               "-v";
5247    --        /NOVERBOSE (D)
5248    --        /VERBOSE
5249    --
5250    --   Verbose mode; GNAT PRETTY generates version information and then a
5251    --   trace of the actions it takes to produce or obtain the ASIS tree.
5252
5253    S_Pretty_Warnings  : aliased constant S := "/WARNINGS "                 &
5254                                               "-w";
5255    --        /NOWARNINGS (D)
5256    --        /WARNINGS
5257    --
5258    --   Issue a warning to the standard error stream if it is not possible
5259    --   to provide the required layout in the result source.
5260    --   By default such warnings are not activated.
5261
5262    Pretty_Switches : aliased constant Switches :=
5263      (S_Pretty_Align     'Access,
5264       S_Pretty_All_Prjs  'Access,
5265       S_Pretty_Attrib    'Access,
5266       S_Pretty_Comments  'Access,
5267       S_Pretty_Compact_Is'Access,
5268       S_Pretty_Config    'Access,
5269       S_Pretty_Constr    'Access,
5270       S_Pretty_Comind    'Access,
5271       S_Pretty_Current   'Access,
5272       S_Pretty_Dico      'Access,
5273       S_Pretty_Eol       'Access,
5274       S_Pretty_Ext       'Access,
5275       S_Pretty_Encoding  'Access,
5276       S_Pretty_Files     'Access,
5277       S_Pretty_Forced    'Access,
5278       S_Pretty_Formfeed  'Access,
5279       S_Pretty_Indent    'Access,
5280       S_Pretty_Keyword   'Access,
5281       S_Pretty_Maxlen    'Access,
5282       S_Pretty_Maxind    'Access,
5283       S_Pretty_Mess      'Access,
5284       S_Pretty_Names     'Access,
5285       S_Pretty_No_Backup 'Access,
5286       S_Pretty_No_Labels 'Access,
5287       S_Pretty_Notabs    'Access,
5288       S_Pretty_Output    'Access,
5289       S_Pretty_Override  'Access,
5290       S_Pretty_Pragma    'Access,
5291       S_Pretty_Replace   'Access,
5292       S_Pretty_Project   'Access,
5293       S_Pretty_RTS       'Access,
5294       S_Pretty_Search    'Access,
5295       S_Pretty_Specific  'Access,
5296       S_Pretty_Standard  'Access,
5297       S_Pretty_Verbose   'Access,
5298       S_Pretty_Warnings  'Access);
5299
5300    ------------------------------
5301    -- Switches for GNAT SHARED --
5302    ------------------------------
5303
5304    S_Shared_Debug   : aliased constant S := "/DEBUG="                      &
5305                                             "ALL "                         &
5306                                                "-g3 "                      &
5307                                             "NONE "                        &
5308                                                "-g0 "                      &
5309                                             "TRACEBACK "                   &
5310                                                "-g1 "                      &
5311                                             "NOTRACEBACK "                 &
5312                                                "-g0";
5313    --        /DEBUG[=debug-option]
5314    --        /NODEBUG
5315    --
5316    --   Specifies the amount of debugging information included. 'debug-option'
5317    --   is one of the following:
5318    --
5319    --        ALL (D)      Include full debugging information.
5320    --
5321    --        NONE         Provide no debugging information. Same as /NODEBUG.
5322    --
5323    --        TRACEBACK    Provide sufficient debug information for a traceback.
5324    --
5325    --        NOTRACEBACK  Same as NONE.
5326
5327    S_Shared_Image  : aliased constant S := "/IMAGE=@"                      &
5328                                             "-o@";
5329    --        /IMAGE=image-name
5330    --
5331    --   'image-name' specifies the name for the generated shared library.
5332
5333    S_Shared_Ident   : aliased constant S := "/IDENTIFICATION=" & '"'       &
5334                                             "--for-linker=IDENT="          &
5335                                             '"';
5336    --        /IDENTIFICATION="<string>"
5337    --
5338    --   "<string>" specifies the string to be stored in the image file ident-
5339    --   ification field in the image header. It overrides any pragma Ident
5340    --   specified string.
5341
5342    S_Shared_Nofiles : aliased constant S := "/NOSTART_FILES "              &
5343                                             "-nostartfiles";
5344    --        /NOSTART_FILES
5345    --
5346    --   Link in default image initialization and startup functions.
5347
5348    S_Shared_Noinhib : aliased constant S := "/NOINHIBIT-IMAGE "            &
5349                                             "--for-linker=--noinhibit-exec";
5350    --        /NOINHIBIT-IMAGE
5351    --
5352    --   Delete image if there are errors or warnings.
5353
5354    S_Shared_Verb    : aliased constant S := "/VERBOSE "                    &
5355                                             "-v";
5356    --        /NOVERBOSE (D)
5357    --        /VERBOSE
5358    --
5359    --   Causes additional information to be output, including a full list of
5360    --   the included object files. This switch option is most useful when you
5361    --   want to see what set of object files are being used in the link step.
5362
5363    S_Shared_ZZZZZ   : aliased constant S := "/<other> "                    &
5364                                             "--for-linker=";
5365    --        /<other>
5366    --
5367    --   Any other switch transmitted to the underlying linker.
5368
5369    Shared_Switches : aliased constant Switches :=
5370      (S_Shared_Debug   'Access,
5371       S_Shared_Image   'Access,
5372       S_Shared_Ident   'Access,
5373       S_Shared_Nofiles 'Access,
5374       S_Shared_Noinhib 'Access,
5375       S_Shared_Verb    'Access,
5376       S_Shared_ZZZZZ   'Access);
5377
5378    -----------------------------
5379    -- Switches for GNAT STACK --
5380    -----------------------------
5381
5382    S_Stack_All        : aliased constant S := "/ALL_SUBPROGRAMS "          &
5383                                                 "-a";
5384    --        /NOALL_SUBPROGRAMS (D)
5385    --        /ALL_SUBPROGRAMS
5386    --
5387    --   Consider all subprograms as entry points.
5388
5389    S_Stack_All_Cycles : aliased constant S := "/ALL_CYCLES "               &
5390                                                 "-ca";
5391    --        /NOALL_CYCLES (D)
5392    --        /ALL_CYCLES
5393    --
5394    --   Extract all possible cycles in the call graph.
5395
5396    S_Stack_All_Prjs   : aliased constant S := "/ALL_PROJECTS "             &
5397                                                 "-U";
5398    --        /NOALL_PROJECTS (D)
5399    --        /ALL_PROJECTS
5400    --
5401    --   When GNAT STACK is used with a Project File and no source is
5402    --   specified, the underlying tool gnatstack is called for all the
5403    --   units of all the Project Files in the project tree.
5404
5405    S_Stack_Debug      : aliased constant S := "/DEBUG "                    &
5406                                                 "-g";
5407    --        /NODEBUG (D)
5408    --        /DEBUG
5409    --
5410    --   Generate internal debug information.
5411
5412    S_Stack_Directory  : aliased constant S := "/DIRECTORY=*"               &
5413                                                 "-aO*";
5414    --        /DIRECTORY=(direc[,...])
5415    --
5416    --   When looking for .ci files look also in directories specified.
5417
5418    S_Stack_Entries    : aliased constant S := "/ENTRIES=*"                 &
5419                                                 "-e*";
5420    --
5421    --        /ENTRY=(entry_point[,...])
5422    --
5423    --   Name of symbol to be used as entry point for the analysis.
5424
5425    S_Stack_Files      : aliased constant S := "/FILES=@"                   &
5426                                                 "-files=@";
5427    --      /FILES=filename
5428    --
5429    --   Take as arguments the files that are listed in the specified
5430    --   text file.
5431
5432    S_Stack_Help       : aliased constant S := "/HELP "                     &
5433                                                 "-h";
5434    --        /NOHELP (D)
5435    --        /HELP
5436    --
5437    --   Output a message explaining the usage of gnatstack.
5438
5439    S_Stack_List       : aliased constant S := "/LIST=#"                    &
5440                                                 "-l#";
5441    --        /LIST=nnn
5442    --
5443    --   Print the nnn subprograms requiring the biggest local stack usage. By
5444    --   default none will be displayed.
5445
5446    S_Stack_Order      : aliased constant S := "/ORDER="                    &
5447                                               "STACK "                     &
5448                                                  "-os "                    &
5449                                               "ALPHABETICAL "              &
5450                                                  "-oa";
5451    --        /ORDER[=order-option]
5452    --
5453    --   Specifies the order for displaying the different call graphs.
5454    --   order-option may be one of the following:
5455    --
5456    --      STACK (D)    Select stack usage order
5457    --
5458    --      ALPHABETICAL Select alphabetical order
5459
5460    S_Stack_Path       : aliased constant S := "/PATH "                     &
5461                                                 "-p";
5462    --        /NOPATH (D)
5463    --        /PATH
5464    --
5465    --   Print all the subprograms that make up the worst-case path for every
5466    --   entry point.
5467
5468    S_Stack_Project    : aliased constant S := "/PROJECT_FILE=<"            &
5469                                                 "-P>";
5470    --        /PROJECT_FILE=filename
5471    --
5472    --   Specifies the main project file to be used. The project files rooted
5473    --   at the main project file will be parsed before the invocation of
5474    --   gnatstack.
5475
5476    S_Stack_Output     : aliased constant S := "/OUTPUT=@"                  &
5477                                                 "-f@";
5478    --        /OUTPUT=filename
5479    --
5480    --   Name of the file containing the generated graph (VCG format).
5481
5482    S_Stack_Regexp     : aliased constant S := "/EXPRESSION=|"              &
5483                                                 "-r|";
5484    --
5485    --        /EXPRESSION=regular-expression
5486    --
5487    --   Any symbol matching the regular expression will be considered as a
5488    --   potential entry point for the analysis.
5489
5490    S_Stack_Unbounded  : aliased constant S := "/UNBOUNDED=#"               &
5491                                                 "-d#";
5492    --        /UNBOUNDED=nnn
5493    --
5494    --   Default stack size to be used for unbounded (dynamic) frames.
5495
5496    S_Stack_Unknown    : aliased constant S := "/UNKNOWN=#"                 &
5497                                                 "-u#";
5498    --        /UNKNOWN=nnn
5499    --
5500    --   Default stack size to be used for unknown (external) calls.
5501
5502    S_Stack_Verbose    : aliased constant S := "/VERBOSE "                  &
5503                                                 "-v";
5504    --        /NOVERBOSE (D)
5505    --        /VERBOSE
5506    --
5507    --   Specifies the amount of information to be displayed about the
5508    --   different subprograms. In verbose mode the full location of the
5509    --   subprogram will be part of the output, as well as detailed information
5510    --   about inaccurate data.
5511
5512    S_Stack_Warnings   : aliased constant S := "/WARNINGS="                 &
5513                                               "ALL "                       &
5514                                                  "-Wa "                    &
5515                                               "CYCLES "                    &
5516                                                  "-Wc "                    &
5517                                               "UNBOUNDED "                 &
5518                                                  "-Wu "                    &
5519                                               "EXTERNAL "                  &
5520                                                  "-We "                    &
5521                                               "INDIRECT "                  &
5522                                                  "-Wi";
5523    --        /WARNINGS[=(keyword[,...])]
5524    --
5525    --    The following keywords are supported:
5526    --
5527    --        ALL        Turn on all optional warnings
5528    --
5529    --        CYCLES     Turn on warnings for cycles
5530    --
5531    --        UNBOUNDED  Turn on warnings for unbounded frames
5532    --
5533    --        EXTERNAL   Turn on warnings for external calls
5534    --
5535    --        INDIRECT   Turn on warnings for indirect calls
5536
5537    Stack_Switches : aliased constant Switches :=
5538      (S_Stack_All        'Access,
5539       S_Stack_All_Cycles 'Access,
5540       S_Stack_All_Prjs   'Access,
5541       S_Stack_Debug      'Access,
5542       S_Stack_Directory  'Access,
5543       S_Stack_Entries    'Access,
5544       S_Stack_Files      'Access,
5545       S_Stack_Help       'Access,
5546       S_Stack_List       'Access,
5547       S_Stack_Order      'Access,
5548       S_Stack_Path       'Access,
5549       S_Stack_Project    'Access,
5550       S_Stack_Output     'Access,
5551       S_Stack_Regexp     'Access,
5552       S_Stack_Unbounded  'Access,
5553       S_Stack_Unknown    'Access,
5554       S_Stack_Verbose    'Access,
5555       S_Stack_Warnings   'Access);
5556
5557    ----------------------------
5558    -- Switches for GNAT STUB --
5559    ----------------------------
5560
5561    S_Stub_Config  : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<"  &
5562                                             "-gnatec>";
5563    --        /CONFIGURATION_PRAGMAS_FILE=filespec
5564    --
5565    --   Specifies a configuration pragmas file that must be taken into account
5566    --   when compiling.
5567
5568    S_Stub_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
5569                                             "!-I-";
5570    --        /CURRENT_DIRECTORY (D)
5571    --        /NOCURRENT_DIRECTORY
5572    --
5573    --   Look for source, library or object files in the default directory.
5574
5575    S_Stub_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
5576                                             "-X" & '"';
5577    --        /EXTERNAL_REFERENCE="name=val"
5578    --
5579    --   Specifies an external reference to the project manager. Useful only if
5580    --   /PROJECT_FILE is used.
5581    --
5582    --   Example:
5583    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
5584
5585    S_Stub_Full    : aliased constant S := "/FULL "                         &
5586                                             "-f";
5587    --        /NOFULL (D)
5588    --        /FULL
5589    --
5590    --   If the destination directory already contains a file with the name of
5591    --   the body file for the argument file spec, replace it with the generated
5592    --   body stub. If /FULL is not used and there is already a body file, this
5593    --   existing body file is not replaced.
5594
5595    S_Stub_Header  : aliased constant S := "/HEADER="                       &
5596                                             "GENERAL "                     &
5597                                                "-hg "                      &
5598                                             "SPEC "                        &
5599                                                "-hs";
5600    --        /HEADER[=header-option]
5601    --
5602    --   Specifies the form of the comment header above the generated body stub.
5603    --   If no /HEADER qualifier is specified, there is no comment header.
5604    --   header-option is one of the following:
5605    --
5606    --
5607    --      GENERAL (D)  Put a sample comment header into the body stub.
5608    --
5609    --      SPEC         Put the comment header (i.e., all the comments
5610    --                   preceding the compilation unit) from the source of the
5611    --                   library unit declaration into the body stub.
5612
5613    S_Stub_Indent  : aliased constant S := "/INDENTATION=#"                 &
5614                                             "-i#";
5615    --        /INDENTATION=nnn
5616    --
5617    --   (nnn is a non-negative integer). Set the indentation level in the
5618    --   generated body stub to nnn. nnn=0 means "no indentation".
5619    --   Default insdentation is 3.
5620
5621    S_Stub_Keep    : aliased constant S := "/KEEP "                         &
5622                                             "-k";
5623    --        /NOKEEP (D)
5624    --        /KEEP
5625    --
5626    --   Do not delete the tree file (i.e., the snapshot of the compiler
5627    --   internal structures used by gnatstub) after creating the body stub.
5628
5629    S_Stub_Length  : aliased constant S := "/LINE_LENGTH=#"                 &
5630                                             "-l#";
5631    --        /LINE_LENGTH=nnn
5632    --
5633    --   (n is a non-negative integer). Set the maximum line length in the body
5634    --   stub to nnn. Default is 78.
5635
5636    S_Stub_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
5637                                             "DEFAULT "                     &
5638                                                "-vP0 "                     &
5639                                             "MEDIUM "                      &
5640                                                "-vP1 "                     &
5641                                             "HIGH "                        &
5642                                                "-vP2";
5643    --        /MESSAGES_PROJECT_FILE[=messages-option]
5644    --
5645    --   Specifies the "verbosity" of the parsing of project files.
5646    --   messages-option may be one of the following:
5647    --
5648    --      DEFAULT (D)  No messages are output if there is no error or warning.
5649    --
5650    --      MEDIUM       A small number of messages are output.
5651    --
5652    --      HIGH         A great number of messages are output, most of them not
5653    --                   being useful for the user.
5654
5655    S_Stub_Output  : aliased constant S := "/OUTPUT=@"                      &
5656                                             "-o@";
5657    --        /OUTPUT=filespec
5658    --
5659    --   Body file name. This should be set if the argument file name does not
5660    --   follow the GNAT file naming conventions. If this switch is omitted,
5661    --   the default name for the body will be obtained from the argument file
5662    --   name according to the GNAT file naming conventions.
5663
5664    S_Stub_Project : aliased constant S := "/PROJECT_FILE=<"                &
5665                                             "-P>";
5666    --        /PROJECT_FILE=filename
5667    --
5668    --   Specifies the main project file to be used. The project files rooted
5669    --   at the main project file will be parsed before any other processing.
5670    --   The source and object directories to be searched will be communicated
5671    --   to gnatstub through logical names ADA_PRJ_INCLUDE_FILE and
5672    --   ADA_PRJ_OBJECTS_FILE.
5673
5674    S_Stub_Quiet   : aliased constant S := "/QUIET "                        &
5675                                             "-q";
5676    --        /NOQUIET (D)
5677    --        /QUIET
5678    --
5679    --   Quiet mode: do not generate a confirmation when a body is successfully
5680    --   created, and do not generate a message when a body is not required for
5681    --   an argument unit.
5682
5683    S_Stub_Search  : aliased constant S := "/SEARCH=*"                      &
5684                                             "-I*";
5685    --        /SEARCH=(directory[,...])
5686    --
5687    --    When looking for source files also look in directories specified.
5688
5689    S_Stub_Tree    : aliased constant S := "/TREE_FILE="                    &
5690                                             "OVERWRITE "                   &
5691                                                "-t "                       &
5692                                             "SAVE "                        &
5693                                                "-k "                       &
5694                                             "REUSE "                       &
5695                                                "-r";
5696    --        /TREE_FILE[=treefile-option]
5697    --
5698    --   Specify what to do with the tree file.
5699    --   treefile-option is one of the following:
5700    --
5701    --      OVERWRITE (D)  Overwrite the existing tree file. If the current
5702    --                     directory already contains the file which, according
5703    --                     to the GNAT file naming rules should be considered
5704    --                     as a tree file for the argument source file,
5705    --                     gnatstub will refuse to create the tree file needed
5706    --                     to create a sample body unless this option is chosen.
5707    --
5708    --      SAVE           Do not remove the tree file (i.e., the snapshot
5709    --                     of the compiler internal structures used by gnatstub)
5710    --                     after creating the body stub.
5711    --
5712    --      REUSE          Reuse the tree file (if it exists) instead of
5713    --                     creating it.
5714    --                     Instead of creating the tree file for the library
5715    --                     unit declaration, gnatstub tries to find it in the
5716    --                     current directory and use it for creating a body.
5717    --                     If the tree file is not found, no body is created.
5718    --                     This option also implies `SAVE', whether or not the
5719    --                     latter is set explicitly.
5720
5721    S_Stub_Verbose : aliased constant S := "/VERBOSE "                      &
5722                                             "-v";
5723    --        /NOVERBOSE (D)
5724    --        /VERBOSE
5725    --
5726    --   Verbose mode: generate version information.
5727
5728    Stub_Switches : aliased constant Switches :=
5729      (S_Stub_Config  'Access,
5730       S_Stub_Current 'Access,
5731       S_Stub_Ext     'Access,
5732       S_Stub_Full    'Access,
5733       S_Stub_Header  'Access,
5734       S_Stub_Indent  'Access,
5735       S_Stub_Keep    'Access,
5736       S_Stub_Length  'Access,
5737       S_Stub_Mess    'Access,
5738       S_Stub_Output  'Access,
5739       S_Stub_Project 'Access,
5740       S_Stub_Quiet   'Access,
5741       S_Stub_Search  'Access,
5742       S_Stub_Tree    'Access,
5743       S_Stub_Verbose 'Access);
5744
5745    ----------------------------
5746    -- Switches for GNAT XREF --
5747    ----------------------------
5748
5749    S_Xref_All     : aliased constant S := "/ALL_FILES "                    &
5750                                             "-a";
5751    --        /NOALL_FILES (D)
5752    --        /ALL_FILES
5753    --
5754    --   If this switch is present, FIND and XREF will parse the read-only
5755    --   files found in the library search path. Otherwise, these files will
5756    --   be ignored. This option can be used to protect Gnat sources or your
5757    --   own libraries from being parsed, thus making FIND and XREF much
5758    --   faster, and their output much smaller.
5759
5760    S_Xref_Deriv   : aliased constant S := "/DERIVED_TYPES "                &
5761                                             "-d";
5762    --        /NODERIVED_TYPES (D)
5763    --        /DERIVED_TYPES
5764    --
5765    --   Output the parent type reference for each matching derived types.
5766
5767    S_Xref_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
5768                                             "-X" & '"';
5769    --        /EXTERNAL_REFERENCE="name=val"
5770    --
5771    --   Specifies an external reference to the project manager. Useful only if
5772    --   /PROJECT_FILE is used.
5773    --
5774    --   Example:
5775    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
5776
5777    S_Xref_Full    : aliased constant S := "/FULL_PATHNAME "                &
5778                                             "-f";
5779    --        /NOFULL_PATHNAME (D)
5780    --        /FULL_PATHNAME
5781    --
5782    --   If this switch is set, the output file names will be preceded by their
5783    --   directory (if the file was found in the search path). If this switch
5784    --   is not set, the directory will not be printed.
5785
5786    S_Xref_Global  : aliased constant S := "/IGNORE_LOCALS "                &
5787                                             "-g";
5788    --        /NOIGNORE_LOCALS (D)
5789    --        /IGNORE_LOCALS
5790    --
5791    --   If this switch is set, information is output only for library-level
5792    --   entities, ignoring local entities. The use of this switch may
5793    --   accelerate FIND and XREF.
5794
5795    S_Xref_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
5796                                             "DEFAULT "                     &
5797                                                "-vP0 "                     &
5798                                             "MEDIUM "                      &
5799                                                "-vP1 "                     &
5800                                             "HIGH "                        &
5801                                                "-vP2";
5802    --        /MESSAGES_PROJECT_FILE[=messages-option]
5803    --
5804    --   Specifies the "verbosity" of the parsing of project files.
5805    --   messages-option may be one of the following:
5806    --
5807    --      DEFAULT (D)  No messages are output if there is no error or warning.
5808    --
5809    --      MEDIUM       A small number of messages are output.
5810    --
5811    --      HIGH         A great number of messages are output, most of them not
5812    --                   being useful for the user.
5813
5814    S_Xref_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
5815                                             "-nostdinc";
5816    --        /NOSTD_INCLUDES
5817    --
5818    --   Do not look for sources in the system default directory.
5819
5820    S_Xref_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
5821                                             "-nostdlib";
5822    --        /NOSTD_LIBRARIES
5823    --
5824    --   Do not look for library files in the system default directory.
5825
5826    S_Xref_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
5827                                             "-aO*";
5828    --        /OBJECT_SEARCH=(directory,...)
5829    --
5830    --   When searching for library and object files, look in the specified
5831    --   directories. The order in which library files are searched is the same
5832    --   as for MAKE.
5833
5834    S_Xref_Project : aliased constant S := "/PROJECT=@"                     &
5835                                             "-p@";
5836    --        /PROJECT=file
5837    --
5838    --   Specify a project file to use. By default, FIND and XREF will try to
5839    --   locate a project file in the current directory.
5840    --
5841    --   If a project file is either specified or found by the tools, then the
5842    --   content of the source directory and object directory lines are added
5843    --   as if they had been specified respectively by /SOURCE_SEARCH and
5844    --   /OBJECT_SEARCH.
5845
5846    S_Xref_Prj     : aliased constant S := "/PROJECT_FILE=<"                &
5847                                             "-P>";
5848    --        /PROJECT_FILE=filename
5849    --
5850    --   Specifies the main project file to be used. The project files rooted
5851    --   at the main project file will be parsed before doing any processing.
5852    --   The source and object directories to be searched will be communicated
5853    --   to gnatxref through logical names ADA_PRJ_INCLUDE_FILE and
5854    --   ADA_PRJ_OBJECTS_FILE.
5855
5856    S_Xref_Search  : aliased constant S := "/SEARCH=*"                      &
5857                                             "-I*";
5858    --        /SEARCH=(directory,...)
5859    --
5860    --   Equivalent to:
5861    --           /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
5862
5863    S_Xref_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
5864                                             "-aI*";
5865    --        /SOURCE_SEARCH=(directory,...)
5866    --
5867    --   When looking for source files also look in the specified directories.
5868    --   The order in which source file search is undertaken is the same as for
5869    --   MAKE.
5870
5871    S_Xref_Output  : aliased constant S := "/UNUSED "                       &
5872                                             "-u";
5873    --        /SOURCE_SEARCH=(directory,...)
5874    --
5875    --   When looking for source files also look in the specified directories.
5876    --   The order in which source file search is undertaken is the same as for
5877    --   MAKE.
5878
5879    S_Xref_Tags    : aliased constant S := "/TAGS "                         &
5880                                             "-v";
5881    --        /NOTAGS (D)
5882    --        /TAGS
5883    --
5884    --   Print a 'tags' file for vi.
5885
5886    Xref_Switches : aliased constant Switches :=
5887      (S_Xref_All     'Access,
5888       S_Xref_Deriv   'Access,
5889       S_Xref_Ext     'Access,
5890       S_Xref_Full    'Access,
5891       S_Xref_Global  'Access,
5892       S_Xref_Mess    'Access,
5893       S_Xref_Nostinc 'Access,
5894       S_Xref_Nostlib 'Access,
5895       S_Xref_Object  'Access,
5896       S_Xref_Project 'Access,
5897       S_Xref_Prj     'Access,
5898       S_Xref_Search  'Access,
5899       S_Xref_Source  'Access,
5900       S_Xref_Output  'Access,
5901       S_Xref_Tags    'Access);
5902
5903 end VMS_Data;