OSDN Git Service

2009-07-13 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / vms_data.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             V M S _ D A T A                              --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 1996-2009, 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 3,  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 COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 --  This package contains, for each of the command of the GNAT driver, one
27 --  constant array; each component of this array is a string that defines,
28 --  in coded form as explained below, the conversion of a VMS qualifier of the
29 --  command to the corresponding switch of the GNAT tool corresponding to the
30 --  command.
31
32 --  This package is used by the GNAT driver to invokes the GNAT tools with the
33 --  switches corresponding to the VMS qualifier and by the Project Manager to
34 --  convert VMS qualifiers in project files to their corresponding switch
35 --  values.
36
37 --  This package is also an input to the tool that generates the VMS GNAT
38 --  help information automatically.
39
40 --  NOTE: the format of this package must follow the following rules, so that
41 --        the VMS GNAT help tool works properly:
42
43 --    - Each command zone (where the eventual qualifiers are declared) must
44 --      begin with a boxed comment of the form:
45
46 --      ---------------------------------
47 --      -- Switches for GNAT <COMMAND> --
48 --      ---------------------------------
49
50 --      where <COMMAND> is the name of a GNAT command in capital letters, for
51 --      example BIND, COMPILE, XREF, ...
52
53 --    - each qualifier declaration must be followed either by
54 --         - a comment starting with "--  NODOC", to indicate that there is
55 --           no documentation for this qualifier, or
56 --         - a contiguous sequence of comments that constitute the
57 --           documentation of the qualifier.
58
59 --    - each command zone ends with the declaration of the constant array
60 --      for the command, of the form:
61
62 --      <Command>__Switches : aliased constant Switches :=
63
64 package VMS_Data is
65
66    ----------------
67    -- QUALIFIERS --
68    ----------------
69
70    --  The syntax of a qualifier declaration is as follows:
71
72    --    SWITCH_STRING ::= "/ command-qualifier-name TRANSLATION"
73
74    --    TRANSLATION ::=
75    --      DIRECT_TRANSLATION
76    --    | DIRECTORIES_TRANSLATION
77    --    | FILE_TRANSLATION
78    --    | NO_SPACE_FILE_TRANSL
79    --    | NUMERIC_TRANSLATION
80    --    | STRING_TRANSLATION
81    --    | OPTIONS_TRANSLATION
82    --    | COMMANDS_TRANSLATION
83    --    | ALPHANUMPLUS_TRANSLATION
84    --    | OTHER_TRANSLATION
85
86    --    DIRECT_TRANSLATION       ::= space UNIX_SWITCHES
87    --    DIRECTORIES_TRANSLATION  ::= =* UNIX_SWITCH *
88    --    DIRECTORY_TRANSLATION    ::= =% UNIX_SWITCH %
89    --    FILE_TRANSLATION         ::= =@ UNIX_SWITCH @
90    --    NO_SPACE_FILE_TRANSL     ::= =< UNIX_SWITCH >
91    --    NUMERIC_TRANSLATION      ::= =# UNIX_SWITCH # | # number #
92    --    STRING_TRANSLATION       ::= =" UNIX_SWITCH "
93    --    OPTIONS_TRANSLATION      ::= =OPTION {space OPTION}
94    --    COMMANDS_TRANSLATION     ::= =? ARGS space command-name
95    --    ALPHANUMPLUS_TRANSLATION ::= =| UNIX_SWITCH |
96
97    --    UNIX_SWITCHES ::= UNIX_SWITCH {, UNIX_SWITCH}
98
99    --    UNIX_SWITCH ::= unix-switch-string | !unix-switch-string | `string'
100
101    --    OPTION ::= option-name space UNIX_SWITCHES
102
103    --    ARGS ::= -cargs | -bargs | -largs
104
105    --  Here command-qual is the name of the switch recognized by the GNATCmd.
106    --  This is always given in upper case in the templates, although in the
107    --  actual commands, either upper or lower case is allowed.
108
109    --  The unix-switch-string always starts with a minus, and has no commas
110    --  or spaces in it. Case is significant in the unix switch string. If a
111    --  unix switch string is preceded by the not sign (!) it means that the
112    --  effect of the corresponding command qualifier is to remove any previous
113    --  occurrence of the given switch in the command line.
114
115    --  The DIRECTORIES_TRANSLATION format is used where a list of directories
116    --  is given. This possible corresponding formats recognized by GNATCmd are
117    --  as shown by the following example for the case of PATH
118
119    --    PATH=direc
120    --    PATH=(direc,direc,direc,direc)
121
122    --  When more than one directory is present for the DIRECTORIES case, then
123    --  multiple instances of the corresponding unix switch are generated,
124    --  with the file name being substituted for the occurrence of *.
125
126    --  The FILE_TRANSLATION format is similar except that only a single
127    --  file is allowed, not a list of files, and only one unix switch is
128    --  generated as a result.
129
130    --  the NO_SPACE_FILE_TRANSL is similar to FILE_TRANSLATION, except that
131    --  no space is inserted between the switch and the file name.
132
133    --  The NUMERIC_TRANSLATION format is similar to the FILE_TRANSLATION case
134    --  except that the parameter is a decimal integer in the range 0 to 999999.
135
136    --  For the OPTIONS_TRANSLATION case, GNATCmd similarly permits one or
137    --  more options to appear (although only in some cases does the use of
138    --  multiple options make logical sense). For example, taking the
139    --  case of ERRORS for GCC, the following are all allowed:
140
141    --    /ERRORS=BRIEF
142    --    /ERRORS=(FULL,VERBOSE)
143    --    /ERRORS=(BRIEF IMMEDIATE)
144
145    --  If no option is provided (e.g. just /ERRORS is written), then the
146    --  first option in the list is the default option. For /ERRORS this
147    --  is NORMAL, so /ERRORS with no option is equivalent to /ERRORS=NORMAL.
148
149    --  The COMMANDS_TRANSLATION case is only used for gnatmake, to correspond
150    --  to the use of -cargs, -bargs and -largs (the ARGS string as indicated
151    --  is one of these three possibilities). The name given by COMMAND is the
152    --  corresponding command name to be used to interpret the switches to be
153    --  passed on. Switches of this type set modes, e.g. /COMPILER_QUALIFIERS
154    --  sets the mode so that all subsequent switches, up to another switch
155    --  with COMMANDS_TRANSLATION apply to the corresponding commands issued
156    --  by the make utility. For example
157
158    --    /COMPILER_QUALIFIERS /LIST /BINDER_QUALIFIERS /MAIN
159    --    /COMPILER_QUALIFIERS /NOLIST /COMPILE_CHECKS=SYNTAX
160
161    --  Clearly these switches must come at the end of the list of switches
162    --  since all subsequent switches apply to an issued command.
163
164    --  For the DIRECT_TRANSLATION case, an implicit additional qualifier
165    --  declaration is created by prepending NO to the name of the qualifier,
166    --  and then inverting the sense of the UNIX_SWITCHES string. For example,
167    --  given the qualifier definition:
168
169    --     "/LIST -gnatl"
170
171    --  An implicit qualifier definition is created:
172
173    --     "/NOLIST !-gnatl"
174
175    --  In the case where, a ! is already present, inverting the sense of the
176    --  switch means removing it.
177
178    subtype S is String;
179    --  A synonym to shorten the table
180
181    type String_Ptr is access constant String;
182    --  String pointer type used throughout
183
184    type Switches is array (Natural range <>) of String_Ptr;
185    --  Type used for array of switches
186
187    type Switches_Ptr is access constant Switches;
188
189    ----------------------------
190    -- Switches for GNAT BIND --
191    ----------------------------
192
193    S_Bind_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
194                                             "-aP*";
195    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
196    --
197    --   Add directories to the project search path.
198
199    S_Bind_Bind    : aliased constant S := "/BIND_FILE="                    &
200                                             "ADA "                         &
201                                                "-A "                       &
202                                             "C "                           &
203                                                "-C";
204    --        /BIND_FILE[=bind-file-option]
205    --
206    --   Specifies the language of the binder generated file.
207    --
208    --        ADA (D)    Binder file is Ada.
209    --
210    --        C          Binder file is 'C'.
211
212    S_Bind_Build   : aliased constant S := "/BUILD_LIBRARY=|"               &
213                                             "-L|";
214    --        /BUILD_LIBRARY=xxx
215    --
216    --        Binds the units for library building. In this case the adainit and
217    --        adafinal procedures are rename to xxxinit and xxxfinal. Implies
218    --        /NOMAIN.
219
220    S_Bind_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
221                                             "!-I-";
222    --        /CURRENT_DIRECTORY (D)
223    --        /NOCURRENT_DIRECTORY
224    --
225    --        Look for source, library or object files in the default directory.
226
227    S_Bind_Debug   : aliased constant S := "/DEBUG="                        &
228                                             "TRACEBACK "                   &
229                                                "-g2 "                      &
230                                             "ALL "                         &
231                                                "-g3 "                      &
232                                             "NONE "                        &
233                                                "-g0 "                      &
234                                             "SYMBOLS "                     &
235                                                "-g1 "                      &
236                                             "NOSYMBOLS "                   &
237                                                "!-g1 "                     &
238                                             "LINK "                        &
239                                                "-g3 "                      &
240                                             "NOTRACEBACK "                 &
241                                                "!-g2";
242    --        /DEBUG[=debug-level]
243    --        /NODEBUG
244    --
245    --    Specify level of debugging information generated for the elaboration
246    --    routine.  See corresponding qualifier for GNAT COMPILE.
247
248    S_Bind_DebugX  : aliased constant S := "/NODEBUG "                      &
249                                             "!-g";
250    --  NODOC  (see /DEBUG)
251
252    S_Bind_Elab    : aliased constant S := "/ELABORATION_DEPENDENCIES "     &
253                                             "-e";
254    --        /ELABORATION_DEPENDENCIES
255    --        /NOELABORATION_DEPENDENCIES (D)
256    --
257    --   Output complete list of elaboration-order dependencies, showing the
258    --   reason for each dependency. This output can be rather extensive but may
259    --   be useful in diagnosing problems with elaboration order. The output is
260    --   written to SYS$OUTPUT.
261
262    S_Bind_Error   : aliased constant S := "/ERROR_LIMIT=#"                 &
263                                             "-m#";
264    --        /ERROR_LIMIT=nnn
265    --
266    --   Limit number of detected errors to nnn (1-999999).
267
268    S_Bind_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
269                                             "-X" & '"';
270    --       /EXTERNAL_REFERENCE="name=val"
271    --
272    --   Specifies an external reference to the project manager. Useful only if
273    --   /PROJECT_FILE is used.
274    --
275    --   Example:
276    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
277
278    S_Bind_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
279                                             "-eL";
280    --        /NOFOLLOW_LINKS_FOR_FILES (D)
281    --        /FOLLOW_LINKS_FOR_FILES
282    --
283    --    Follow links when parsing project files
284
285    S_Bind_Force   : aliased constant S := "/FORCE_ELAB_FLAGS "             &
286                                             "-F";
287    --        /NOFORCE_ELAB_FLAGS (D)
288    --        /FORCE_ELAB_FLAGS
289    --
290    --    Force checking of elaboration Flags
291
292    S_Bind_Help    : aliased constant S := "/HELP "                         &
293                                             "-h";
294    --        /HELP
295    --
296    --   Output usage information.
297
298    S_Bind_Init    : aliased constant S := "/INITIALIZE_SCALARS="           &
299                                             "INVALID "                     &
300                                                "-Sin "                     &
301                                             "LOW "                         &
302                                                "-Slo "                     &
303                                             "HIGH "                        &
304                                                "-Shi";
305    --        /INITIALIZE_SCALARS[=scalar-option]
306    --
307    --   Indicate how uninitialized scalar values for which a pragma
308    --   Initialize_Scalars applies should be initialized.
309    --   scalar-option may be one of the following:
310    --
311    --      INVALID (D)  Initialize with an invalid value.
312    --      LOW          Initialize with the lowest valid value of the subtype.
313    --      HIGH         Initialize with the highest valid value of the subtype.
314
315    S_Bind_Leap    : aliased constant S := "/ENABLE_LEAP_SECONDS "          &
316                                             "-y";
317    --      /ENABLE_LEAP_SECONDS
318    --      /NOENABLE_LEAP_SECONDS (D)
319    --
320    --   Enable leap seconds support in Ada.Calendar and its children.
321
322    S_Bind_Library : aliased constant S := "/LIBRARY_SEARCH=*"              &
323                                             "-aO*";
324    --        /LIBRARY_SEARCH=(direc[,...])
325    --
326    --        When looking for library and object files look also in directories
327    --        specified.
328
329    S_Bind_Linker  : aliased constant S := "/LINKER_OPTION_LIST "           &
330                                             "-K";
331    --        /NOLINKER_OPTION_LIST (D)
332    --        /LINKER_OPTION_LIST
333    --
334    --        Output linker options to SYS$OUTPUT.  Includes library search
335    --        paths, contents of pragmas Ident and Linker_Options, and
336    --        libraries added by GNAT BIND.
337
338    S_Bind_Main    : aliased constant S := "/MAIN "                         &
339                                             "!-n";
340    --        /MAIN (D)
341    --
342    --   The main program is in Ada.
343    --
344    --        /NOMAIN
345    --
346    --   The main program is not in Ada.
347
348    S_Bind_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
349                                             "DEFAULT "                     &
350                                                "-vP0 "                     &
351                                             "MEDIUM "                      &
352                                                "-vP1 "                     &
353                                             "HIGH "                        &
354                                                "-vP2";
355    --        /MESSAGES_PROJECT_FILE[=messages-option]
356    --
357    --   Specifies the "verbosity" of the parsing of project files.
358    --   messages-option may be one of the following:
359    --
360    --      DEFAULT (D)  No messages are output if there is no error or warning.
361    --
362    --      MEDIUM       A small number of messages are output.
363    --
364    --      HIGH         A great number of messages are output, most of them not
365    --                   being useful for the user.
366
367    S_Bind_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
368                                             "-nostdinc";
369    --        /NOSTD_INCLUDES
370    --
371    --    Do not look for sources the in the system default directory.
372
373    S_Bind_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
374                                             "-nostdlib";
375    --        /NOSTD_LIBRARIES
376    --
377    --    Do not look for library files in the system default directory.
378
379    S_Bind_No_Time : aliased constant S := "/NO_TIME_STAMP_CHECK "          &
380                                             "-t";
381    --  NODOC (see /TIME_STAMP_CHECK)
382
383    S_Bind_Object  : aliased constant S := "/OBJECT_LIST "                  &
384                                             "-O";
385    --        /NOOBJECT_LIST (D)
386    --        /OBJECT_LIST
387    --
388    --    Output full names of all the object files that must be linker to
389    --    provide the Ada component of the program. The output is written to
390    --    SYS$OUTPUT.
391
392    S_Bind_Order   : aliased constant S := "/ORDER_OF_ELABORATION "         &
393                                             "-l";
394    --        /NOORDER_OF_ELABORATION (D)
395    --        /ORDER_OF_ELABORATION
396    --
397    --   Output chosen elaboration order. The output is written to SYS$OUTPUT.
398
399    S_Bind_Output  : aliased constant S := "/OUTPUT=@"                      &
400                                             "-o@";
401    --        /OUTPUT=filename
402    --
403    --   File name to use for the program containing the elaboration code.
404
405    S_Bind_OutputX : aliased constant S := "/NOOUTPUT "                     &
406                                             "-c";
407    --        /NOOUTPUT
408    --
409    --   Check only. Do not generate the binder output file.
410    --
411    --   In this mode the binder performs all error checks but does not generate
412    --   an output file.
413
414    S_Bind_Pess    : aliased constant S := "/PESSIMISTIC_ELABORATION "      &
415                                             "-p";
416    --        /PESSIMISTIC_ELABORATION
417    --
418    --   Causes the binder to choose a "pessimistic" elaboration order, i.e. one
419    --   which is most likely to cause elaboration order problems. This can be
420    --   useful in testing portable code to make sure that there are no missing
421    --   elaborate pragmas.
422
423    S_Bind_Project : aliased constant S := "/PROJECT_FILE=<"                &
424                                             "-P>";
425    --        /PROJECT_FILE=filename
426    --
427    --   Specifies the main project file to be used. The project files rooted
428    --   at the main project file will be parsed before the invocation of the
429    --   binder. The source and object directories to be searched will be
430    --   communicated to the binder through logical names ADA_PRJ_INCLUDE_FILE
431    --   and ADA_PRJ_OBJECTS_FILE.
432
433    S_Bind_Read    : aliased constant S := "/READ_SOURCES="                 &
434                                             "ALL "                         &
435                                                "-s "                       &
436                                             "NONE "                        &
437                                                "-x "                       &
438                                             "AVAILABLE "                   &
439                                                "!-x,!-s";
440    --        /READ_SOURCES[=(keyword[,...])]
441    --        /NOREAD_SOURCES
442    --
443    --   The following keyword are accepted:
444    --
445    --      ALL (D)      Require source files to be present. In this mode, the
446    --                   binder insists on being able to locate all source files
447    --                   that are referenced and checks their consistency.  In
448    --                   normal mode, if a source file cannot be located it is
449    --                   simply ignored. If you specify the ALL keyword, a
450    --                   missing source file is an error.
451    --
452    --      NONE         Exclude source files. In this mode, the binder only
453    --                   checks that ALI files are consistent with one another.
454    --                   source files are not accessed.  The binder runs faster
455    --                   in this mode, and there is still a guarantee that the
456    --                   resulting program is self-consistent.
457    --
458    --                   If a source file has been edited since it was last
459    --                   compiled and you specify the NONE keyword, the binder
460    --                   will not detect that the object file is out of date
461    --                   with the source file.
462    --
463    --                   This is the same as specifying /NOREAD_SOURCES.
464    --
465    --      AVAILABLE    Check that object files are consistent with one
466    --                   another and are consistent with any source files that
467    --                   can be located.
468
469    S_Bind_ReadX   : aliased constant S := "/NOREAD_SOURCES "               &
470                                             "-x";
471    --  NODOC (see /READ_SOURCES)
472
473    S_Bind_Rename  : aliased constant S := "/RENAME_MAIN=<"                 &
474                                             "-M>";
475    --        /RENAME_MAIN=xxx
476    --
477    --   Renames the generated main program from main to xxx.
478    --   This is useful in the case of some cross-building environments, where
479    --   the actual main program is separate from the one generated
480    --   by GNAT BIND.
481
482    S_Bind_Report  : aliased constant S := "/REPORT_ERRORS="                &
483                                             "VERBOSE "                     &
484                                                "-v "                       &
485                                             "BRIEF "                       &
486                                                "-b "                       &
487                                             "DEFAULT "                     &
488                                                "!-b,!-v";
489    --        /REPORT_ERRORS[=(keyword[,...])]
490    --           VERBOSE (D)
491    --           BRIEF
492    --           DEFAULT
493    --        /NOREPORT_ERRORS
494    --
495    --   With the DEFAULT keyword (which is not the default when the binder is
496    --   run from GNAT BIND) or the /NOREPORT_ERRORS qualifier, brief error
497    --   messages are generated to SYS$ERROR.  If the VERBOSE keyword is
498    --   present, a header is written to SYS$OUTPUT and any error messages are
499    --   directed to SYS$OUTPUT  All that is written to SYS$ERROR is a brief
500    --   summary message.
501    --
502    --   If the BRIEF keyword is specified, the binder will generate brief error
503    --   messages to SYS$ERROR even if verbose mode is specified. This is
504    --   relevant only when used together with the VERBOSE keyword or /VERBOSE
505    --   qualifier.
506
507    S_Bind_ReportX : aliased constant S := "/NOREPORT_ERRORS "              &
508                                             "!-b,!-v";
509    --  NODOC (see /REPORT_ERRORS)
510
511    S_Bind_Restr   : aliased constant S := "/RESTRICTION_LIST "             &
512                                             "-r";
513    --        /NORESTRICTION_LIST (D)
514    --        /RESTRICTION_LIST
515    --
516    --   Generate list of pragma Restrictions that could be applied to the
517    --   current unit. This is useful for code audit purposes, and also may be
518    --   used to improve code generation in some cases.
519
520    S_Bind_Return  : aliased constant S := "/RETURN_CODES="                 &
521                                             "POSIX "                       &
522                                                "!-X1 "                     &
523                                             "VMS "                         &
524                                                "-X1";
525    --        /RETURN_CODES=POSIX (D)
526    --        /RETURN_CODES=VMS
527    --
528    --   Specifies the style of default exit code returned. Must be used in
529    --   conjunction with and match the Link qualifier with same name.
530    --
531    --        POSIX (D)   Return Posix success (0) by default.
532    --
533    --        VMS         Return VMS success (1) by default.
534
535    S_Bind_RTS     : aliased constant S := "/RUNTIME_SYSTEM=|"              &
536                                             "--RTS=|";
537    --      /RUNTIME_SYSTEM=xxx
538    --
539    --    Binds against an alternate runtime system named xxx or RTS-xxx.
540
541    S_Bind_Search  : aliased constant S := "/SEARCH=*"                      &
542                                             "-I*";
543    --        /SEARCH=(directory[,...])
544    --
545    --   When looking for source or object files also look in directories
546    --   specified.
547    --
548    --   This is the same as specifying both /LIBRARY_SEARCH and /SOURCE_SEARCH
549    --   for a directory.
550
551    S_Bind_Shared  : aliased constant S := "/SHARED "                       &
552                                             "-shared,!-static";
553    --        /SHARED
554    --        /NOSHARED
555    --
556    --    Link against a shared GNAT run time when available.
557
558    S_Bind_Slice   : aliased constant S := "/TIME_SLICE=#"                  &
559                                             "-T#";
560    --        /TIME_SLICE=nnn
561    --
562    --   Set the time slice value to nnn milliseconds. A value of zero means no
563    --   time slicing and also indicates to the tasking run time to match as
564    --   close as possible to the annex D requirements of the RM.
565
566    S_Bind_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
567                                             "-aI*";
568    --        /SOURCE_SEARCH=(directory[,...])
569    --
570    --    When looking for source files also look in directories specified.
571
572    S_Bind_Static  : aliased constant S := "/STATIC "                       &
573                                             "-static,!-shared";
574    --        /STATIC
575    --        /NOSTATIC
576    --
577    --    Link against a static GNAT run time.
578
579    S_Bind_Store   : aliased constant S := "/STORE_TRACEBACKS "             &
580                                             "-E";
581    --        /STORE_TRACEBACKS (D)
582    --        /NOSTORE_TRACEBACKS
583    --
584    --   Store tracebacks in exception occurrences.
585    --   This is the default on VMS, with the zero-cost exception mechanism.
586    --   This qualifier has no impact, except when using the setjmp/longjmp
587    --   exception mechanism, with the GNAT COMPILE qualifier /LONGJMP_SETJMP.
588
589    S_Bind_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
590                                             "--subdirs=>";
591    --        /SUBDIRS=dir
592    --
593    --   The actual directories (object, exec, library, ...) are subdirectories
594    --   of the directory specified in the project file. If the subdirectory
595    --   does not exist, it is created automatically.
596
597    S_Bind_Time    : aliased constant S := "/TIME_STAMP_CHECK "             &
598                                             "!-t";
599    --      /TIME_STAMP_CHECK (D)
600    --
601    --   Time stamp errors will be treated as errors.
602    --
603    --      /NOTIME_STAMP_CHECK
604    --
605    --   Ignore time stamp errors. Any time stamp error messages are treated as
606    --   warning messages. This switch essentially disconnects the normal
607    --   consistency checking, and the resulting program may have undefined
608    --   semantics if inconsistent units are present.
609    --
610    --   This means that /NOTIME_STAMP_CHECK should be used only in unusual
611    --   situations, with extreme care.
612
613    S_Bind_Verbose : aliased constant S := "/VERBOSE "                      &
614                                             "-v";
615    --        /VERBOSE (D)
616    --        /NOVERBOSE
617    --
618    --   Equivalent to /REPORT_ERRORS=VERBOSE.
619
620    S_Bind_Warn    : aliased constant S := "/WARNINGS="                     &
621                                             "NORMAL "                      &
622                                                "!-ws,!-we "                &
623                                             "SUPPRESS "                    &
624                                                "-ws "                      &
625                                             "ERROR "                       &
626                                                "-we";
627    --      /WARNINGS[=(keyword[,...])]
628    --      /NOWARNINGS
629    --
630    --   The following keywords are supported:
631    --
632    --        NORMAL (D)    Print warning messages and treat them as warning.
633    --        SUPPRESS      Suppress all warning messages (same as /NOWARNINGS).
634    --        ERROR         Treat any warning messages as fatal errors
635
636    S_Bind_WarnX   : aliased constant S := "/NOWARNINGS "                   &
637                                             "-ws";
638    --  NODOC (see /WARNINGS)
639
640    S_Bind_Wide    : aliased constant S := "/WIDE_CHARACTER_ENCODING="      &
641                                             "BRACKETS "                    &
642                                                "-gnatWb "                  &
643                                             "HEX "                         &
644                                                "-gnatWh "                  &
645                                             "UPPER "                       &
646                                                "-gnatWu "                  &
647                                             "SHIFT_JIS "                   &
648                                                "-gnatWs "                  &
649                                             "UTF8 "                        &
650                                                "-gnatW8 "                  &
651                                             "EUC "                         &
652                                                "-gnatWe";
653    --        /NOWIDE_CHARACTER_ENCODING (D)
654    --        /WIDE_CHARACTER_ENCODING[=encode-type]
655    --
656    --   Specifies the mechanism used to encode wide characters, overriding
657    --   the default as set by the /WIDE_CHARACTER_ENCODING option for the
658    --   compilation of the main program.
659
660    S_Bind_Zero    : aliased constant S := "/ZERO_MAIN "                    &
661                                             "-z";
662    --        /NOZERO_MAIN (D)
663    --        /ZERO_MAIN
664    --
665    --   Normally the binder checks that the unit name given on the command line
666    --   corresponds to a suitable main subprogram. When /ZERO_MAIN is used,
667    --   a list of ALI files can be given, and the execution of the program
668    --   consists of elaboration of these units in an appropriate order.
669
670    Bind_Switches : aliased constant Switches :=
671                      (S_Bind_Add     'Access,
672                       S_Bind_Bind    'Access,
673                       S_Bind_Build   'Access,
674                       S_Bind_Current 'Access,
675                       S_Bind_Debug   'Access,
676                       S_Bind_DebugX  'Access,
677                       S_Bind_Elab    'Access,
678                       S_Bind_Error   'Access,
679                       S_Bind_Ext     'Access,
680                       S_Bind_Follow  'Access,
681                       S_Bind_Force   'Access,
682                       S_Bind_Help    'Access,
683                       S_Bind_Init    'Access,
684                       S_Bind_Leap    'Access,
685                       S_Bind_Library 'Access,
686                       S_Bind_Linker  'Access,
687                       S_Bind_Main    'Access,
688                       S_Bind_Mess    'Access,
689                       S_Bind_Nostinc 'Access,
690                       S_Bind_Nostlib 'Access,
691                       S_Bind_No_Time 'Access,
692                       S_Bind_Object  'Access,
693                       S_Bind_Order   'Access,
694                       S_Bind_Output  'Access,
695                       S_Bind_OutputX 'Access,
696                       S_Bind_Pess    'Access,
697                       S_Bind_Project 'Access,
698                       S_Bind_Read    'Access,
699                       S_Bind_ReadX   'Access,
700                       S_Bind_Rename  'Access,
701                       S_Bind_Report  'Access,
702                       S_Bind_ReportX 'Access,
703                       S_Bind_Restr   'Access,
704                       S_Bind_Return  'Access,
705                       S_Bind_RTS     'Access,
706                       S_Bind_Search  'Access,
707                       S_Bind_Shared  'Access,
708                       S_Bind_Slice   'Access,
709                       S_Bind_Source  'Access,
710                       S_Bind_Static  'Access,
711                       S_Bind_Store   'Access,
712                       S_Bind_Subdirs 'Access,
713                       S_Bind_Time    'Access,
714                       S_Bind_Verbose 'Access,
715                       S_Bind_Warn    'Access,
716                       S_Bind_WarnX   'Access,
717                       S_Bind_Wide    'Access,
718                       S_Bind_Zero    'Access);
719
720    -----------------------------
721    -- Switches for GNAT CHECK --
722    -----------------------------
723
724    S_Check_Add    : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
725                                             "-aP*";
726    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
727    --
728    --   Add directories to the project search path.
729
730    S_Check_All    : aliased constant S := "/ALL "                          &
731                                             "-a";
732    --        /NOALL (D)
733    --        /ALL
734    --
735    --   Also check the components of the GNAT run time and process the needed
736    --  components of the GNAT RTL when building and analyzing the global
737    --  structure for checking the global rules.
738
739    S_Check_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'    &
740                                              "-X" & '"';
741    --       /EXTERNAL_REFERENCE="name=val"
742    --
743    --   Specifies an external reference to the project manager. Useful only if
744    --   /PROJECT_FILE is used.
745    --
746    --   Example:
747    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
748
749    S_Check_Files  : aliased constant S := "/FILES=@"                       &
750                                              "-files=@";
751    --      /FILES=filename
752    --
753    --   Take as arguments the files that are listed in the specified
754    --   text file.
755
756    S_Check_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
757                                             "-eL";
758    --        /NOFOLLOW_LINKS_FOR_FILES (D)
759    --        /FOLLOW_LINKS_FOR_FILES
760    --
761    --    Follow links when parsing project files
762
763    S_Check_Help   : aliased constant S := "/HELP "                         &
764                                             "-h";
765    --        /NOHELP (D)
766    --        /HELP
767    --
768    --   Print information about currently implemented checks.
769
770    S_Check_Locs   : aliased constant S := "/LOCS "                         &
771                                             "-l";
772    --        /NOLOCS (D)
773    --        /LOCS
774    --
775    --   Use full source locations references in the report file.
776
777    S_Diagnosis   : aliased constant S := "/DIAGNOSTIC_LIMIT=#"             &
778                                             "-m#";
779    --        /DIAGNOSTIC_LIMIT=500 (D)
780    --        /DIAGNOSTIC_LIMIT=nnn
781    --
782    --   NNN is a decimal integer in the range of 1 to 1000 and limits the
783    --   number of diagnostic messages to be generated into Stdout to that
784    --   number.  Once that number has been reached, gnatcheck stops
785    --   to print out diagnoses into Stderr. If NNN is equal to 0, this means
786    --   that there is no limit on the number of diagnoses in Stdout.
787
788    S_Check_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="       &
789                                              "DEFAULT "                    &
790                                                 "-vP0 "                    &
791                                              "MEDIUM "                     &
792                                                 "-vP1 "                    &
793                                              "HIGH "                       &
794                                                 "-vP2";
795    --        /MESSAGES_PROJECT_FILE[=messages-option]
796    --
797    --   Specifies the "verbosity" of the parsing of project files.
798    --   messages-option may be one of the following:
799    --
800    --      DEFAULT (D)  No messages are output if there is no error or warning.
801    --
802    --      MEDIUM       A small number of messages are output.
803    --
804    --      HIGH         A great number of messages are output, most of them not
805    --                   being useful for the user.
806
807    S_Check_Project : aliased constant S := "/PROJECT_FILE=<"               &
808                                              "-P>";
809    --        /PROJECT_FILE=filename
810    --
811    --   Specifies the main project file to be used. The project files rooted
812    --   at the main project file will be parsed before the invocation of the
813    --   gnatcheck. The source directories to be searched will be communicated
814    --   to gnatcheck through logical name ADA_PRJ_INCLUDE_FILE.
815
816    S_Check_Quiet  : aliased constant S := "/QUIET "                        &
817                                             "-q";
818    --        /NOQUIET (D)
819    --        /QUIET
820    --
821    --   Work quietly, only output warnings and errors.
822
823    S_Check_Time     : aliased constant S := "/TIME "                       &
824                                                "-t";
825    --        /NOTIME (D)
826    --        /TIME
827    --
828    --   Print out execution time
829
830    S_Check_Log      : aliased constant S := "/LOG "                        &
831                                                "-log";
832    --        /NOLOG (D)
833    --        /LOG
834    --
835    --   Duplicate all the output sent to Stderr into a log file.
836
837    S_Check_Sections : aliased constant S := "/SECTIONS="                   &
838                                             "DEFAULT "                     &
839                                                "-s123 "                    &
840                                             "COMPILER_STYLE "              &
841                                                "-s1 "                      &
842                                             "BY_RULES "                    &
843                                                "-s2 "                      &
844                                             "BY_FILES_BY_RULES "           &
845                                                "-s3";
846    --        /SECTIONS[=section-option, section-option, ...]
847    --
848    --   Specify what sections should be included into the report file.
849    --   By default, all three section (diagnoses in the format corresponding
850    --   to compiler error and warning messages, diagnoses grouped by rules and
851    --   then - by files, diagnoses grouped by files and then - by rules) are
852    --   included in the report file.
853    --
854    --   section-option may be one of the following:
855    --
856    --      COMPILER_STYLE      Include diagnostics in compile-style format
857    --                          (diagnoses are grouped by files, for each file
858    --                          they are ordered according to the references
859    --                          into the source)
860    --      BY_RULES            Include diagnostics grouped first by rules and
861    --                          then by files
862    --      BY_FILES_BY_RULES   Include diagnostics grouped first by files and
863    --                          then by rules
864    --
865    --   If one of these options is specified, then the report file contains
866    --   only sections set by these options
867
868    S_Check_Short  : aliased constant S := "/SHORT "                        &
869                                             "-s";
870    --        /NOSHORT (D)
871    --        /SHORT
872    --
873    --   Generate a short form of the report file.
874
875    S_Check_Subdirs : aliased constant S := "/SUBDIRS=<"                    &
876                                              "--subdirs=>";
877    --        /SUBDIRS=dir
878    --
879    --   The actual directories (object, exec, library, ...) are subdirectories
880    --   of the directory specified in the project file. If the subdirectory
881    --   does not exist, it is created automatically.
882
883    S_Check_Verb   : aliased constant S := "/VERBOSE "                      &
884                                             "-v";
885    --        /NOVERBOSE (D)
886    --        /VERBOSE
887    --
888    --   The version number and copyright notice are output, as well as exact
889    --   copies of the gnat1 commands spawned to obtain the chop control
890    --   information.
891
892    S_Check_Out  : aliased constant S := "/OUTPUT=@"                &
893                                              "-o@";
894    --        /OUTPUT=filename
895    --
896    --   Specify the name of the output file.
897
898    Check_Switches : aliased constant Switches :=
899                       (S_Check_Add      'Access,
900                        S_Check_All      'Access,
901                        S_Diagnosis      'Access,
902                        S_Check_Ext      'Access,
903                        S_Check_Files    'Access,
904                        S_Check_Follow   'Access,
905                        S_Check_Help     'Access,
906                        S_Check_Locs     'Access,
907                        S_Check_Mess     'Access,
908                        S_Check_Project  'Access,
909                        S_Check_Quiet    'Access,
910                        S_Check_Time     'Access,
911                        S_Check_Log      'Access,
912                        S_Check_Sections 'Access,
913                        S_Check_Short    'Access,
914                        S_Check_Subdirs  'Access,
915                        S_Check_Verb     'Access,
916                        S_Check_Out      'Access);
917
918    ----------------------------
919    -- Switches for GNAT CHOP --
920    ----------------------------
921
922    S_Chop_Comp   : aliased constant S := "/COMPILATION "                   &
923                                             "-c";
924    --        /NOCOMPILATION (D)
925    --        /COMPILATION
926    --
927    --   Compilation mode, handle configuration pragmas strictly according to
928    --   RM rules.
929
930    S_Chop_File   : aliased constant S := "/FILE_NAME_MAX_LENGTH=#"         &
931                                             "-k#";
932    --        /FILE_NAME_MAX_LENGTH[=nnn]
933    --
934    --   Limit generated file names to NNN (default of 8) characters. This is
935    --   useful if the resulting set of files is required to be interoperable
936    --   with systems like MS-DOS which limit the length of file names.
937
938    S_Chop_Help   : aliased constant S := "/HELP "                          &
939                                             "-h";
940    --        /NOHELP (D)
941    --        /HELP
942    --
943    --   Print usage information.
944
945    S_Chop_Over   : aliased constant S := "/OVERWRITE "                     &
946                                             "-w";
947    --        /NOOVERWRITE (D)
948    --        /OVERWRITE
949    --
950    --   Overwrite existing file names. Normally GNAT CHOP regards it as a
951    --   fatal error situation if there is already a file with the same name as
952    --   a file it would otherwise output. The /OVERWRITE qualifier bypasses
953    --   this check, and any such existing files will be silently overwritten.
954
955    S_Chop_Pres   : aliased constant S := "/PRESERVE "                      &
956                                             "-p";
957    --        /NOPRESERVE (D)
958    --        /PRESERVE
959    --
960    --   Causes the file modification time stamp of the input file to be
961    --   preserved and used for the time stamp of the output file(s). This may
962    --   be useful for preserving coherency of time stamps in an environment
963    --   where gnatchop is used as part of a standard build process.
964
965    S_Chop_Quiet  : aliased constant S := "/QUIET "                         &
966                                             "-q";
967    --        /NOQUIET (D)
968    --        /QUIET
969    --
970    --   Work quietly, only output warnings and errors.
971
972    S_Chop_Ref    : aliased constant S := "/REFERENCE "                     &
973                                             "-r";
974    --        /NOREFERENCE (D)
975    --        /REFERENCE
976    --
977    --   Generate "Source_Reference" pragmas. Use this qualifier if the output
978    --   files are regarded as temporary and development is to be done in terms
979    --   of the original unchopped file. The /REFERENCE qualifier causes
980    --   "Source_Reference" pragmas to be inserted into each of the generated
981    --   files to refers back to the original file name and line number.  The
982    --   result is that all error messages refer back to the original unchopped
983    --   file.
984    --
985    --   In addition, the debugging information placed into the object file
986    --   (when the /DEBUG qualifier of GNAT COMPILE or GNAT MAKE is specified)
987    --   also refers back to this original file so that tools like profilers
988    --   and debuggers will give information in terms of the original unchopped
989    --   file.
990
991    S_Chop_Verb   : aliased constant S := "/VERBOSE "                       &
992                                             "-v";
993    --        /NOVERBOSE (D)
994    --        /VERBOSE
995    --
996    --   The version number and copyright notice are output, as well as exact
997    --   copies of the gnat1 commands spawned to obtain the chop control
998    --   information.
999
1000    Chop_Switches : aliased constant Switches :=
1001                      (S_Chop_Comp   'Access,
1002                       S_Chop_File   'Access,
1003                       S_Chop_Help   'Access,
1004                       S_Chop_Over   'Access,
1005                       S_Chop_Pres   'Access,
1006                       S_Chop_Quiet  'Access,
1007                       S_Chop_Ref    'Access,
1008                       S_Chop_Verb   'Access);
1009
1010    -----------------------------
1011    -- Switches for GNAT CLEAN --
1012    -----------------------------
1013
1014    S_Clean_Add    : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
1015                                             "-aP*";
1016    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
1017    --
1018    --   Add directories to the project search path.
1019
1020    S_Clean_Compil  : aliased constant S := "/COMPILER_FILES_ONLY "         &
1021                                              "-c";
1022    --        /NOCOMPILER_FILES_ONLY (D)
1023    --        /COMPILER_FILES_ONLY
1024    --
1025    --   Only attempt to delete the files produced by the compiler, not those
1026    --   produced by the binder or the linker. The files that are not to be
1027    --   deleted are library files, interface copy files, binder generated files
1028    --   and executable files.
1029
1030    S_Clean_Current : aliased constant S := "/CURRENT_DIRECTORY "           &
1031                                             "!-I-";
1032    --        /CURRENT_DIRECTORY (D)
1033    --
1034    --   Look for ALI or object files in the directory where GNAT CLEAN was
1035    --   invoked.
1036    --
1037    --        /NOCURRENT_DIRECTORY
1038    --
1039    --   Do not look for ALI or object files in the directory where GNAT CLEAN
1040    --   was invoked.
1041
1042    S_Clean_Delete  : aliased constant S := "/DELETE "                      &
1043                                             "!-n";
1044    --        /DELETE (D)
1045    --
1046    --   Delete the files that are not read-only.
1047    --
1048    --        /NODELETE
1049    --
1050    --   Informative-only mode. Do not delete any files. Output the list of the
1051    --   files that would have been deleted if this switch was not specified.
1052
1053    S_Clean_Dirobj  : aliased constant S := "/DIRECTORY_OBJECTS=@"          &
1054                                             "-D@";
1055    --        /DIRECTORY_OBJECTS=<file>
1056    --
1057    --   Find the object files and .ALI files in <file>.
1058    --   This qualifier is not compatible with /PROJECT_FILE.
1059
1060    S_Clean_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'    &
1061                                             "-X" & '"';
1062    --        /EXTERNAL_REFERENCE="name=val"
1063    --
1064    --   Specifies an external reference to the project manager. Useful only if
1065    --   /PROJECT_FILE is used.
1066    --
1067    --   Example:
1068    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
1069
1070    S_Clean_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
1071                                             "-eL";
1072    --        /NOFOLLOW_LINKS_FOR_FILES (D)
1073    --        /FOLLOW_LINKS_FOR_FILES
1074    --
1075    --    Follow links when parsing project files
1076
1077    S_Clean_Full    : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES " &
1078                                             "-F";
1079    --        /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
1080    --        /FULL_PATH_IN_BRIEF_MESSAGES
1081    --
1082    --   When using project files, if some errors or warnings are detected
1083    --   during parsing and verbose mode is not in effect (no use of qualifier
1084    --   /VERBOSE), then error lines start with the full path name of the
1085    --   project file, rather than its simple file name.
1086
1087    S_Clean_Help    : aliased constant S := "/HELP "                        &
1088                                             "-h";
1089    --        /NOHELP (D)
1090    --        /HELP
1091    --
1092    --   Output a message explaining the usage of gnatclean.
1093
1094    S_Clean_Index   : aliased constant S := "/SOURCE_INDEX=#"               &
1095                                              "-i#";
1096    --        /SOURCE_INDEX=nnn
1097    --
1098    --   Specifies the index of the units in the source file
1099    --   By default, source files are mono-unit and there is no index
1100
1101    S_Clean_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="       &
1102                                             "DEFAULT "                     &
1103                                                "-vP0 "                     &
1104                                             "MEDIUM "                      &
1105                                                "-vP1 "                     &
1106                                             "HIGH "                        &
1107                                                "-vP2";
1108    --        /MESSAGES_PROJECT_FILE[=messages-option]
1109    --
1110    --   Specifies the "verbosity" of the parsing of project files.
1111    --   messages-option may be one of the following:
1112    --
1113    --      DEFAULT (D) No messages are output if there is no error or warning.
1114    --
1115    --      MEDIUM      A small number of messages are output.
1116    --
1117    --      HIGH        A great number of messages are output, most of them not
1118    --                  being useful for the user.
1119
1120    S_Clean_Object  : aliased constant S := "/OBJECT_SEARCH=*"              &
1121                                             "-aO*";
1122    --        /OBJECT_SEARCH=(directory,...)
1123    --
1124    --   When searching for library and object files, look in the specified
1125    --   directories. The order in which library files are searched is the same
1126    --   as for MAKE.
1127
1128    S_Clean_Project : aliased constant S := "/PROJECT_FILE=<"               &
1129                                             "-P>";
1130    --        /PROJECT_FILE=filename
1131    --
1132    --   Specifies the main project file to be used. The project files rooted
1133    --   at the main project file will be parsed before the invocation of the
1134    --   compiler. The source and object directories to be searched will be
1135    --   communicated to gnatclean through logical names ADA_PRJ_INCLUDE_FILE
1136    --   and ADA_PRJ_OBJECTS_FILE.
1137
1138    S_Clean_Quiet   : aliased constant S := "/QUIET "                       &
1139                                             "-q";
1140    --        /NOQUIET (D)
1141    --        /QUIET
1142    --
1143    --   Quiet output. If there are no error, do not output anything, except in
1144    --   verbose mode (qualifier /VERBOSE) or in informative-only mode
1145    --  (qualifier /NODELETE).
1146
1147    S_Clean_Recurs  : aliased constant S := "/RECURSIVE "                   &
1148                                             "-r";
1149    --        /NORECURSIVE (D)
1150    --        /RECURSIVE
1151    --
1152    --   When a project file is specified (using switch -P), clean all imported
1153    --   and extended project files, recursively. If this qualifier is not
1154    --   specified, only the files related to the main project file are to be
1155    --   deleted. This qualifier has no effect if no project file is specified.
1156
1157    S_Clean_Search  : aliased constant S := "/SEARCH=*"                     &
1158                                             "-I*";
1159    --        /SEARCH=(directory,...)
1160    --
1161    --   Equivalent to /OBJECT_SEARCH=(directory,...).
1162
1163    S_Clean_Subdirs : aliased constant S := "/SUBDIRS=<"                    &
1164                                               "--subdirs=>";
1165    --        /SUBDIRS=dir
1166    --
1167    --   The actual directories (object, exec, library, ...) are subdirectories
1168    --   of the directory specified in the project file. If the subdirectory
1169    --   does not exist, it is created automatically.
1170
1171    S_Clean_Verbose : aliased constant S := "/VERBOSE "                     &
1172                                             "-v";
1173    --        /NOVERBOSE (D)
1174    --        /VERBOSE
1175    --
1176    --   Verbose mode.
1177
1178    Clean_Switches : aliased constant Switches :=
1179                       (S_Clean_Add    'Access,
1180                        S_Clean_Compil 'Access,
1181                        S_Clean_Current'Access,
1182                        S_Clean_Delete 'Access,
1183                        S_Clean_Dirobj 'Access,
1184                        S_Clean_Ext    'Access,
1185                        S_Clean_Follow 'Access,
1186                        S_Clean_Full   'Access,
1187                        S_Clean_Help   'Access,
1188                        S_Clean_Index  'Access,
1189                        S_Clean_Mess   'Access,
1190                        S_Clean_Object 'Access,
1191                        S_Clean_Project'Access,
1192                        S_Clean_Quiet  'Access,
1193                        S_Clean_Recurs 'Access,
1194                        S_Clean_Search 'Access,
1195                        S_Clean_Subdirs'Access,
1196                        S_Clean_Verbose'Access);
1197
1198    -------------------------------
1199    -- Switches for GNAT COMPILE --
1200    -------------------------------
1201
1202    S_GCC_Ada_83  : aliased constant S := "/83 "                            &
1203                                              "-gnat83";
1204    --        /NO83 (D)
1205    --        /83
1206    --
1207    --   Although GNAT is primarily an Ada 95 compiler, it accepts this
1208    --   qualifier to specify that an Ada 83 mode program is being compiled. If
1209    --   you specify this qualifier, GNAT rejects Ada 95 extensions and applies
1210    --   Ada 83 semantics. It is not possible to guarantee this qualifier does
1211    --   a perfect job; for example, some subtle tests of pathological cases,
1212    --   such as are found in ACVC tests that have been removed from the ACVC
1213    --   suite for Ada 95, may not compile correctly. However for practical
1214    --   purposes, using this qualifier should ensure that programs that
1215    --   compile correctly under the /83 qualifier can be ported reasonably
1216    --   easily to an Ada 83 compiler. This is the main use of this qualifier.
1217    --
1218    --   With few exceptions (most notably the need to use "<>" on
1219    --   unconstrained generic formal parameters), it is not necessary to use
1220    --   this qualifier switch when compiling Ada 83 programs, because, with
1221    --   rare and obscure exceptions, Ada 95 is upwardly compatible with Ada
1222    --   83. This means that a correct Ada 83 program is usually also a correct
1223    --   Ada 95 program.
1224
1225    S_GCC_Ada_95  : aliased constant S := "/95 "                            &
1226                                              "-gnat95";
1227    --        /95 (D)
1228    --
1229    --   Allows GNAT to recognize the full range of Ada 95 constructs.
1230    --   This is the normal default for GNAT Pro.
1231
1232    S_GCC_Ada_05 : aliased constant S := "/05 "                             &
1233                                              "-gnat05";
1234    --        /05 (D)
1235    --
1236    --   Allows GNAT to recognize all implemented proposed Ada 2005
1237    --   extensions. See features file for list of implemented features.
1238
1239    S_GCC_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"       &
1240                                             "-aP*";
1241    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
1242    --
1243    --   Add directories to the project search path.
1244
1245    S_GCC_Asm     : aliased constant S := "/ASM "                           &
1246                                              "-S,!-c";
1247    --        /NOASM (D)
1248    --        /ASM
1249    --
1250    --   Use to cause the assembler source file to be generated, using S as the
1251    --   filetype, instead of the object file. This may be useful if you need
1252    --   to examine the generated assembly code.
1253
1254    S_GCC_AValid  : aliased constant S := "/ASSUME_VALID "                  &
1255                                              "-gnatB";
1256    --        /NO_ASSUME_VALID (D)
1257    --        /ASSUME_VALID
1258    --
1259    --   Use to tell the compiler to assume that all objects have valid values
1260    --   except those occurring as prefixes to 'Valid attributes. In the default
1261    --   mode, the compiler assumes that values may be invalid unless it can
1262    --   be sure that they are valid, and code is generated to allow for this
1263    --   possibility. The use of /ASSUME_VALID will improve the code.
1264
1265    S_GCC_Checks  : aliased constant S := "/CHECKS="                        &
1266                                              "FULL "                       &
1267                                                 "-gnato,!-gnatE,!-gnatp "  &
1268                                              "OVERFLOW "                   &
1269                                                 "-gnato "                  &
1270                                              "ELABORATION "                &
1271                                                 "-gnatE "                  &
1272                                              "ASSERTIONS "                 &
1273                                                 "-gnata "                  &
1274                                              "DEFAULT "                    &
1275                                                 "!-gnato,!-gnatp "         &
1276                                              "STACK "                      &
1277                                                 "-fstack-check "           &
1278                                              "SUPPRESS_ALL "               &
1279                                                 "-gnatp";
1280    --        /NOCHECKS
1281    --        /CHECKS[=(keyword[,...])]
1282    --
1283    --   If you compile with the default options, GNAT will insert many runtime
1284    --   checks into the compiled code, including code that performs range
1285    --   checking against constraints, but not arithmetic overflow checking for
1286    --   integer operations (including division by zero) or checks for access
1287    --   before elaboration on subprogram calls.  All other runtime checks, as
1288    --   required by the Ada 95 Reference Manual, are generated by default.
1289    --
1290    --   You may specify one or more of the following keywords to the /CHECKS
1291    --   qualifier to modify this behavior:
1292    --
1293    --     DEFAULT       The behavior described above. This is the default
1294    --                   if the /CHECKS qualifier is not present on the
1295    --                   command line. Same as /NOCHECKS.
1296    --
1297    --     OVERFLOW      Enables overflow checking for integer operations and
1298    --                   checks for access before elaboration on subprogram
1299    --                   calls. This causes GNAT to generate slower and larger
1300    --                   executable programs by adding code to check for both
1301    --                   overflow and division by zero (resulting in raising
1302    --                   "Constraint_Error" as required by Ada semantics).
1303    --                   Similarly, GNAT does not generate elaboration check
1304    --                   by default, and you must specify this keyword to
1305    --                   enable them.
1306    --
1307    --                   Note that this keyword does not affect the code
1308    --                   generated for any floating-point operations; it
1309    --                   applies only to integer operations. For floating-point,
1310    --                   GNAT has the "Machine_Overflows" attribute set to
1311    --                   "False" and the normal mode of operation is to generate
1312    --                   IEEE NaN and infinite values on overflow or invalid
1313    --                   operations (such as dividing 0.0 by 0.0).
1314    --
1315    --     ELABORATION   Enables dynamic checks for access-before-elaboration
1316    --                   on subprogram calls and generic instantiations.
1317    --
1318    --     ASSERTIONS    The pragmas "Assert" and "Debug" normally have no
1319    --                   effect and are ignored. This keyword causes "Assert"
1320    --                   and "Debug" pragmas to be activated, as well as
1321    --                   "Check", "Precondition" and "Postcondition" pragmas.
1322    --
1323    --     SUPPRESS_ALL  Suppress all runtime checks as though you have "pragma
1324    --                   Suppress (all_checks)" in your source. Use this switch
1325    --                   to improve the performance of the code at the expense
1326    --                   of safety in the presence of invalid data or program
1327    --                   bugs.
1328    --
1329    --     DEFAULT       Suppress the effect of any option OVERFLOW or
1330    --                   ASSERTIONS.
1331    --
1332    --     FULL (D)      Similar to OVERFLOW, but suppress the effect of any
1333    --                   option ELABORATION or SUPPRESS_ALL.
1334    --
1335    --   These keywords only control the default setting of the checks.  You
1336    --   may modify them using either "Suppress" (to remove checks) or
1337    --   "Unsuppress" (to add back suppressed checks) pragmas in your program
1338    --   source.
1339
1340    S_GCC_ChecksX : aliased constant S := "/NOCHECKS "                      &
1341                                              "-gnatp,!-gnato,!-gnatE";
1342    --  NODOC (see /CHECKS)
1343
1344    S_GCC_Compres : aliased constant S := "/COMPRESS_NAMES "                &
1345                                              "-gnatC";
1346    --        /NOCOMPRESS_NAMES (D)
1347    --        /COMPRESS_NAMES
1348    --
1349    --   Compress debug information and external symbol name table entries.
1350    --   In the generated debugging information, and also in the case of long
1351    --   external names, the compiler uses a compression mechanism if the name
1352    --   is very long.  This compression method uses a checksum, and avoids
1353    --   trouble on some operating systems which have difficulty with very long
1354    --   names.
1355
1356    S_GCC_Config  : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<"   &
1357                                              "-gnatec>";
1358    --        /CONFIGURATION_PRAGMAS_FILE=file
1359    --
1360    --   Specify a configuration pragmas file that need to be taken into account
1361
1362    S_GCC_Current : aliased constant S := "/CURRENT_DIRECTORY "             &
1363                                              "!-I-";
1364    --        /CURRENT_DIRECTORY (D)
1365    --        /NOCURRENT_DIRECTORY
1366    --
1367    --   Look for source files in the default directory.
1368
1369    S_GCC_Data    : aliased constant S := "/DATA_PREPROCESSING=<"           &
1370                                             "-gnatep>";
1371    --        /DATA_PREPROCESSING=file_name
1372    --
1373    --   This qualifier indicates to the compiler the file name (without
1374    --   directory information) of the preprocessor data file to use.
1375    --   The preprocessor data file should be found in the source directories.
1376    --
1377    --   A preprocessing data file is a text file with significant lines
1378    --   indicating how should be preprocessed either a specific source or all
1379    --   sources not mentioned in other lines. A significant line is a non
1380    --   empty, non comment line. Comments are similar to Ada comments.
1381    --
1382    --  Each significant line starts with either a literal string or the
1383    --  character '*'. A literal string is the file name (without directory
1384    --  information) of the source to preprocess. A character '*' indicates the
1385    --  preprocessing for all the sources that are not specified explicitly on
1386    --  other lines. It is an error to have two lines with the same file name
1387    --  or two lines starting with the character '*'.
1388    --
1389    --  After the file name or the character '*', another optional literal
1390    --  string indicating the file name of the definition file to be used for
1391    --  preprocessing. (see 15.3 Form of Definitions File. The definition files
1392    --  are found by the compiler in one of the source directories. In some
1393    --  cases, when compiling a source in a directory other than the current
1394    --  directory, if the definition file is in the current directory, it may
1395    --  be necessary to add the current directory as a source directory through
1396    --  qualifier "/SEARCH=[]", otherwise the compiler would not find the
1397    --  definition file.
1398    --
1399    --  Then, optionally, switches similar to those of gnatprep may be found.
1400    --  Those switches are:
1401    --
1402    --   -b              Causes both preprocessor lines and the lines deleted by
1403    --                   preprocessing to be replaced by blank lines, preserving
1404    --                   the line number. This switch is always implied;
1405    --                   however, if specified after `-c' it cancels the effect
1406    --                   of `-c'.
1407    --
1408    --   -c              Causes both preprocessor lines and the lines deleted by
1409    --                   preprocessing to be retained as comments marked with
1410    --                   the special string "--! ".
1411    --
1412    --   -Dsymbol=value  Define or redefine a symbol, associated with value.
1413    --                   A symbol is an Ada identifier, or an Ada reserved word,
1414    --                   with the exception of "if", "else", "elsif", "end",
1415    --                   "and", "or" and "then". value is either a literal
1416    --                   string, an Ada identifier or any Ada reserved word.
1417    --                   A symbol declared with this switch replaces a symbol
1418    --                   with the same name defined in a definition file.
1419    --
1420    --   -s              Causes a sorted list of symbol names and values to be
1421    --                   listed on the standard output file.
1422    --
1423    --   -u              Causes undefined symbols to be treated as having the
1424    --                   value FALSE in the context of a preprocessor test.
1425    --                   In the absence of this option, an undefined symbol
1426    --                   in a #if or #elsif test will be treated as an error.
1427    --
1428    --   Examples of valid lines in a preprocessor data file:
1429    --
1430    --     "toto.adb"  "prep.def" -u
1431    --     --  preprocess "toto.adb", using definition file "prep.def",
1432    --     --  undefined symbol are False.
1433    --
1434    --     * -c -DVERSION=V101
1435    --     --  preprocess all other sources without a definition file;
1436    --     --  suppressed lined are commented; symbol VERSION has the value
1437    --     --  V101.
1438    --
1439    --     "titi.adb" "prep2.def" -s
1440    --     --  preprocess "titi.adb", using definition file "prep2.def";
1441    --     --  list all symbols with their values.
1442
1443    S_GCC_Debug   : aliased constant S := "/DEBUG="                         &
1444                                             "SYMBOLS "                     &
1445                                                "-g2 "                      &
1446                                             "NOSYMBOLS "                   &
1447                                                "!-g2 "                     &
1448                                             "TRACEBACK "                   &
1449                                                "-g1 "                      &
1450                                             "ALL "                         &
1451                                                "-g3 "                      &
1452                                             "NONE "                        &
1453                                                "-g0 "                      &
1454                                             "NOTRACEBACK "                 &
1455                                                "-g0";
1456    --        /DEBUG[=debug-level]
1457    --        /NODEBUG
1458    --
1459    --   Specifies how much debugging information is to be included in
1460    --   the resulting object fie.
1461    --
1462    --   'debug-level' is one of the following:
1463    --
1464    --        SYMBOLS (D)    Include both debugger symbol records and traceback
1465    --                       in the object file.
1466    --
1467    --        ALL            Include debugger symbol records, traceback plus
1468    --                       extra debug information in the object file.
1469    --
1470    --        NONE           Excludes both debugger symbol records and traceback
1471    --                       from the object file.  Same as /NODEBUG.
1472    --
1473    --        TRACEBACK      Includes only traceback records in the object
1474    --                       file. This is the default when /DEBUG is not used.
1475
1476    S_GCC_DebugX  : aliased constant S := "/NODEBUG "                       &
1477                                              "!-g";
1478    --  NODOC (see /Debug)
1479
1480    S_GCC_Dist    : aliased constant S := "/DISTRIBUTION_STUBS="            &
1481                                             "RECEIVER "                    &
1482                                                "-gnatzr "                  &
1483                                             "CALLER "                      &
1484                                               "-gnatzc";
1485    --        /NODISTRIBUTION_STUBS (D)
1486    --        /DISTRIBUTION_STUBS[=dist-opt]
1487    --
1488    --   'dist-opt' is either RECEIVER (the default) or SENDER and indicates
1489    --   that stubs for use in distributed programs (see the Distributed
1490    --   Systems Annex of the Ada RM) should be generated.
1491
1492    S_GCC_DistX   : aliased constant S := "/NODISTRIBUTION_STUBS "          &
1493                                             "!-gnatzr,!-gnatzc";
1494    --  NODOC (see /DISTRIBUTION_STUBS)
1495
1496    S_GCC_Error   : aliased constant S := "/ERROR_LIMIT=#"                  &
1497                                             "-gnatm#";
1498    --        /NOERROR_LIMIT (D)
1499    --        /ERROR_LIMIT=nnn
1500    --
1501    --   NNN is a decimal integer in the range of 1 to 999999 and limits the
1502    --   number of error messages to be generated to that number.  Once that
1503    --   number has been reached, the compilation is abandoned.
1504    --   Specifying 999999 is equivalent to /NOERROR_LIMIT.
1505
1506    S_GCC_ErrorX  : aliased constant S := "/NOERROR_LIMIT "                 &
1507                                             "-gnatm999999";
1508    --  NODOC (see /ERROR_LIMIT)
1509
1510    S_GCC_Expand  : aliased constant S := "/EXPAND_SOURCE "                 &
1511                                             "-gnatG";
1512    --        /NOEXPAND_SOURCE (D)
1513    --        /EXPAND_SOURCE
1514    --
1515    --   Produces a listing of the expanded code in Ada source form. For
1516    --   example, all tasking constructs are reduced to appropriate run-time
1517    --   library calls. The maximum line length for the listing 72.
1518
1519    S_GCC_Lexpand : aliased constant S := "/LEXPAND_SOURCE=#"               &
1520                                             "-gnatG#";
1521    --        /LEXPAND_SOURCE=nnn
1522    --
1523    --   Produces a listing of the expanded code in Ada source form. For
1524    --   example, all tasking constructs are reduced to appropriate run-time
1525    --   library calls. The parameter is the maximum line length for the
1526    --   listing.
1527
1528    S_GCC_Extend  : aliased constant S := "/EXTENSIONS_ALLOWED "            &
1529                                             "-gnatX";
1530    --        /NOEXTENSIONS_ALLOWED (D)
1531    --        /EXTENSIONS_ALLOWED
1532    --
1533    --   GNAT specific language extensions allowed.
1534
1535    S_GCC_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'      &
1536                                             "-X" & '"';
1537    --        /EXTERNAL_REFERENCE="name=val"
1538    --
1539    --   Specifies an external reference to the project manager. Useful only if
1540    --   /PROJECT_FILE is used.
1541    --
1542    --   Example:
1543    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
1544
1545    S_GCC_File    : aliased constant S := "/FILE_NAME_MAX_LENGTH=#"         &
1546                                             "-gnatk#";
1547    --        /FILE_NAME_MAX_LENGTH=nnn
1548    --
1549    --   Activates file name "krunching". NNN, a decimal integer in the range
1550    --   1-999, indicates the maximum allowable length of a file name (not
1551    --   including the ADS or ADB filetype. The default is not to enable file
1552    --   name krunching.
1553
1554    S_GCC_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
1555                                             "-eL";
1556    --        /NOFOLLOW_LINKS_FOR_FILES (D)
1557    --        /FOLLOW_LINKS_FOR_FILES
1558    --
1559    --    Follow links when parsing project files
1560
1561    S_GCC_Force   : aliased constant S := "/FORCE_ALI "                     &
1562                                             "-gnatQ";
1563    --        /NOFORCE_ALI (D)
1564    --        /FORCE_ALI
1565    --
1566    --   In normal operation mode, the .ALI file is not generated if any
1567    --   illegalities are detected in the program. The use of this qualifier
1568    --   forces generation of the .ALI file. This file is marked as being
1569    --   in error, so it cannot be used for binding purposes, but it does
1570    --   contain reasonably complete cross-reference information, and thus may
1571    --   be useful for use by tools (e.g. semantic browsing tools or integrated
1572    --   development environments) that are driven from the .ALI file.
1573
1574    S_GCC_Full    : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES "   &
1575                                             "-gnatef";
1576    --        /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
1577    --        /FULL_PATH_IN_BRIEF_MESSAGES
1578    --
1579    --   When using project files, if some errors or warnings are detected
1580    --   during parsing and verbose mode is not in effect (no use of qualifier
1581    --   /VERBOSE), then error lines start with the full path name of the
1582    --   project file, rather than its simple file name.
1583
1584    S_GCC_Generate : aliased constant S := "/GENERATE_PROCESSED_SOURCE "    &
1585                                              "-gnateG";
1586    --        /NOGENERATE_PROCESSED_SOURCE (D)
1587    --        /GENERATE_PROCESSED_SOURCE
1588    --
1589    --        Generate a file <source>_prep if the integrated preprocessing
1590    --        is modifying the source text.
1591
1592    S_GCC_GNAT    : aliased constant S := "/GNAT_INTERNAL "                 &
1593                                             "-gnatg";
1594    --        /NOGNAT_INTERNAL (D)
1595    --        /GNAT_INTERNAL
1596    --
1597    --        Internal GNAT implementation mode. This should not be used for
1598    --        applications programs, it is intended only for use by the compiler
1599    --        and its run-time library. For documentation, see the GNAT sources.
1600    --        Note that it implies /WARNINGS=ALL,ERRORS and /STYLE_CHECKS=GNAT
1601    --        so that all standard warnings and all standard style options are
1602    --        turned on. All warnings and style error messages are treated as
1603    --        errors.
1604
1605    S_GCC_Help    : aliased constant S := "/HELP "                          &
1606                                             "-gnath";
1607    --        /NOHELP (D)
1608    --        /HELP
1609    --
1610    --   Output usage information.
1611
1612    S_GCC_Ident   : aliased constant S := "/IDENTIFIER_CHARACTER_SET="      &
1613                                              "DEFAULT "                    &
1614                                                 "-gnati1 "                 &
1615                                              "1 "                          &
1616                                                 "-gnati1 "                 &
1617                                              "2 "                          &
1618                                                 "-gnati2 "                 &
1619                                              "3 "                          &
1620                                                 "-gnati3 "                 &
1621                                              "4 "                          &
1622                                                 "-gnati4 "                 &
1623                                              "5 "                          &
1624                                                 "-gnati5 "                 &
1625                                              "PC "                         &
1626                                                 "-gnatip "                 &
1627                                              "PC850 "                      &
1628                                                 "-gnati8 "                 &
1629                                              "FULL_UPPER "                 &
1630                                                 "-gnatif "                 &
1631                                              "NO_UPPER "                   &
1632                                                 "-gnatin "                 &
1633                                              "WIDE "                       &
1634                                                 "-gnatiw";
1635    --        /NOIDENTIFIER_CHARACTER_SET (D)
1636    --        /IDENTIFIER_CHARACTER_SET=char-set
1637    --
1638    --   Normally GNAT recognizes the Latin-1 character set in source program
1639    --   identifiers, as described in the reference manual. This qualifier
1640    --   causes GNAT to recognize alternate character sets in identifiers.
1641    --   'char-set' is one of the following strings indicating the character
1642    --   set:
1643    --
1644    --        DEFAULT (D) Equivalent to 1, below. Also equivalent to
1645    --                    /NOIDENTIFIER_CHARACTER_SET.
1646    --
1647    --        1           The basic character set is Latin-1. This character
1648    --                    set is defined by ISO standard 8859, part 1. The lower
1649    --                    half (character codes 16#00# ... 16#7F#) is identical
1650    --                    to standard ASCII coding, but the upper half is used
1651    --                    to represent additional characters. This includes
1652    --                    extended letters used by European languages, such as
1653    --                    the umlaut used in German.
1654    --
1655    --                    You may use any of these extended characters freely
1656    --                    in character or string literals. In addition, the
1657    --                    extended characters that represent letters can be
1658    --                    used in identifiers.
1659    --
1660    --        2           Latin-2 letters allowed in identifiers, with uppercase
1661    --                    and lowercase equivalence.
1662    --
1663    --        3           Latin-3 letters allowed in identifiers, with uppercase
1664    --                    and lower case equivalence.
1665    --
1666    --        4           Latin-4 letters allowed in identifiers, with uppercase
1667    --                    and lower case equivalence.
1668    --
1669    --        PC          IBM PC code page 437.  This code page is the normal
1670    --                    default for PCs in the U.S. It corresponds to the
1671    --                    original IBM PC character set. This set has some, but
1672    --                    not all, of the extended Latin-1 letters, but these
1673    --                    letters do not have the same encoding as Latin-1. In
1674    --                    this mode, these letters are allowed in identifiers
1675    --                    with uppercase and lowercase equivalence.
1676    --
1677    --        PC850       This code page (850) is a modification of 437 extended
1678    --                    to include all the Latin-1 letters, but still not with
1679    --                    the usual Latin-1 encoding. In this mode, all these
1680    --                    letters are allowed in identifiers with uppercase and
1681    --                    lower case equivalence.
1682    --
1683    --        FULL_UPPER  Any character in the range 80-FF allowed in
1684    --                    identifiers, and all are considered distinct.  In
1685    --                    other words, there are no uppercase and lower case
1686    --                    equivalences in this range.
1687    --
1688    --        NO_UPPER    No upper-half characters in the range 80-FF are
1689    --                    allowed in identifiers.  This gives Ada 95
1690    --                    compatibility for identifier names.
1691    --
1692    --        WIDE        GNAT allows wide character codes to appear in
1693    --                    character and string literals, and also optionally
1694    --                    in identifiers.  See the /WIDE_CHARACTER_ENCODING
1695    --                    qualifier for information on encoding formats.
1696
1697    S_GCC_IdentX  : aliased constant S := "/NOIDENTIFIER_CHARACTER_SET "    &
1698                                              "-gnati1";
1699    --  NODOC (see /IDENTIFIER_CHARACTER_SET)
1700
1701    S_GCC_Ignore  : aliased constant S := "/IGNORE_REP_CLAUSES "            &
1702                                              "-gnatI";
1703    --        /IGNORE_REP_CLAUSES
1704    --
1705    --   Causes all representation clauses to be ignored and treated as
1706    --   comments. Useful when compiling foreign code (for example when ASIS
1707    --   is used to analyze such code).
1708
1709    S_GCC_Immed   : aliased constant S := "/IMMEDIATE_ERRORS "              &
1710                                              "-gnatdO";
1711    --        /NOIMMEDIATE_ERRORS (D)
1712    --        /IMMEDIATE_ERRORS
1713    --
1714    --   Causes errors to be displayed as soon as they are encountered, rather
1715    --   than after compilation is terminated. If GNAT terminates prematurely
1716    --   or goes into an infinite loop, the last error message displayed may
1717    --   help to pinpoint the culprit.
1718
1719    S_GCC_Inline  : aliased constant S := "/INLINE="                        &
1720                                             "PRAGMA "                      &
1721                                               "-gnatn "                    &
1722                                             "FULL "                        &
1723                                               "-gnatN "                    &
1724                                             "SUPPRESS "                    &
1725                                               "-fno-inline";
1726    --        /NOINLINE (D)
1727    --        /INLINE[=keyword]
1728    --
1729    --   Selects the level of inlining for your program.  In the absence of this
1730    --   qualifier, GNAT does not attempt inlining across units and does not
1731    --   need to access the bodies of subprograms for which "pragma Inline" is
1732    --   specified if they are not in the current unit.
1733    --
1734    --   The supported keywords are as follows:
1735    --
1736    --        PRAGMA (D)  Recognize and process "Inline" pragmas.  However,
1737    --                    for the inlining to actually occur, optimization
1738    --                    must be enabled.  This enables inlining across unit
1739    --                    boundaries, that is, inlining a call in one unit of
1740    --                    a subprogram declared in a with'ed unit. The compiler
1741    --                    will access these bodies, creating an extra source
1742    --                    dependency for the resulting object file, and where
1743    --                    possible, the call will be inlined.
1744    --
1745    --                    This qualifier also turns on full optimization and
1746    --                    requests GNAT to try to attempt automatic inlining
1747    --                    of small subprograms within a unit.
1748    --
1749    --                    Specifying /OPTIMIZE=NONE will disable the main effect
1750    --                    of this qualifier, but you may specify other
1751    --                    optimization options, to get either lower
1752    --                    (/OPTIMIZE=SOME) or higher (/OPTIMIZE=UNROLL_LOOPS)
1753    --                    levels of optimization.
1754    --
1755    --        FULL        Front end inlining. The front end inlining activated
1756    --                    by this switch is generally more extensive, and quite
1757    --                    often more effective than the standard PRAGMA inlining
1758    --                    mode. It will also generate additional dependencies.
1759    --
1760    --        SUPPRESS    Suppresses all inlining, even if other optimization
1761    --                        or inlining switches are set.
1762
1763    S_GCC_InlineX : aliased constant S := "/NOINLINE "                      &
1764                                              "!-gnatn,!-gnatN";
1765    --  NODOC (see /INLINE)
1766
1767    S_GCC_Intsrc  : aliased constant S := "/INTERSPERSE_SOURCE "            &
1768                                              "-gnatL";
1769
1770    --        /NO_INTERSPERSE_SOURCE (D)
1771    --        /INTERSPERSE_SOURCE
1772    --
1773    --   Causes output from /XDEBUG or /EXPAND_SOURCE to be interspersed with
1774    --   lines from the original source file, output as comment lines with the
1775    --   associated line number.
1776
1777    S_GCC_Just   : aliased constant S := "/JUSTIFY_MESSAGES=#"              &
1778                                              "-gnatj#";
1779
1780    --        /NO_JUSTIFY_MESSAGES (D)
1781    --        /JUSTIFY_MESSAGES=nnn
1782    --
1783    --   Causes error messages to be reformatted so that a message and all its
1784    --   continuation lines count as one warning or error in the statistics on
1785    --   total errors, and the message is broken down into lines (justified) so
1786    --   that no line is longer than nnn characters. The default message
1787    --   behavior (each message counted separately and not reformatted to fit
1788    --   a particular line length) can be obtained using /NO_JUSTIFY_MESSAGES.
1789
1790    S_GCC_JustX  : aliased constant S := "/NO_JUSTIFY_MESSAGES "            &
1791                                              "-gnatj0";
1792
1793    --  NODOC (see /JUSTIFY_MESSAGES)
1794
1795    S_GCC_Length  : aliased constant S := "/MAX_LINE_LENGTH=#"              &
1796                                              "-gnatyM#";
1797    --        /MAX_LINE_LENGTH=nnn
1798    --
1799    --   Set maximum line length.
1800    --   The length of lines must not exceed the given value nnn.
1801
1802    S_GCC_List    : aliased constant S := "/LIST "                          &
1803                                              "-gnatl";
1804    --        /NOLIST (D)
1805    --        /LIST
1806    --
1807    --   Cause a full listing of the file to be generated. In the case where
1808    --   a body is compiled, the corresponding spec is also listed, along
1809    --   with any subunits.
1810
1811    S_GCC_Machine : aliased constant S := "/MACHINE_CODE_LISTING "          &
1812                                              "-source-listing";
1813    --        /NOMACHINE_CODE_LISTING (D)
1814    --        /MACHINE_CODE_LISTING
1815    --
1816    --   Cause a full machine code listing of the file to be generated to
1817    --   <filename>.lis. Interspersed source is included if the /DEBUG
1818    --   qualifier is also present.
1819
1820    S_GCC_Mapping : aliased constant S := "/MAPPING_FILE=<"                 &
1821                                             "-gnatem>";
1822    --        /MAPPING_FILE=file_name
1823    --
1824    --   Use mapping file file_name
1825    --
1826    --   A mapping file is a way to communicate to the compiler two mappings:
1827    --   from unit names to file names (without any directory information) and
1828    --   from file names to path names (with full directory information).
1829    --   These mappings are used by the compiler to short-circuit the path
1830    --   search.
1831    --
1832    --   The use of mapping files is not required for correct operation of the
1833    --   compiler, but mapping files can improve efficiency, particularly when
1834    --   sources are read over a slow network connection. In normal operation,
1835    --   you need not be concerned with the format or use of mapping files,
1836    --   and /MAPPING_FILE is not a qualifier that you would use explicitly.
1837    --   It is intended only for use by automatic tools such as GNAT MAKE
1838    --   running under the project file facility. The description here of the
1839    --   format of mapping files is provided for completeness and for possible
1840    --   use by other tools.
1841    --
1842    --   A mapping file is a sequence of sets of three lines. In each set, the
1843    --   first line is the unit name, in lower case, with "%s" appended for
1844    --   specifications and "%b" appended for bodies; the second line is the
1845    --   file name; and the third line is the path name.
1846    --
1847    --   Example:
1848    --
1849    --      main%b
1850    --      main.2_ada
1851    --      /gnat/project1/sources/main.2_ada
1852    --
1853    --   When qualifier ?MAPPING_FILE is specified, the compiler will create in
1854    --   memory the two mappings from the specified file. If there is any
1855    --   problem (non existent file, truncated file or duplicate entries),
1856    --   no mapping will be created.
1857    --
1858    --   Several /MAPPING_FILE qualifiers may be specified; however, only the
1859    --   last one on the command line will be taken into account.
1860    --
1861    --   When using a project file, GNAT MAKE creates a temporary mapping file
1862    --   and communicates it to the compiler using this switch.
1863
1864    S_GCC_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="         &
1865                                             "DEFAULT "                     &
1866                                                "-vP0 "                     &
1867                                             "MEDIUM "                      &
1868                                                "-vP1 "                     &
1869                                             "HIGH "                        &
1870                                                "-vP2";
1871    --        /MESSAGES_PROJECT_FILE[=messages-option]
1872    --
1873    --   Specifies the "verbosity" of the parsing of project files.
1874    --   messages-option may be one of the following:
1875    --
1876    --      DEFAULT (D) No messages are output if there is no error or warning.
1877    --
1878    --      MEDIUM      A small number of messages are output.
1879    --
1880    --      HIGH        A great number of messages are output, most of them not
1881    --                  being useful for the user.
1882
1883    S_GCC_Nesting  : aliased constant S := "/MAX_NESTING=#"                 &
1884                                              "-gnatyL#";
1885    --        /MAX_NESTING=nnn
1886    --
1887    --   Set maximum level of nesting of constructs (including subprograms,
1888    --   loops, blocks, packages, and conditionals).
1889    --   The level of nesting must not exceed the given value nnn.
1890    --   A value of zero disable this style check (not enabled by default).
1891
1892    S_GCC_Noadc   : aliased constant S := "/NO_GNAT_ADC "                   &
1893                                              "-gnatA";
1894    --        /NO_GNAT_ADC
1895    --
1896    --   Cause the compiler to ignore any configuration pragmas file GNAT.ADC
1897    --   in the default directory. Implied by qualifier /PROJECT_FILE.
1898    --   Often used in conjunction with qualifier /CONFIGURATION_PRAGMAS_FILE.
1899
1900    S_GCC_Noload  : aliased constant S := "/NOLOAD "                        &
1901                                              "-gnatc";
1902    --        /NOLOAD
1903    --
1904    --   Cause the compiler to operate in semantic check mode with full
1905    --   checking for all illegalities specified in the reference manual, but
1906    --   without generation of any source code (no object or ALI file
1907    --   generated).
1908    --
1909    --   Since dependent files must be accessed, you must follow the GNAT
1910    --   semantic restrictions on file structuring to operate in this mode:
1911    --
1912    --   o The needed source files must be accessible.
1913    --   o Each file must contain only one compilation unit.
1914    --   o The file name and unit name must match.
1915    --
1916    --   The output consists of error messages as appropriate. No object file
1917    --   or ALI file is generated. The checking corresponds exactly to the
1918    --   notion of legality in the Ada reference manual.
1919    --
1920    --   Any unit can be compiled in semantics-checking-only mode, including
1921    --   units that would not normally be compiled (generic library units,
1922    --   subunits, and specifications where a separate body is present).
1923
1924    S_GCC_Nostinc : aliased constant S := "/NOSTD_INCLUDES "                &
1925                                              "-nostdinc";
1926    --        /NOSTD_INCLUDES
1927    --
1928    --   Do not look in the default directory for source files of the runtime.
1929
1930    S_GCC_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "               &
1931                                             "-nostdlib";
1932    --        /NOSTD_LIBRARIES
1933    --
1934    --    Do not look for library files in the system default directory.
1935
1936    S_GCC_Opt     : aliased constant S := "/OPTIMIZE="                      &
1937                                             "ALL "                         &
1938                                                "-O2,!-O0,!-O1,!-O3 "       &
1939                                             "NONE "                        &
1940                                                "-O0,!-O1,!-O2,!-O3 "       &
1941                                             "SOME "                        &
1942                                                "-O1,!-O0,!-O2,!-O3 "       &
1943                                             "SPACE "                       &
1944                                                "-Os,!-O0,!-O1,!-O2,!-O3 "  &
1945                                             "DEVELOPMENT "                 &
1946                                                "-O1,!-O0,!-O2,!-O3 "       &
1947                                             "UNROLL_LOOPS "                &
1948                                                "-funroll-loops "           &
1949                                             "NO_STRICT_ALIASING "          &
1950                                                "-fno-strict-aliasing "     &
1951                                             "INLINING "                    &
1952                                                "-O3,!-O0,!-O1,!-O2";
1953    --        /NOOPTIMIZE (D)
1954    --        /OPTIMIZE[=(keyword[,...])]
1955    --
1956    --   Selects the level of optimization for your program.  The supported
1957    --   keywords are as follows:
1958    --
1959    --      ALL (D)       Perform most optimizations, including those that
1960    --                    may be expensive.
1961    --
1962    --      NONE          Do not do any optimizations. Same as /NOOPTIMIZE.
1963    --
1964    --      SOME          Perform some optimizations, but omit ones that
1965    --                    are costly in compilation time.
1966    --
1967    --      SPACE         Optimize space usage
1968    --
1969    --      DEVELOPMENT   Same as SOME.
1970    --
1971    --      INLINING      Full optimization, and also attempt automatic inlining
1972    --                    of small subprograms within a unit
1973    --
1974    --      UNROLL_LOOPS  Try to unroll loops. This keyword may be specified
1975    --                    with any keyword above other than NONE. Loop
1976    --                    unrolling usually, but not always, improves the
1977    --                    performance of programs.
1978    --
1979    --      NO_STRICT_ALIASING
1980    --                    Suppress aliasing analysis. When optimization is
1981    --                    enabled (ALL or SOME above), the compiler assumes
1982    --                    that pointers do in fact point to legitimate values
1983    --                    of the pointer type (allocated from the proper pool).
1984    --                    If this assumption is violated, e.g. by the use of
1985    --                    unchecked conversion, then it may be necessary to
1986    --                    suppress this assumption using this keyword (which
1987    --                    may be specified only in conjunction with any
1988    --                    keyword above, other than NONE).
1989
1990    S_GCC_OptX    : aliased constant S := "/NOOPTIMIZE "                    &
1991                                             "-O0,!-O1,!-O2,!-O3";
1992    --  NODOC (see /OPTIMIZE)
1993
1994    S_GCC_Output  : aliased constant S := "/OUTPUT_FILE=<"                  &
1995                                             "-gnatl=>";
1996    --        /OUTPUT_FILE=fname
1997    --
1998    --   This has the same effect as /LIST except that the output is written
1999    --   to a file instead of to standard output. If the given fname
2000    --   does not start with a period, then it is the full name of the file
2001    --   to be written. If fname starts with a period, the name of the file
2002    --   is the concatenation of to the name of the file being compiled with
2003    --   fname where the period is replace by an underline. For example, if
2004    --   file xyz.adb is compiled with -gnatl=.lst, then the output is written
2005    --   to file xyz.adb_lst.
2006
2007    S_GCC_Pointer : aliased constant S := "/POINTER_SIZE="                  &
2008                                             "64 "                          &
2009                                                "-mmalloc64 "               &
2010                                             "LONG "                        &
2011                                                "-mmalloc64 "               &
2012                                             "32 "                          &
2013                                                "-mno-malloc64 "            &
2014                                             "SHORT "                       &
2015                                                "-mno-malloc64";
2016    --        /POINTER_SIZE=64 (D)
2017    --        /POINTER_SIZE[=(keyword[,...])]
2018    --
2019    --   Change how pointers and descriptors are allocated. The following
2020    --   keywords are supported:
2021    --
2022    --        64 (D)       Allocate heap pointers in 64bit space except as
2023    --                     constrained by a 32bit size clause or by
2024    --                     Convention_C and generate 64bit descriptors for
2025    --                     Descriptor mechanisms for calling imported
2026    --                     subprograms and accept both 64bit and 32bit
2027    --                     descriptors for calls to exported subprograms.
2028    --
2029    --        LONG         Equivalent to option 64.
2030    --
2031    --        32           Allocate all heap pointers in 32bit space and
2032    --                     generate 32bit descriptors for Descriptor
2033    --                     mechanisms for calling imported subprograms.
2034    --
2035    --        SHORT        Equivalent to option 32.
2036
2037    S_GCC_Polling : aliased constant S := "/POLLING "                       &
2038                                             "-gnatP";
2039    --        /NOPOLLING (D)
2040    --        /POLLING
2041    --
2042    --   Enable polling. See the description of pragma Polling in the GNAT
2043    --   Reference Manual for full details.
2044
2045    S_GCC_Project : aliased constant S := "/PROJECT_FILE=<"                 &
2046                                             "-P>";
2047    --        /PROJECT_FILE=filename
2048    --
2049    --   Specifies the main project file to be used. The project files rooted
2050    --   at the main project file will be parsed before the invocation of the
2051    --   compiler. The source and object directories to be searched will be
2052    --   communicated to the compiler through logical names
2053    --   ADA_PRJ_INCLUDE_FILE and ADA_PRJ_OBJECTS_FILE.
2054
2055    S_GCC_Psta    : aliased constant S := "/PRINT_STANDARD "                &
2056                                             "-gnatS";
2057    --        /PRINT_STANDARD
2058    --
2059    --   cause the compiler to output a representation of package Standard
2060    --   in a form very close to standard Ada. It is not quite possible to
2061    --   do this and remain entirely Standard (since new numeric base types
2062    --   cannot be created in standard Ada), but the output is easily
2063    --   readable to any Ada programmer, and is useful to determine the
2064    --   characteristics of target dependent types in package Standard.
2065
2066    S_GCC_Reswarn : aliased constant S := "/TREAT_RESTRICTIONS_AS_WARNINGS " &
2067                                              "-gnatr";
2068
2069    --        /NO_TREAT_RESTRICTIONS_AS_WARNINGS (D)
2070    --        /TREAT_RESTRICTIONS_AS_WARNINGS
2071    --
2072    --   Causes all restrictions to be treated as warnings (pragma Restriction
2073    --   treated as Restriction_Warnings, pragma Profile as Profile_Warnings,
2074    --   and pragma Ravenscar sets restriction warnings instead of restrictions)
2075
2076    S_GCC_Report  : aliased constant S := "/REPORT_ERRORS="                 &
2077                                             "VERBOSE "                     &
2078                                                "-gnatv "                   &
2079                                             "BRIEF "                       &
2080                                                "-gnatb "                   &
2081                                             "FULL "                        &
2082                                                "-gnatf "                   &
2083                                             "IMMEDIATE "                   &
2084                                                "-gnatdO "                  &
2085                                             "DEFAULT "                     &
2086                                                "!-gnatb,!-gnatv";
2087    --        /NOREPORT_ERRORS (D)
2088    --        /REPORT_ERRORS[=(keyword[,...])]
2089    --
2090    --   Change the way errors are reported.  The following keywords are
2091    --   supported:
2092    --
2093    --        VERBOSE (D)  Verbose mode. Full error output with source lines
2094    --                     to SYS$OUTPUT.
2095    --
2096    --        BRIEF        Generate the brief format error messages to
2097    --                     SYS$OUTPUT as well as the verbose format message or
2098    --                     full listing.
2099    --
2100    --        FULL         Normally, the compiler suppresses error messages that
2101    --                     are likely to be redundant. This keyword causes all
2102    --                     error messages to be generated. One particular effect
2103    --                     is for the case of references to undefined variables.
2104    --                     If a given variable is referenced several times, the
2105    --                     normal format of messages produces one error.  With
2106    --                     FULL, each undefined reference produces a separate
2107    --                     error message.
2108    --
2109    --        IMMEDIATE    Normally, the compiler saves up error messages and
2110    --                     generates them at the end of compilation in proper
2111    --                     sequence.  This keyword causes error messages to be
2112    --                     generated as soon as they are detected. The use of
2113    --                     IMMEDIATE usually causes error messages to be
2114    --                     generated out of sequence. Use it when the compiler
2115    --                     blows up due to an internal error.  In this case, the
2116    --                     error messages may be lost. Sometimes blowups are
2117    --                     the result of mishandled error messages, so you may
2118    --                     want to run with this keyword to determine whether
2119    --                     any error messages were generated.
2120    --
2121    --      DEFAULT        Turn off VERBOSE and BRIEF. Same as /NOREPORT_ERRORS.
2122
2123    S_GCC_ReportX : aliased constant S := "/NOREPORT_ERRORS "               &
2124                                             "!-gnatb,!-gnatv";
2125    --  NODOC (see /REPORT_ERRORS)
2126
2127    S_GCC_Repinfo : aliased constant S := "/REPRESENTATION_INFO="           &
2128                                             "DEFAULT "                     &
2129                                                "-gnatR "                   &
2130                                             "NONE "                        &
2131                                                "-gnatR0 "                  &
2132                                             "ARRAYS "                      &
2133                                                "-gnatR1 "                  &
2134                                             "ARRAYS_FILE "                 &
2135                                                "-gnatR1s "                 &
2136                                             "OBJECTS "                     &
2137                                                "-gnatR2 "                  &
2138                                             "OBJECTS_FILE "                &
2139                                                "-gnatR2s "                 &
2140                                             "SYMBOLIC "                    &
2141                                                "-gnatR3 "                  &
2142                                             "SYMBOLIC_FILE "               &
2143                                                "-gnatR3s";
2144    --        /NOREPRESENTATION_INFO (D)
2145    --        /REPRESENTATION_INFO[=(keyword[,...])]
2146    --
2147    --   This qualifier controls output from the compiler of a listing showing
2148    --   representation information for declared types and objects.
2149    --
2150    --        ARRAYS (D)      Size and alignment information is listed for
2151    --                        declared array and record types.
2152    --
2153    --        ARRAYS_FILE     Similar to ARRAYS, but the output is to a file
2154    --                        with the name 'file_rep' where 'file' is the name
2155    --                        of the corresponding source file.
2156    --
2157    --        NONE            no information is output (equivalent to omitting
2158    --                        the /REPRESENTATION_INFO qualifiers).
2159    --
2160    --        OBJECTS         Size and alignment information is listed for all
2161    --                        declared types and objects.
2162    --
2163    --        OBJECTS_FILE    Similar to OBJECTS, but the output is to a file
2164    --                        with the name 'file_rep' where 'file' is the name
2165    --                        of the corresponding source file.
2166    --
2167    --        SYMBOLIC        Symbolic expression information for values that
2168    --                        are computed at run time for variant records.
2169    --
2170    --        SYMBOLIC_FILE   Similar to SYMBOLIC, but the output is to a file
2171    --                        with the name 'file_rep' where 'file' is the name
2172    --                        of the corresponding source file.
2173    --
2174    --        DEFAULT         Equivalent to ARRAYS.
2175
2176    S_GCC_RepinfX : aliased constant S := "/NOREPRESENTATION_INFO "         &
2177                                             "!-gnatR";
2178    --  NODOC (see /REPRESENTATION_INFO)
2179
2180    S_GCC_RTS     : aliased constant S := "/RUNTIME_SYSTEM=|"               &
2181                                             "--RTS=|";
2182    --        /RUNTIME_SYSTEM=xxx
2183    --
2184    --    Build against an alternate runtime system named xxx or RTS-xxx.
2185
2186    S_GCC_Search  : aliased constant S := "/SEARCH=*"                       &
2187                                             "-I*";
2188    --        /SEARCH=(directory[,...])
2189    --
2190    --    When looking for source files also look in directories specified.
2191
2192    S_GCC_Style   : aliased constant S := "/STYLE_CHECKS="                  &
2193                                             "ALL_BUILTIN "                 &
2194                                                "-gnatyy "                  &
2195                                             "0 "                           &
2196                                                "-gnaty0 "                  &
2197                                             "1 "                           &
2198                                                "-gnaty1 "                  &
2199                                             "2 "                           &
2200                                                "-gnaty2 "                  &
2201                                             "3 "                           &
2202                                                "-gnaty3 "                  &
2203                                             "4 "                           &
2204                                                "-gnaty4 "                  &
2205                                             "5 "                           &
2206                                                "-gnaty5 "                  &
2207                                             "6 "                           &
2208                                                "-gnaty6 "                  &
2209                                             "7 "                           &
2210                                                "-gnaty7 "                  &
2211                                             "8 "                           &
2212                                                "-gnaty8 "                  &
2213                                             "9 "                           &
2214                                                "-gnaty9 "                  &
2215                                             "ATTRIBUTE "                   &
2216                                                "-gnatya "                  &
2217                                             "NOATTRIBUTE "                 &
2218                                                "-gnaty-a "                 &
2219                                             "ARRAY_INDEXES "               &
2220                                                "-gnatyA "                  &
2221                                             "NOARRAY_INDEXES "             &
2222                                                "-gnaty-A "                 &
2223                                             "BLANKS "                      &
2224                                                "-gnatyb "                  &
2225                                             "NOBLANKS "                    &
2226                                                "-gnaty-b "                 &
2227                                             "COMMENTS "                    &
2228                                                "-gnatyc "                  &
2229                                             "NOCOMMENTS "                  &
2230                                                "-gnaty-c "                 &
2231                                             "DOS_LINE_ENDINGS "            &
2232                                                "-gnatyd "                  &
2233                                             "NODOS_LINE_ENDINGS "          &
2234                                                "-gnaty-d "                 &
2235                                             "END "                         &
2236                                                "-gnatye "                  &
2237                                             "NOEND "                       &
2238                                                "-gnaty-e "                 &
2239                                             "VTABS "                       &
2240                                                "-gnatyf "                  &
2241                                             "NOVTABS "                     &
2242                                                "-gnaty-f "                 &
2243                                             "GNAT "                        &
2244                                                "-gnatyg "                  &
2245                                             "HTABS "                       &
2246                                                "-gnatyh "                  &
2247                                             "NOHTABS "                     &
2248                                                "-gnaty-h "                 &
2249                                             "IF_THEN "                     &
2250                                                "-gnatyi "                  &
2251                                             "NOIF_THEN "                   &
2252                                                "-gnaty-i "                 &
2253                                             "KEYWORD "                     &
2254                                                "-gnatyk "                  &
2255                                             "NOKEYWORD "                   &
2256                                                "-gnaty-k "                 &
2257                                             "LAYOUT "                      &
2258                                                "-gnatyl "                  &
2259                                             "NOLAYOUT "                    &
2260                                                "-gnaty-l "                 &
2261                                             "LINE_LENGTH "                 &
2262                                                "-gnatym "                  &
2263                                             "NOLINE_LENGTH "               &
2264                                                "-gnaty-m "                 &
2265                                             "MODE_IN "                     &
2266                                                "-gnatyI "                  &
2267                                             "NOMODE_IN "                   &
2268                                                "-gnaty-I "                 &
2269                                             "NONE "                        &
2270                                                "-gnatyN "                  &
2271                                             "STANDARD_CASING "             &
2272                                                "-gnatyn "                  &
2273                                             "NOSTANDARD_CASING "           &
2274                                                "-gnaty-n "                 &
2275                                             "ORDERED_SUBPROGRAMS "         &
2276                                                "-gnatyo "                  &
2277                                             "NOORDERED_SUBPROGRAMS "       &
2278                                                "-gnaty-o "                 &
2279                                             "OVERRIDING_INDICATORS "       &
2280                                                "-gnatyO "                  &
2281                                             "NOOVERRIDING_INDICATORS "     &
2282                                                "-gnaty-O "                 &
2283                                             "PRAGMA "                      &
2284                                                "-gnatyp "                  &
2285                                             "NOPRAGMA "                    &
2286                                                "-gnaty-p "                 &
2287                                             "REFERENCES "                  &
2288                                                "-gnatyr "                  &
2289                                             "NOREFERENCES "                &
2290                                                "-gnaty-r "                 &
2291                                             "SPECS "                       &
2292                                                "-gnatys "                  &
2293                                             "NOSPECS "                     &
2294                                                "-gnaty-s "                 &
2295                                             "STATEMENTS_AFTER_THEN_ELSE "  &
2296                                                "-gnatyS "                  &
2297                                             "NOSTATEMENTS_AFTER_THEN_ELSE " &
2298                                                "-gnaty-S "                 &
2299                                             "TOKEN "                       &
2300                                                "-gnatyt "                  &
2301                                             "NOTOKEN "                     &
2302                                                "-gnaty-t "                 &
2303                                             "UNNECESSARY_BLANK_LINES "     &
2304                                                "-gnatyu "                  &
2305                                             "NOUNNECESSARY_BLANK_LINES "   &
2306                                                "-gnaty-u "                 &
2307                                             "XTRA_PARENS "                 &
2308                                                "-gnaty-x "                 &
2309                                             "NOXTRA_PARENS "               &
2310                                                "-gnaty-x ";
2311    --        /NOSTYLE_CHECKS (D)
2312    --        /STYLE_CHECKS[=(keyword,[...])]
2313    --
2314    --   Normally, GNAT permits any code layout consistent with the reference
2315    --   manual requirements.  This qualifier imposes style checking on the
2316    --   input source code.  The following keywords are supported:
2317    --
2318    --      ALL_BUILTIN (D)      Equivalent to the following list of options:
2319    --                           3, ATTRIBUTE, BLANKS, COMMENTS, END, VTABS,
2320    --                           HTABS, IF_THEN, KEYWORD, LAYOUT, LINE_LENGTH,
2321    --                           PRAGMA, REFERENCES, SPECS, TOKEN.
2322    --
2323    --      1 .. 9               Specify indentation level from 1 to 9.
2324    --                           The general style of required indentation is as
2325    --                           specified by the examples in the Ada Reference
2326    --                           Manual. Full line comments must be aligned with
2327    --                           the -- starting on a column that is a multiple
2328    --                           of the alignment level.
2329    --
2330    --      ATTRIBUTE            Check attribute casing.
2331    --                           Attribute names, including the case of keywords
2332    --                           such as digits used as attributes names,
2333    --                           must be written in mixed case, that is,
2334    --                           the initial letter and any letter following an
2335    --                           underscore must be uppercase.
2336    --                           All other letters must be lowercase.
2337    --
2338    --      ARRAY_INDEXES        Check indexes of array attributes.
2339    --                           For array attributes First, Last, Range,
2340    --                           or Length, the index number must be omitted
2341    --                           for one-dimensional arrays and is required
2342    --                           for multi-dimensional arrays.
2343    --
2344    --      BLANKS               Blanks not allowed at statement end.
2345    --                           Trailing blanks are not allowed at the end of
2346    --                           statements. The purpose of this rule, together
2347    --                           with option HTABS (no horizontal tabs), is to
2348    --                           enforce a canonical format for the use of
2349    --                           blanks to separate source tokens.
2350    --
2351    --      COMMENTS             Check comments.
2352    --                           Comments must meet the following set of rules:
2353    --
2354    --                             * The "--" that starts the column must either
2355    --                               start in column one, or else at least one
2356    --                               blank must precede this sequence.
2357    --
2358    --                             * Comments that follow other tokens on a line
2359    --                               must have at least one blank following the
2360    --                               "--" at the start of the comment.
2361    --
2362    --                             * Full line comments must have two blanks
2363    --                               following the "--" that starts the comment,
2364    --                               with the following exceptions.
2365    --
2366    --                             * A line consisting only of the "--"
2367    --                               characters, possibly preceded by blanks is
2368    --                               permitted.
2369    --
2370    --                             * A comment starting with "--x" where x is
2371    --                               a special character is permitted. This
2372    --                               allows proper processing of the output
2373    --                               generated by specialized tools including
2374    --                               gnatprep (where --! is used) and the SPARK
2375    --                               annotation language (where --# is used).
2376    --                               For the purposes of this rule, a special
2377    --                               character is defined as being in one of the
2378    --                               ASCII ranges 16#21#..16#2F# or
2379    --                               16#3A#..16#3F#.
2380    --
2381    --                             * A line consisting entirely of minus signs,
2382    --                               possibly preceded by blanks, is permitted.
2383    --                               This allows the construction of box
2384    --                               comments where lines of minus signs are
2385    --                               used to form the top and bottom of the box.
2386    --
2387    --                             * If a comment starts and ends with "--" is
2388    --                               permitted as long as at least one blank
2389    --                               follows the initial "--". Together with
2390    --                               the preceding rule, this allows the
2391    --                               construction of box comments, as shown in
2392    --                               the following example:
2393    --
2394    --                               ---------------------------
2395    --                               -- This is a box comment --
2396    --                               ---------------------------
2397    --
2398    --      DOS_LINE_ENDINGS     Check that no DOS line terminators are present
2399    --                           All lines must be terminated by a single
2400    --                           ASCII.LF character. In particular the DOS line
2401    --                           terminator sequence CR / LF is not allowed).
2402    --
2403    --      END                  Check end/exit labels.
2404    --                           Optional labels on end statements ending
2405    --                           subprograms and on exit statements exiting
2406    --                           named loops, are required to be present.
2407    --
2408    --      GNAT                 Enforces a set of style conventions that
2409    --                           match the style used in the GNAT source code.
2410    --                           This maybe useful when developing code that
2411    --                           is eventually intended to be incorporated into
2412    --                           GNAT. For further details, see GNAT sources.
2413    --
2414    --      HTABS                No horizontal tabs.
2415    --                           Horizontal tab characters are not permitted in
2416    --                           the source text. Together with the BLANKS
2417    --                           (no blanks at end of line) option, this
2418    --                           enforces a canonical form for the use of blanks
2419    --                           to separate source tokens.
2420    --
2421    --      IF_THEN              Check if-then layout.
2422    --                           The keyword then must appear either on the
2423    --                           same line as the corresponding if, or on a line
2424    --                           on its own, lined up under the if with at least
2425    --                           one non-blank line in between containing all or
2426    --                           part of the condition to be tested.
2427    --
2428    --      KEYWORD              Check keyword casing.
2429    --                           All keywords must be in lower case (with the
2430    --                           exception of keywords such as digits used as
2431    --                           attribute names to which this check does not
2432    --                           apply).
2433    --
2434    --      LAYOUT               Check layout.
2435    --                           Layout of statement and declaration constructs
2436    --                           must follow the recommendations in the Ada
2437    --                           Reference Manual, as indicated by the form of
2438    --                           the syntax rules. For example an else keyword
2439    --                           must be lined up with the corresponding if
2440    --                           keyword.
2441    --
2442    --                           There are two respects in which the style rule
2443    --                           enforced by this check option are more liberal
2444    --                           than those in the Ada Reference Manual.
2445    --                           First in the case of record declarations,
2446    --                           it is permissible to put the record keyword on
2447    --                           the same line as the type keyword, and then
2448    --                           the end in end record must line up under type.
2449    --                           For example, either of the following two
2450    --                           layouts is acceptable:
2451    --
2452    --                           type q is record
2453    --                              a : integer;
2454    --                              b : integer;
2455    --                           end record;
2456    --
2457    --                           type q is
2458    --                              record
2459    --                                 a : integer;
2460    --                                 b : integer;
2461    --                              end record;
2462    --
2463    --                           Second, in the case of a block statement,
2464    --                           a permitted alternative is to put the block
2465    --                           label on the same line as the declare or begin
2466    --                           keyword, and then line the end keyword up under
2467    --                           the block label. For example both the following
2468    --                           are permitted:
2469    --
2470    --
2471    --
2472    --                           Block : declare
2473    --                              A : Integer := 3;
2474    --                           begin
2475    --                              Proc (A, A);
2476    --                           end Block;
2477    --
2478    --                           Block :
2479    --                              declare
2480    --                                 A : Integer := 3;
2481    --                              begin
2482    --                                 Proc (A, A);
2483    --                              end Block;
2484    --
2485    --                           The same alternative format is allowed for
2486    --                           loops. For example, both of the following are
2487    --                           permitted:
2488    --
2489    --
2490    --
2491    --                           Clear : while J < 10 loop
2492    --                              A (J) := 0;
2493    --                           end loop Clear;
2494    --
2495    --                           Clear :
2496    --                              while J < 10 loop
2497    --                                 A (J) := 0;
2498    --                              end loop Clear;
2499    --
2500    --
2501    --
2502    --      LINE_LENGTH          Check maximum line length.
2503    --                           The length of source lines must not exceed 79
2504    --                           characters, including any trailing blanks
2505    --                           The value of 79 allows convenient display on
2506    --                           an 80 character wide device or window, allowing
2507    --                           for possible special treatment of 80 character
2508    --                           lines.
2509    --
2510    --      NONE                 Clear any previously set style checks.
2511    --
2512    --      ORDERED_SUBPROGRAMS  Check order of subprogram bodies.
2513    --                           All subprogram bodies in a given scope (e.g.
2514    --                           a package body) must be in alphabetical order.
2515    --                           The ordering rule uses normal Ada rules for
2516    --                           comparing strings, ignoring casing of letters,
2517    --                           except that if there is a trailing numeric
2518    --                           suffix, then the value of this suffix is used
2519    --                           in the ordering (e.g. Junk2 comes before
2520    --                           Junk10).
2521    --
2522    --      OVERRIDING_INDICATORS Check that overriding subprograms are
2523    --                           explicitly marked as such. The declaration of
2524    --                           a primitive operation of a type extension that
2525    --                           overrides an inherited operation must carry
2526    --                           an overriding indicator.
2527    --
2528    --      PRAGMA               Check pragma casing.
2529    --                           Pragma names must be written in mixed case,
2530    --                           that is, the initial letter and any letter
2531    --                           following an underscore must be uppercase.
2532    --                           All other letters must be lowercase.
2533    --
2534    --      REFERENCES           Check references.
2535    --                           All identifier references must be cased in the
2536    --                           same way as the corresponding declaration.
2537    --                           No specific casing style is imposed on
2538    --                           identifiers. The only requirement is for
2539    --                           consistency of references with declarations.
2540    --
2541    --      SPECS                Check separate specs.
2542    --                           Separate declarations ("specs") are required
2543    --                           for subprograms (a body is not allowed to serve
2544    --                           as its own declaration). The only exception is
2545    --                           that parameterless library level procedures are
2546    --                           not required to have a separate declaration.
2547    --                           This exception covers the most frequent form of
2548    --                           main program procedures.
2549    --
2550    --      STANDARD_CASING      Check casing of entities in Standard.
2551    --                           Any identifier from Standard must be cased to
2552    --                           match the presentation in the Ada Reference
2553    --                           Manual (for example, Integer and ASCII.NUL).
2554    --
2555    --      TOKEN                Check token spacing.
2556    --                           The following token spacing rules are enforced:
2557    --
2558    --                             * The keywords abs and not must be followed
2559    --                               by a space.
2560    --
2561    --                             * The token => must be surrounded by spaces.
2562    --
2563    --                             * The token <> must be preceded by a space or
2564    --                               a left parenthesis.
2565    --
2566    --                             * Binary operators other than ** must be
2567    --                               surrounded by spaces. There is no
2568    --                               restriction on the layout of the ** binary
2569    --                               operator.
2570    --
2571    --                             * Colon must be surrounded by spaces.
2572    --
2573    --                             * Colon-equal (assignment) must be surrounded
2574    --                               by spaces.
2575    --
2576    --                             * Comma must be the first non-blank character
2577    --                               on the line, or be immediately preceded by
2578    --                               a non-blank character, and must be followed
2579    --                               by a space.
2580    --
2581    --                             * If the token preceding a left paren ends
2582    --                               with a letter or digit, then a space must
2583    --                               separate the two tokens.
2584    --
2585    --                             * A right parenthesis must either be the
2586    --                               first non-blank character on a line, or it
2587    --                               must be preceded by a non-blank character.
2588    --
2589    --                             * A semicolon must not be preceded by
2590    --                               a space, and must not be followed by
2591    --                               a non-blank character.
2592    --
2593    --                             * A unary plus or minus may not be followed
2594    --                               by a space.
2595    --
2596    --                             * A vertical bar must be surrounded by
2597    --                               spaces.
2598    --
2599    --                           In the above rules, appearing in column one is
2600    --                           always permitted, that is, counts as meeting
2601    --                           either a requirement for a required preceding
2602    --                           space, or as meeting a requirement for no
2603    --                           preceding space.
2604    --
2605    --                           Appearing at the end of a line is also always
2606    --                           permitted, that is, counts as meeting either
2607    --                           a requirement for a following space,
2608    --                           or as meeting a requirement for no following
2609    --                           space.
2610    --
2611    --      UNNECESSARY_BLANK_LINES
2612    --                           Check for unnecessary blank lines.
2613    --                           A blank line is considered unnecessary if it
2614    --                           appears at the end of the file, or if more
2615    --                           than one blank line occurs in sequence.
2616    --
2617    --      VTABS                No form feeds or vertical tabs.
2618    --                           Form feeds or vertical tab characters are not
2619    --                           permitted in the source text.
2620    --
2621    --      XTRA_PARENS          Check for the use of an unnecessary extra
2622    --                           level of parentheses (C - style) around
2623    --                           conditions in if statements, while statements
2624    --                           and exit statements.
2625
2626    S_GCC_StyleX  : aliased constant S := "/NOSTYLE_CHECKS "                &
2627                                             "!-gnatg,!-gnaty*";
2628    --  NODOC (see /STYLE_CHECKS)
2629
2630    S_GCC_Subdirs : aliased constant S := "/SUBDIRS=<"                      &
2631                                             "--subdirs=>";
2632    --        /SUBDIRS=dir
2633    --
2634    --   The actual directories (object, exec, library, ...) are subdirectories
2635    --   of the directory specified in the project file. If the subdirectory
2636    --   does not exist, it is created automatically.
2637
2638    S_GCC_Symbol  : aliased constant S := "/SYMBOL_PREPROCESSING=" & '"'    &
2639                                             "-gnateD" & '"';
2640    --        /SYMBOL_PREPROCESSING="symbol=value"
2641    --
2642    --   Define or redefine a preprocessing symbol, associated with value.
2643    --   If "=value" is not specified, then the value of the symbol is True.
2644    --   A symbol is an identifier, following normal Ada (case-insensitive)
2645    --   rules for its syntax, and value is any sequence (including an empty
2646    --   sequence) of characters from the set (letters, digits, period,
2647    --   underline). Ada reserved words may be used as symbols, with the
2648    --   exceptions of "if", "else", "elsif", "end", "and", "or" and "then".
2649    --
2650    --   A symbol declared with this qualifier on the command line replaces
2651    --   a symbol with the same name either in a definition file or specified
2652    --   with a switch -D in the preprocessor data file.
2653    --
2654    --   This qualifier is similar to qualifier /ASSOCIATE of
2655    --   GNAT PREPROCESSING.
2656
2657    S_GCC_Syntax  : aliased constant S := "/SYNTAX_ONLY "                   &
2658                                             "-gnats";
2659    --        /NOSYNTAX_ONLY (D)
2660    --        /SYNTAX_ONLY
2661    --
2662    --   Run GNAT in syntax checking only mode.  You can check a series of
2663    --   files in a single command, and can use wild cards to specify such a
2664    --   group of files.
2665    --
2666    --   You may use other qualifiers in conjunction with this qualifier. In
2667    --   particular, /LIST and /REPORT_ERRORS=VERBOSE are useful to control the
2668    --   format of any generated error messages.
2669    --
2670    --   The output is simply the error messages, if any. No object file or ALI
2671    --   file is generated by a syntax-only compilation. Also, no units other
2672    --   than the one specified are accessed. For example, if a unit "X" with's
2673    --   a unit "Y", compiling unit "X" in syntax check only mode does not
2674    --   access the source file containing unit "Y".
2675    --
2676    --   Normally, GNAT allows only a single unit in a source file. However,
2677    --   this restriction does not apply in syntax-check-only mode, and it is
2678    --   possible to check a file containing multiple compilation units
2679    --   concatenated together. This is primarily used by the GNAT CHOP
2680    --   command.
2681
2682    S_GCC_Table   : aliased constant S := "/TABLE_MULTIPLIER=#"             &
2683                                             "-gnatT#";
2684    --        /TABLE_MULTIPLIER=nnn
2685    --
2686    --   All compiler tables start at nnn times usual starting size.
2687
2688    S_GCC_Trace   : aliased constant S := "/TRACE_UNITS "                   &
2689                                             "-gnatdc";
2690    --        /TRACE_UNITS
2691    --        /NOTRACE_UNITS
2692    --
2693    --   This switch that does for the frontend what /VERBOSE does for the
2694    --   backend. The system prints the name of each unit, either a compilation
2695    --   unit or nested unit, as it is being analyzed.
2696
2697    S_GCC_Tree    : aliased constant S := "/TREE_OUTPUT "                   &
2698                                             "-gnatt";
2699    --        /TREE_OUTPUT
2700    --        /NOTREE_OUTPUT
2701    --
2702    --   Cause GNAT to write the internal tree for a unit to a file (with the
2703    --   filetype ATB for a body or ATS for a spec).  This is not normally
2704    --   required, but is used by separate analysis tools. Typically these
2705    --   tools do the necessary compilations automatically, so you should never
2706    --   have to specify this switch in normal operation.
2707
2708    S_GCC_Trys    : aliased constant S := "/TRY_SEMANTICS "                 &
2709                                             "-gnatq";
2710    --        /TRY_SEMANTICS
2711    --        /NOTRY_SEMANTICS
2712    --
2713    --   In normal operation mode the compiler first parses the program and
2714    --   determines if there are any syntax errors. If there are, appropriate
2715    --   error messages are generated and compilation is immediately
2716    --   terminated.  This qualifier tells GNAT to continue with semantic
2717    --   analysis even if syntax errors have been found.  This may enable the
2718    --   detection of more errors in a single run. On the other hand, the
2719    --   semantic analyzer is more likely to encounter some internal fatal
2720    --   error when given a syntactically invalid tree.
2721
2722    S_GCC_Units   : aliased constant S := "/UNITS_LIST "                    &
2723                                             "-gnatu";
2724    --        /NOUNITS_LIST (D)
2725    --        /UNITS_LIST
2726    --
2727    --   Print a list of units required by this compilation on SYS$OUTPUT.  The
2728    --   listing includes all units on which the unit being compiled depends
2729    --   either directly or indirectly.
2730
2731    S_GCC_Unique  : aliased constant S := "/UNIQUE_ERROR_TAG "              &
2732                                             "-gnatU";
2733    --        /NOUNIQUE_ERROR_TAG (D)
2734    --        /UNIQUE_ERROR_TAG
2735    --
2736    --   Tag compiler error messages with the string "error: ".
2737
2738    S_GCC_Upcase  : aliased constant S := "/UPPERCASE_EXTERNALS "           &
2739                                             "-gnatF";
2740    --        /NOUPPERCASE_EXTERNALS (D)
2741    --        /UPPERCASE_EXTERNALS
2742    --
2743    --   Fold default and explicit external names in pragmas Import and Export
2744    --   to uppercase for compatibility with the default behavior of DEC C.
2745
2746    S_GCC_Valid   : aliased constant S := "/VALIDITY_CHECKING="             &
2747                                             "DEFAULT "                     &
2748                                                "-gnatVd "                  &
2749                                             "NODEFAULT "                   &
2750                                                "-gnatVD "                  &
2751                                             "COPIES "                      &
2752                                                "-gnatVc "                  &
2753                                             "NOCOPIES "                    &
2754                                                "-gnatVC "                  &
2755                                             "COMPONENTS "                  &
2756                                                "-gnatVe "                  &
2757                                             "NOCOMPONENTS "                &
2758                                                "-gnatVE "                  &
2759                                             "FLOATS "                      &
2760                                                "-gnatVf "                  &
2761                                             "NOFLOATS "                    &
2762                                                "-gnatVF "                  &
2763                                             "IN_PARAMS "                   &
2764                                                "-gnatVi "                  &
2765                                             "NOIN_PARAMS "                 &
2766                                                "-gnatVI "                  &
2767                                             "MOD_PARAMS "                  &
2768                                                "-gnatVm "                  &
2769                                             "NOMOD_PARAMS "                &
2770                                                "-gnatVM "                  &
2771                                             "OPERANDS "                    &
2772                                                "-gnatVo "                  &
2773                                             "NOOPERANDS "                  &
2774                                                "-gnatVO "                  &
2775                                             "PARAMETERS "                  &
2776                                                "-gnatVp "                  &
2777                                             "NOPARAMETERS "                &
2778                                                "-gnatVP "                  &
2779                                             "RETURNS "                     &
2780                                                "-gnatVr "                  &
2781                                             "NORETURNS "                   &
2782                                                "-gnatVR "                  &
2783                                             "SUBSCRIPTS "                  &
2784                                                "-gnatVs "                  &
2785                                             "NOSUBSCRIPTS "                &
2786                                                "-gnatVS "                  &
2787                                             "TESTS "                       &
2788                                                "-gnatVt "                  &
2789                                             "NOTESTS "                     &
2790                                                "-gnatVT "                  &
2791                                             "ALL "                         &
2792                                                "-gnatVa "                  &
2793                                             "NONE "                        &
2794                                                "-gnatVn";
2795    --        /VALIDITY_CHECKING[=(keyword,[...])]
2796    --
2797    --   Control level of validity checking.
2798    --
2799    --        DEFAULT (D)     In this mode checks are made to prevent
2800    --                        erroneous behavior in accordance with the RM.
2801    --                        Notably extra checks may be needed for case
2802    --                        statements and subscripted array assignments.
2803    --
2804    --        NONE            No special checks for invalid values are
2805    --                        performed. This means that references to
2806    --                        uninitialized variables can cause erroneous
2807    --                        behavior from constructs like case statements
2808    --                        and subscripted array assignments. In this
2809    --                        mode, invalid values can lead to erroneous
2810    --                        behavior.
2811    --
2812    --        FULL            Every assignment is checked for validity, so
2813    --                        that it is impossible to assign invalid values.
2814    --                        The RM specifically allows such assignments,
2815    --                        but in this mode, invalid values can never be
2816    --                        assigned, and an attempt to perform such an
2817    --                        assignment immediately raises Constraint_Error.
2818    --                        This behavior is allowed (but not required) by
2819    --                        the RM. This mode is intended as a debugging aid,
2820    --                        and may be useful in helping to track down
2821    --                        uninitialized variables. It may be useful to
2822    --                        use this in conjunction with the Normalize_Scalars
2823    --                        pragma which attempts to initialize with invalid
2824    --                        values where possible.
2825
2826    S_GCC_Verbose : aliased constant S := "/VERBOSE "                       &
2827                                             "-v";
2828    --        /VERBOSE
2829    --        /NOVERBOSE
2830    --
2831    --   Show commands generated by the GCC driver. Normally used only for
2832    --   debugging purposes or if you need to be sure what version of the
2833    --   compiler you are executing.
2834
2835    S_GCC_Verb_Asm : aliased constant S := "/VERBOSE_ASM " &
2836                                           "-S,-verbose_asm,!-c";
2837    --        /NOASM (D)
2838    --        /ASM
2839    --
2840    --   Use to cause the assembler source file to be generated, using S as the
2841    --   filetype, instead of the object file. This may be useful if you need
2842    --   to examine the generated assembly code.
2843
2844    S_GCC_Warn    : aliased constant S := "/WARNINGS="                      &
2845                                             "DEFAULT "                     &
2846                                                "!-gnatws,!-gnatwe "        &
2847                                             "ALL "                         &
2848                                                "-gnatwa "                  &
2849                                             "EVERY "                       &
2850                                                "-gnatw.e "                 &
2851                                             "OPTIONAL "                    &
2852                                                "-gnatwa "                  &
2853                                             "NOOPTIONAL "                  &
2854                                                "-gnatwA "                  &
2855                                             "NOALL "                       &
2856                                                "-gnatwA "                  &
2857                                             "ALL_GCC "                     &
2858                                                "-Wall "                    &
2859                                             "FAILING_ASSERTIONS "          &
2860                                                "-gnatw.a "                 &
2861                                             "NO_FAILING_ASSERTIONS "       &
2862                                                "-gnatw.A "                 &
2863                                             "BAD_FIXED_VALUES "            &
2864                                                "-gnatwb "                  &
2865                                             "NO_BAD_FIXED_VALUES "         &
2866                                                "-gnatwB "                  &
2867                                             "BIASED_REPRESENTATION "       &
2868                                                "-gnatw.b "                 &
2869                                             "NO_BIASED_REPRESENTATION "    &
2870                                                "-gnatw.B "                 &
2871                                             "CONDITIONALS "                &
2872                                                "-gnatwc "                  &
2873                                             "NOCONDITIONALS "              &
2874                                                "-gnatwC "                  &
2875                                             "MISSING_COMPONENT_CLAUSES "   &
2876                                                "-gnatw.c "                 &
2877                                             "NOMISSING_COMPONENT_CLAUSES " &
2878                                                "-gnatw.C "                 &
2879                                             "IMPLICIT_DEREFERENCE "        &
2880                                                "-gnatwd "                  &
2881                                             "NO_IMPLICIT_DEREFERENCE "     &
2882                                                "-gnatwD "                  &
2883                                             "ERRORS "                      &
2884                                                "-gnatwe "                  &
2885                                             "UNREFERENCED_FORMALS "        &
2886                                                "-gnatwf "                  &
2887                                             "NOUNREFERENCED_FORMALS "      &
2888                                                "-gnatwF "                  &
2889                                             "UNRECOGNIZED_PRAGMAS "        &
2890                                                "-gnatwg "                  &
2891                                             "NOUNRECOGNIZED_PRAGMAS "      &
2892                                                "-gnatwG "                  &
2893                                             "HIDING "                      &
2894                                                "-gnatwh "                  &
2895                                             "NOHIDING "                    &
2896                                                "-gnatwH "                  &
2897                                             "IMPLEMENTATION "              &
2898                                                "-gnatwi "                  &
2899                                             "NOIMPLEMENTATION "            &
2900                                                "-gnatwI "                  &
2901                                             "OBSOLESCENT "                 &
2902                                                "-gnatwj "                  &
2903                                             "NOOBSOLESCENT "               &
2904                                                "-gnatwJ "                  &
2905                                             "CONSTANT_VARIABLES "          &
2906                                                "-gnatwk "                  &
2907                                             "NOCONSTANT_VARIABLES "        &
2908                                                "-gnatwK "                  &
2909                                             "ELABORATION "                 &
2910                                                "-gnatwl "                  &
2911                                             "NOELABORATION "               &
2912                                                "-gnatwL "                  &
2913                                             "MODIFIED_UNREF "              &
2914                                                "-gnatwm "                  &
2915                                             "NOMODIFIED_UNREF "            &
2916                                                "-gnatwM "                  &
2917                                             "SUSPICIOUS_MODULUS "          &
2918                                                "-gnatw.m "                 &
2919                                             "NOSUSPICIOUS_MODULUS "        &
2920                                                "-gnatw.M "                 &
2921                                             "NORMAL "                      &
2922                                                "-gnatwn "                  &
2923                                             "OVERLAYS "                    &
2924                                                "-gnatwo "                  &
2925                                             "NOOVERLAYS "                  &
2926                                                "-gnatwO "                  &
2927                                             "OUT_PARAM_UNREF "             &
2928                                                "-gnatw.o "                 &
2929                                             "NOOUT_PARAM_UNREF "           &
2930                                                "-gnatw.O "                 &
2931                                             "INEFFECTIVE_INLINE "          &
2932                                                "-gnatwp "                  &
2933                                             "NOINEFFECTIVE_INLINE "        &
2934                                                "-gnatwP "                  &
2935                                             "MISSING_PARENS "              &
2936                                                "-gnatwq "                  &
2937                                             "PARAMETER_ORDER "             &
2938                                                "-gnatw.p "                 &
2939                                             "NOPARAMETER_ORDER "           &
2940                                                "-gnatw.P "                 &
2941                                             "NOMISSING_PARENS "            &
2942                                                "-gnatwQ "                  &
2943                                             "REDUNDANT "                   &
2944                                                "-gnatwr "                  &
2945                                             "NOREDUNDANT "                 &
2946                                                "-gnatwR "                  &
2947                                             "OBJECT_RENAMES "              &
2948                                                "-gnatw.r "                 &
2949                                             "NOOBJECT_RENAMES "            &
2950                                                "-gnatw.R "                 &
2951                                             "SUPPRESS "                    &
2952                                                "-gnatws "                  &
2953                                             "DELETED_CODE "                &
2954                                                "-gnatwt "                  &
2955                                             "NODELETED_CODE "              &
2956                                                "-gnatwT "                  &
2957                                             "UNINITIALIZED "               &
2958                                                "-Wuninitialized "          &
2959                                             "UNUSED "                      &
2960                                                "-gnatwu "                  &
2961                                             "NOUNUSED "                    &
2962                                                "-gnatwU "                  &
2963                                             "VARIABLES_UNINITIALIZED "     &
2964                                                "-gnatwv "                  &
2965                                             "NOVARIABLES_UNINITIALIZED "   &
2966                                                "-gnatwV "                  &
2967                                             "LOWBOUND_ASSUMED "            &
2968                                                "-gnatww "                  &
2969                                             "NOLOWBOUND_ASSUMED "          &
2970                                                "-gnatwW "                  &
2971                                             "WARNINGS_OFF_PRAGMAS "        &
2972                                                "-gnatw.w "                 &
2973                                             "NO_WARNINGS_OFF_PRAGMAS "     &
2974                                                "-gnatw.W "                 &
2975                                             "IMPORT_EXPORT_PRAGMAS "       &
2976                                                "-gnatwx "                  &
2977                                             "NOIMPORT_EXPORT_PRAGMAS "     &
2978                                                "-gnatwX "                  &
2979                                             "LOCAL_RAISE_HANDLING "        &
2980                                                "-gnatw.x "                 &
2981                                             "NOLOCAL_RAISE_HANDLING "      &
2982                                                "-gnatw.X "                 &
2983                                             "ADA_2005_COMPATIBILITY "      &
2984                                                "-gnatwy "                  &
2985                                             "NOADA_2005_COMPATIBILITY "    &
2986                                                "-gnatwY "                  &
2987                                             "UNCHECKED_CONVERSIONS "       &
2988                                                "-gnatwz "                  &
2989                                             "NOUNCHECKED_CONVERSIONS "     &
2990                                                "-gnatwZ";
2991    --        /NOWARNINGS
2992    --
2993    --   Suppress the output of all warning messages from the GNAT front end.
2994    --   Note that it does not suppress warnings from the gcc back end.
2995    --
2996    --        /WARNINGS[=(keyword[,...])]
2997    --
2998    --   In addition to error messages, corresponding to illegalities as
2999    --   defined in the reference manual, the compiler detects two kinds of
3000    --   warning situations.  First, the compiler considers some constructs
3001    --   suspicious and generates a warning message to alert you to a possible
3002    --   error. Second, if the compiler detects a situation that is sure to
3003    --   raise an exception at runtime, it generates a warning message.
3004    --
3005    --   You may specify the following keywords to change this behavior:
3006    --
3007    --   DEFAULT (D)             The default behavior above.
3008    --
3009    --   ALL                     Activate all optional warnings.
3010    --                           Activates most optional warning messages,
3011    --                           see remaining list in this section for
3012    --                           details on optional warning messages that
3013    --                           can be individually controlled.
3014    --                           The warnings that are not turned on by
3015    --                           this option are BIASED_ROUNDING,
3016    --                           IMPLICIT_DEREFERENCE, HIDING and
3017    --                           ELABORATION. All other optional Ada
3018    --                           warnings are turned on.
3019    --
3020    --   EVERY                   Activate every optional warning.
3021    --                           Activates all optional warnings, including
3022    --                           those listed above as exceptions for ALL.
3023    --
3024    --   NOALL                   Suppress all optional errors.
3025    --                           Suppresses all optional warning messages
3026    --                           that can be activated by option ALL.
3027    --
3028    --   ALL_GCC                 Request additional messages from the GCC
3029    --                           backend.  Most of these are not relevant
3030    --                           to Ada.
3031    --
3032    --   CONDITIONALS            Activate warnings for conditional
3033    --                           Expressions used in tests that are known
3034    --                           to be True or False at compile time. The
3035    --                           default is that such warnings are not
3036    --                           generated.
3037    --
3038    --   NOCONDITIONALS          Suppress warnings for conditional
3039    --                           expressions used in tests that are known
3040    --                           to be True or False at compile time.
3041    --
3042    --   IMPLICIT_DEREFERENCE    Activate warnings on implicit dereferencing.
3043    --                           The use of a prefix of an access type in an
3044    --                           indexed component, slice, or selected component
3045    --                           without an explicit .all will generate
3046    --                           a warning. With this warning enabled, access
3047    --                           checks occur only at points where an explicit
3048    --                           .all appears in the source code (assuming no
3049    --                           warnings are generated as a result of this
3050    --                           option). The default is that such warnings are
3051    --                           not generated. Note that /WARNINGS=ALL does not
3052    --                           affect the setting of this warning option.
3053    --
3054    --   NOIMPLICIT_DEREFERENCE  Suppress warnings on implicit dereferencing.
3055    --                           in indexed components, slices, and selected
3056    --                           components.
3057    --
3058    --   ELABORATION             Activate warnings on missing pragma
3059    --                           Elaborate_All statements. The default is
3060    --                           that such warnings are not generated.
3061    --
3062    --   NOELABORATION           Suppress warnings on missing pragma
3063    --                           Elaborate_All statements.
3064    --
3065    --   ERRORS                  Warning messages are to be treated as errors.
3066    --                           The warning string still appears, but the
3067    --                           warning messages are counted as errors, and
3068    --                           prevent the generation of an object file.
3069    --
3070    --   HIDING                  Activate warnings on hiding declarations.
3071    --                           A declaration is considered hiding if it is
3072    --                           for a non-overloadable entity, and it declares
3073    --                           an entity with the same name as some other
3074    --                           entity that is directly or use-visible. The
3075    --                           default is that such warnings are not
3076    --                           generated.
3077    --
3078    --   NOHIDING                Suppress warnings on hiding declarations.
3079    --
3080    --   IMPLEMENTATION          Activate warnings for a with of an internal
3081    --                           GNAT implementation unit, defined as any unit
3082    --                           from the Ada, Interfaces, GNAT, DEC or
3083    --                           System hierarchies that is not documented in
3084    --                           either the Ada Reference Manual or the GNAT
3085    --                           Programmer's Reference Manual. Such units are
3086    --                           intended only for internal implementation
3087    --                           purposes and should not be with'ed by user
3088    --                           programs. The default is that such warnings
3089    --                           are generated.
3090    --
3091    --   NOIMPLEMENTATION        Disables warnings for a with of an internal
3092    --                           GNAT implementation unit.
3093    --
3094    --   INEFFECTIVE_INLINE      Activate warnings on ineffective pragma Inlines
3095    --                           Activates warnings for failure of front end
3096    --                           inlining (activated by /INLINE=FULL) to inline
3097    --                           a particular call. There are many reasons for
3098    --                           not being able to inline a call, including most
3099    --                           commonly that the call is too complex to
3100    --                           inline. This warning can also be turned on
3101    --                           using /INLINE=FULL.
3102    --
3103    --   NOINEFFECTIVE_INLINE    Suppress warnings on ineffective pragma Inlines
3104    --                           Suppresses warnings on ineffective pragma
3105    --                           Inlines. If the inlining mechanism cannot
3106    --                           inline a call, it will simply ignore the
3107    --                           request silently.
3108    --
3109    --   MISSING_COMPONENT_CLAUSES
3110    --                           Activate warnings for cases when there are
3111    --                           component clauses for a record type, but not
3112    --                           for every component of the record.
3113    --
3114    --   NOMISSING_COMPONENT_CLAUSES
3115    --                           Suppress warnings for cases when there are
3116    --                           missing component clauses for a record type.
3117    --
3118    --   MISSING_PARENS
3119    --                           Activate warnings for cases where parentheses
3120    --                           are not used and the result is potential
3121    --                           ambiguity from a reader's point of view.
3122    --                           For example (not a > b) when a and b are
3123    --                           modular means (not (a) > b) and very likely
3124    --                           the programmer intended (not (a > b)).
3125    --
3126    --   NOMISSING_PARENS
3127    --                           Suppress warnings for cases where parentheses
3128    --                           are not used and the result is potential
3129    --                           ambiguity from a reader's point of view.
3130    --
3131    --   MODIFIED_UNREF          Activates warnings for variables that are
3132    --                           assigned (using an initialization value or with
3133    --                           one or more assignment statements) but whose
3134    --                           value is never read. The warning is suppressed
3135    --                           for volatile variables and also for variables
3136    --                           that are renamings of other variables or for
3137    --                           which an address clause is given. This warning
3138    --                           can also be turned on using /WARNINGS/OPTIONAL.
3139    --
3140    --   NOMODIFIED_UNREF        Disables warnings for variables that are
3141    --                           assigned or initialized, but never read.
3142    --
3143    --   NORMAL                  Sets normal warning mode, in which enabled
3144    --                           warnings are issued and treated as warnings
3145    --                           rather than errors. This is the default mode.
3146    --                           It can be used to cancel the effect of an
3147    --                           explicit /WARNINGS=SUPPRESS or
3148    --                           /WARNINGS=ERRORS. It also cancels the effect
3149    --                           of the implicit /WARNINGS=ERRORS that is
3150    --                           activated by the use of /STYLE=GNAT.
3151    --
3152    --   OBSOLESCENT             Activates warnings for calls to subprograms
3153    --                           marked with pragma Obsolescent and for use of
3154    --                           features in Annex J of the Ada Reference
3155    --                           Manual. In the case of Annex J, not all
3156    --                           features are flagged. In particular use of the
3157    --                           renamed packages (like Text_IO), use of package
3158    --                           ASCII and use of the attribute 'Constrained are
3159    --                           not flagged, since these are very common and
3160    --                           would generate many annoying positive warnings.
3161    --                           The default is that such warnings are not
3162    --                           generated.
3163    --
3164    --   NOOBSOLESCENT           Disables warnings on use of obsolescent
3165    --                           features.
3166    --
3167    --   OBJECT_RENAME           Activate warnings for non limited objects
3168    --                           renaming parameterless functions.
3169    --
3170    --   NOOBJECT_RENAME         Suppress warnings for non limited objects
3171    --                           renaming parameterless functions.
3172    --
3173    --   OPTIONAL                Equivalent to ALL.
3174    --
3175    --   NOOPTIONAL              Equivalent to NOALL.
3176    --
3177    --   OVERLAYS                Activate warnings for possibly unintended
3178    --                           initialization effects of defining address
3179    --                           clauses that cause one variable to overlap
3180    --                           another. The default is that such warnings
3181    --                           are generated.
3182    --
3183    --   NOOVERLAYS              Suppress warnings on possibly unintended
3184    --                           initialization effects of defining address
3185    --                           clauses that cause one variable to overlap
3186    --                           another.
3187    --
3188    --   REDUNDANT               Activate warnings for redundant constructs.
3189    --                           In particular assignments of a variable to
3190    --                           itself, and a type conversion that converts
3191    --                           an object to its own type. The default
3192    --                           is that such warnings are not generated.
3193    --
3194    --   NOREDUNDANT             Suppress warnings for redundant constructs.
3195    --
3196    --   SUPPRESS                Completely suppress the output of all warning
3197    --                           messages.  Same as /NOWARNINGS.
3198    --
3199    --   UNCHECKED_CONVERSIONS   Activates warnings on unchecked conversions.
3200    --                           Causes warnings to be generated for
3201    --                           unchecked conversions when the two types are
3202    --                           known at compile time to have different sizes.
3203    --                           The default is that such warnings are
3204    --                           generated.
3205    --
3206    --   NOUNCHECKED_CONVERSIONS Suppress warnings for unchecked conversions.
3207    --
3208    --   UNINITIALIZED           Generate warnings for uninitialized variables.
3209    --                           This is a GCC option, not an Ada option.
3210    --                           You must also specify the /OPTIMIZE qualifier
3211    --                           with a value other than NONE (in other words,
3212    --                           this keyword works only if optimization is
3213    --                           turned on).
3214    --
3215    --   UNREFERENCED_FORMALS    Activate warnings on unreferenced formals.
3216    --                           Causes a warning to be generated if a formal
3217    --                           parameter is not referenced in the body of
3218    --                           the subprogram. This warning can also be turned
3219    --                           on using option ALL or UNUSED.
3220    --
3221    --   NOUNREFERENCED_FORMALS  Suppress warnings on unreferenced formals.
3222    --                           Suppresses warnings for unreferenced formal
3223    --                           parameters. Note that the combination UNUSED
3224    --                           followed by NOUNREFERENCED_FORMALS has the
3225    --                           effect of warning on unreferenced entities
3226    --                           other than subprogram formals.
3227    --
3228    --   UNUSED                  Activates warnings to be generated for entities
3229    --                           that are defined but not referenced, and for
3230    --                           units that are with'ed and not referenced. In
3231    --                           the case of packages, a warning is also
3232    --                           generated if no entities in the package are
3233    --                           referenced. This means that if the package
3234    --                           is referenced but the only references are in
3235    --                           use clauses or renames declarations, a warning
3236    --                           is still generated. A warning is also generated
3237    --                           for a generic package that is with'ed but never
3238    --                           instantiated.  In the case where a package or
3239    --                           subprogram body is compiled, and there is a
3240    --                           with on the corresponding spec that is only
3241    --                           referenced in the body, a warning is also
3242    --                           generated, noting that the with can be moved
3243    --                           to the body. The default is that such warnings
3244    --                           are not generated.
3245    --
3246    --   NOUNUSED                Suppress warnings for unused entities and
3247    --                           packages.
3248    --
3249    --   VARIABLES_UNINITIALIZED Activates warnings on unassigned variables.
3250    --                           Causes warnings to be generated when a variable
3251    --                           is accessed which may not be properly
3252    --                           uninitialized.
3253    --                           The default is that such warnings are
3254    --                           generated.
3255    --
3256    --   NOVARIABLES_UNINITIALIZED       Suppress warnings for uninitialized
3257    --                                   variables.
3258
3259    S_GCC_WarnX   : aliased constant S := "/NOWARNINGS "                    &
3260                                             "-gnatws";
3261    --  NODOC (see /WARNINGS)
3262
3263    S_GCC_No_Back : aliased constant S := "/NO_BACK_END_WARNINGS "          &
3264                                             "-w";
3265    --        /NO_BACK_END_WARNINGS
3266    --
3267    --   Inhibit all warning messages of the GCC back-end.
3268
3269    S_GCC_All_Back : aliased constant S := "/ALL_BACK_END_WARNINGS "        &
3270                                             "-Wall";
3271    --        /ALL_BACK_END_WARNINGS
3272    --
3273    --   Activate all warning messages of the GCC back-end.
3274
3275    S_GCC_Wide    : aliased constant S := "/WIDE_CHARACTER_ENCODING="       &
3276                                              "BRACKETS "                   &
3277                                                 "-gnatWb "                 &
3278                                              "HEX "                        &
3279                                                 "-gnatWh "                 &
3280                                              "UPPER "                      &
3281                                                 "-gnatWu "                 &
3282                                              "SHIFT_JIS "                  &
3283                                                 "-gnatWs "                 &
3284                                              "UTF8 "                       &
3285                                                 "-gnatW8 "                 &
3286                                              "EUC "                        &
3287                                                 "-gnatWe";
3288    --        /NOWIDE_CHARACTER_ENCODING (D)
3289    --        /WIDE_CHARACTER_ENCODING[=encode-type]
3290    --
3291    --   Specifies the mechanism used to encode wide characters.  'encode-type'
3292    --   is one of the following:
3293    --
3294    --   BRACKETS (D)    A wide character is encoded as ["xxxx"] where XXXX
3295    --                   are four hexadecimal digits representing the coding
3296    --                   ('Pos value) of the character in type
3297    --                   Wide_Character. The hexadecimal digits may use upper
3298    --                   or lower case letters.
3299    --
3300    --                   This notation can also be used for upper half
3301    --                   Character values using the format ["xx"] where XX is
3302    --                   two hexadecimal digits representing the coding ('Pos
3303    --                   value) of the character in type Character (or
3304    --                   Wide_Character). The hexadecimal digits may use upper
3305    --                   of lower case.
3306    --
3307    --   NONE            No wide characters are allowed.  Same
3308    --                   as /NOWIDE_CHARACTER_ENCODING.
3309    --
3310    --   HEX             In this encoding, a wide character is represented by
3311    --                   the following five character sequence: ESC a b c d
3312    --                   Where 'a', 'b', 'c', and 'd' are the four hexadecimal
3313    --                   characters (using uppercase letters) of the wide
3314    --                   character code. For example, ESC A345 is used to
3315    --                   represent the wide character with code 16#A345#. This
3316    --                   scheme is compatible with use of the full
3317    --                   Wide_Character set.
3318    --
3319    --   UPPER           The wide character with encoding 16#abcd# where the
3320    --                   upper bit is on (in other words, "a" is in the range
3321    --                   8-F) is represented as two bytes, 16#ab# and 16#cd#.
3322    --                   The second byte may never be a format control
3323    --                   character, but is not required to be in the upper
3324    --                   half. This method can be also used for shift-JIS or
3325    --                   EUC, where the internal coding matches the external
3326    --                   coding.
3327    --
3328    --   SHIFT_JIS       A wide character is represented by a two-character
3329    --                   sequence, 16#ab# and 16#cd#, with the restrictions
3330    --                   described for upper-half encoding as described above.
3331    --                   The internal character code is the corresponding JIS
3332    --                   character according to the standard algorithm for
3333    --                   Shift-JIS conversion. Only characters defined in the
3334    --                   JIS code set table can be used with this encoding
3335    --                   method.
3336    --
3337    --   UTF8            A wide character is represented using
3338    --                   UCS Transformation Format 8 (UTF-8) as defined in Annex
3339    --                   R of ISO 10646-1/Am.2.  Depending on the character
3340    --                   value, the representation is a one, two, or three byte
3341    --                   sequence:
3342    --
3343    --                   16#0000#-16#007f#: 2#0xxxxxxx#
3344    --                   16#0080#-16#07ff#: 2#110xxxxx# 2#10xxxxxx#
3345    --                   16#0800#-16#ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx#
3346    --
3347    --                   where the xxx bits correspond to the left-padded bits
3348    --                   of the 16-bit character value. Note that all lower
3349    --                   half ASCII characters are represented as ASCII bytes
3350    --                   and all upper half characters and other wide characters
3351    --                   are represented as sequences of upper-half (The full
3352    --                   UTF-8 scheme allows for encoding 31-bit characters as
3353    --                   6-byte sequences, but in this implementation, all UTF-8
3354    --                   sequences of four or more bytes length will be treated
3355    --                   as illegal).
3356    --
3357    --   EUC             A wide character is represented by a two-character
3358    --                   sequence 16#ab# and 16#cd#, with both characters being
3359    --                   in the upper half. The internal character code is the
3360    --                   corresponding JIS character according to the EUC
3361    --                   encoding algorithm. Only characters defined in the JIS
3362    --                   code set table can be used with this encoding method.
3363
3364    S_GCC_WideX   : aliased constant S := "/NOWIDE_CHARACTER_ENCODING "     &
3365                                              "-gnatWn";
3366    --  NODOC (see /WIDE_CHARACTER_ENCODING)
3367
3368    S_GCC_Xdebug  : aliased constant S := "/XDEBUG "                        &
3369                                             "-gnatD";
3370    --        /NOXDEBUG (D)
3371    --        /XDEBUG
3372    --
3373    --   Output expanded source files for source level debugging.
3374    --   The expanded source (see /EXPAND_SOURCE) is written to files
3375    --   with names formed by appending "_DG" to the input file name,
3376    --   The debugging information generated by the /DEBUG qualifier will then
3377    --   refer to the generated file. This allows source level debugging using
3378    --   the generated code which is sometimes useful for complex code, for
3379    --   example to find out exactly which part of a complex construction
3380    --   raised an exception. The maximum line length for the output is 72.
3381
3382    S_GCC_Lxdebug : aliased constant S := "/LXDEBUG=#"                      &
3383                                             "-gnatD=#";
3384    --        /LXDEBUG=nnn
3385    --
3386    --   Output expanded source files for source level debugging.
3387    --   The expanded source (see /EXPAND_SOURCE) is written to files
3388    --   with names formed by appending "_DG" to the input file name,
3389    --   The debugging information generated by the /DEBUG qualifier will then
3390    --   refer to the generated file. This allows source level debugging using
3391    --   the generated code which is sometimes useful for complex code, for
3392    --   example to find out exactly which part of a complex construction
3393    --   raised an exception. The parameter is the maximum line length for
3394    --   the output.
3395
3396    S_GCC_Xref    : aliased constant S := "/XREF="                          &
3397                                             "GENERATE "                    &
3398                                                "!-gnatx "                  &
3399                                             "SUPPRESS "                    &
3400                                                "-gnatx";
3401    --        /XREF[=keyword]
3402    --
3403    --   Normally the compiler generates full cross-referencing information in
3404    --   the .ALI file. This information is used by a number of tools,
3405    --   including GNAT FIND and GNAT XREF.
3406    --
3407    --        GENERATE (D)            Generate cross-referencing information.
3408    --
3409    --        SUPPRESS                Suppress cross-referencing information.
3410    --                                This saves some space and may slightly
3411    --                                speed up compilation, but means that some
3412    --                                tools cannot be used.
3413
3414    GCC_Switches : aliased constant Switches :=
3415                     (S_GCC_Ada_83  'Access,
3416                      S_GCC_Ada_95  'Access,
3417                      S_GCC_Ada_05  'Access,
3418                      S_GCC_Add     'Access,
3419                      S_GCC_Asm     'Access,
3420                      S_GCC_AValid  'Access,
3421                      S_GCC_Checks  'Access,
3422                      S_GCC_ChecksX 'Access,
3423                      S_GCC_Compres 'Access,
3424                      S_GCC_Config  'Access,
3425                      S_GCC_Current 'Access,
3426                      S_GCC_Debug   'Access,
3427                      S_GCC_DebugX  'Access,
3428                      S_GCC_Data    'Access,
3429                      S_GCC_Dist    'Access,
3430                      S_GCC_DistX   'Access,
3431                      S_GCC_Error   'Access,
3432                      S_GCC_ErrorX  'Access,
3433                      S_GCC_Expand  'Access,
3434                      S_GCC_Lexpand 'Access,
3435                      S_GCC_Extend  'Access,
3436                      S_GCC_Ext     'Access,
3437                      S_GCC_File    'Access,
3438                      S_GCC_Follow  'Access,
3439                      S_GCC_Force   'Access,
3440                      S_GCC_Full    'Access,
3441                      S_GCC_Generate'Access,
3442                      S_GCC_GNAT    'Access,
3443                      S_GCC_Help    'Access,
3444                      S_GCC_Ident   'Access,
3445                      S_GCC_IdentX  'Access,
3446                      S_GCC_Ignore  'Access,
3447                      S_GCC_Immed   'Access,
3448                      S_GCC_Inline  'Access,
3449                      S_GCC_InlineX 'Access,
3450                      S_GCC_Intsrc  'Access,
3451                      S_GCC_Just    'Access,
3452                      S_GCC_JustX   'Access,
3453                      S_GCC_Length  'Access,
3454                      S_GCC_List    'Access,
3455                      S_GCC_Output  'Access,
3456                      S_GCC_Machine 'Access,
3457                      S_GCC_Mapping 'Access,
3458                      S_GCC_Mess    'Access,
3459                      S_GCC_Nesting 'Access,
3460                      S_GCC_Noadc   'Access,
3461                      S_GCC_Noload  'Access,
3462                      S_GCC_Nostinc 'Access,
3463                      S_GCC_Nostlib 'Access,
3464                      S_GCC_Opt     'Access,
3465                      S_GCC_OptX    'Access,
3466                      S_GCC_Pointer 'Access,
3467                      S_GCC_Polling 'Access,
3468                      S_GCC_Project 'Access,
3469                      S_GCC_Psta    'Access,
3470                      S_GCC_Report  'Access,
3471                      S_GCC_ReportX 'Access,
3472                      S_GCC_Repinfo 'Access,
3473                      S_GCC_RepinfX 'Access,
3474                      S_GCC_RTS     'Access,
3475                      S_GCC_Search  'Access,
3476                      S_GCC_Style   'Access,
3477                      S_GCC_StyleX  'Access,
3478                      S_GCC_Subdirs 'Access,
3479                      S_GCC_Symbol  'Access,
3480                      S_GCC_Syntax  'Access,
3481                      S_GCC_Table   'Access,
3482                      S_GCC_Trace   'Access,
3483                      S_GCC_Tree    'Access,
3484                      S_GCC_Trys    'Access,
3485                      S_GCC_Units   'Access,
3486                      S_GCC_Unique  'Access,
3487                      S_GCC_Upcase  'Access,
3488                      S_GCC_Valid   'Access,
3489                      S_GCC_Verbose 'Access,
3490                      S_GCC_Verb_Asm'Access,
3491                      S_GCC_Warn    'Access,
3492                      S_GCC_WarnX   'Access,
3493                      S_GCC_Wide    'Access,
3494                      S_GCC_WideX   'Access,
3495                      S_GCC_No_Back 'Access,
3496                      S_GCC_All_Back'Access,
3497                      S_GCC_Xdebug  'Access,
3498                      S_GCC_Lxdebug 'Access,
3499                      S_GCC_Xref    'Access);
3500
3501    ----------------------------
3502    -- Switches for GNAT ELIM --
3503    ----------------------------
3504
3505    S_Elim_Add    : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"       &
3506                                            "-aP*";
3507    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
3508    --
3509    --   Add directories to the project search path.
3510
3511    S_Elim_All    : aliased constant S := "/ALL "                           &
3512                                             "-a";
3513    --        /NOALL (D)
3514    --        /ALL
3515    --
3516    --   Also look for subprograms from the GNAT run time that can be
3517    --   eliminated. Note that when 'gnat.adc' is produced using this switch,
3518    --   the entire program must be recompiled with qualifier /ALL_FILES of
3519    --   GNAT MAKE.
3520
3521    S_Elim_Bind   : aliased constant S := "/BIND_FILE=<"                    &
3522                                             "-b>";
3523    --        /BIND_FILE=file_name
3524    --
3525    --   Specifies file_name as the bind file to process. If this qualifier is
3526    --   not used, the name of the bind file is computed from the full expanded
3527    --   Ada name of a main subprogram.
3528
3529    S_Elim_Comp   : aliased constant S := "/COMPILER=@"                     &
3530                                             "--GCC=@";
3531    --        /COMPILER=path_name
3532    --
3533    --   Instructs GNAT ELIM to use a specific gcc compiler instead of one
3534    --   available on the path.
3535
3536    S_Elim_Config : aliased constant S := "/CONFIGURATION_PRAGMAS=<"        &
3537                                             "-C>";
3538    --        /CONFIGURATION_PRAGMAS=path_name
3539    --
3540    --   Specifies a file that contains configuration pragmas.
3541    --   The file must be specified with absolute path.
3542
3543    S_Elim_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
3544                                            "!-I-";
3545    --        /CURRENT_DIRECTORY (D)
3546    --        /NOCURRENT_DIRECTORY
3547    --
3548    --        Look for source files in the default directory.
3549
3550    S_Elim_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3551                                              "-X" & '"';
3552    --       /EXTERNAL_REFERENCE="name=val"
3553    --
3554    --   Specifies an external reference to the project manager. Useful only if
3555    --   /PROJECT_FILE is used.
3556    --
3557    --   Example:
3558    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3559
3560    S_Elim_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
3561                                             "-eL";
3562    --        /NOFOLLOW_LINKS_FOR_FILES (D)
3563    --        /FOLLOW_LINKS_FOR_FILES
3564    --
3565    --    Follow links when parsing project files
3566
3567    S_Elim_GNATMAKE : aliased constant S := "/GNATMAKE=@"                   &
3568                                             "--GNATMAKE=@";
3569    --        /GNATMAKE=path_name
3570    --
3571    --   Instructs GNAT MAKE to use a specific gnatmake instead of one available
3572    --   on the path.
3573
3574    S_Elim_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3575                                              "DEFAULT "                    &
3576                                                 "-vP0 "                    &
3577                                              "MEDIUM "                     &
3578                                                 "-vP1 "                    &
3579                                              "HIGH "                       &
3580                                                 "-vP2";
3581    --        /MESSAGES_PROJECT_FILE[=messages-option]
3582    --
3583    --   Specifies the "verbosity" of the parsing of project files.
3584    --   messages-option may be one of the following:
3585    --
3586    --      DEFAULT (D)  No messages are output if there is no error or warning.
3587    --
3588    --      MEDIUM       A small number of messages are output.
3589    --
3590    --      HIGH         A great number of messages are output, most of them not
3591    --                   being useful for the user.
3592
3593    S_Elim_Project : aliased constant S := "/PROJECT_FILE=<"                &
3594                                              "-P>";
3595    --        /PROJECT_FILE=filename
3596    --
3597    --   Specifies the main project file to be used. The project files rooted
3598    --   at the main project file will be parsed before the invocation of the
3599    --   gnatelim. The source directories to be searched will be communicated
3600    --   to gnatelim through logical name ADA_PRJ_INCLUDE_FILE.
3601
3602    S_Elim_Quiet  : aliased constant S := "/QUIET "                         &
3603                                             "-q";
3604    --        /NOQUIET (D)
3605    --        /QUIET
3606    --
3607    --   Quiet mode: by default GNAT ELIM outputs to the standard error stream
3608    --   the number of program units left to be processed. This option turns
3609    --   this trace off.
3610
3611    S_Elim_Search : aliased constant S := "/SEARCH=*"                       &
3612                                             "-I*";
3613    --        /SEARCH=(directory, ...)
3614    --
3615    --   When looking for source files also look in the specified directories.
3616
3617    S_Elim_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
3618                                              "--subdirs=>";
3619    --        /SUBDIRS=dir
3620    --
3621    --   The actual directories (object, exec, library, ...) are subdirectories
3622    --   of the directory specified in the project file. If the subdirectory
3623    --   does not exist, it is created automatically.
3624
3625    S_Elim_Verb   : aliased constant S := "/VERBOSE "                       &
3626                                             "-v";
3627    --        /NOVERBOSE (D)
3628    --        /VERBOSE
3629    --
3630    --   Verbose mode: GNAT ELIM version information is output as Ada comments
3631    --   to the standard output stream. Also, in addition to the number of
3632    --   program units left, GNAT ELIM will output the name of the current unit
3633    --   being processed.
3634
3635    Elim_Switches : aliased constant Switches :=
3636                      (S_Elim_Add     'Access,
3637                       S_Elim_All     'Access,
3638                       S_Elim_Bind    'Access,
3639                       S_Elim_Comp    'Access,
3640                       S_Elim_Config  'Access,
3641                       S_Elim_Current 'Access,
3642                       S_Elim_Ext     'Access,
3643                       S_Elim_Follow  'Access,
3644                       S_Elim_GNATMAKE'Access,
3645                       S_Elim_Mess    'Access,
3646                       S_Elim_Project 'Access,
3647                       S_Elim_Quiet   'Access,
3648                       S_Elim_Search  'Access,
3649                       S_Elim_Subdirs 'Access,
3650                       S_Elim_Verb    'Access);
3651
3652    ----------------------------
3653    -- Switches for GNAT FIND --
3654    ----------------------------
3655
3656    S_Find_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
3657                                             "-aP*";
3658    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
3659    --
3660    --   Add directories to the project search path.
3661
3662    S_Find_All     : aliased constant S := "/ALL_FILES "                    &
3663                                             "-a";
3664    --        /NOALL_FILES (D)
3665    --        /ALL_FILES
3666    --
3667    --   If this switch is present, FIND and XREF will parse the read-only
3668    --   files found in the library search path. Otherwise, these files will
3669    --   be ignored. This option can be used to protect Gnat sources or your
3670    --   own libraries from being parsed, thus making FIND and XREF much
3671    --   faster, and their output much smaller.
3672
3673    S_Find_Deriv   : aliased constant S := "/DERIVED_TYPE_INFORMATION "     &
3674                                             "-d";
3675    --        /NODERIVED_TYPE_INFORMATION (D)
3676    --        /DERIVED_TYPE_INFORMATION
3677    --
3678    --   Output the parent type reference for each matching derived types.
3679
3680    S_Find_Expr    : aliased constant S := "/EXPRESSIONS "                  &
3681                                             "-e";
3682    --        /NOEXPRESSIONS (D)
3683    --        /EXPRESSIONS
3684    --
3685    --   By default, FIND accepts the simple regular expression set for pattern.
3686    --   If this switch is set, then the pattern will be considered as a full
3687    --   Unix-style regular expression.
3688
3689    S_Find_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3690                                             "-X" & '"';
3691    --        /EXTERNAL_REFERENCE="name=val"
3692    --
3693    --   Specifies an external reference to the project manager. Useful only if
3694    --   /PROJECT_FILE is used.
3695    --
3696    --   Example:
3697    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3698
3699    S_Find_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
3700                                             "-eL";
3701    --        /NOFOLLOW_LINKS_FOR_FILES (D)
3702    --        /FOLLOW_LINKS_FOR_FILES
3703    --
3704    --    Follow links when parsing project files
3705
3706    S_Find_Full    : aliased constant S := "/FULL_PATHNAME "                &
3707                                             "-f";
3708    --        /NOFULL_PATHNAME (D)
3709    --        /FULL_PATHNAME
3710    --
3711    --   If this switch is set, the output file names will be preceded by their
3712    --   directory (if the file was found in the search path). If this switch
3713    --   is not set, the directory will not be printed.
3714
3715    S_Find_Ignore  : aliased constant S := "/IGNORE_LOCALS "                &
3716                                             "-g";
3717    --        /NOIGNORE_LOCALS (D)
3718    --        /IGNORE_LOCALS
3719    --
3720    --   If this switch is set, information is output only for library-level
3721    --   entities, ignoring local entities. The use of this switch may
3722    --   accelerate FIND and XREF.
3723
3724    S_Find_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3725                                             "DEFAULT "                     &
3726                                                "-vP0 "                     &
3727                                             "MEDIUM "                      &
3728                                                "-vP1 "                     &
3729                                             "HIGH "                        &
3730                                                "-vP2";
3731    --        /MESSAGES_PROJECT_FILE[=messages-option]
3732    --
3733    --   Specifies the "verbosity" of the parsing of project files.
3734    --   messages-option may be one of the following:
3735    --
3736    --      DEFAULT (D)  No messages are output if there is no error or warning.
3737    --
3738    --      MEDIUM       A small number of messages are output.
3739    --
3740    --      HIGH         A great number of messages are output, most of them not
3741    --                   being useful for the user.
3742
3743    S_Find_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
3744                                             "-nostdinc";
3745    --        /NOSTD_INCLUDES
3746    --
3747    --   Do not look for sources in the system default directory.
3748
3749    S_Find_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
3750                                             "-nostdlib";
3751    --        /NOSTD_LIBRARIES
3752    --
3753    --   Do not look for library files in the system default directory.
3754
3755    S_Find_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
3756                                             "-aO*";
3757    --        /OBJECT_SEARCH=(directory,...)
3758    --
3759    --   When searching for library and object files, look in the specified
3760    --   directories. The order in which library files are searched is the same
3761    --   as for MAKE.
3762
3763    S_Find_Print   : aliased constant S := "/PRINT_LINES "                  &
3764                                             "-s";
3765    --        /NOPRINT_LINES (D)
3766    --        /PRINT_LINES
3767    --
3768    --   Output the content of the Ada source file lines were the entity was
3769    --   found.
3770
3771    S_Find_Project : aliased constant S := "/PROJECT=@"                     &
3772                                             "-p@";
3773    --        /PROJECT=file
3774    --
3775    --   Specify a project file to use. By default, FIND and XREF will try to
3776    --   locate a project file in the current directory.
3777    --
3778    --   If a project file is either specified or found by the tools, then the
3779    --   content of the source directory and object directory lines are added
3780    --   as if they had been specified respectively by /SOURCE_SEARCH and
3781    --   /OBJECT_SEARCH.
3782    --
3783    --   This qualifier is not compatible with /PROJECT_FILE
3784
3785    S_Find_Prj     : aliased constant S := "/PROJECT_FILE=<"                &
3786                                             "-P>";
3787    --        /PROJECT_FILE=filename
3788    --
3789    --   Specifies the main project file to be used. The project files rooted
3790    --   at the main project file will be parsed before looking for sources.
3791    --   The source and object directories to be searched will be communicated
3792    --   to gnatfind through logical names ADA_PRJ_INCLUDE_FILE and
3793    --   ADA_PRJ_OBJECTS_FILE.
3794
3795    S_Find_Ref     : aliased constant S := "/REFERENCES "                   &
3796                                             "-r";
3797    --        /NOREFERENCES (D)
3798    --        /REFERENCES
3799    --
3800    --   By default, FIND will output only the information about the
3801    --   declaration, body or type completion of the entities. If this switch
3802    --   is set, the FIND will locate every reference to the entities in the
3803    --   files specified on the command line (or in every file in the search
3804    --   path if no file is given on the command line).
3805
3806    S_Find_Search  : aliased constant S := "/SEARCH=*"                      &
3807                                             "-I*";
3808    --        /SEARCH=(directory,...)
3809    --
3810    --   Equivalent to:
3811    --   /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
3812
3813    S_Find_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
3814                                             "-aI*";
3815    --        /SOURCE_SEARCH=(directory,...)
3816    --
3817    --   When looking for source files also look in the specified directories.
3818    --   The order in which source file search is undertaken is the same as for
3819    --   MAKE.
3820
3821    S_Find_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
3822                                              "--subdirs=>";
3823    --        /SUBDIRS=dir
3824    --
3825    --   The actual directories (object, exec, library, ...) are subdirectories
3826    --   of the directory specified in the project file. If the subdirectory
3827    --   does not exist, it is created automatically.
3828
3829    S_Find_Types   : aliased constant S := "/TYPE_HIERARCHY "               &
3830                                             "-t";
3831    --        /NOTYPE_HIERARCHY (D)
3832    --        /TYPE_HIERARCHY
3833    --
3834    --   Output the type hierarchy for the specified type. It acts like the
3835    --   /DERIVED_TYPE_INFORMATION qualifier, but recursively from parent type
3836    --   to parent type. When this qualifier is specified it is not possible to
3837    --   specify more than one file.
3838
3839    Find_Switches : aliased constant Switches :=
3840                      (S_Find_Add     'Access,
3841                       S_Find_All     'Access,
3842                       S_Find_Deriv   'Access,
3843                       S_Find_Expr    'Access,
3844                       S_Find_Ext     'Access,
3845                       S_Find_Follow  'Access,
3846                       S_Find_Full    'Access,
3847                       S_Find_Ignore  'Access,
3848                       S_Find_Mess    'Access,
3849                       S_Find_Nostinc 'Access,
3850                       S_Find_Nostlib 'Access,
3851                       S_Find_Object  'Access,
3852                       S_Find_Print   'Access,
3853                       S_Find_Project 'Access,
3854                       S_Find_Prj     'Access,
3855                       S_Find_Ref     'Access,
3856                       S_Find_Search  'Access,
3857                       S_Find_Source  'Access,
3858                       S_Find_Subdirs 'Access,
3859                       S_Find_Types   'Access);
3860
3861    ------------------------------
3862    -- Switches for GNAT KRUNCH --
3863    ------------------------------
3864
3865    S_Krunch_Count  : aliased constant S := "/COUNT=#"                      &
3866                                             "`#";
3867    --        /COUNT=39 (D)
3868    --        /COUNT=nnn
3869    --
3870    --   Limit file names to nnn characters (where nnn is a decimal
3871    --   integer). The maximum file name length is 39, but if you want to
3872    --   generate a set of files that would be usable if ported to a system
3873    --   with some different maximum file length, then a different value can
3874    --   be specified.
3875
3876    Krunch_Switches : aliased constant Switches  :=
3877                        (1 .. 1 => S_Krunch_Count  'Access);
3878
3879    ----------------------------
3880    -- Switches for GNAT LINK --
3881    ----------------------------
3882
3883    S_Link_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
3884                                             "-aP*";
3885    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
3886    --
3887    --   Add directories to the project search path.
3888
3889    S_Link_Bind    : aliased constant S := "/BIND_FILE="                    &
3890                                             "ADA "                         &
3891                                                "-A "                       &
3892                                             "C "                           &
3893                                                "-C";
3894    --        /BIND_FILE=[bind-file-option]
3895    --
3896    --   Specifies the language of the binder generated file.
3897    --
3898    --        ADA (D)         Binder file is Ada.
3899    --
3900    --        C               Binder file is 'C'.
3901
3902    S_Link_Debug   : aliased constant S := "/DEBUG="                        &
3903                                             "ALL "                         &
3904                                                "-g3 "                      &
3905                                             "NONE "                        &
3906                                                "-g0 "                      &
3907                                             "TRACEBACK "                   &
3908                                                "-g1 "                      &
3909                                             "NOTRACEBACK "                 &
3910                                                "-g0";
3911    --        /NODEBUG (D)
3912    --        /DEBUG[=debug-option]
3913    --
3914    --   Specifies the amount of debugging information included. 'debug-option'
3915    --   is one of the following:
3916    --
3917    --        ALL (D)      Include full debugging information.
3918    --
3919    --        NONE         Provide no debugging information.  Same as /NODEBUG.
3920    --
3921    --        TRACEBACK    Provide sufficient debug information for a traceback.
3922    --
3923    --        NOTRACEBACK  Same as NONE.
3924
3925    S_Link_Nodebug : aliased constant S := "/NODEBUG "                      &
3926                                             "-g0";
3927    --  NODOC (see /DEBUG)
3928
3929    S_Link_Execut  : aliased constant S := "/EXECUTABLE=@"                  &
3930                                             "-o@";
3931    --        /EXECUTABLE=exec-name
3932    --
3933    --   'exec-name' specifies an alternative name for the generated executable
3934    --   program. If this qualifier switch is omitted, the executable is called
3935    --   the name of the main unit. So "$ GNAT LINK TRY.ALI" creates an
3936    --   executable called TRY.EXE.
3937
3938    S_Link_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3939                                             "-X" & '"';
3940    --        /EXTERNAL_REFERENCE="name=val"
3941    --
3942    --   Specifies an external reference to the project manager. Useful only if
3943    --   /PROJECT_FILE is used.
3944    --
3945    --   Example:
3946    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3947
3948    S_Link_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
3949                                             "-eL";
3950    --        /NOFOLLOW_LINKS_FOR_FILES (D)
3951    --        /FOLLOW_LINKS_FOR_FILES
3952    --
3953    --    Follow links when parsing project files
3954
3955    S_Link_Forlink : aliased constant S := "/FOR_LINKER=" & '"'             &
3956                                             "--for-linker=" & '"';
3957    --        /FOR_LINKER=<string>
3958    --
3959    --   Transmit the option <string> to the underlying linker.
3960
3961    S_Link_Force   : aliased constant S := "/FORCE_OBJECT_FILE_LIST "       &
3962                                             "-f";
3963    --        /NOFORCE_OBJECT_FILE_LIST (D)
3964    --        /FORCE_OBJECT_FILE_LIST
3965    --
3966    --   Forces the generation of a file that contains commands for the linker.
3967    --   This is useful in some cases to deal with special situations where the
3968    --   command line length is exceeded.
3969
3970    S_Link_Ident   : aliased constant S := "/IDENTIFICATION=" & '"'         &
3971                                             "--for-linker=IDENT="          &
3972                                             '"';
3973    --        /IDENTIFICATION="<string>"
3974    --
3975    --   "<string>" specifies the string to be stored in the image file ident-
3976    --   ification field in the image header. It overrides any pragma Ident
3977    --   specified string.
3978
3979    S_Link_Libdir  : aliased constant S := "/LIBDIR=*"                      &
3980                                             "-L*";
3981    --        /LIBDIR=(directory, ...)
3982    --
3983    --   Look for libraries in the specified directories.
3984
3985    S_Link_Library : aliased constant S := "/LIBRARY=|"                     &
3986                                             "-l|";
3987    --        /LIBRARY=xyz
3988    --
3989    --   Link with library named "xyz".
3990
3991    S_Link_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3992                                             "DEFAULT "                     &
3993                                                "-vP0 "                     &
3994                                             "MEDIUM "                      &
3995                                                "-vP1 "                     &
3996                                             "HIGH "                        &
3997                                                "-vP2";
3998    --        /MESSAGES_PROJECT_FILE[=messages-option]
3999    --
4000    --   Specifies the "verbosity" of the parsing of project files.
4001    --   messages-option may be one of the following:
4002    --
4003    --      DEFAULT (D)  No messages are output if there is no error or warning.
4004    --
4005    --      MEDIUM       A small number of messages are output.
4006    --
4007    --      HIGH         A great number of messages are output, most of them not
4008    --                   being useful for the user.
4009
4010    S_Link_Nocomp  : aliased constant S := "/NOCOMPILE "                    &
4011                                             "-n";
4012    --        /NOCOMPILE
4013    --
4014    --   Do not compile the file generated by the binder.
4015    --   This may be used when a link is rerun with different options,
4016    --   but there is no need to recompile the binder generated file.
4017
4018    S_Link_Noinhib : aliased constant S := "/NOINHIBIT-EXEC "               &
4019                                             "--for-linker=--noinhibit-exec";
4020    --        /NOINHIBIT-EXEC
4021    --
4022    --   Delete executable if there are errors or warnings.
4023
4024    S_Link_Nofiles : aliased constant S := "/NOSTART_FILES "                &
4025                                             "-nostartfiles";
4026    --        /NOSTART_FILES
4027    --
4028    --   Link in default image initialization and startup functions.
4029
4030    S_Link_Project : aliased constant S := "/PROJECT_FILE=<"                &
4031                                             "-P>";
4032    --        /PROJECT_FILE=filename
4033    --
4034    --   Specifies the main project file to be used. The project files rooted
4035    --   at the main project file will be parsed before the invocation of the
4036    --   linker.
4037    --   The source and object directories to be searched will be communicated
4038    --   to the linker through logical names ADA_PRJ_INCLUDE_FILE and
4039    --   ADA_PRJ_OBJECTS_FILE.
4040
4041    S_Link_Return  : aliased constant S := "/RETURN_CODES="                 &
4042                                             "POSIX "                       &
4043                                                "!-mvms-return-codes "      &
4044                                             "VMS "                         &
4045                                                "-mvms-return-codes";
4046    --        /RETURN_CODES=POSIX (D)
4047    --        /RETURN_CODES=VMS
4048    --
4049    --   Specifies the style of codes returned by
4050    --   Ada.Command_Line.Set_Exit_Status. Must be used in conjunction with
4051    --   and match the Bind qualifier with the same name.
4052    --
4053    --        POSIX (D)   Return Posix compatible exit codes.
4054    --
4055    --        VMS         Return VMS compatible exit codes. The value returned
4056    --                    is identically equal to the Set_Exit_Status parameter.
4057
4058    S_Link_Static  : aliased constant S := "/STATIC "                       &
4059                                             "--for-linker=-static";
4060    --        /NOSTATIC (D)
4061    --        /STATIC
4062    --
4063    --   Indicate to the linker that the link is static.
4064
4065    S_Link_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
4066                                              "--subdirs=>";
4067    --        /SUBDIRS=dir
4068    --
4069    --   The actual directories (object, exec, library, ...) are subdirectories
4070    --   of the directory specified in the project file. If the subdirectory
4071    --   does not exist, it is created automatically.
4072
4073    S_Link_Verb    : aliased constant S := "/VERBOSE "                      &
4074                                             "-v";
4075    --        /NOVERBOSE (D)
4076    --        /VERBOSE
4077    --
4078    --   Causes additional information to be output, including a full list of
4079    --   the included object files. This switch option is most useful when you
4080    --   want to see what set of object files are being used in the link step.
4081
4082    S_Link_ZZZZZ   : aliased constant S := "/<other> "                      &
4083                                             "--for-linker=";
4084    --        /<other>
4085    --
4086    --   Any other switch that will be transmitted to the underlying linker.
4087
4088    Link_Switches : aliased constant Switches :=
4089                      (S_Link_Add     'Access,
4090                       S_Link_Bind    'Access,
4091                       S_Link_Debug   'Access,
4092                       S_Link_Nodebug 'Access,
4093                       S_Link_Execut  'Access,
4094                       S_Link_Ext     'Access,
4095                       S_Link_Follow  'Access,
4096                       S_Link_Forlink 'Access,
4097                       S_Link_Force   'Access,
4098                       S_Link_Ident   'Access,
4099                       S_Link_Libdir  'Access,
4100                       S_Link_Library 'Access,
4101                       S_Link_Mess    'Access,
4102                       S_Link_Nocomp  'Access,
4103                       S_Link_Nofiles 'Access,
4104                       S_Link_Noinhib 'Access,
4105                       S_Link_Project 'Access,
4106                       S_Link_Return  'Access,
4107                       S_Link_Static  'Access,
4108                       S_Link_Subdirs 'Access,
4109                       S_Link_Verb    'Access,
4110                       S_Link_ZZZZZ   'Access);
4111
4112    ----------------------------
4113    -- Switches for GNAT LIST --
4114    ----------------------------
4115
4116    S_List_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
4117                                             "-aP*";
4118    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4119    --
4120    --   Add directories to the project search path.
4121
4122    S_List_All     : aliased constant S := "/ALL_UNITS "                    &
4123                                             "-a";
4124    --        /NOALL_UNITS (D)
4125    --        /ALL_UNITS
4126    --
4127    --   Consider all units, including those of the predefined Ada library.
4128    --   Especially useful with /DEPENDENCIES.
4129
4130    S_List_Allproj : aliased constant S := "/ALL_PROJECTS "                 &
4131                                             "-U";
4132    --        /NOALL_PROJECTS (D)
4133    --        /ALL_PROJECTS
4134    --
4135    --   When used with a project file and no file specified, indicate
4136    --   that gnatls should be called for all sources of all projects in
4137    --   the project tree.
4138
4139    S_List_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
4140                                             "!-I-";
4141    --        /CURRENT_DIRECTORY (D)
4142    --        /NOCURRENT_DIRECTORY
4143    --
4144    --   Look for source, library or object files in the default directory.
4145
4146    S_List_Depend  : aliased constant S := "/DEPENDENCIES "                 &
4147                                             "-d";
4148    --        /NODEPENDENCIES (D)
4149    --        /DEPENDENCIES
4150
4151    S_List_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
4152                                             "-X" & '"';
4153    --        /EXTERNAL_REFERENCE="name=val"
4154    --
4155    --   Specifies an external reference to the project manager. Useful only if
4156    --   /PROJECT_FILE is used.
4157    --
4158    --   Example:
4159    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4160
4161    S_List_Files   : aliased constant S := "/FILES=@"                       &
4162                                             "-files=@";
4163    --        /FILES=filename
4164    --
4165    --   Take as arguments the files that are listed in the specified
4166    --   text file.
4167
4168    S_List_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
4169                                             "-eL";
4170    --        /NOFOLLOW_LINKS_FOR_FILES (D)
4171    --        /FOLLOW_LINKS_FOR_FILES
4172    --
4173    --    Follow links when parsing project files
4174
4175    S_List_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
4176                                             "DEFAULT "                     &
4177                                                "-vP0 "                     &
4178                                             "MEDIUM "                      &
4179                                                "-vP1 "                     &
4180                                             "HIGH "                        &
4181                                                "-vP2";
4182    --        /MESSAGES_PROJECT_FILE[=messages-option]
4183    --
4184    --   Specifies the "verbosity" of the parsing of project files.
4185    --   messages-option may be one of the following:
4186    --
4187    --      DEFAULT (D)  No messages are output if there is no error or warning.
4188    --
4189    --      MEDIUM       A small number of messages are output.
4190    --
4191    --      HIGH         A great number of messages are output, most of them not
4192    --                   being useful for the user.
4193
4194    S_List_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
4195                                             "-nostdinc";
4196    --        /NOSTD_INCLUDES
4197    --
4198    --   Do not look for sources of the run time in the standard directory.
4199
4200    S_List_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
4201                                             "-aO*";
4202    --        /OBJECT_SEARCH=(directory,...)
4203    --
4204    --   When looking for library and object files look also in the specified
4205    --   directories.
4206
4207    S_List_Output  : aliased constant S := "/OUTPUT="                       &
4208                                             "SOURCES "                     &
4209                                                "-s "                       &
4210                                             "DEPEND "                      &
4211                                                "-d "                       &
4212                                             "OBJECTS "                     &
4213                                                "-o "                       &
4214                                             "UNITS "                       &
4215                                                "-u "                       &
4216                                             "OPTIONS "                     &
4217                                                "-h "                       &
4218                                             "VERBOSE "                     &
4219                                                "-v ";
4220    --        /OUTPUT=(option,option,...)
4221    --
4222    --        SOURCES (D)     Only output information about source files.
4223    --
4224    --        DEPEND          List sources from which specified units depend on.
4225    --
4226    --        OBJECTS         Only output information about object files.
4227    --
4228    --        UNITS           Only output information about compilation units.
4229    --
4230    --        OPTIONS         Output the list of options.
4231    --
4232    --        VERBOSE         Output the complete source and object paths.
4233    --                        Do not use the default column layout but instead
4234    --                        use long format giving as much as information
4235    --                        possible on each requested units, including
4236    --                        special characteristics.
4237
4238    S_List_Project : aliased constant S := "/PROJECT_FILE=<"                &
4239                                             "-P>";
4240    --        /PROJECT_FILE=filename
4241    --
4242    --   Specifies the main project file to be used. The project files rooted
4243    --   at the main project file will be parsed before doing any listing.
4244    --   The source and object directories to be searched will be communicated
4245    --   to gnatlist through logical names ADA_PRJ_INCLUDE_FILE and
4246    --   ADA_PRJ_OBJECTS_FILE.
4247
4248    S_List_Search  : aliased constant S := "/SEARCH=*"                      &
4249                                             "-I*";
4250    --        /SEARCH=(directory,...)
4251    --
4252    --   Search the specified directories for both source and object files.
4253
4254    S_List_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
4255                                             "-aI*";
4256    --        /SOURCE_SEARCH=(directory,...)
4257    --
4258    --   When looking for source files also look in the specified directories.
4259
4260    S_List_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
4261                                              "--subdirs=>";
4262    --        /SUBDIRS=dir
4263    --
4264    --   The actual directories (object, exec, library, ...) are subdirectories
4265    --   of the directory specified in the project file. If the subdirectory
4266    --   does not exist, it is created automatically.
4267
4268    List_Switches : aliased constant Switches :=
4269                      (S_List_Add     'Access,
4270                       S_List_All     'Access,
4271                       S_List_Allproj 'Access,
4272                       S_List_Current 'Access,
4273                       S_List_Depend  'Access,
4274                       S_List_Ext     'Access,
4275                       S_List_Files   'Access,
4276                       S_List_Follow  'Access,
4277                       S_List_Mess    'Access,
4278                       S_List_Nostinc 'Access,
4279                       S_List_Object  'Access,
4280                       S_List_Output  'Access,
4281                       S_List_Project 'Access,
4282                       S_List_Search  'Access,
4283                       S_List_Source  'Access,
4284                       S_List_Subdirs 'Access);
4285
4286    ----------------------------
4287    -- Switches for GNAT MAKE --
4288    ----------------------------
4289
4290    S_Make_Actions : aliased constant S := "/ACTIONS="                      &
4291                                             "COMPILE "                     &
4292                                                "-c "                       &
4293                                             "BIND "                        &
4294                                                "-b "                       &
4295                                             "LINK "                        &
4296                                                "-l ";
4297    --        /ACTIONS=(keyword[,...])
4298    --
4299    --  GNAT MAKE default behavior is to check if the sources are up to date,
4300    --  compile those sources that are not up to date, bind the main source,
4301    --  then link the executable.
4302    --
4303    --  With the /ACTIONS qualifier, GNAT MAKE may be restricted to one or
4304    --  two of these three steps:
4305    --
4306    --  o Compile
4307    --  o Bind
4308    --  o Link
4309    --
4310    --
4311    --   You may specify one or more of the following keywords to the /ACTIONS
4312    --   qualifier:
4313    --
4314    --   BIND            Bind only. Can be combined with /ACTIONS=COMPILE
4315    --                   to do compilation and binding, but no linking.
4316    --                   Can be combined with /ACTIONS=LINK to do binding and
4317    --                   linking. When not combined with /ACTIONS=COMPILE,
4318    --                   all the units in the closure of the main program must
4319    --                   have been previously compiled and must be up to date.
4320    --
4321    --   COMPILE         Compile only. Do not perform binding, except when
4322    --                   /ACTIONS=BIND is also specified. Do not perform
4323    --                   linking, except if both /ACTIONS=BIND and /ACTIONS=LINK
4324    --                   are also specified.
4325    --
4326    --   LINK            Link only. Can be combined with /ACTIONS=BIND to do
4327    --                   binding and linking. Linking will not be performed
4328    --                   if combined with /ACTIONS=COMPILE but not with
4329    --                   /ACTIONS=BIND\. When not combined with /ACTIONS=BIND
4330    --                   all the units in the closure of the main program must
4331    --                   have been previously compiled and must be up to date,
4332    --                   and the main program need to have been bound.
4333
4334    S_Make_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
4335                                             "-aP*";
4336    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4337    --
4338    --   Add directories to the project search path.
4339
4340    S_Make_All     : aliased constant S := "/ALL_FILES "                    &
4341                                             "-a";
4342    --        /NOALL_FILES (D)
4343    --        /ALL_FILES
4344    --
4345    --   Consider all files in the make process, even the GNAT internal system
4346    --   files (for example, the predefined Ada library files). By default,
4347    --   GNAT MAKE does not check these files (however, if there is an
4348    --   installation problem, it will be caught when GNAT MAKE binds your
4349    --   program). You may have to specify this qualifier if you are working on
4350    --   GNAT itself.  The vast majority of GNAT MAKE users never need to
4351    --   specify this switch.  All GNAT internal files with will be compiled
4352    --   with /STYLE_CHECK=GNAT.
4353
4354    S_Make_Allproj : aliased constant S := "/ALL_PROJECTS "                 &
4355                                             "-U";
4356    --        /NOALL_PROJECTS (D)
4357    --        /ALL_PROJECTS
4358    --
4359    --   Implies /Unique.
4360    --   When used without project files, it is equivalent to /UNIQUE.
4361    --   When used with a project file with no main (neither on the command
4362    --   line nor in the attribute Main) check every source of every project,
4363    --   recompile all sources that are not up to date and rebuild libraries
4364    --   if necessary.
4365
4366    S_Make_Bind    : aliased constant S := "/BINDER_QUALIFIERS=?"           &
4367                                             "-bargs BIND";
4368    --        /BINDER_QUALIFIERS
4369    --
4370    --   Any qualifiers specified after this qualifier other than
4371    --   /COMPILER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
4372    --   passed to any GNAT BIND commands generated by GNAT MAKE.
4373
4374    S_Make_Bindprj : aliased constant S := "/BND_LNK_FULL_PROJECT "         &
4375                                             "-B";
4376    --        /BND_LNK_FULL_PROJECT
4377    --
4378    --   Bind and link all sources of a project, without any consideration
4379    --   to attribute Main, if there is one. This qualifier need to be
4380    --   used in conjunction with the /PROJECT_FILE= qualifier and cannot
4381    --   be used with a main subprogram on the command line or for
4382    --   a library project file. As the binder is invoked with the option
4383    --   meaning "No Ada main subprogram", the user must ensure that the
4384    --   proper options are specified to the linker. This qualifier is
4385    --   normally used when the main subprogram is in a foreign language
4386    --   such as C.
4387
4388    S_Make_Comp    : aliased constant S := "/COMPILER_QUALIFIERS=?"         &
4389                                             "-cargs COMPILE";
4390    --        /COMPILER_QUALIFIERS
4391    --
4392    --   Any qualifiers specified after this qualifier other than
4393    --   /BINDER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
4394    --   passed to any GNAT COMPILE commands generated by GNAT MAKE.
4395
4396    S_Make_Cond    : aliased constant S := "/CONDITIONAL_SOURCE_SEARCH=*"   &
4397                                             "-A*";
4398    --        /CONDITIONAL_SOURCE_SEARCH=dir
4399    --
4400    --   Equivalent to "/SOURCE_SEARCH=dir /SKIP_MISSING=dir".
4401
4402    S_Make_Cont    : aliased constant S := "/CONTINUE_ON_ERROR "            &
4403                                             "-k";
4404    --        /NOCONTINUE_ON_ERROR (D)
4405    --        /CONTINUE_ON_ERROR
4406    --
4407    --   Keep going. Continue as much as possible after a compilation error.
4408    --   To ease the programmer's task in case of compilation errors, the list
4409    --   of sources for which the compile fails is given when GNAT MAKE
4410    --   terminates.
4411
4412    S_Make_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
4413                                             "!-I-";
4414    --        /CURRENT_DIRECTORY (D)
4415    --        /NOCURRENT_DIRECTORY
4416    --
4417    --   Look for source, library or object files in the default directory.
4418
4419    S_Make_Dep     : aliased constant S := "/DEPENDENCIES_LIST "            &
4420                                             "-M";
4421    --        /NODEPENDENCIES_LIST (D)
4422    --        /DEPENDENCIES_LIST
4423    --
4424    --   Check if all objects are up to date. If they are, output the object
4425    --   dependences to SYS$OUTPUT in a form that can be directly exploited in
4426    --   a Unix-style Makefile. By default, each source file is prefixed with
4427    --   its (relative or absolute) directory name. This name is whatever you
4428    --   specified in the various /SOURCE_SEARCH and /SEARCH qualifiers.  If
4429    --   you also specify the /QUIET qualifier, only the source file names,
4430    --   without relative paths, are output. If you just specify the
4431    --   /DEPENDENCY_LIST qualifier, dependencies of the GNAT internal system
4432    --   files are omitted.  This is typically what you want. If you also
4433    --   specify the /ALL_FILES qualifier, dependencies of the GNAT internal
4434    --   files are also listed. Note that dependencies of the objects in
4435    --   external Ada libraries (see the /SKIP_MISSING qualifier) are never
4436    --   reported.
4437
4438    S_Make_Dirobj  : aliased constant S := "/DIRECTORY_OBJECTS=@"           &
4439                                             "-D@";
4440    --        /DIRECTORY_OBJECTS=<file>
4441    --
4442    --   Put all object files and .ALI files in <file>.
4443    --   This qualifier is not compatible with /PROJECT_FILE.
4444
4445    S_Make_Disprog : aliased constant S := "/DISPLAY_PROGRESS "             &
4446                                             "-d";
4447    --        /NOPLAY_PROGRESS (D)
4448    --        /DISPLAY_PROGRESS
4449    --
4450    --   Display progress for each source, up to date or not, as a single line
4451    --      completed x out of y (zz%)
4452    --   If the file needs to be compiled this is displayed after the
4453    --   invocation of the compiler. These lines are displayed even in quiet
4454    --   output mode (/QUIET).
4455
4456    S_Make_Doobj   : aliased constant S := "/DO_OBJECT_CHECK "              &
4457                                             "-n";
4458    --        /NODO_OBJECT_CHECK (D)
4459    --        /DO_OBJECT_CHECK
4460    --
4461    --   Don't compile, bind, or link. Output a single command that will
4462    --   recompile an out of date unit, if any. Repeated use of this option,
4463    --   followed by carrying out the indicated compilation, will eventually
4464    --   result in recompiling all required units.
4465    --
4466    --   If any ALI is missing during the process, GNAT MAKE halts and
4467    --   displays an error message.
4468
4469    S_Make_Execut  : aliased constant S := "/EXECUTABLE=@"                  &
4470                                             "-o@";
4471    --        /EXECUTABLE=exec-name
4472    --
4473    --   The name of the final executable program will be 'exec_name'. If this
4474    --   qualifier is omitted the default name for the executable will be the
4475    --   name of the input file with an EXE filetype.  You may prefix
4476    --   'exec_name' with a relative or absolute directory path.
4477
4478    S_Make_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
4479                                             "-X" & '"';
4480    --        /EXTERNAL_REFERENCE="name=val"
4481    --
4482    --   Specifies an external reference to the project manager. Useful only if
4483    --   /PROJECT_FILE is used.
4484    --
4485    --   Example:
4486    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4487
4488    S_Make_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
4489                                             "-eL";
4490    --        /NOFOLLOW_LINKS_FOR_FILES (D)
4491    --        /FOLLOW_LINKS_FOR_FILES
4492    --
4493    --    Follow links when parsing project files
4494
4495    S_Make_Force   : aliased constant S := "/FORCE_COMPILE "                &
4496                                             "-f";
4497    --        /NOFORCE_COMPILE (D)
4498    --        /FORCE_COMPILE
4499    --
4500    --   Force recompilations. Recompile all sources, even though some object
4501    --   files may be up to date, but don't recompile predefined or GNAT
4502    --   internal files unless the /ALL_FILES qualifier is also specified.
4503
4504    S_Make_Full    : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES "  &
4505                                             "-F";
4506    --        /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
4507    --        /FULL_PATH_IN_BRIEF_MESSAGES
4508    --
4509    --   When using project files, if some errors or warnings are detected
4510    --   during parsing and verbose mode is not in effect (no use of qualifier
4511    --   /VERBOSE), then error lines start with the full path name of the
4512    --   project file, rather than its simple file name.
4513
4514    S_Make_Hi_Verb : aliased constant S := "/HIGH_VERBOSITY "               &
4515                                           "-vh";
4516    --        /NOHIGH_VERBOSITY (D)
4517    --        /HIGH_VERBOSITY
4518    --
4519    --   Displays the reason for all recompilations GNAT MAKE decides are
4520    --   necessary, in high verbosity. Equivalent to /VERBOSE.
4521
4522    S_Make_Inplace : aliased constant S := "/IN_PLACE "                     &
4523                                             "-i";
4524    --        /NOIN_PLACE (D)
4525    --        /IN_PLACE
4526    --
4527    --   In normal mode, GNAT MAKE compiles all object files and ALI files
4528    --   into the current directory. If the /IN_PLACE switch is used,
4529    --   then instead object files and ALI files that already exist are over-
4530    --   written in place. This means that once a large project is organized
4531    --   into separate directories in the desired manner, then GNAT MAKE will
4532    --   automatically maintain and update this organization. If no ALI files
4533    --   are found on the Ada object path, the new object and ALI files are
4534    --   created in the directory containing the source being compiled.
4535
4536    S_Make_Index   : aliased constant S := "/SOURCE_INDEX=#"                &
4537                                              "-eI#";
4538    --        /SOURCE_INDEX=nnn
4539    --
4540    --   Specifies the index of the units in the source file
4541    --   By default, source files are mono-unit and there is no index
4542    --   When /SOURCE_INDEX=nnn is specified, only one main may be specified
4543    --   on the command line.
4544
4545    S_Make_Library : aliased constant S := "/LIBRARY_SEARCH=*"              &
4546                                             "-L*";
4547    --        /LIBRARY_SEARCH=(directory[,...])
4548    --
4549    --   Add the specified directories to the list of directories in which the
4550    --   linker will search for libraries.
4551
4552    S_Make_Link    : aliased constant S := "/LINKER_QUALIFIERS=?"           &
4553                                             "-largs LINK";
4554    --        /LINKER_QUALIFIERS
4555    --
4556    --   Any qualifiers specified after this qualifier other than
4557    --   /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /MAKE_QUALIFIERS will be
4558    --   passed to any GNAT LINK commands generated by GNAT LINK.
4559
4560    S_Make_Low_Verb : aliased constant S := "/LOW_VERBOSITY "               &
4561                                            "-vl";
4562    --        /NOLOW_VERBOSITY (D)
4563    --        /LOW_VERBOSITY
4564    --
4565    --   Displays the reason for all recompilations GNAT MAKE decides are
4566    --   necessary, in low verbosity, that is with less output than
4567    --   /MEDIUM_VERBOSITY, /HIGH_VERBOSITY or /VERBOSE.
4568
4569    S_Make_Make    : aliased constant S := "/MAKE_QUALIFIERS=?"             &
4570                                             "-margs MAKE";
4571    --        /MAKE_QUALIFIERS
4572    --
4573    --   Any qualifiers specified after this qualifier other than
4574    --   /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /LINKER_QUALIFIERS
4575    --   are for the benefit of GNAT MAKE itself.
4576
4577    S_Make_Mapping : aliased constant S := "/MAPPING "                      &
4578                                             "-C";
4579    --        /NOMAPPING (D)
4580    --        /MAPPING
4581    --
4582    --   Use a mapping file.  A mapping file is a way to communicate to the
4583    --   compiler two mappings: from unit names to file names (without any
4584    --   directory information) and from file names to path names (with full
4585    --   directory information). These mappings are used by the compiler to
4586    --   short-circuit the path search. When GNAT MAKE is invoked with this
4587    --   qualifier, it will create a mapping file, initially populated by the
4588    --   project manager, if /PROJECT_File= is used, otherwise initially empty.
4589    --   Each invocation of the compiler will add the newly accessed sources to
4590    --   the mapping file. This will improve the source search during the next
4591    --   invocations of the compiler
4592
4593    S_Make_Med_Verb : aliased constant S := "/MEDIUM_VERBOSITY "            &
4594                                            "-vm";
4595    --        /NOMEDIUM_VERBOSITY (D)
4596    --        /MEDIUM_VERBOSITY
4597    --
4598    --   Displays the reason for all recompilations GNAT MAKE decides are
4599    --   necessary, in medium verbosity, that is with potentially less output
4600    --   than /HIGH_VERBOSITY or /VERBOSE.
4601
4602    S_Make_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
4603                                             "DEFAULT "                     &
4604                                                "-vP0 "                     &
4605                                             "MEDIUM "                      &
4606                                                "-vP1 "                     &
4607                                             "HIGH "                        &
4608                                                "-vP2";
4609    --        /MESSAGES_PROJECT_FILE[=messages-option]
4610    --
4611    --   Specifies the "verbosity" of the parsing of project files.
4612    --   messages-option may be one of the following:
4613    --
4614    --      DEFAULT (D)  No messages are output if there is no error or warning.
4615    --
4616    --      MEDIUM       A small number of messages are output.
4617    --
4618    --      HIGH         A great number of messages are output, most of them not
4619    --                   being useful for the user.
4620
4621    S_Make_Minimal : aliased constant S := "/MINIMAL_RECOMPILATION "        &
4622                                             "-m";
4623    --        /NOMINIMAL_RECOMPILATION (D)
4624    --        /MINIMAL_RECOMPILATION
4625    --
4626    --   Specifies that the minimum necessary amount of recompilation
4627    --   be performed. In this mode GNAT MAKE ignores time stamp differences
4628    --   when the only modifications to a source file consist in
4629    --   adding/removing comments, empty lines, spaces or tabs.
4630
4631    S_Make_Missing : aliased constant S := "/CREATE_MISSING_DIRS "          &
4632                                             "-p";
4633    --        /NOCREATE_MISSING_DIRS (D)
4634    --        /CREATE_MISSING_DIRS
4635    --
4636    --   When an object directory, a library directory or an exec directory
4637    --   in missing, attempt to create the directory.
4638
4639    S_Make_Nolink  : aliased constant S := "/NOLINK "                       &
4640                                             "-c";
4641    --        /NOLINK
4642    --
4643    --   Compile only. Do not perform binding and linking. If the root unit is
4644    --   not a main unit, this is the default.  Otherwise GNAT MAKE will
4645    --   attempt binding and linking unless all objects are up to date and the
4646    --   executable is more recent than the objects.
4647    --   This is equivalent to /ACTIONS=COMPILE
4648
4649    S_Make_Nomain  : aliased constant S := "/NOMAIN "                       &
4650                                             "-z";
4651    --        /NOMAIN
4652    --
4653    --   No main subprogram. Bind and link the program even if the unit name
4654    --   given on the command line is a package name. The resulting executable
4655    --   will execute the elaboration routines of the package and its closure,
4656    --   then the finalization routines.
4657
4658    S_Make_Nonpro  : aliased constant S := "/NON_PROJECT_UNIT_COMPILATION " &
4659                                             "-x";
4660    --        /NON_PROJECT_UNIT_COMPILATION
4661    --
4662    --    Normally, when using project files, a unit that is not part of any
4663    --    project file, cannot be compile. These units may be compile, when
4664    --    needed, if this qualifier is specified.
4665
4666    S_Make_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
4667                                             "-nostdinc";
4668    --        /NOSTD_INCLUDES
4669    --
4670    --    Do not look for sources the in the system default directory.
4671
4672    S_Make_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
4673                                             "-nostdlib";
4674    --        /NOSTD_LIBRARIES
4675    --
4676    --    Do not look for library files in the system default directory.
4677
4678    S_Make_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
4679                                             "-aO*";
4680    --        /OBJECT_SEARCH=(directory[,...])
4681    --
4682    --   When looking for library and object files look also in the specified
4683    --   directories.
4684
4685    S_Make_Proc    : aliased constant S := "/PROCESSES=#"                   &
4686                                             "-j#";
4687    --        /NOPROCESSES (D)
4688    --        /PROCESSES=NNN
4689    --
4690    --   Use NNN processes to carry out the (re)compilations. If you have a
4691    --   multiprocessor machine, compilations will occur in parallel.  In the
4692    --   event of compilation errors, messages from various compilations might
4693    --   get interspersed (but GNAT MAKE will give you the full ordered list of
4694    --   failing compiles at the end). This can at times be annoying.  To get a
4695    --   clean list of error messages don't use this qualifier.
4696
4697    S_Make_Nojobs  : aliased constant S := "/NOPROCESSES "                  &
4698                                             "-j1";
4699    --  NODOC (see /PROCESS)
4700
4701    S_Make_Project : aliased constant S := "/PROJECT_FILE=<"                &
4702                                             "-P>";
4703    --        /PROJECT_FILE=filename
4704    --
4705    --   Specifies the main project file to be used. The project files rooted
4706    --   at the main project file will be parsed before any other processing to
4707    --   set the building environment.
4708
4709    S_Make_Quiet   : aliased constant S := "/QUIET "                        &
4710                                             "-q";
4711    --        /NOQUIET (D)
4712    --        /QUIET
4713    --
4714    --   When this qualifiers is specified, the commands carried out by GNAT
4715    --   MAKE are not displayed.
4716
4717    S_Make_Reason  : aliased constant S := "/REASONS "                      &
4718                                             "-v";
4719    --        /NOREASONS (D)
4720    --        /REASONS
4721    --
4722    --   Displays the reason for all recompilations GNAT MAKE decides are
4723    --   necessary.
4724
4725    S_Make_RTS     : aliased constant S := "/RUNTIME_SYSTEM=|"              &
4726                                             "--RTS=|";
4727    --        /RUNTIME_SYSTEM=xxx
4728    --
4729    --    Build against an alternate runtime system named xxx or RTS-xxx.
4730
4731    S_Make_Search  : aliased constant S := "/SEARCH=*"                      &
4732                                             "-I*";
4733    --        /SEARCH=(directory[,...])
4734    --
4735    --   Search the specified directories for both source and object files.
4736
4737    S_Make_Skip    : aliased constant S := "/SKIP_MISSING=*"                &
4738                                             "-aL*";
4739    --        /SKIP_MISSING=(directory[,...])
4740    --
4741    --   Skip missing library sources if ALI in 'directory'.
4742
4743    S_Make_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
4744                                             "-aI*";
4745    --        /SOURCE_SEARCH=(directory[,...])
4746    --
4747    --   When looking for source files also look in the specified directories.
4748
4749    S_Make_Stand   : aliased constant S := "/STANDARD_OUTPUT_FOR_COMMANDS " &
4750                                             "-eS";
4751    --        /NOSTANDARD_OUTPUT_FOR_COMMANDS (D)
4752    --        /STANDARD_OUTPUT_FOR_COMMANDS
4753    --
4754    --   Output the commands for the compiler, the binder and the linker
4755    --   on SYS$OUTPUT, instead of SYS$ERROR.
4756
4757    S_Make_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
4758                                              "--subdirs=>";
4759    --        /SUBDIRS=dir
4760    --
4761    --   The actual directories (object, exec, library, ...) are subdirectories
4762    --   of the directory specified in the project file. If the subdirectory
4763    --   does not exist, it is created automatically.
4764
4765    S_Make_Switch  : aliased constant S := "/SWITCH_CHECK "                 &
4766                                             "-s";
4767    --        /NOSWITCH_CHECK (D)
4768    --        /SWITCH_CHECK
4769    --
4770    --   Recompile if compiler switches have changed since last compilation.
4771    --   All compiler switches but -I and -o are taken into account in the
4772    --   following way: orders between different "first letter" switches are
4773    --   ignored, but orders between same switches are taken into account.
4774    --   For example, -O -O2 is different than -O2 -O, but -g -O is equivalent
4775    --   to -O -g.
4776
4777    S_Make_Unique  : aliased constant S := "/UNIQUE "                       &
4778                                             "-u";
4779    --        /NOUNIQUE (D)
4780    --        /UNIQUE
4781    --
4782    --  Recompile at most the main file. It implies /ACTIONS=COMPILE.
4783    --  Combined with /FORCE_COMPILE, it is equivalent to calling the compiler
4784    --  directly.
4785
4786    S_Make_Use_Map : aliased constant S := "/USE_MAPPING_File=@"            &
4787                                             "-C=@";
4788    --        /USE_MAPPING_FILE=file_name
4789    --
4790    --   Use a specific mapping file. The file 'file_name', specified as a path
4791    --   name (absolute or relative) by this qualifier, should already exist,
4792    --   otherwise the qualifier is ineffective. The specified mapping file
4793    --   will be communicated to the compiler. This switch is not compatible
4794    --   with a project file (/PROJECT_FILE=) or with multiple compiling
4795    --   processes (/PROCESSES=nnn, when nnn is greater than 1).
4796
4797    S_Make_Verbose : aliased constant S := "/VERBOSE "                      &
4798                                             "-v";
4799    --        /NOVERBOSE (D)
4800    --        /VERBOSE
4801    --
4802    --   Displays the reason for all recompilations GNAT MAKE decides are
4803    --   necessary.
4804
4805    Make_Switches : aliased constant Switches :=
4806                      (S_Make_Add     'Access,
4807                       S_Make_Actions 'Access,
4808                       S_Make_All     'Access,
4809                       S_Make_Allproj 'Access,
4810                       S_Make_Bind    'Access,
4811                       S_Make_Comp    'Access,
4812                       S_Make_Cond    'Access,
4813                       S_Make_Cont    'Access,
4814                       S_Make_Current 'Access,
4815                       S_Make_Dep     'Access,
4816                       S_Make_Dirobj  'Access,
4817                       S_Make_Disprog 'Access,
4818                       S_Make_Doobj   'Access,
4819                       S_Make_Execut  'Access,
4820                       S_Make_Ext     'Access,
4821                       S_Make_Follow  'Access,
4822                       S_Make_Force   'Access,
4823                       S_Make_Full    'Access,
4824                       S_Make_Hi_Verb 'Access,
4825                       S_Make_Inplace 'Access,
4826                       S_Make_Index   'Access,
4827                       S_Make_Library 'Access,
4828                       S_Make_Link    'Access,
4829                       S_Make_Low_Verb'Access,
4830                       S_Make_Make    'Access,
4831                       S_Make_Mapping 'Access,
4832                       S_Make_Med_Verb'Access,
4833                       S_Make_Mess    'Access,
4834                       S_Make_Minimal 'Access,
4835                       S_Make_Missing 'Access,
4836                       S_Make_Nolink  'Access,
4837                       S_Make_Nomain  'Access,
4838                       S_Make_Nonpro  'Access,
4839                       S_Make_Nostinc 'Access,
4840                       S_Make_Nostlib 'Access,
4841                       S_Make_Object  'Access,
4842                       S_Make_Proc    'Access,
4843                       S_Make_Nojobs  'Access,
4844                       S_Make_Project 'Access,
4845                       S_Make_Quiet   'Access,
4846                       S_Make_Reason  'Access,
4847                       S_Make_RTS     'Access,
4848                       S_Make_Search  'Access,
4849                       S_Make_Skip    'Access,
4850                       S_Make_Source  'Access,
4851                       S_Make_Stand   'Access,
4852                       S_Make_Subdirs 'Access,
4853                       S_Make_Switch  'Access,
4854                       S_Make_Unique  'Access,
4855                       S_Make_Use_Map 'Access,
4856                       S_Make_Verbose 'Access);
4857
4858    ------------------------------
4859    -- Switches for GNAT METRIC --
4860    ------------------------------
4861
4862    S_Metric_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"    &
4863                                               "-aP*";
4864    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4865    --
4866    --   Add directories to the project search path.
4867
4868    S_Metric_All_Prjs : aliased constant S := "/ALL_PROJECTS "              &
4869                                                "-U";
4870    --        /NOALL_PROJECTS (D)
4871    --        /ALL_PROJECTS
4872    --   When GNAT METRIC is used with a Project File and no source is
4873    --   specified, the underlying tool gnatmetric is called for all the
4874    --   sources of all the Project Files in the project tree.
4875
4876    S_Metric_Debug    : aliased constant S := "/DEBUG_OUTPUT "              &
4877                                              "-dv";
4878    --      /DEBUG_OUTPUT
4879    --
4880    --   Generate the debug information
4881
4882    S_Metric_Direct   : aliased constant S := "/DIRECTORY=@"                &
4883                                              "-d=@";
4884    --      /DIRECTORY=pathname
4885    --
4886    --   Put the files with detailed metric information into the specified
4887    --   directory
4888
4889    S_Metric_Element : aliased constant S := "/ELEMENT_METRICS="            &
4890                                              "ALL "                        &
4891                                               "!-ed,!-es,!-enl,!-eps,"     &
4892                                               "!-eas,!-ept,!-eat,!-enu,"   &
4893                                               "!-ec "                      &
4894                                              "DECLARATION_TOTAL "          &
4895                                               "-ed "                       &
4896                                              "STATEMENT_TOTAL "            &
4897                                               "-es "                       &
4898                                              "LOOP_NESTING_MAX "           &
4899                                               "-enl "                      &
4900                                              "INT_SUBPROGRAMS "            &
4901                                               "-eps "                      &
4902                                              "SUBPROGRAMS_ALL "            &
4903                                               "-eas "                      &
4904                                              "INT_TYPES "                  &
4905                                               "-ept "                      &
4906                                              "TYPES_ALL "                  &
4907                                               "-eat "                      &
4908                                              "PROGRAM_NESTING_MAX "        &
4909                                               "-enu "                      &
4910                                              "CONSTRUCT_NESTING_MAX "      &
4911                                               "-ec";
4912    --  NODOC  (see /SYNTAX_METRICS)
4913
4914    S_Metric_Syntax : aliased constant S := "/SYNTAX_METRICS="              &
4915                                              "ALL "                        &
4916                                              "--syntax-all "               &
4917                                              "NONE "                       &
4918                                              "--no-syntax-all "            &
4919                                              "DECLARATIONS "               &
4920                                              "--declarations "             &
4921                                              "NODECLARATIONS "             &
4922                                              "--no-declarations "          &
4923                                              "STATEMENTS "                 &
4924                                              "--statements "               &
4925                                              "NOSTATEMENTS "               &
4926                                              "--no-statements "            &
4927                                              "PUBLIC_SUBPROGRAMS "         &
4928                                              "--public-subprograms "       &
4929                                              "NOPUBLIC_SUBPROGRAMS "       &
4930                                              "--no-public-subprograms "    &
4931                                              "ALL_SUBPROGRAMS "            &
4932                                              "--all-subprograms "          &
4933                                              "NOALL_SUBPROGRAMS "          &
4934                                              "--no-all-subprograms "       &
4935                                              "PUBLIC_TYPES "               &
4936                                              "--public-types "             &
4937                                              "NOPUBLIC_TYPES "             &
4938                                              "--no-public-types "          &
4939                                              "ALL_TYPES "                  &
4940                                              "--all-types "                &
4941                                              "NOALL_TYPES "                &
4942                                              "--no-all-types "             &
4943                                              "UNIT_NESTING "               &
4944                                              "--unit-nesting "             &
4945                                              "NOUNIT_NESTING "             &
4946                                              "--no-unit-nesting "          &
4947                                              "CONSTRUCT_NESTING "          &
4948                                              "--construct-nesting "        &
4949                                              "NOCONSTRUCT_NESTING "        &
4950                                              "--no-construct-nesting";
4951    --       /SYNTAX_METRICS(option, option ...)
4952    --
4953    --   Specifies the syntax element metrics to be computed (if at least one
4954    --   positive syntax element metric, line metric, complexity or coupling
4955    --   metric is specified then only explicitly specified syntax element
4956    --   metrics are computed and reported)
4957    --
4958    --   option may be one of the following:
4959    --
4960    --     ALL (D)               All the syntax element metrics are computed
4961    --     NONE                  None of syntax element metrics is computed
4962    --     DECLARATIONS          Compute the total number of declarations
4963    --     NODECLARATIONS        Do not compute the total number of declarations
4964    --     STATEMENTS            Compute the total number of statements
4965    --     NOSTATEMENTS          Do not compute the total number of statements
4966    --     PUBLIC_SUBPROGRAMS    Compute the number of public subprograms
4967    --     NOPUBLIC_SUBPROGRAMS  Do not compute the number of public subprograms
4968    --     ALL_SUBPROGRAMS       Compute the number of all the subprograms
4969    --     NOALL_SUBPROGRAMS     Do not compute the number of all the
4970    --                           subprograms
4971    --     PUBLIC_TYPES          Compute the number of public types
4972    --     NOPUBLIC_TYPES        Do not compute the number of public types
4973    --     ALL_TYPES             Compute the number of all the types
4974    --     NOALL_TYPES           Do not compute the number of all the types
4975    --     UNIT_NESTING          Compute the maximal program unit nesting
4976    --                           level
4977    --     NOUNIT_NESTING        Do not compute the maximal program unit
4978    --                           nesting level
4979    --     CONSTRUCT_NESTING     Compute the maximal construct nesting level
4980    --     NOCONSTRUCT_NESTING   Do not compute the maximal construct nesting
4981    --                           level
4982    --
4983    --   All combinations of syntax element metrics options are allowed.
4984
4985    S_Metric_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'   &
4986                                              "-X" & '"';
4987    --       /EXTERNAL_REFERENCE="name=val"
4988    --
4989    --   Specifies an external reference to the project manager. Useful only if
4990    --   /PROJECT_FILE is used.
4991    --
4992    --   Example:
4993    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4994
4995    S_Metric_Files   : aliased constant S := "/FILES=@"                     &
4996                                              "-files=@";
4997    --      /FILES=filename
4998    --
4999    --   Take as arguments the files that are listed in the specified
5000    --   text file.
5001
5002    S_Metric_Format  : aliased constant S := "/FORMAT_OUTPUT="              &
5003                                              "DEFAULT "                    &
5004                                               "!-x,!-nt,!-sfn "            &
5005                                              "XML "                        &
5006                                               "-x "                        &
5007                                              "XSD "                        &
5008                                               "-xs "                       &
5009                                              "NO_TEXT "                    &
5010                                               "-nt "                       &
5011                                              "SHORT_SOURCE_FILE_NAME "     &
5012                                               "-sfn";
5013    --       /FORMAT_OUTPUT=(option, option ...)
5014    --
5015    --   Specifies the details of the tool output
5016    --
5017    --   option may be one of the following:
5018    --
5019    --     DEFAULT (D)             Generate the text output only, use full
5020    --                             argument source names in global information
5021    --     XML                     Generate the output in XML format
5022    --     XSD                     Generate the output in XML format, and
5023    --                             generate an XML schema file that describes
5024    --                             the structure of XML metrics report
5025    --     NO_TEXT                 Do not generate the text output (implies XML)
5026    --     SHORT_SOURCE_FILE_NAME  Use short argument source names in output
5027
5028    S_Metric_Globout : aliased constant S := "/GLOBAL_OUTPUT=@"             &
5029                                              "-og@";
5030    --        /GLOBAL_OUTPUT=filename
5031    --
5032    --   Put the textual global metric information into the specified file
5033
5034    S_Metric_Line     : aliased constant S := "/LINE_METRICS="              &
5035                                                 "ALL "                     &
5036                                                  "!-la,!-lcode,!-lcomm,"   &
5037                                                  "!-leol,!-lb "            &
5038                                                 "LINES_ALL "               &
5039                                                  "-la "                    &
5040                                                 "CODE_LINES "              &
5041                                                  "-lcode "                 &
5042                                                 "COMENT_LINES "            &
5043                                                  "-lcomm "                 &
5044                                                 "MIXED_CODE_COMMENTS "     &
5045                                                  "-leol "                  &
5046                                                 "COMMENT_PERCENTAGE "      &
5047                                                  "-lratio "                &
5048                                                 "BLANK_LINES "             &
5049                                                  "-lb "                    &
5050                                                 "AVERAGE_LINES_IN_BODIES " &
5051                                                  "-lav ";
5052    --  NODOC  (see /LINE_COUNT_METRICS)
5053
5054    S_Metric_Lines : aliased constant S := "/LINE_COUNT_METRICS="           &
5055                                            "ALL "                          &
5056                                            "--lines-all "                  &
5057                                            "NONE "                         &
5058                                            "--no-lines-all "               &
5059                                            "ALL_LINES "                    &
5060                                            "--lines "                      &
5061                                            "NOALL_LINES "                  &
5062                                            "--no-lines "                   &
5063                                            "CODE_LINES "                   &
5064                                            "--lines-code "                 &
5065                                            "NOCODE_LINES "                 &
5066                                            "--no-lines-code "              &
5067                                            "COMMENT_LINES "                &
5068                                            "--lines-comment "              &
5069                                            "NOCOMMENT_LINES "              &
5070                                            "--no-lines-comment "           &
5071                                            "CODE_COMMENT_LINES "           &
5072                                            "--lines-eol-comment "          &
5073                                            "NOCODE_COMMENT_LINES "         &
5074                                            "--no-lines-eol-comment "       &
5075                                            "COMMENT_PERCENTAGE "           &
5076                                            "--lines-ratio "                &
5077                                            "NOCOMMENT_PERCENTAGE "         &
5078                                            "--no-lines-ratio "             &
5079                                            "BLANK_LINES "                  &
5080                                            "--lines-blank "                &
5081                                            "NOBLANK_LINES "                &
5082                                            "--no-lines-blank "             &
5083                                            "AVERAGE_BODY_LINES "           &
5084                                            "--lines-average "              &
5085                                            "NOAVERAGE_BODY_LINES "         &
5086                                            "--no-lines-average";
5087    --      /LINE_COUNT_METRICS=(option, option ...)
5088
5089    --   Specifies the line metrics to be computed (if at least one positive
5090    --   syntax element metric, line metric, complexity or coupling metric is
5091    --   specified then only explicitly specified line metrics are computed
5092    --   and reported)
5093    --
5094    --   option may be one of the following:
5095    --
5096    --     ALL (D)               All the line metrics are computed
5097    --     NONE                  None of line metrics is computed
5098    --     ALL_LINES             All lines are computed
5099    --     NOALL_LINES           All lines are not computed
5100    --     CODE_LINES            Lines with Ada code are computed
5101    --     NOCODE_LINES          Lines with Ada code are not computed
5102    --     COMMENT_LINES         Comment lines are computed
5103    --     NOCOMMENT_LINES       Comment lines are not computed
5104    --     CODE_COMMENT_LINES    Lines containing both code and comment parts
5105    --                           are computed
5106    --     NOCODE_COMMENT_LINES  Lines containing both code and comment parts
5107    --                           are not computed
5108    --     COMMENT_PERCENTAGE    Ratio between comment lines and all the lines
5109    --                           containing comments and program code is
5110    --                           computed
5111    --     NOCOMMENT_PERCENTAGE  Ratio between comment lines and all the lines
5112    --                           containing comments and program code is not
5113    --                           computed
5114    --     BLANK_LINES           Blank lines are computed
5115    --     NOBLANK_LINES         Blank lines are not computed
5116    --     AVERAGE_BODY_LINES    Average number of code lines in subprogram,
5117    --                           task and entry bodies and statement sequences
5118    --                           of package bodies is computed
5119    --     NOAVERAGE_BODY_LINES  Average number of code lines in subprogram,
5120    --                           task and entry bodies and statement sequences
5121    --                           of package bodies is not computed
5122    --
5123    --   All combinations of line metrics options are allowed.
5124
5125    S_Metric_Complexity : aliased constant S := "/COMPLEXITY_METRICS="      &
5126                                                "ALL "                      &
5127                                                "--complexity-all "         &
5128                                               "NONE "                      &
5129                                               "--no-complexity-all "       &
5130                                               "CYCLOMATIC "                &
5131                                               "--complexity-cyclomatic "   &
5132                                               "NOCYCLOMATIC "              &
5133                                               "--no-complexity-cyclomatic "&
5134                                               "ESSENTIAL "                 &
5135                                               "--complexity-essential "    &
5136                                               "NOESSENTIAL "               &
5137                                               "--no-complexity-essential " &
5138                                               "LOOP_NESTING "              &
5139                                               "--loop-nesting "            &
5140                                               "NOLOOP_NESTING "            &
5141                                               "--no-loop-nesting "         &
5142                                               "AVERAGE_COMPLEXITY "        &
5143                                               "--complexity-average "      &
5144                                               "NOAVERAGE_COMPLEXITY "      &
5145                                               "--no-complexity-average "   &
5146                                               "EXTRA_EXIT_POINTS "         &
5147                                               "--extra-exit-points "       &
5148                                               "NOEXTRA_EXIT_POINTS "       &
5149                                               "--no-extra-exit-points";
5150    --      /COMPLEXITY_METRICS=(option, option ...)
5151
5152    --   Specifies the complexity metrics to be computed (if at least one
5153    --   positive syntax element metric, line metric, complexity or coupling
5154    --   metric is specified then only explicitly specified complexity metrics
5155    --   are computed and reported)
5156    --
5157    --   option may be one of the following:
5158    --
5159    --     ALL (D)               All the complexity metrics are computed
5160    --     NONE                  None of complexity metrics is computed
5161    --     CYCLOMATIC            Compute the McCabe Cyclomatic Complexity
5162    --     NOCYCLOMATIC          Do not compute the McCabe Cyclomatic Complexity
5163    --     ESSENTIAL             Compute the Essential Complexity
5164    --     NOESSENTIAL           Do not compute the Essential Complexity
5165    --     LOOP_NESTING          Compute the maximal loop nesting
5166    --     NOLOOP_NESTING        Do not compute the maximal loop nesting
5167    --     AVERAGE_COMPLEXITY    Compute the average complexity for executable
5168    --                           bodies
5169    --     NOAVERAGE_COMPLEXITY  Do not compute the average complexity for
5170    --                           executable bodies
5171    --     EXTRA_EXIT_POINTS     Compute extra exit points metric
5172    --     NOEXTRA_EXIT_POINTS   Do not compute extra exit points metric
5173    --
5174    --   All combinations of line metrics options are allowed.
5175
5176    S_Metric_Coupling : aliased constant S := "/COUPLING_METRICS="             &
5177                                            "ALL "                             &
5178                                            "--coupling-all "                  &
5179                                            "NONE "                            &
5180                                            "--no-coupling-all "               &
5181                                            "PACKAGE_EFFERENT "                &
5182                                            "--package-efferent-coupling "     &
5183                                            "NOPACKAGE_EFFERENT "              &
5184                                            "--no-package-efferent-coupling "  &
5185                                            "PACKAGE_AFFERENT "                &
5186                                            "--package-afferent-coupling "     &
5187                                            "NOPACKAGE_AFFERENT "              &
5188                                            "--no-package-afferent-coupling "  &
5189                                            "CATEGORY_EFFERENT "               &
5190                                            "--category-efferent-coupling "    &
5191                                            "NOCATEGORY_EFFERENT "             &
5192                                            "--no-category-efferent-coupling " &
5193                                            "CATEGORY_AFFERENT "               &
5194                                            "--category-afferent-coupling "    &
5195                                            "NOCATEGORY_AFFERENT "             &
5196                                            "--no-category-afferent-coupling";
5197
5198    --      /COUPLING_METRICS=(option, option ...)
5199
5200    --   Specifies the coupling metrics to be computed.
5201    --
5202    --   option may be one of the following:
5203    --
5204    --     ALL                   All the coupling metrics are computed
5205    --     NONE (D)              None of coupling metrics is computed
5206    --     PACKAGE_EFFERENT      Compute package efferent coupling
5207    --     NOPACKAGE_EFFERENT    Do not compute package efferent coupling
5208    --     PACKAGE_AFFERENT      Compute package afferent coupling
5209    --     NOPACKAGE_AFFERENT    Do not compute package afferent coupling
5210    --     CATEGORY_EFFERENT     Compute category efferent coupling
5211    --     NOCATEGORY_EFFERENT   Do not compute category efferent coupling
5212    --     CATEGORY_AFFERENT     Compute category afferent coupling
5213    --     NOCATEGORY_AFFERENT   Do not compute category afferent coupling
5214    --
5215    --   All combinations of coupling metrics options are allowed.
5216
5217    S_Metric_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "      &
5218                                              "-eL";
5219    --        /NOFOLLOW_LINKS_FOR_FILES (D)
5220    --        /FOLLOW_LINKS_FOR_FILES
5221    --
5222    --    Follow links when parsing project files
5223
5224    S_Metric_No_Local : aliased constant S := "/NO_LOCAL_DETAILS "          &
5225                                              "-nolocal";
5226    --        /LOCAL_DETAILS (D)
5227    --        /NO_LOCAL_DETAILS
5228    --
5229    --   Do not compute the detailed metrics for local program units.
5230
5231    S_Metric_No_Exits_As_Gotos : aliased constant S := "/NO_EXITS_AS_GOTOS " &
5232                                                       "-ne";
5233    --        /EXITS_AS_GOTOS (D)
5234    --        /NO_EXITS_AS_GOTOS
5235    --
5236    --   Do not count EXIT statements as GOTOs when computing the Essential
5237    --   Complexity.
5238
5239    S_Metric_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="      &
5240                                              "DEFAULT "                    &
5241                                                 "-vP0 "                    &
5242                                              "MEDIUM "                     &
5243                                                 "-vP1 "                    &
5244                                              "HIGH "                       &
5245                                                 "-vP2";
5246    --        /MESSAGES_PROJECT_FILE[=messages-option]
5247    --
5248    --   Specifies the "verbosity" of the parsing of project files.
5249    --   messages-option may be one of the following:
5250    --
5251    --      DEFAULT (D)  No messages are output if there is no error or warning.
5252    --
5253    --      MEDIUM       A small number of messages are output.
5254    --
5255    --      HIGH         A great number of messages are output, most of them not
5256    --                   being useful for the user.
5257
5258    S_Metric_Project : aliased constant S := "/PROJECT_FILE=<"              &
5259                                              "-P>";
5260    --        /PROJECT_FILE=filename
5261    --
5262    --   Specifies the main project file to be used. The project files rooted
5263    --   at the main project file will be parsed before the invocation of the
5264    --   binder.
5265
5266    S_Metric_Quiet    : aliased constant S := "/QUIET "                     &
5267                                              "-q";
5268    --        /NOQUIET (D)
5269    --        /QUIET
5270    --
5271    --   Quiet mode: by default GNAT METRIC outputs to the standard error stream
5272    --   the number of program units left to be processed. This option turns
5273    --   this trace off.
5274
5275    S_Metric_Subdirs : aliased constant S := "/SUBDIRS=<"                   &
5276                                                "--subdirs=>";
5277    --        /SUBDIRS=dir
5278    --
5279    --   The actual directories (object, exec, library, ...) are subdirectories
5280    --   of the directory specified in the project file. If the subdirectory
5281    --   does not exist, it is created automatically.
5282
5283    S_Metric_Suffix  : aliased constant S := "/SUFFIX_DETAILS=" & '"'       &
5284                                              "-o" & '"';
5285    --        /SUFFIX_DETAILS=suffix
5286    --
5287    --   Use the given suffix as the suffix for the name of the file to place
5288    --   the detailed metrics into.
5289
5290    S_Metric_Suppress : aliased constant S :=  "/SUPPRESS="                 &
5291                                                "NOTHING "                  &
5292                                                 "!-nocc,!-noec,!-nonl,"    &
5293                                                 "!-ne,!-nolocal "          &
5294                                                "CYCLOMATIC_COMPLEXITY "    &
5295                                                 "-nocc "                   &
5296                                                "ESSENTIAL_COMPLEXITY "     &
5297                                                 "-noec "                   &
5298                                                "MAXIMAL_LOOP_NESTING "     &
5299                                                 "-nonl "                   &
5300                                                "EXITS_AS_GOTOS "           &
5301                                                 "-ne "                     &
5302                                                "LOCAL_DETAILS "            &
5303                                                 "-nolocal ";
5304    --  NODOC  (see /COMPLEXITY_METRICS /NO_LOCAL_DETAILS /NO_EXITS_AS_GOTOS)
5305
5306    S_Metric_Verbose  : aliased constant S := "/VERBOSE "                   &
5307                                              "-v";
5308    --        /NOVERBOSE (D)
5309    --        /VERBOSE
5310    --
5311    --   Verbose mode.
5312
5313    S_Metric_XMLout  : aliased constant S := "/XML_OUTPUT=@"                &
5314                                              "-ox@";
5315    --        /XML_OUTPUT=filename
5316    --
5317    --   Place the XML output into the specified file
5318
5319    Metric_Switches : aliased constant Switches :=
5320                        (S_Metric_Add              'Access,
5321                         S_Metric_All_Prjs         'Access,
5322                         S_Metric_Complexity       'Access,
5323                         S_Metric_Coupling         'Access,
5324                         S_Metric_Debug            'Access,
5325                         S_Metric_Direct           'Access,
5326                         S_Metric_Element          'Access,
5327                         S_Metric_Ext              'Access,
5328                         S_Metric_Files            'Access,
5329                         S_Metric_Follow           'Access,
5330                         S_Metric_Format           'Access,
5331                         S_Metric_Globout          'Access,
5332                         S_Metric_Line             'Access,
5333                         S_Metric_Lines            'Access,
5334                         S_Metric_Mess             'Access,
5335                         S_Metric_No_Exits_As_Gotos'Access,
5336                         S_Metric_No_Local         'Access,
5337                         S_Metric_Project          'Access,
5338                         S_Metric_Quiet            'Access,
5339                         S_Metric_Suffix           'Access,
5340                         S_Metric_Subdirs          'Access,
5341                         S_Metric_Syntax           'Access,
5342                         S_Metric_Suppress         'Access,
5343                         S_Metric_Verbose          'Access,
5344                         S_Metric_XMLout           'Access);
5345
5346    ----------------------------
5347    -- Switches for GNAT NAME --
5348    ----------------------------
5349
5350    S_Name_Conf    : aliased constant S := "/CONFIG_FILE=<"                 &
5351                                             "-c>";
5352    --        /CONFIG_FILE=path_name
5353    --
5354    --   Create a configuration pragmas file 'path_name' (instead of the default
5355    --   'gnat.adc'). 'path_name' may include directory information. 'path_name'
5356    --   must be writable. There may be only one qualifier /CONFIG_FILE.
5357    --   This qualifier is not compatible with qualifier /PROJECT_FILE.
5358
5359    S_Name_Dirs    : aliased constant S := "/SOURCE_DIRS=*"                 &
5360                                             "-d*";
5361    --        /SOURCE_DIRS=(directory, ...)
5362    --
5363    --   Look for source files in the specified directories. When this qualifier
5364    --   is specified, the current working directory will not be searched for
5365    --   source files, unless it is explicitly specified with a qualifier
5366    --   /SOURCE_DIRS or /DIRS_FILE. Several qualifiers /SOURCE_DIRS may be
5367    --   specified. If a directory is specified as a relative path, it is
5368    --   relative to the directory of the configuration pragmas file specified
5369    --   with qualifier /CONFIG_FILE, or to the directory of the project file
5370    --   specified with qualifier /PROJECT_FILE or, if neither qualifier
5371    --   /CONFIG_FILE nor qualifier /PROJECT_FILE are specified, it is relative
5372    --   to the current working directory. The directories specified with
5373    --   qualifiers /SOURCE_DIRS must exist and be readable.
5374
5375    S_Name_Dfile   : aliased constant S := "/DIRS_FILE=<"                   &
5376                                             "-D>";
5377    --        /DIRS_FILE=file_name
5378    --
5379    --   Look for source files in all directories listed in text file
5380    --   'file_name'. 'file_name' must be an existing, readable text file.
5381    --   Each non empty line in the specified file must be a directory.
5382    --   Specifying qualifier /DIRS_FILE is equivalent to specifying as many
5383    --   qualifiers /SOURCE_DIRS as there are non empty lines in the specified
5384    --   text file.
5385
5386    S_Name_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
5387                                             "-eL";
5388    --        /NOFOLLOW_LINKS_FOR_FILES (D)
5389    --        /FOLLOW_LINKS_FOR_FILES
5390    --
5391    --    Follow links when parsing project files
5392
5393    S_Name_Frng    : aliased constant S := "/FOREIGN_PATTERN=" & '"'        &
5394                                             "-f" & '"';
5395    --        /FOREIGN_PATTERN=<string>
5396    --
5397    --   Specify a foreign pattern.
5398    --   Using this qualifier, it is possible to add sources of languages other
5399    --   than Ada to the list of sources of a project file. It is only useful
5400    --   if a qualifier /PROJECT_FILE is used. For example,
5401    --
5402    --   GNAT NAME /PROJECT_FILE=PRJ /FOREIGN_PATTERN="*.C" "*.ADA"
5403    --
5404    --   will look for Ada units in all files with the '.ADA' extension, and
5405    --   will add to the list of file for project PRJ.GPR the C files with
5406    --   extension ".C".
5407
5408    S_Name_Help    : aliased constant S := "/HELP "                         &
5409                                             "-h";
5410    --        /NOHELP (D)
5411    --        /HELP
5412    --
5413    --   Output usage information to the standard output stream.
5414
5415    S_Name_Proj    : aliased constant S := "/PROJECT_FILE=<"                &
5416                                             "-P>";
5417    --        /PROJECT_FILE=file_name
5418    --
5419    --   Create or update a project file. 'file_name' may include directory
5420    --   information. The specified file must be writable. There may be only
5421    --   one qualifier /PROJECT_FILE. When a qualifier /PROJECT_FILE is
5422    --   specified, no qualifier /CONFIG_FILE may be specified.
5423
5424    S_Name_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
5425                                              "--subdirs=>";
5426    --        /SUBDIRS=dir
5427    --
5428    --   The actual directories (object, exec, library, ...) are subdirectories
5429    --   of the directory specified in the project file. If the subdirectory
5430    --   does not exist, it is created automatically.
5431
5432    S_Name_Verbose : aliased constant S := "/VERBOSE "                      &
5433                                             "-v";
5434    --        /NOVERBOSE (D)
5435    --        /VERBOSE
5436    --
5437    --   Verbose mode. Output detailed explanation of behavior to the standard
5438    --   output stream. This includes name of the file written, the name of the
5439    --   directories to search and, for each file in those directories whose
5440    --   name matches at least one of the Naming Patterns, an indication of
5441    --   whether the file contains a unit, and if so the name of the unit.
5442
5443    S_Name_Excl    : aliased constant S := "/EXCLUDED_PATTERN=" & '"'       &
5444                                             "-x" & '"';
5445    --      /EXCLUDED_PATTERN=<string>
5446    --
5447    --   Specify an excluded pattern.
5448    --   Using this qualifier, it is possible to exclude some files that would
5449    --   match the Naming patterns. For example,
5450    --
5451    --   GNAT NAME /EXCLUDED_PATTERN="*_NT.ADA" "*.ADA"
5452    --
5453    --   will look for Ada units in all files with the '.ADA' extension, except
5454    --   those whose names end with '_NT.ADA'.
5455
5456    Name_Switches : aliased constant Switches :=
5457                      (S_Name_Conf    'Access,
5458                       S_Name_Dirs    'Access,
5459                       S_Name_Dfile   'Access,
5460                       S_Name_Follow  'Access,
5461                       S_Name_Frng    'Access,
5462                       S_Name_Help    'Access,
5463                       S_Name_Proj    'Access,
5464                       S_Name_Subdirs 'Access,
5465                       S_Name_Verbose 'Access,
5466                       S_Name_Excl    'Access);
5467
5468    ----------------------------------
5469    -- Switches for GNAT PREPROCESS --
5470    ----------------------------------
5471
5472    S_Prep_Assoc   : aliased constant S := "/ASSOCIATE=" & '"'              &
5473                                             "-D" & '"';
5474    --        /ASSOCIATE="name=val"
5475    --
5476    --   Defines a new symbol, associated with value. If no value is given
5477    --   on the command line, then symbol is considered to be True.
5478    --   This qualifier can be used in place of a definition file.
5479
5480    S_Prep_Blank   : aliased constant S := "/BLANK_LINES "                  &
5481                                             "-b";
5482    --        /NOBLANK_LINES (D)
5483    --        /BLANK_LINES
5484    --
5485    --   Causes both preprocessor lines and the lines deleted by preprocessing
5486    --   to be replaced by blank lines in the output source file, thus
5487    --   preserving line numbers in the output file.
5488
5489    S_Prep_Com     : aliased constant S := "/COMMENTS "                     &
5490                                             "-c";
5491    --        /NOCOMMENTS (D)
5492    --        /COMMENTS
5493    --
5494    --   /COMMENTS causes both preprocessor lines and the lines deleted
5495    --   by preprocessing to be retained in the output source as comments marked
5496    --   with the special string "--! ". This option will result in line numbers
5497    --   being preserved in the output file.
5498    --
5499    --   /NOCOMMENTS causes both preprocessor lines and the lines deleted by
5500    --   preprocessing to be replaced by blank lines in the output source file,
5501    --   thus preserving line numbers in the output file.
5502
5503    S_Prep_Ref     : aliased constant S := "/REFERENCE "                    &
5504                                             "-r";
5505    --        /NOREFERENCE (D)
5506    --        /REFERENCE
5507    --
5508    --   Causes a "Source_Reference" pragma to be generated that references the
5509    --   original input file, so that error messages will use the file name of
5510    --   this original file.  Also implies /BLANK_LINES if /COMMENTS is not
5511    --   specified.
5512
5513    S_Prep_Remove  : aliased constant S := "/REMOVE "                       &
5514                                             "!-b,!-c";
5515    --        /REMOVE (D)
5516    --        /NOREMOVE
5517    --
5518    --   Preprocessor lines and deleted lines are completely removed from the
5519    --   output.
5520
5521    S_Prep_Replace : aliased constant S := "/REPLACE_IN_COMMENTS "          &
5522                                             "-C";
5523    --        /NOREPLACE_IN_COMMENTS (D)
5524    --        /REPLACE_IN_COMMENTS
5525    --
5526    --   Causes preprocessor to scan comments and perform replacements on
5527    --   any $symbol occurrences within the comment text.
5528
5529    S_Prep_Symbols : aliased constant S := "/SYMBOLS "                      &
5530                                             "-s";
5531    --        /NOSYMBOLS (D)
5532    --        /SYMBOLS
5533    --
5534    --   Causes a sorted list of symbol names and values to be listed on
5535    --   SYS$OUTPUT.
5536
5537    S_Prep_Undef   : aliased constant S := "/UNDEFINED "                    &
5538                                             "-u";
5539    --        /NOUNDEFINED (D)
5540    --        /UNDEFINED
5541
5542    Prep_Switches : aliased constant Switches :=
5543                      (S_Prep_Assoc   'Access,
5544                       S_Prep_Blank   'Access,
5545                       S_Prep_Com     'Access,
5546                       S_Prep_Ref     'Access,
5547                       S_Prep_Remove  'Access,
5548                       S_Prep_Replace 'Access,
5549                       S_Prep_Symbols 'Access,
5550                       S_Prep_Undef   'Access);
5551
5552    ------------------------------
5553    -- Switches for GNAT PRETTY --
5554    ------------------------------
5555
5556    S_Pretty_Add    : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"     &
5557                                              "-aP*";
5558    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
5559    --
5560    --   Add directories to the project search path.
5561
5562    S_Pretty_Align  : aliased constant S := "/ALIGN="                       &
5563                                            "DEFAULT "                      &
5564                                                "-A12345 "                  &
5565                                            "OFF "                          &
5566                                                "-A0 "                      &
5567                                            "COLONS "                       &
5568                                                "-A1 "                      &
5569                                            "DECLARATIONS "                 &
5570                                                "-A2 "                      &
5571                                            "STATEMENTS "                   &
5572                                                "-A3 "                      &
5573                                            "ARROWS "                       &
5574                                                "-A4 "                      &
5575                                            "COMPONENT_CLAUSES "            &
5576                                                "-A5";
5577    --        /ALIGN[=align-option, align-option, ...]
5578    --
5579    --   Set alignments. By default, all alignments (colons in declarations,
5580    --   initialisations in declarations, assignments and arrow delimiters) are
5581    --   ON.
5582    --
5583    --   align-option may be one of the following:
5584    --
5585    --      OFF (D)           Set all alignments to OFF
5586    --      COLONS            Set alignments of colons in declarations to ON
5587    --      DECLARATIONS      Set alignments of initialisations in declarations
5588    --                        to ON
5589    --      STATEMENTS        Set alignments of assignments statements to ON
5590    --      ARROWS            Set alignments of arrow delimiters to ON.
5591    --      COMPONENT_CLAUSES Set alignments of AT keywords in component
5592    --                        clauses ON
5593    --
5594    --   Specifying one of the ON options without first specifying the OFF
5595    --   option has no effect, because by default all alignments are set to ON.
5596
5597    S_Pretty_All_Prjs : aliased constant S := "/ALL_PROJECTS "              &
5598                                               "-U";
5599    --        /NOALL_PROJECTS (D)
5600    --        /ALL_PROJECTS
5601    --   When GNAT PRETTY is used with a Project File and no source is
5602    --   specified, the underlying tool gnatpp is called for all the
5603    --   sources of all the Project Files in the project tree.
5604
5605    S_Pretty_Attrib : aliased constant S := "/ATTRIBUTE_CASING="            &
5606                                            "MIXED_CASE "                   &
5607                                                "-aM "                      &
5608                                            "LOWER_CASE "                   &
5609                                                "-aL "                      &
5610                                            "UPPER_CASE "                   &
5611                                                "-aU";
5612    --        /ATTRIBUTE_CASING[=casing-option]
5613    --
5614    --   Set the case of the attributes. By default the attributes are in mixed
5615    --   case.
5616    --   casing-option may be one of the following:
5617    --
5618    --      MIXED_CASE (D)
5619    --      LOWER_CASE
5620    --      UPPER_CASE
5621
5622    S_Pretty_Comments  : aliased constant S := "/COMMENTS_LAYOUT="          &
5623                                               "UNTOUCHED "                 &
5624                                                  "-c0 "                    &
5625                                               "DEFAULT "                   &
5626                                                  "-c1 "                    &
5627                                               "STANDARD_INDENT "           &
5628                                                  "-c2 "                    &
5629                                               "GNAT_BEGINNING "            &
5630                                                  "-c3 "                    &
5631                                               "REFORMAT "                  &
5632                                                  "-c4 "                    &
5633                                               "KEEP_SPECIAL "              &
5634                                                  "-c5";
5635    --        /COMMENTS_LAYOUT[=layout-option, layout-option, ...]
5636    --
5637    --   Set the comment layout. By default, comments use the GNAT style
5638    --   comment line indentation.
5639    --
5640    --   layout-option may be one of the following:
5641    --
5642    --     UNTOUCHED           All the comments remain unchanged
5643    --     DEFAULT (D)         GNAT style comment line indentation
5644    --     STANDARD_INDENT     Standard comment line indentation
5645    --     GNAT_BEGINNING      GNAT style comment beginning
5646    --     REFORMAT            Reformat comment blocks
5647    --     KEEP_SPECIAL        Keep unchanged special form comments
5648    --
5649    --     All combinations of layout options are allowed, except for DEFAULT
5650    --     and STANDARD_INDENT which are mutually exclusive, and also if
5651    --     UNTOUCHED is specified, this must be the only option.
5652    --
5653    --     The difference between "GNAT style comment line indentation" and
5654    --     "standard comment line indentation" is the following: for standard
5655    --     comment indentation, any comment line is indented as if it were
5656    --     a declaration or statement at the same place.
5657    --     For GNAT style comment indentation, comment lines which are
5658    --     immediately followed by if or case statement alternative, record
5659    --     variant or 'begin' keyword are indented as the keyword that follows
5660    --     them.:
5661    --
5662    --     Standard indentation:
5663    --
5664    --        if A then
5665    --           null;
5666    --           -- some comment
5667    --        else
5668    --           null;
5669    --        end if;
5670    --
5671    --     GNAT style indentation:
5672    --
5673    --        if A then
5674    --           null;
5675    --        -- some comment
5676    --        else
5677    --           null;
5678    --        end if;
5679    --
5680    --     Option "GNAT style comment beginning" means that for each comment
5681    --     which is not considered as non-formattable separator (that is, the
5682    --     comment line contains only dashes, or a comment line ends with two
5683    --     dashes), there will be at least two spaces between starting "--" and
5684    --     the first non-blank character of the comment.
5685
5686    S_Pretty_Config    : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
5687                                               "-gnatec>";
5688    --        /CONFIGURATION_PRAGMAS_FILE=file
5689    --
5690    --   Specify a configuration pragmas file that need to be passed to the
5691    --   compiler.
5692
5693    S_Pretty_Constr    : aliased constant S := "/CONSTRUCT_LAYOUT="         &
5694                                                "GNAT "                     &
5695                                                   "-l1 "                   &
5696                                                "COMPACT "                  &
5697                                                   "-l2 "                   &
5698                                                "UNCOMPACT "                &
5699                                                    "-l3";
5700    --        /CONSTRUCT_LAYOUT[=construct-option]
5701    --
5702    --   Set construct layout. Default is GNAT style layout.
5703    --   construct-option may be one of the following:
5704    --
5705    --      GNAT (D)
5706    --      COMPACT
5707    --      UNCOMPACT
5708    --
5709    --   The difference between GNAT style and Compact layout on one hand
5710    --   and Uncompact layout on the other hand can be illustrated by the
5711    --   following examples:
5712    --
5713    --       GNAT style and                          Uncompact layout
5714    --       Compact layout
5715    --
5716    --       type q is record                        type q is
5717    --          a : integer;                            record
5718    --          b : integer;                               a : integer;
5719    --       end record;                                   b : integer;
5720    --                                                  end record;
5721    --
5722    --
5723    --       Block : declare                         Block :
5724    --          A : Integer := 3;                       declare
5725    --       begin                                         A : Integer := 3;
5726    --          Proc (A, A);                            begin
5727    --       end Block;                                    Proc (A, A);
5728    --                                                  end Block;
5729    --
5730    --       Clear : for J in 1 .. 10 loop           Clear :
5731    --          A (J) := 0;                             for J in 1 .. 10 loop
5732    --       end loop Clear;                               A (J) := 0;
5733    --                                                  end loop Clear;
5734    --
5735    --
5736    --   A further difference between GNAT style layout and compact layout is
5737    --   that in GNAT style layout compound statements, return statements and
5738    --   bodies are always separated by empty lines.
5739
5740    S_Pretty_Comind    : aliased constant S := "/CONTINUATION_INDENT=#"     &
5741                                                  "-cl#";
5742    --        /CONTINUATION_INDENT=nnn
5743    --
5744    --   Indentation level for continuation lines, nnn from 1 .. 9.
5745    --   The default value is one less then the (normal) indentation level,
5746    --   unless the indentation is set to 1: in that case the default value for
5747    --   continuation line indentation is also 1.
5748
5749    S_Pretty_Compact_Is : aliased constant S := "/NO_SEPARATE_IS "          &
5750                                                  "--no-separate-is";
5751    --        /NO_SEPARATE_IS
5752    --
5753    --   Do not place the IS keyword on a separate line in a subprogram body in
5754    --   case if the specification occupies more then one line.
5755
5756    S_Pretty_Sep_Loop_Then : aliased constant S := "/SEPARATE_LOOP_THEN "   &
5757                                                     "--separate-loop-then";
5758    --        /SEPARATE_LOOP_THEN
5759    --
5760    --   Place the THEN keyword in IF statement and the LOOP keyword in for-
5761    --   and while-loops on a separate line.
5762
5763    S_Pretty_N_Sep_Loop_Then : aliased constant S := "/NO_SEPARATE_LOOP_THEN " &
5764                                                     "--no-separate-loop-then";
5765    --        /NO_SEPARATE_LOOP_THEN
5766    --
5767    --   Do not place the THEN keyword in IF statement and the LOOP keyword in
5768    --   for- and while-loops on a separate line.
5769
5770    S_Pretty_Use_On_New_Line : aliased constant S := "/USE_ON_NEW_LINE "    &
5771                                                       "--use-on-new-line";
5772    --        /USE_ON_NEW_LINE
5773    --
5774    --   Start any USE clause that is a part of a context clause from a
5775    --   separate line.
5776
5777    S_Pretty_Stnm_On_Nw_Line : aliased constant S := "/STMT_NAME_ON_NEW_LINE " &
5778                                                       "--separate-stmt-name";
5779    --        /STMT_NAME_ON_NEW_LINE
5780    --
5781    --   For named block and loop statements use a separate line for the
5782    --   statement name, but do not use an extra indentation level for the
5783    --   statement itself.
5784
5785    S_Pretty_Eol       : aliased constant S := "/END_OF_LINE="              &
5786                                                 "DOS "                     &
5787                                                    "--eol=dos "            &
5788                                                 "UNIX "                    &
5789                                                    "--eol=unix "           &
5790                                                 "CRLF "                    &
5791                                                    "--eol=crlf "           &
5792                                                 "LF "                      &
5793                                                    "--eol=lf";
5794    --        /END_OF_LINE=[option]
5795    --
5796    --   Specifies the form of the line terminators in the produced source.
5797    --   By default, the form of the line terminator depends on the platforms.
5798    --   On Unix and VMS, it is a Line Feed (LF) character. On Windows (DOS),
5799    --   It is a Carriage Return (CR) followed by a Line Feed.
5800    --   The Options DOS and CRLF are equivalent. The options UNIX and LF are
5801    --   also equivalent.
5802
5803    S_Pretty_Ext       : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
5804                                             "-X" & '"';
5805    --        /EXTERNAL_REFERENCE="name=val"
5806    --
5807    --   Specifies an external reference to the project manager. Useful only if
5808    --   /PROJECT_FILE is used.
5809    --
5810    --   Example:
5811    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
5812
5813    S_Pretty_Current   : aliased constant S := "/CURRENT_DIRECTORY "        &
5814                                               "!-I-";
5815    --        /CURRENT_DIRECTORY (D)
5816    --
5817    --   Look for source files in the current working directory.
5818    --
5819    --        /NOCURRENT_DIRECTORY
5820    --   Do not look for source files in the current working directory.
5821
5822    S_Pretty_Dico      : aliased constant S := "/DICTIONARY=*"              &
5823                                               "-D*";
5824    --        /DICTIONARY=(file_name, ...)
5825    --
5826    --   Use each specified file as a dictionary file that defines the casing
5827    --   for a set of specified names, thereby overriding the effect on these
5828    --   names by any explicit or implicit /NAME_CASING qualifier.
5829    --
5830    --   GNAT PRETTY implicitly uses a default dictionary file to define the
5831    --   casing for the Ada predefined names and the names declared in the GNAT
5832    --   libraries.
5833    --
5834    --   The structure of a dictionary file, and details on the conventions
5835    --   used in the default dictionary file, are defined in the GNAT User's
5836    --   Guide.
5837
5838    S_Pretty_Encoding  : aliased constant S := "/RESULT_ENCODING="          &
5839                                               "BRACKETS "                  &
5840                                                  "-Wb "                    &
5841                                               "HEX "                       &
5842                                                  "-Wh "                    &
5843                                               "UPPER "                     &
5844                                                  "-Wu "                    &
5845                                               "SHIFT_JIS "                 &
5846                                                  "-Ws "                    &
5847                                               "EUC "                       &
5848                                                  "-We "                    &
5849                                               "UTF8 "                      &
5850                                                  "-W8";
5851    --        /RESULT_ENCODING[=encoding-type]
5852    --
5853    --   Specify the wide character encoding method used when writing the
5854    --   reformatted code in the result file. 'encoding-type' is one of the
5855    --   following:
5856    --
5857    --      BRACKETS (D)      Brackets encoding.
5858    --
5859    --      HEX               Hex ESC encoding.
5860    --
5861    --      UPPER             Upper half encoding.
5862    --
5863    --      SHIFT_JIS         Shift-JIS encoding.
5864    --
5865    --      EUC               EUC Encoding.
5866    --
5867    --      UTF8              UTF-8 encoding.
5868    --
5869    --   See 'HELP GNAT COMPILE /WIDE_CHARACTER_ENCODING' for an explanation
5870    --   about the different character encoding methods.
5871
5872    S_Pretty_Files     : aliased constant S := "/FILES=@"                   &
5873                                                  "-files=@";
5874    --      /FILES=filename
5875    --
5876    --   Take as arguments the files that are listed in the specified
5877    --   text file.
5878
5879    S_Pretty_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "      &
5880                                              "-eL";
5881    --        /NOFOLLOW_LINKS_FOR_FILES (D)
5882    --        /FOLLOW_LINKS_FOR_FILES
5883    --
5884    --    Follow links when parsing project files
5885
5886    S_Pretty_Forced    : aliased constant S := "/FORCED_OUTPUT=@"           &
5887                                                  "-of@";
5888    --        /FORCED_OUTPUT=file
5889    --
5890    --   Write the output into the specified file, overriding any possibly
5891    --   existing file.
5892
5893    S_Pretty_Formfeed  : aliased constant S := "/FORM_FEED_AFTER_PRAGMA_PAGE " &
5894                                               "-ff";
5895    --        /FORM_FEED_AFTER_PRAGMA_PAGE
5896    --
5897    --   When there is a pragma Page in the source, insert a Form Feed
5898    --   character immediately after the semicolon that follows the pragma
5899    --   Page.
5900
5901    S_Pretty_Indent    : aliased constant S := "/INDENTATION_LEVEL=#"       &
5902                                                 "-i#";
5903    --        /INDENTATION_LEVEL=nnn
5904    --
5905    --   Specify the number of spaces to add for each indentation level.
5906    --   nnn must be between 1 and 9. The default is 3.
5907
5908    S_Pretty_Keyword   : aliased constant S := "/KEYWORD_CASING="           &
5909                                               "LOWER_CASE "                &
5910                                                  "-kL "                    &
5911                                               "UPPER_CASE "                &
5912                                                  "-kU";
5913    --        /KEYWORD_CASING[=keyword-option]
5914    --
5915    --   Specify the case of Ada keywords. The default is keywords in lower
5916    --   case.
5917    --
5918    --   keyword-option may be one of the following:
5919    --
5920    --      LOWER_CASE (D)
5921    --      UPPER_CASE
5922
5923    S_Pretty_Maxlen    : aliased constant S := "/LINE_LENGTH_MAX=#"         &
5924                                                  "-M#";
5925    --        /LINE_LENGTH_MAX=nnn
5926    --
5927    --   Set the maximum line length, nnn from 32 ..256. The default is 79.
5928
5929    S_Pretty_Maxind    : aliased constant S := "/MAX_INDENT=#"              &
5930                                                  "-T#";
5931    --        /MAX_INDENT=nnn
5932    --
5933    --   Do not use an additional indentation level for case alternatives
5934    --   and variants if their number is nnn or more. The default is 10.
5935    --   If nnn is zero, an additional indentation level is used for any
5936    --   number of case alternatives and variants.
5937
5938    S_Pretty_Mess      : aliased constant S := "/MESSAGES_PROJECT_FILE="    &
5939                                             "DEFAULT "                     &
5940                                                "-vP0 "                     &
5941                                             "MEDIUM "                      &
5942                                                "-vP1 "                     &
5943                                             "HIGH "                        &
5944                                                "-vP2";
5945    --        /MESSAGES_PROJECT_FILE[=messages-option]
5946    --
5947    --   Specifies the "verbosity" of the parsing of project files.
5948    --   messages-option may be one of the following:
5949    --
5950    --      DEFAULT (D)  No messages are output if there is no error or warning.
5951    --
5952    --      MEDIUM       A small number of messages are output.
5953    --
5954    --      HIGH         A great number of messages are output, most of them not
5955    --                   being useful for the user.
5956
5957    S_Pretty_Names     : aliased constant S := "/NAME_CASING="              &
5958                                               "AS_DECLARED "               &
5959                                                  "-nD "                    &
5960                                               "LOWER_CASE "                &
5961                                                  "-nL "                    &
5962                                               "UPPER_CASE "                &
5963                                                  "-nU "                    &
5964                                               "MIXED_CASE "                &
5965                                                  "-nM";
5966    --        /NAME_CASING[=name-option]
5967    --
5968    --   Specify the casing of names.
5969    --   'name-option' may be one of:
5970    --
5971    --      AS_DECLARED (D)   Name casing for defining occurrences are as they
5972    --                        appear in the source file.
5973    --
5974    --      LOWER_CASE        Names are in lower case.
5975    --
5976    --      UPPER_CASE        Names are in upper case.
5977    --
5978    --      MIXED_CASE        Names are in mixed case.
5979
5980    S_Pretty_Replace_No_Backup : aliased constant S := "/REPLACE_NO_BACKUP " &
5981                                                  "-rnb";
5982    --        /REPLACE_NO_BACKUP
5983    --
5984    --   Replace the argument source with the pretty-printed source without
5985    --   creating any backup copy of the argument source.
5986
5987    S_Pretty_No_Labels : aliased constant S := "/NO_MISSED_LABELS "         &
5988                                                  "-e";
5989    --        /NO_MISSED_LABELS
5990    --
5991    --   Do not insert missing end/exit labels. The end label is the name of
5992    --   a construct that may optionally appear at the end of the construct.
5993    --   This includes the names of packages and subprograms.
5994    --   Similarly, the exit label is the name of a loop that may appear as the
5995    --   argument of an exit statement within the loop. By default, GNAT PRETTY
5996    --   inserts these end/exit labels when they are absent in the original
5997    --   source. This qualifier /NO_MISSED_LABELS suppresses this insertion,
5998    --   so that the formatted source reflects the original.
5999
6000    S_Pretty_Notabs    : aliased constant S := "/NOTABS "                   &
6001                                                  "-notabs";
6002    --        /NOTABS
6003    --
6004    --   Replace all tabulations in comments with spaces.
6005
6006    S_Pretty_Output    : aliased constant S := "/OUTPUT=@"                  &
6007                                               "-o@";
6008    --        /OUTPUT=file
6009    --
6010    --   Write the output to the specified file. If the file already exists,
6011    --   an error is reported.
6012
6013    S_Pretty_Override  : aliased constant S := "/OVERRIDING_REPLACE "       &
6014                                                  "-rf";
6015    --        /NOOVERRIDING_REPLACE (D)
6016    --        /OVERRIDING_REPLACE
6017    --
6018    --   Replace the argument source with the pretty-printed source and copy the
6019    --   argument source into filename.NPP, overriding any existing file if
6020    --   needed.
6021
6022    S_Pretty_Pragma    : aliased constant S := "/PRAGMA_CASING="            &
6023                                               "MIXED_CASE "                &
6024                                                  "-pM "                    &
6025                                               "LOWER_CASE "                &
6026                                                  "-pL "                    &
6027                                               "UPPER_CASE "                &
6028                                                  "-pU";
6029    --        /PRAGMA_CASING[=pragma-option]
6030    --
6031    --   Set the case of pragma identifiers. The default is Mixed case.
6032    --   pragma-option may be one of the following:
6033    --
6034    --      MIXED_CASE (D)
6035    --      LOWER_CASE
6036    --      UPPER_CASE
6037
6038    S_Pretty_Project   : aliased constant S := "/PROJECT_FILE=<"            &
6039                                                 "-P>";
6040    --        /PROJECT_FILE=filename
6041    --
6042    --   Specifies the main project file to be used. The project files rooted
6043    --   at the main project file will be parsed before any other processing to
6044    --   set the building environment.
6045
6046    S_Pretty_Replace   : aliased constant S := "/REPLACE "                  &
6047                                                  "-r";
6048    --        /NOREPLACE (D)
6049    --        /REPLACE
6050    --
6051    --   Replace the argument source with the pretty-printed source and copy the
6052    --   argument source into filename.NPP. If filename.NPP already exists,
6053    --   report an error and exit.
6054
6055    S_Pretty_RTS       : aliased constant S := "/RUNTIME_SYSTEM=|"          &
6056                                                "--RTS=|";
6057    --        /RUNTIME_SYSTEM=xxx
6058    --
6059    --    Compile against an alternate runtime system named xxx or RTS-xxx.
6060
6061    S_Pretty_Search    : aliased constant S := "/SEARCH=*"                  &
6062                                               "-I*";
6063    --        /SEARCH=(directory[,...])
6064    --
6065    --    When looking for source files also look in directories specified.
6066
6067    S_Pretty_Specific  : aliased constant S := "/SPECIFIC_CASING "          &
6068                                               "-D-";
6069    --        /SPECIFIC_CASING
6070    --
6071    --   Do not use the default dictionary file; instead, use the casing
6072    --   defined by a qualifier /NAME_CASING and/or any explicit dictionary
6073    --   file specified by a qualifier /DICTIONARY.
6074
6075    S_Pretty_Standard  : aliased constant S := "/STANDARD_OUTPUT "          &
6076                                               "-pipe";
6077    --        /NOSTANDARD_OUTPUT (D)
6078    --        /STANDARD_OUTPUT
6079    --
6080    --   Redirect the output to the standard output.
6081
6082    S_Pretty_Subdirs : aliased constant S := "/SUBDIRS=<"                   &
6083                                                "--subdirs=>";
6084    --        /SUBDIRS=dir
6085    --
6086    --   The actual directories (object, exec, library, ...) are subdirectories
6087    --   of the directory specified in the project file. If the subdirectory
6088    --   does not exist, it is created automatically.
6089
6090    S_Pretty_Verbose   : aliased constant S := "/VERBOSE "                  &
6091                                               "-v";
6092    --        /NOVERBOSE (D)
6093    --        /VERBOSE
6094    --
6095    --   Verbose mode; GNAT PRETTY generates version information and then a
6096    --   trace of the actions it takes to produce or obtain the ASIS tree.
6097
6098    S_Pretty_Warnings  : aliased constant S := "/WARNINGS "                 &
6099                                               "-w";
6100    --        /NOWARNINGS (D)
6101    --        /WARNINGS
6102    --
6103    --   Issue a warning to the standard error stream if it is not possible
6104    --   to provide the required layout in the result source.
6105    --   By default such warnings are not activated.
6106
6107    Pretty_Switches : aliased constant Switches :=
6108                        (S_Pretty_Add              'Access,
6109                         S_Pretty_Align            'Access,
6110                         S_Pretty_All_Prjs         'Access,
6111                         S_Pretty_Attrib           'Access,
6112                         S_Pretty_Comments         'Access,
6113                         S_Pretty_Compact_Is       'Access,
6114                         S_Pretty_Config           'Access,
6115                         S_Pretty_Constr           'Access,
6116                         S_Pretty_Comind           'Access,
6117                         S_Pretty_Current          'Access,
6118                         S_Pretty_Dico             'Access,
6119                         S_Pretty_Eol              'Access,
6120                         S_Pretty_Ext              'Access,
6121                         S_Pretty_Encoding         'Access,
6122                         S_Pretty_Files            'Access,
6123                         S_Pretty_Follow           'Access,
6124                         S_Pretty_Forced           'Access,
6125                         S_Pretty_Formfeed         'Access,
6126                         S_Pretty_Indent           'Access,
6127                         S_Pretty_Keyword          'Access,
6128                         S_Pretty_Maxlen           'Access,
6129                         S_Pretty_Maxind           'Access,
6130                         S_Pretty_Mess             'Access,
6131                         S_Pretty_Names            'Access,
6132                         S_Pretty_No_Labels        'Access,
6133                         S_Pretty_Notabs           'Access,
6134                         S_Pretty_Output           'Access,
6135                         S_Pretty_Override         'Access,
6136                         S_Pretty_Pragma           'Access,
6137                         S_Pretty_Replace          'Access,
6138                         S_Pretty_Replace_No_Backup'Access,
6139                         S_Pretty_Project          'Access,
6140                         S_Pretty_RTS              'Access,
6141                         S_Pretty_Search           'Access,
6142                         S_Pretty_Sep_Loop_Then    'Access,
6143                         S_Pretty_N_Sep_Loop_Then  'Access,
6144                         S_Pretty_Subdirs          'Access,
6145                         S_Pretty_Use_On_New_Line  'Access,
6146                         S_Pretty_Stnm_On_Nw_Line  'Access,
6147                         S_Pretty_Specific         'Access,
6148                         S_Pretty_Standard         'Access,
6149                         S_Pretty_Verbose          'Access,
6150                         S_Pretty_Warnings         'Access);
6151
6152    ------------------------------
6153    -- Switches for GNAT SHARED --
6154    ------------------------------
6155
6156    S_Shared_Debug   : aliased constant S := "/DEBUG="                      &
6157                                             "ALL "                         &
6158                                                "-g3 "                      &
6159                                             "NONE "                        &
6160                                                "-g0 "                      &
6161                                             "TRACEBACK "                   &
6162                                                "-g1 "                      &
6163                                             "NOTRACEBACK "                 &
6164                                                "-g0";
6165    --        /DEBUG[=debug-option]
6166    --        /NODEBUG
6167    --
6168    --   Specifies the amount of debugging information included. 'debug-option'
6169    --   is one of the following:
6170    --
6171    --        ALL (D)      Include full debugging information.
6172    --
6173    --        NONE         Provide no debugging information. Same as /NODEBUG.
6174    --
6175    --        TRACEBACK    Provide sufficient debug information for a traceback.
6176    --
6177    --        NOTRACEBACK  Same as NONE.
6178
6179    S_Shared_Image  : aliased constant S := "/IMAGE=@"                      &
6180                                             "-o@";
6181    --        /IMAGE=image-name
6182    --
6183    --   'image-name' specifies the name for the generated shared library.
6184
6185    S_Shared_Ident   : aliased constant S := "/IDENTIFICATION=" & '"'       &
6186                                             "--for-linker=IDENT="          &
6187                                             '"';
6188    --        /IDENTIFICATION="<string>"
6189    --
6190    --   "<string>" specifies the string to be stored in the image file ident-
6191    --   ification field in the image header. It overrides any pragma Ident
6192    --   specified string.
6193
6194    S_Shared_Nofiles : aliased constant S := "/NOSTART_FILES "              &
6195                                             "-nostartfiles";
6196    --        /NOSTART_FILES
6197    --
6198    --   Link in default image initialization and startup functions.
6199
6200    S_Shared_Noinhib : aliased constant S := "/NOINHIBIT-IMAGE "            &
6201                                             "--for-linker=--noinhibit-exec";
6202    --        /NOINHIBIT-IMAGE
6203    --
6204    --   Delete image if there are errors or warnings.
6205
6206    S_Shared_Verb    : aliased constant S := "/VERBOSE "                    &
6207                                             "-v";
6208    --        /NOVERBOSE (D)
6209    --        /VERBOSE
6210    --
6211    --   Causes additional information to be output, including a full list of
6212    --   the included object files. This switch option is most useful when you
6213    --   want to see what set of object files are being used in the link step.
6214
6215    S_Shared_ZZZZZ   : aliased constant S := "/<other> "                    &
6216                                             "--for-linker=";
6217    --        /<other>
6218    --
6219    --   Any other switch transmitted to the underlying linker.
6220
6221    Shared_Switches : aliased constant Switches :=
6222                        (S_Shared_Debug   'Access,
6223                         S_Shared_Image   'Access,
6224                         S_Shared_Ident   'Access,
6225                         S_Shared_Nofiles 'Access,
6226                         S_Shared_Noinhib 'Access,
6227                         S_Shared_Verb    'Access,
6228                         S_Shared_ZZZZZ   'Access);
6229
6230    -----------------------------
6231    -- Switches for GNAT STACK --
6232    -----------------------------
6233
6234    S_Stack_Add        : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"  &
6235                                                 "-aP*";
6236    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6237    --
6238    --   Add directories to the project search path.
6239
6240    S_Stack_All        : aliased constant S := "/ALL_SUBPROGRAMS "          &
6241                                                 "-a";
6242    --        /NOALL_SUBPROGRAMS (D)
6243    --        /ALL_SUBPROGRAMS
6244    --
6245    --   Consider all subprograms as entry points.
6246
6247    S_Stack_All_Cycles : aliased constant S := "/ALL_CYCLES "               &
6248                                                 "-ca";
6249    --        /NOALL_CYCLES (D)
6250    --        /ALL_CYCLES
6251    --
6252    --   Extract all possible cycles in the call graph.
6253
6254    S_Stack_All_Prjs   : aliased constant S := "/ALL_PROJECTS "             &
6255                                                 "-U";
6256    --        /NOALL_PROJECTS (D)
6257    --        /ALL_PROJECTS
6258    --
6259    --   When GNAT STACK is used with a Project File and no source is
6260    --   specified, the underlying tool gnatstack is called for all the
6261    --   units of all the Project Files in the project tree.
6262
6263    S_Stack_Debug      : aliased constant S := "/DEBUG "                    &
6264                                                 "-g";
6265    --        /NODEBUG (D)
6266    --        /DEBUG
6267    --
6268    --   Generate internal debug information.
6269
6270    S_Stack_Directory  : aliased constant S := "/DIRECTORY=*"               &
6271                                                 "-aO*";
6272    --        /DIRECTORY=(direc[,...])
6273    --
6274    --   When looking for .ci files look also in directories specified.
6275
6276    S_Stack_Entries    : aliased constant S := "/ENTRIES=*"                 &
6277                                                 "-e*";
6278    --
6279    --        /ENTRY=(entry_point[,...])
6280    --
6281    --   Name of symbol to be used as entry point for the analysis.
6282
6283    S_Stack_Files      : aliased constant S := "/FILES=@"                   &
6284                                                 "-files=@";
6285    --      /FILES=filename
6286    --
6287    --   Take as arguments the files that are listed in the specified
6288    --   text file.
6289
6290    S_Stack_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
6291                                             "-eL";
6292    --        /NOFOLLOW_LINKS_FOR_FILES (D)
6293    --        /FOLLOW_LINKS_FOR_FILES
6294    --
6295    --    Follow links when parsing project files
6296
6297    S_Stack_Help       : aliased constant S := "/HELP "                     &
6298                                                 "-h";
6299    --        /NOHELP (D)
6300    --        /HELP
6301    --
6302    --   Output a message explaining the usage of gnatstack.
6303
6304    S_Stack_List       : aliased constant S := "/LIST=#"                    &
6305                                                 "-l#";
6306    --        /LIST=nnn
6307    --
6308    --   Print the nnn subprograms requiring the biggest local stack usage. By
6309    --   default none will be displayed.
6310
6311    S_Stack_Order      : aliased constant S := "/ORDER="                    &
6312                                               "STACK "                     &
6313                                                  "-os "                    &
6314                                               "ALPHABETICAL "              &
6315                                                  "-oa";
6316    --        /ORDER[=order-option]
6317    --
6318    --   Specifies the order for displaying the different call graphs.
6319    --   order-option may be one of the following:
6320    --
6321    --      STACK (D)    Select stack usage order
6322    --
6323    --      ALPHABETICAL Select alphabetical order
6324
6325    S_Stack_Path       : aliased constant S := "/PATH "                     &
6326                                                 "-p";
6327    --        /NOPATH (D)
6328    --        /PATH
6329    --
6330    --   Print all the subprograms that make up the worst-case path for every
6331    --   entry point.
6332
6333    S_Stack_Project    : aliased constant S := "/PROJECT_FILE=<"            &
6334                                                 "-P>";
6335    --        /PROJECT_FILE=filename
6336    --
6337    --   Specifies the main project file to be used. The project files rooted
6338    --   at the main project file will be parsed before the invocation of
6339    --   gnatstack.
6340
6341    S_Stack_Output     : aliased constant S := "/OUTPUT=@"                  &
6342                                                 "-f@";
6343    --        /OUTPUT=filename
6344    --
6345    --   Name of the file containing the generated graph (VCG format).
6346
6347    S_Stack_Regexp     : aliased constant S := "/EXPRESSION=|"              &
6348                                                 "-r|";
6349    --
6350    --        /EXPRESSION=regular-expression
6351    --
6352    --   Any symbol matching the regular expression will be considered as a
6353    --   potential entry point for the analysis.
6354
6355    S_Stack_Subdirs : aliased constant S := "/SUBDIRS=<"                    &
6356                                               "--subdirs=>";
6357    --        /SUBDIRS=dir
6358    --
6359    --   The actual directories (object, exec, library, ...) are subdirectories
6360    --   of the directory specified in the project file. If the subdirectory
6361    --   does not exist, it is created automatically.
6362
6363    S_Stack_Unbounded  : aliased constant S := "/UNBOUNDED=#"               &
6364                                                 "-d#";
6365    --        /UNBOUNDED=nnn
6366    --
6367    --   Default stack size to be used for unbounded (dynamic) frames.
6368
6369    S_Stack_Unknown    : aliased constant S := "/UNKNOWN=#"                 &
6370                                                 "-u#";
6371    --        /UNKNOWN=nnn
6372    --
6373    --   Default stack size to be used for unknown (external) calls.
6374
6375    S_Stack_Verbose    : aliased constant S := "/VERBOSE "                  &
6376                                                 "-v";
6377    --        /NOVERBOSE (D)
6378    --        /VERBOSE
6379    --
6380    --   Specifies the amount of information to be displayed about the
6381    --   different subprograms. In verbose mode the full location of the
6382    --   subprogram will be part of the output, as well as detailed information
6383    --   about inaccurate data.
6384
6385    S_Stack_Warnings   : aliased constant S := "/WARNINGS="                 &
6386                                               "ALL "                       &
6387                                                  "-Wa "                    &
6388                                               "CYCLES "                    &
6389                                                  "-Wc "                    &
6390                                               "UNBOUNDED "                 &
6391                                                  "-Wu "                    &
6392                                               "EXTERNAL "                  &
6393                                                  "-We "                    &
6394                                               "INDIRECT "                  &
6395                                                  "-Wi";
6396    --        /WARNINGS[=(keyword[,...])]
6397    --
6398    --    The following keywords are supported:
6399    --
6400    --        ALL        Turn on all optional warnings
6401    --
6402    --        CYCLES     Turn on warnings for cycles
6403    --
6404    --        UNBOUNDED  Turn on warnings for unbounded frames
6405    --
6406    --        EXTERNAL   Turn on warnings for external calls
6407    --
6408    --        INDIRECT   Turn on warnings for indirect calls
6409
6410    Stack_Switches : aliased constant Switches :=
6411                       (S_Stack_Add        'Access,
6412                        S_Stack_All        'Access,
6413                        S_Stack_All_Cycles 'Access,
6414                        S_Stack_All_Prjs   'Access,
6415                        S_Stack_Debug      'Access,
6416                        S_Stack_Directory  'Access,
6417                        S_Stack_Entries    'Access,
6418                        S_Stack_Files      'Access,
6419                        S_Stack_Follow     'Access,
6420                        S_Stack_Help       'Access,
6421                        S_Stack_List       'Access,
6422                        S_Stack_Order      'Access,
6423                        S_Stack_Path       'Access,
6424                        S_Stack_Project    'Access,
6425                        S_Stack_Output     'Access,
6426                        S_Stack_Regexp     'Access,
6427                        S_Stack_Subdirs    'Access,
6428                        S_Stack_Unbounded  'Access,
6429                        S_Stack_Unknown    'Access,
6430                        S_Stack_Verbose    'Access,
6431                        S_Stack_Warnings   'Access);
6432
6433    ----------------------------
6434    -- Switches for GNAT STUB --
6435    ----------------------------
6436
6437    S_Stub_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
6438                                             "-aP*";
6439    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6440    --
6441    --   Add directories to the project search path.
6442
6443    S_Stub_Config  : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<"  &
6444                                             "-gnatec>";
6445    --        /CONFIGURATION_PRAGMAS_FILE=filespec
6446    --
6447    --   Specifies a configuration pragmas file that must be taken into account
6448    --   when compiling.
6449
6450    S_Stub_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
6451                                             "!-I-";
6452    --        /CURRENT_DIRECTORY (D)
6453    --        /NOCURRENT_DIRECTORY
6454    --
6455    --   Look for source, library or object files in the default directory.
6456
6457    S_Stub_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
6458                                             "-X" & '"';
6459    --        /EXTERNAL_REFERENCE="name=val"
6460    --
6461    --   Specifies an external reference to the project manager. Useful only if
6462    --   /PROJECT_FILE is used.
6463    --
6464    --   Example:
6465    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
6466
6467    S_Stub_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
6468                                             "-eL";
6469    --        /NOFOLLOW_LINKS_FOR_FILES (D)
6470    --        /FOLLOW_LINKS_FOR_FILES
6471    --
6472    --    Follow links when parsing project files
6473
6474    S_Stub_Full    : aliased constant S := "/FULL "                         &
6475                                             "-f";
6476    --        /NOFULL (D)
6477    --        /FULL
6478    --
6479    --   If the destination directory already contains a file with the name of
6480    --   the body file for the argument file spec, replace it with the generated
6481    --   body stub. If /FULL is not used and there is already a body file, this
6482    --   existing body file is not replaced.
6483
6484    S_Stub_Header  : aliased constant S := "/HEADER="                       &
6485                                             "GENERAL "                     &
6486                                                "-hg "                      &
6487                                             "SPEC "                        &
6488                                                "-hs";
6489    --        /HEADER[=header-option]
6490    --
6491    --   Specifies the form of the comment header above the generated body stub.
6492    --   If no /HEADER qualifier is specified, there is no comment header.
6493    --   header-option is one of the following:
6494    --
6495    --
6496    --      GENERAL (D)  Put a sample comment header into the body stub.
6497    --
6498    --      SPEC         Put the comment header (i.e., all the comments
6499    --                   preceding the compilation unit) from the source of the
6500    --                   library unit declaration into the body stub.
6501
6502    S_Stub_Header_File : aliased constant S := "/FROM_HEADER_FILE=<" &
6503                                                 "--header-file=>";
6504
6505    --        /FROM_HEADER_FILE==filename
6506    --
6507    --   Use the content of the file as the comment header for a generated body
6508    --   stub.
6509
6510    S_Stub_Indent  : aliased constant S := "/INDENTATION=#"                 &
6511                                             "-i#";
6512    --        /INDENTATION=nnn
6513    --
6514    --   (nnn is a non-negative integer). Set the indentation level in the
6515    --   generated body stub to nnn. nnn=0 means "no indentation".
6516    --   Default indentation is 3.
6517
6518    S_Stub_Keep    : aliased constant S := "/KEEP "                         &
6519                                             "-k";
6520    --        /NOKEEP (D)
6521    --        /KEEP
6522    --
6523    --   Do not delete the tree file (i.e., the snapshot of the compiler
6524    --   internal structures used by gnatstub) after creating the body stub.
6525
6526    S_Stub_Length  : aliased constant S := "/LINE_LENGTH=#"                 &
6527                                             "-l#";
6528    --        /LINE_LENGTH=nnn
6529    --
6530    --   (n is a non-negative integer). Set the maximum line length in the body
6531    --   stub to nnn. Default is 78.
6532
6533    S_Stub_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
6534                                             "DEFAULT "                     &
6535                                                "-vP0 "                     &
6536                                             "MEDIUM "                      &
6537                                                "-vP1 "                     &
6538                                             "HIGH "                        &
6539                                                "-vP2";
6540    --        /MESSAGES_PROJECT_FILE[=messages-option]
6541    --
6542    --   Specifies the "verbosity" of the parsing of project files.
6543    --   messages-option may be one of the following:
6544    --
6545    --      DEFAULT (D)  No messages are output if there is no error or warning.
6546    --
6547    --      MEDIUM       A small number of messages are output.
6548    --
6549    --      HIGH         A great number of messages are output, most of them not
6550    --                   being useful for the user.
6551
6552    S_Stub_No_Exc  : aliased constant S := "/NO_EXCEPTION "                 &
6553                                           "--no-exception";
6554    --        /NONO_EXCEPTION (D)
6555    --        /NO_EXCEPTION
6556    --
6557    --  Avoid raising PROGRAM_ERROR in the generated program unit stubs.
6558
6559    S_Stub_Output  : aliased constant S := "/OUTPUT=@"                      &
6560                                             "-o@";
6561    --        /OUTPUT=filespec
6562    --
6563    --   Body file name. This should be set if the argument file name does not
6564    --   follow the GNAT file naming conventions. If this switch is omitted,
6565    --   the default name for the body will be obtained from the argument file
6566    --   name according to the GNAT file naming conventions.
6567
6568    S_Stub_Project : aliased constant S := "/PROJECT_FILE=<"                &
6569                                             "-P>";
6570    --        /PROJECT_FILE=filename
6571    --
6572    --   Specifies the main project file to be used. The project files rooted
6573    --   at the main project file will be parsed before any other processing.
6574    --   The source and object directories to be searched will be communicated
6575    --   to gnatstub through logical names ADA_PRJ_INCLUDE_FILE and
6576    --   ADA_PRJ_OBJECTS_FILE.
6577
6578    S_Stub_Quiet   : aliased constant S := "/QUIET "                        &
6579                                             "-q";
6580    --        /NOQUIET (D)
6581    --        /QUIET
6582    --
6583    --   Quiet mode: do not generate a confirmation when a body is successfully
6584    --   created, and do not generate a message when a body is not required for
6585    --   an argument unit.
6586
6587    S_Stub_Search  : aliased constant S := "/SEARCH=*"                      &
6588                                             "-I*";
6589    --        /SEARCH=(directory[,...])
6590    --
6591    --    When looking for source files also look in directories specified.
6592
6593    S_Stub_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
6594                                              "--subdirs=>";
6595    --        /SUBDIRS=dir
6596    --
6597    --   The actual directories (object, exec, library, ...) are subdirectories
6598    --   of the directory specified in the project file. If the subdirectory
6599    --   does not exist, it is created automatically.
6600
6601    S_Stub_Tree    : aliased constant S := "/TREE_FILE="                    &
6602                                             "OVERWRITE "                   &
6603                                                "-t "                       &
6604                                             "SAVE "                        &
6605                                                "-k "                       &
6606                                             "REUSE "                       &
6607                                                "-r";
6608    --        /TREE_FILE[=treefile-option]
6609    --
6610    --   Specify what to do with the tree file.
6611    --   treefile-option is one of the following:
6612    --
6613    --      OVERWRITE (D)  Overwrite the existing tree file. If the current
6614    --                     directory already contains the file which, according
6615    --                     to the GNAT file naming rules should be considered
6616    --                     as a tree file for the argument source file,
6617    --                     gnatstub will refuse to create the tree file needed
6618    --                     to create a sample body unless this option is chosen.
6619    --
6620    --      SAVE           Do not remove the tree file (i.e., the snapshot
6621    --                     of the compiler internal structures used by gnatstub)
6622    --                     after creating the body stub.
6623    --
6624    --      REUSE          Reuse the tree file (if it exists) instead of
6625    --                     creating it.
6626    --                     Instead of creating the tree file for the library
6627    --                     unit declaration, gnatstub tries to find it in the
6628    --                     current directory and use it for creating a body.
6629    --                     If the tree file is not found, no body is created.
6630    --                     This option also implies `SAVE', whether or not the
6631    --                     latter is set explicitly.
6632
6633    S_Stub_Verbose : aliased constant S := "/VERBOSE "                      &
6634                                             "-v";
6635    --        /NOVERBOSE (D)
6636    --        /VERBOSE
6637    --
6638    --   Verbose mode: generate version information.
6639
6640    Stub_Switches : aliased constant Switches :=
6641                      (S_Stub_Add        'Access,
6642                       S_Stub_Config     'Access,
6643                       S_Stub_Current    'Access,
6644                       S_Stub_Ext        'Access,
6645                       S_Stub_Follow     'Access,
6646                       S_Stub_Full       'Access,
6647                       S_Stub_Header     'Access,
6648                       S_Stub_Header_File'Access,
6649                       S_Stub_Indent     'Access,
6650                       S_Stub_Keep       'Access,
6651                       S_Stub_Length     'Access,
6652                       S_Stub_Mess       'Access,
6653                       S_Stub_Output     'Access,
6654                       S_Stub_Project    'Access,
6655                       S_Stub_No_Exc     'Access,
6656                       S_Stub_Quiet      'Access,
6657                       S_Stub_Search     'Access,
6658                       S_Stub_Subdirs    'Access,
6659                       S_Stub_Tree       'Access,
6660                       S_Stub_Verbose    'Access);
6661
6662    ----------------------------
6663    -- Switches for GNAT SYNC --
6664    ----------------------------
6665
6666    S_Sync_Add    : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"       &
6667                                             "-aP*";
6668    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6669    --
6670    --   Add directories to the project search path.
6671
6672    S_Sync_All    : aliased constant S := "/ALL "                           &
6673                                             "-a";
6674    --        /NOALL (D)
6675    --        /ALL
6676    --
6677    --   Also check the components of the GNAT run time and process the needed
6678    --  components of the GNAT RTL when building and analyzing the global
6679    --  structure for checking the global rules.
6680
6681    S_Sync_Allproj : aliased constant S := "/ALL_PROJECTS "                 &
6682                                             "-U";
6683    --        /NOALL_PROJECTS (D)
6684    --        /ALL_PROJECTS
6685    --
6686    --   When GNAT SYNC is used with a Project File and no source is
6687    --   specified, the underlying tool gnatsync is called for all the
6688    --   sources of all the Project Files in the project tree.
6689
6690    S_Sync_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
6691                                              "-X" & '"';
6692    --       /EXTERNAL_REFERENCE="name=val"
6693    --
6694    --   Specifies an external reference to the project manager. Useful only if
6695    --   /PROJECT_FILE is used.
6696    --
6697    --   Example:
6698    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
6699
6700    S_Sync_Files  : aliased constant S := "/FILES=@"                        &
6701                                              "-files=@";
6702    --      /FILES=filename
6703    --
6704    --   Take as arguments the files that are listed in the specified
6705    --   text file.
6706
6707    S_Sync_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
6708                                             "-eL";
6709    --        /NOFOLLOW_LINKS_FOR_FILES (D)
6710    --        /FOLLOW_LINKS_FOR_FILES
6711    --
6712    --    Follow links when parsing project files
6713
6714    S_Sync_Main    : aliased constant S := "/MAIN_SUBPROGRAM=@"             &
6715                                             "-main=@";
6716    --        /MAIN_SUBPROGRAM=filename
6717    --
6718    --   Specify the name of the file containing the main subprogram
6719
6720    S_Sync_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
6721                                              "DEFAULT "                    &
6722                                                 "-vP0 "                    &
6723                                              "MEDIUM "                     &
6724                                                 "-vP1 "                    &
6725                                              "HIGH "                       &
6726                                                 "-vP2";
6727    --        /MESSAGES_PROJECT_FILE[=messages-option]
6728    --
6729    --   Specifies the "verbosity" of the parsing of project files.
6730    --   messages-option may be one of the following:
6731    --
6732    --      DEFAULT (D)  No messages are output if there is no error or warning.
6733    --
6734    --      MEDIUM       A small number of messages are output.
6735    --
6736    --      HIGH         A great number of messages are output, most of them not
6737    --                   being useful for the user.
6738
6739    S_Sync_Project : aliased constant S := "/PROJECT_FILE=<"                &
6740                                              "-P>";
6741    --        /PROJECT_FILE=filename
6742    --
6743    --   Specifies the main project file to be used. The project files rooted
6744    --   at the main project file will be parsed before the invocation of the
6745    --   gnatcheck. The source directories to be searched will be communicated
6746    --   to gnatcheck through logical name ADA_PRJ_INCLUDE_FILE.
6747
6748    S_Sync_Quiet  : aliased constant S := "/QUIET "                         &
6749                                             "-q";
6750    --        /NOQUIET (D)
6751    --        /QUIET
6752    --
6753    --   Work quietly, only output warnings and errors.
6754
6755    S_Sync_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
6756                                              "--subdirs=>";
6757    --        /SUBDIRS=dir
6758    --
6759    --   The actual directories (object, exec, library, ...) are subdirectories
6760    --   of the directory specified in the project file. If the subdirectory
6761    --   does not exist, it is created automatically.
6762
6763    S_Sync_Verb   : aliased constant S := "/VERBOSE "                       &
6764                                             "-v";
6765    --        /NOVERBOSE (D)
6766    --        /VERBOSE
6767    --
6768    --   The version number and copyright notice are output, as well as exact
6769    --   copies of the gnat1 commands spawned to obtain the chop control
6770    --   information.
6771
6772    S_Sync_Exec   : aliased constant S := "/EXECUTION_TIME "                &
6773                                             "-t";
6774    --        /NOEXECUTION_TIME (D)
6775    --        /EXECUTION_TIME
6776    --
6777    --   Output the execution time
6778
6779    S_Sync_Details : aliased constant S := "/DETAILS="                      &
6780                                              "MEDIUM "                     &
6781                                                "-om "                      &
6782                                              "SHORT "                      &
6783                                                "-os "                      &
6784                                              "FULL "                       &
6785                                                "-of";
6786    --         /DETAILS[=options]
6787    --
6788    --   Specifies the details of the output.
6789    --   Options may be one of the following:
6790    --
6791    --       MEDIUM (D)
6792    --       SHORT
6793    --       FULL
6794
6795    S_Sync_Warnoff : aliased constant S := "/WARNINGS_OFF "                 &
6796                                              "-wq";
6797    --
6798    --         /WARNINGS_OFF
6799    --
6800    --   Turn warnings off
6801
6802    S_Sync_Output  : aliased constant S := "/OUTPUT_FILE=<"                 &
6803                                              "-out_file=>";
6804    --
6805    --        /OUTPUT_FILE=filename
6806    --
6807    --   Redirect output to a text file
6808
6809    Sync_Switches : aliased constant Switches :=
6810                       (S_Sync_Add      'Access,
6811                        S_Sync_All      'Access,
6812                        S_Sync_Allproj  'Access,
6813                        S_Sync_Ext      'Access,
6814                        S_Sync_Follow   'Access,
6815                        S_Sync_Files    'Access,
6816                        S_Sync_Main     'Access,
6817                        S_Sync_Mess     'Access,
6818                        S_Sync_Project  'Access,
6819                        S_Sync_Quiet    'Access,
6820                        S_Sync_Subdirs  'Access,
6821                        S_Sync_Verb     'Access,
6822                        S_Sync_Exec     'Access,
6823                        S_Sync_Details  'Access,
6824                        S_Sync_Warnoff  'Access,
6825                        S_Sync_Output   'Access);
6826
6827    ----------------------------
6828    -- Switches for GNAT XREF --
6829    ----------------------------
6830
6831    S_Xref_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
6832                                             "-aP*";
6833    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6834    --
6835    --   Add directories to the project search path.
6836
6837    S_Xref_All     : aliased constant S := "/ALL_FILES "                    &
6838                                             "-a";
6839    --        /NOALL_FILES (D)
6840    --        /ALL_FILES
6841    --
6842    --   If this switch is present, FIND and XREF will parse the read-only
6843    --   files found in the library search path. Otherwise, these files will
6844    --   be ignored. This option can be used to protect Gnat sources or your
6845    --   own libraries from being parsed, thus making FIND and XREF much
6846    --   faster, and their output much smaller.
6847
6848    S_Xref_Deriv   : aliased constant S := "/DERIVED_TYPES "                &
6849                                             "-d";
6850    --        /NODERIVED_TYPES (D)
6851    --        /DERIVED_TYPES
6852    --
6853    --   Output the parent type reference for each matching derived types.
6854
6855    S_Xref_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
6856                                             "-X" & '"';
6857    --        /EXTERNAL_REFERENCE="name=val"
6858    --
6859    --   Specifies an external reference to the project manager. Useful only if
6860    --   /PROJECT_FILE is used.
6861    --
6862    --   Example:
6863    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
6864
6865    S_Xref_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
6866                                             "-eL";
6867    --        /NOFOLLOW_LINKS_FOR_FILES (D)
6868    --        /FOLLOW_LINKS_FOR_FILES
6869    --
6870    --    Follow links when parsing project files
6871
6872    S_Xref_Full    : aliased constant S := "/FULL_PATHNAME "                &
6873                                             "-f";
6874    --        /NOFULL_PATHNAME (D)
6875    --        /FULL_PATHNAME
6876    --
6877    --   If this switch is set, the output file names will be preceded by their
6878    --   directory (if the file was found in the search path). If this switch
6879    --   is not set, the directory will not be printed.
6880
6881    S_Xref_Global  : aliased constant S := "/IGNORE_LOCALS "                &
6882                                             "-g";
6883    --        /NOIGNORE_LOCALS (D)
6884    --        /IGNORE_LOCALS
6885    --
6886    --   If this switch is set, information is output only for library-level
6887    --   entities, ignoring local entities. The use of this switch may
6888    --   accelerate FIND and XREF.
6889
6890    S_Xref_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
6891                                             "DEFAULT "                     &
6892                                                "-vP0 "                     &
6893                                             "MEDIUM "                      &
6894                                                "-vP1 "                     &
6895                                             "HIGH "                        &
6896                                                "-vP2";
6897    --        /MESSAGES_PROJECT_FILE[=messages-option]
6898    --
6899    --   Specifies the "verbosity" of the parsing of project files.
6900    --   messages-option may be one of the following:
6901    --
6902    --      DEFAULT (D)  No messages are output if there is no error or warning.
6903    --
6904    --      MEDIUM       A small number of messages are output.
6905    --
6906    --      HIGH         A great number of messages are output, most of them not
6907    --                   being useful for the user.
6908
6909    S_Xref_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
6910                                             "-nostdinc";
6911    --        /NOSTD_INCLUDES
6912    --
6913    --   Do not look for sources in the system default directory.
6914
6915    S_Xref_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
6916                                             "-nostdlib";
6917    --        /NOSTD_LIBRARIES
6918    --
6919    --   Do not look for library files in the system default directory.
6920
6921    S_Xref_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
6922                                             "-aO*";
6923    --        /OBJECT_SEARCH=(directory,...)
6924    --
6925    --   When searching for library and object files, look in the specified
6926    --   directories. The order in which library files are searched is the same
6927    --   as for MAKE.
6928
6929    S_Xref_Project : aliased constant S := "/PROJECT=@"                     &
6930                                             "-p@";
6931    --        /PROJECT=file
6932    --
6933    --   Specify a project file to use. By default, FIND and XREF will try to
6934    --   locate a project file in the current directory.
6935    --
6936    --   If a project file is either specified or found by the tools, then the
6937    --   content of the source directory and object directory lines are added
6938    --   as if they had been specified respectively by /SOURCE_SEARCH and
6939    --   /OBJECT_SEARCH.
6940
6941    S_Xref_Prj     : aliased constant S := "/PROJECT_FILE=<"                &
6942                                             "-P>";
6943    --        /PROJECT_FILE=filename
6944    --
6945    --   Specifies the main project file to be used. The project files rooted
6946    --   at the main project file will be parsed before doing any processing.
6947    --   The source and object directories to be searched will be communicated
6948    --   to gnatxref through logical names ADA_PRJ_INCLUDE_FILE and
6949    --   ADA_PRJ_OBJECTS_FILE.
6950
6951    S_Xref_Search  : aliased constant S := "/SEARCH=*"                      &
6952                                             "-I*";
6953    --        /SEARCH=(directory,...)
6954    --
6955    --   Equivalent to:
6956    --           /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
6957
6958    S_Xref_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
6959                                             "-aI*";
6960    --        /SOURCE_SEARCH=(directory,...)
6961    --
6962    --   When looking for source files also look in the specified directories.
6963    --   The order in which source file search is undertaken is the same as for
6964    --   MAKE.
6965
6966    S_Xref_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
6967                                              "--subdirs=>";
6968    --        /SUBDIRS=dir
6969    --
6970    --   The actual directories (object, exec, library, ...) are subdirectories
6971    --   of the directory specified in the project file. If the subdirectory
6972    --   does not exist, it is created automatically.
6973
6974    S_Xref_Output  : aliased constant S := "/UNUSED "                       &
6975                                             "-u";
6976    --        /SOURCE_SEARCH=(directory,...)
6977    --
6978    --   When looking for source files also look in the specified directories.
6979    --   The order in which source file search is undertaken is the same as for
6980    --   MAKE.
6981
6982    S_Xref_Tags    : aliased constant S := "/TAGS "                         &
6983                                             "-v";
6984    --        /NOTAGS (D)
6985    --        /TAGS
6986    --
6987    --   Print a 'tags' file for vi.
6988
6989    Xref_Switches : aliased constant Switches :=
6990                      (S_Xref_Add     'Access,
6991                       S_Xref_All     'Access,
6992                       S_Xref_Deriv   'Access,
6993                       S_Xref_Ext     'Access,
6994                       S_Xref_Follow  'Access,
6995                       S_Xref_Full    'Access,
6996                       S_Xref_Global  'Access,
6997                       S_Xref_Mess    'Access,
6998                       S_Xref_Nostinc 'Access,
6999                       S_Xref_Nostlib 'Access,
7000                       S_Xref_Object  'Access,
7001                       S_Xref_Project 'Access,
7002                       S_Xref_Prj     'Access,
7003                       S_Xref_Search  'Access,
7004                       S_Xref_Source  'Access,
7005                       S_Xref_Subdirs 'Access,
7006                       S_Xref_Output  'Access,
7007                       S_Xref_Tags    'Access);
7008
7009 end VMS_Data;