OSDN Git Service

2009-07-22 Ed Schonberg <schonberg@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                                             "BOOLEAN_OPERATORS "           &
2226                                                "-gnatyB "                  &
2227                                             "NOBLANKS "                    &
2228                                                "-gnaty-b "                 &
2229                                             "COMMENTS "                    &
2230                                                "-gnatyc "                  &
2231                                             "NOCOMMENTS "                  &
2232                                                "-gnaty-c "                 &
2233                                             "DOS_LINE_ENDINGS "            &
2234                                                "-gnatyd "                  &
2235                                             "NODOS_LINE_ENDINGS "          &
2236                                                "-gnaty-d "                 &
2237                                             "END "                         &
2238                                                "-gnatye "                  &
2239                                             "NOEND "                       &
2240                                                "-gnaty-e "                 &
2241                                             "VTABS "                       &
2242                                                "-gnatyf "                  &
2243                                             "NOVTABS "                     &
2244                                                "-gnaty-f "                 &
2245                                             "GNAT "                        &
2246                                                "-gnatyg "                  &
2247                                             "HTABS "                       &
2248                                                "-gnatyh "                  &
2249                                             "NOHTABS "                     &
2250                                                "-gnaty-h "                 &
2251                                             "IF_THEN "                     &
2252                                                "-gnatyi "                  &
2253                                             "NOIF_THEN "                   &
2254                                                "-gnaty-i "                 &
2255                                             "KEYWORD "                     &
2256                                                "-gnatyk "                  &
2257                                             "NOKEYWORD "                   &
2258                                                "-gnaty-k "                 &
2259                                             "LAYOUT "                      &
2260                                                "-gnatyl "                  &
2261                                             "NOLAYOUT "                    &
2262                                                "-gnaty-l "                 &
2263                                             "LINE_LENGTH "                 &
2264                                                "-gnatym "                  &
2265                                             "NOLINE_LENGTH "               &
2266                                                "-gnaty-m "                 &
2267                                             "MODE_IN "                     &
2268                                                "-gnatyI "                  &
2269                                             "NOMODE_IN "                   &
2270                                                "-gnaty-I "                 &
2271                                             "NONE "                        &
2272                                                "-gnatyN "                  &
2273                                             "STANDARD_CASING "             &
2274                                                "-gnatyn "                  &
2275                                             "NOSTANDARD_CASING "           &
2276                                                "-gnaty-n "                 &
2277                                             "ORDERED_SUBPROGRAMS "         &
2278                                                "-gnatyo "                  &
2279                                             "NOORDERED_SUBPROGRAMS "       &
2280                                                "-gnaty-o "                 &
2281                                             "OVERRIDING_INDICATORS "       &
2282                                                "-gnatyO "                  &
2283                                             "NOOVERRIDING_INDICATORS "     &
2284                                                "-gnaty-O "                 &
2285                                             "PRAGMA "                      &
2286                                                "-gnatyp "                  &
2287                                             "NOPRAGMA "                    &
2288                                                "-gnaty-p "                 &
2289                                             "REFERENCES "                  &
2290                                                "-gnatyr "                  &
2291                                             "NOREFERENCES "                &
2292                                                "-gnaty-r "                 &
2293                                             "SPECS "                       &
2294                                                "-gnatys "                  &
2295                                             "NOSPECS "                     &
2296                                                "-gnaty-s "                 &
2297                                             "STATEMENTS_AFTER_THEN_ELSE "  &
2298                                                "-gnatyS "                  &
2299                                             "NOSTATEMENTS_AFTER_THEN_ELSE " &
2300                                                "-gnaty-S "                 &
2301                                             "TOKEN "                       &
2302                                                "-gnatyt "                  &
2303                                             "NOTOKEN "                     &
2304                                                "-gnaty-t "                 &
2305                                             "UNNECESSARY_BLANK_LINES "     &
2306                                                "-gnatyu "                  &
2307                                             "NOUNNECESSARY_BLANK_LINES "   &
2308                                                "-gnaty-u "                 &
2309                                             "XTRA_PARENS "                 &
2310                                                "-gnaty-x "                 &
2311                                             "NOXTRA_PARENS "               &
2312                                                "-gnaty-x ";
2313    --        /NOSTYLE_CHECKS (D)
2314    --        /STYLE_CHECKS[=(keyword,[...])]
2315    --
2316    --   Normally, GNAT permits any code layout consistent with the reference
2317    --   manual requirements.  This qualifier imposes style checking on the
2318    --   input source code.  The following keywords are supported:
2319    --
2320    --      ALL_BUILTIN (D)      Equivalent to the following list of options:
2321    --                           3, ATTRIBUTE, BLANKS, COMMENTS, END, VTABS,
2322    --                           HTABS, IF_THEN, KEYWORD, LAYOUT, LINE_LENGTH,
2323    --                           PRAGMA, REFERENCES, SPECS, TOKEN.
2324    --
2325    --      1 .. 9               Specify indentation level from 1 to 9.
2326    --                           The general style of required indentation is as
2327    --                           specified by the examples in the Ada Reference
2328    --                           Manual. Full line comments must be aligned with
2329    --                           the -- starting on a column that is a multiple
2330    --                           of the alignment level.
2331    --
2332    --      ATTRIBUTE            Check attribute casing.
2333    --                           Attribute names, including the case of keywords
2334    --                           such as digits used as attributes names,
2335    --                           must be written in mixed case, that is,
2336    --                           the initial letter and any letter following an
2337    --                           underscore must be uppercase.
2338    --                           All other letters must be lowercase.
2339    --
2340    --      ARRAY_INDEXES        Check indexes of array attributes.
2341    --                           For array attributes First, Last, Range,
2342    --                           or Length, the index number must be omitted
2343    --                           for one-dimensional arrays and is required
2344    --                           for multi-dimensional arrays.
2345    --
2346    --      BLANKS               Blanks not allowed at statement end.
2347    --                           Trailing blanks are not allowed at the end of
2348    --                           statements. The purpose of this rule, together
2349    --                           with option HTABS (no horizontal tabs), is to
2350    --                           enforce a canonical format for the use of
2351    --                           blanks to separate source tokens.
2352    --
2353    --      COMMENTS             Check comments.
2354    --                           Comments must meet the following set of rules:
2355    --
2356    --                             * The "--" that starts the column must either
2357    --                               start in column one, or else at least one
2358    --                               blank must precede this sequence.
2359    --
2360    --                             * Comments that follow other tokens on a line
2361    --                               must have at least one blank following the
2362    --                               "--" at the start of the comment.
2363    --
2364    --                             * Full line comments must have two blanks
2365    --                               following the "--" that starts the comment,
2366    --                               with the following exceptions.
2367    --
2368    --                             * A line consisting only of the "--"
2369    --                               characters, possibly preceded by blanks is
2370    --                               permitted.
2371    --
2372    --                             * A comment starting with "--x" where x is
2373    --                               a special character is permitted. This
2374    --                               allows proper processing of the output
2375    --                               generated by specialized tools including
2376    --                               gnatprep (where --! is used) and the SPARK
2377    --                               annotation language (where --# is used).
2378    --                               For the purposes of this rule, a special
2379    --                               character is defined as being in one of the
2380    --                               ASCII ranges 16#21#..16#2F# or
2381    --                               16#3A#..16#3F#.
2382    --
2383    --                             * A line consisting entirely of minus signs,
2384    --                               possibly preceded by blanks, is permitted.
2385    --                               This allows the construction of box
2386    --                               comments where lines of minus signs are
2387    --                               used to form the top and bottom of the box.
2388    --
2389    --                             * If a comment starts and ends with "--" is
2390    --                               permitted as long as at least one blank
2391    --                               follows the initial "--". Together with
2392    --                               the preceding rule, this allows the
2393    --                               construction of box comments, as shown in
2394    --                               the following example:
2395    --
2396    --                               ---------------------------
2397    --                               -- This is a box comment --
2398    --                               ---------------------------
2399    --
2400    --      DOS_LINE_ENDINGS     Check that no DOS line terminators are present
2401    --                           All lines must be terminated by a single
2402    --                           ASCII.LF character. In particular the DOS line
2403    --                           terminator sequence CR / LF is not allowed).
2404    --
2405    --      END                  Check end/exit labels.
2406    --                           Optional labels on end statements ending
2407    --                           subprograms and on exit statements exiting
2408    --                           named loops, are required to be present.
2409    --
2410    --      GNAT                 Enforces a set of style conventions that
2411    --                           match the style used in the GNAT source code.
2412    --                           This maybe useful when developing code that
2413    --                           is eventually intended to be incorporated into
2414    --                           GNAT. For further details, see GNAT sources.
2415    --
2416    --      HTABS                No horizontal tabs.
2417    --                           Horizontal tab characters are not permitted in
2418    --                           the source text. Together with the BLANKS
2419    --                           (no blanks at end of line) option, this
2420    --                           enforces a canonical form for the use of blanks
2421    --                           to separate source tokens.
2422    --
2423    --      IF_THEN              Check if-then layout.
2424    --                           The keyword then must appear either on the
2425    --                           same line as the corresponding if, or on a line
2426    --                           on its own, lined up under the if with at least
2427    --                           one non-blank line in between containing all or
2428    --                           part of the condition to be tested.
2429    --
2430    --      KEYWORD              Check keyword casing.
2431    --                           All keywords must be in lower case (with the
2432    --                           exception of keywords such as digits used as
2433    --                           attribute names to which this check does not
2434    --                           apply).
2435    --
2436    --      LAYOUT               Check layout.
2437    --                           Layout of statement and declaration constructs
2438    --                           must follow the recommendations in the Ada
2439    --                           Reference Manual, as indicated by the form of
2440    --                           the syntax rules. For example an else keyword
2441    --                           must be lined up with the corresponding if
2442    --                           keyword.
2443    --
2444    --                           There are two respects in which the style rule
2445    --                           enforced by this check option are more liberal
2446    --                           than those in the Ada Reference Manual.
2447    --                           First in the case of record declarations,
2448    --                           it is permissible to put the record keyword on
2449    --                           the same line as the type keyword, and then
2450    --                           the end in end record must line up under type.
2451    --                           For example, either of the following two
2452    --                           layouts is acceptable:
2453    --
2454    --                           type q is record
2455    --                              a : integer;
2456    --                              b : integer;
2457    --                           end record;
2458    --
2459    --                           type q is
2460    --                              record
2461    --                                 a : integer;
2462    --                                 b : integer;
2463    --                              end record;
2464    --
2465    --                           Second, in the case of a block statement,
2466    --                           a permitted alternative is to put the block
2467    --                           label on the same line as the declare or begin
2468    --                           keyword, and then line the end keyword up under
2469    --                           the block label. For example both the following
2470    --                           are permitted:
2471    --
2472    --
2473    --
2474    --                           Block : declare
2475    --                              A : Integer := 3;
2476    --                           begin
2477    --                              Proc (A, A);
2478    --                           end Block;
2479    --
2480    --                           Block :
2481    --                              declare
2482    --                                 A : Integer := 3;
2483    --                              begin
2484    --                                 Proc (A, A);
2485    --                              end Block;
2486    --
2487    --                           The same alternative format is allowed for
2488    --                           loops. For example, both of the following are
2489    --                           permitted:
2490    --
2491    --
2492    --
2493    --                           Clear : while J < 10 loop
2494    --                              A (J) := 0;
2495    --                           end loop Clear;
2496    --
2497    --                           Clear :
2498    --                              while J < 10 loop
2499    --                                 A (J) := 0;
2500    --                              end loop Clear;
2501    --
2502    --
2503    --
2504    --      LINE_LENGTH          Check maximum line length.
2505    --                           The length of source lines must not exceed 79
2506    --                           characters, including any trailing blanks
2507    --                           The value of 79 allows convenient display on
2508    --                           an 80 character wide device or window, allowing
2509    --                           for possible special treatment of 80 character
2510    --                           lines.
2511    --
2512    --      NONE                 Clear any previously set style checks.
2513    --
2514    --      ORDERED_SUBPROGRAMS  Check order of subprogram bodies.
2515    --                           All subprogram bodies in a given scope (e.g.
2516    --                           a package body) must be in alphabetical order.
2517    --                           The ordering rule uses normal Ada rules for
2518    --                           comparing strings, ignoring casing of letters,
2519    --                           except that if there is a trailing numeric
2520    --                           suffix, then the value of this suffix is used
2521    --                           in the ordering (e.g. Junk2 comes before
2522    --                           Junk10).
2523    --
2524    --      OVERRIDING_INDICATORS Check that overriding subprograms are
2525    --                           explicitly marked as such. The declaration of
2526    --                           a primitive operation of a type extension that
2527    --                           overrides an inherited operation must carry
2528    --                           an overriding indicator.
2529    --
2530    --      PRAGMA               Check pragma casing.
2531    --                           Pragma names must be written in mixed case,
2532    --                           that is, the initial letter and any letter
2533    --                           following an underscore must be uppercase.
2534    --                           All other letters must be lowercase.
2535    --
2536    --      REFERENCES           Check references.
2537    --                           All identifier references must be cased in the
2538    --                           same way as the corresponding declaration.
2539    --                           No specific casing style is imposed on
2540    --                           identifiers. The only requirement is for
2541    --                           consistency of references with declarations.
2542    --
2543    --      SPECS                Check separate specs.
2544    --                           Separate declarations ("specs") are required
2545    --                           for subprograms (a body is not allowed to serve
2546    --                           as its own declaration). The only exception is
2547    --                           that parameterless library level procedures are
2548    --                           not required to have a separate declaration.
2549    --                           This exception covers the most frequent form of
2550    --                           main program procedures.
2551    --
2552    --      STANDARD_CASING      Check casing of entities in Standard.
2553    --                           Any identifier from Standard must be cased to
2554    --                           match the presentation in the Ada Reference
2555    --                           Manual (for example, Integer and ASCII.NUL).
2556    --
2557    --      TOKEN                Check token spacing.
2558    --                           The following token spacing rules are enforced:
2559    --
2560    --                             * The keywords abs and not must be followed
2561    --                               by a space.
2562    --
2563    --                             * The token => must be surrounded by spaces.
2564    --
2565    --                             * The token <> must be preceded by a space or
2566    --                               a left parenthesis.
2567    --
2568    --                             * Binary operators other than ** must be
2569    --                               surrounded by spaces. There is no
2570    --                               restriction on the layout of the ** binary
2571    --                               operator.
2572    --
2573    --                             * Colon must be surrounded by spaces.
2574    --
2575    --                             * Colon-equal (assignment) must be surrounded
2576    --                               by spaces.
2577    --
2578    --                             * Comma must be the first non-blank character
2579    --                               on the line, or be immediately preceded by
2580    --                               a non-blank character, and must be followed
2581    --                               by a space.
2582    --
2583    --                             * If the token preceding a left paren ends
2584    --                               with a letter or digit, then a space must
2585    --                               separate the two tokens.
2586    --
2587    --                             * A right parenthesis must either be the
2588    --                               first non-blank character on a line, or it
2589    --                               must be preceded by a non-blank character.
2590    --
2591    --                             * A semicolon must not be preceded by
2592    --                               a space, and must not be followed by
2593    --                               a non-blank character.
2594    --
2595    --                             * A unary plus or minus may not be followed
2596    --                               by a space.
2597    --
2598    --                             * A vertical bar must be surrounded by
2599    --                               spaces.
2600    --
2601    --                           In the above rules, appearing in column one is
2602    --                           always permitted, that is, counts as meeting
2603    --                           either a requirement for a required preceding
2604    --                           space, or as meeting a requirement for no
2605    --                           preceding space.
2606    --
2607    --                           Appearing at the end of a line is also always
2608    --                           permitted, that is, counts as meeting either
2609    --                           a requirement for a following space,
2610    --                           or as meeting a requirement for no following
2611    --                           space.
2612    --
2613    --      UNNECESSARY_BLANK_LINES
2614    --                           Check for unnecessary blank lines.
2615    --                           A blank line is considered unnecessary if it
2616    --                           appears at the end of the file, or if more
2617    --                           than one blank line occurs in sequence.
2618    --
2619    --      VTABS                No form feeds or vertical tabs.
2620    --                           Form feeds or vertical tab characters are not
2621    --                           permitted in the source text.
2622    --
2623    --      XTRA_PARENS          Check for the use of an unnecessary extra
2624    --                           level of parentheses (C - style) around
2625    --                           conditions in if statements, while statements
2626    --                           and exit statements.
2627
2628    S_GCC_StyleX  : aliased constant S := "/NOSTYLE_CHECKS "                &
2629                                             "!-gnatg,!-gnaty*";
2630    --  NODOC (see /STYLE_CHECKS)
2631
2632    S_GCC_Subdirs : aliased constant S := "/SUBDIRS=<"                      &
2633                                             "--subdirs=>";
2634    --        /SUBDIRS=dir
2635    --
2636    --   The actual directories (object, exec, library, ...) are subdirectories
2637    --   of the directory specified in the project file. If the subdirectory
2638    --   does not exist, it is created automatically.
2639
2640    S_GCC_Symbol  : aliased constant S := "/SYMBOL_PREPROCESSING=" & '"'    &
2641                                             "-gnateD" & '"';
2642    --        /SYMBOL_PREPROCESSING="symbol=value"
2643    --
2644    --   Define or redefine a preprocessing symbol, associated with value.
2645    --   If "=value" is not specified, then the value of the symbol is True.
2646    --   A symbol is an identifier, following normal Ada (case-insensitive)
2647    --   rules for its syntax, and value is any sequence (including an empty
2648    --   sequence) of characters from the set (letters, digits, period,
2649    --   underline). Ada reserved words may be used as symbols, with the
2650    --   exceptions of "if", "else", "elsif", "end", "and", "or" and "then".
2651    --
2652    --   A symbol declared with this qualifier on the command line replaces
2653    --   a symbol with the same name either in a definition file or specified
2654    --   with a switch -D in the preprocessor data file.
2655    --
2656    --   This qualifier is similar to qualifier /ASSOCIATE of
2657    --   GNAT PREPROCESSING.
2658
2659    S_GCC_Syntax  : aliased constant S := "/SYNTAX_ONLY "                   &
2660                                             "-gnats";
2661    --        /NOSYNTAX_ONLY (D)
2662    --        /SYNTAX_ONLY
2663    --
2664    --   Run GNAT in syntax checking only mode.  You can check a series of
2665    --   files in a single command, and can use wild cards to specify such a
2666    --   group of files.
2667    --
2668    --   You may use other qualifiers in conjunction with this qualifier. In
2669    --   particular, /LIST and /REPORT_ERRORS=VERBOSE are useful to control the
2670    --   format of any generated error messages.
2671    --
2672    --   The output is simply the error messages, if any. No object file or ALI
2673    --   file is generated by a syntax-only compilation. Also, no units other
2674    --   than the one specified are accessed. For example, if a unit "X" with's
2675    --   a unit "Y", compiling unit "X" in syntax check only mode does not
2676    --   access the source file containing unit "Y".
2677    --
2678    --   Normally, GNAT allows only a single unit in a source file. However,
2679    --   this restriction does not apply in syntax-check-only mode, and it is
2680    --   possible to check a file containing multiple compilation units
2681    --   concatenated together. This is primarily used by the GNAT CHOP
2682    --   command.
2683
2684    S_GCC_Table   : aliased constant S := "/TABLE_MULTIPLIER=#"             &
2685                                             "-gnatT#";
2686    --        /TABLE_MULTIPLIER=nnn
2687    --
2688    --   All compiler tables start at nnn times usual starting size.
2689
2690    S_GCC_Trace   : aliased constant S := "/TRACE_UNITS "                   &
2691                                             "-gnatdc";
2692    --        /TRACE_UNITS
2693    --        /NOTRACE_UNITS
2694    --
2695    --   This switch that does for the frontend what /VERBOSE does for the
2696    --   backend. The system prints the name of each unit, either a compilation
2697    --   unit or nested unit, as it is being analyzed.
2698
2699    S_GCC_Tree    : aliased constant S := "/TREE_OUTPUT "                   &
2700                                             "-gnatt";
2701    --        /TREE_OUTPUT
2702    --        /NOTREE_OUTPUT
2703    --
2704    --   Cause GNAT to write the internal tree for a unit to a file (with the
2705    --   filetype ATB for a body or ATS for a spec).  This is not normally
2706    --   required, but is used by separate analysis tools. Typically these
2707    --   tools do the necessary compilations automatically, so you should never
2708    --   have to specify this switch in normal operation.
2709
2710    S_GCC_Trys    : aliased constant S := "/TRY_SEMANTICS "                 &
2711                                             "-gnatq";
2712    --        /TRY_SEMANTICS
2713    --        /NOTRY_SEMANTICS
2714    --
2715    --   In normal operation mode the compiler first parses the program and
2716    --   determines if there are any syntax errors. If there are, appropriate
2717    --   error messages are generated and compilation is immediately
2718    --   terminated.  This qualifier tells GNAT to continue with semantic
2719    --   analysis even if syntax errors have been found.  This may enable the
2720    --   detection of more errors in a single run. On the other hand, the
2721    --   semantic analyzer is more likely to encounter some internal fatal
2722    --   error when given a syntactically invalid tree.
2723
2724    S_GCC_Units   : aliased constant S := "/UNITS_LIST "                    &
2725                                             "-gnatu";
2726    --        /NOUNITS_LIST (D)
2727    --        /UNITS_LIST
2728    --
2729    --   Print a list of units required by this compilation on SYS$OUTPUT.  The
2730    --   listing includes all units on which the unit being compiled depends
2731    --   either directly or indirectly.
2732
2733    S_GCC_Unique  : aliased constant S := "/UNIQUE_ERROR_TAG "              &
2734                                             "-gnatU";
2735    --        /NOUNIQUE_ERROR_TAG (D)
2736    --        /UNIQUE_ERROR_TAG
2737    --
2738    --   Tag compiler error messages with the string "error: ".
2739
2740    S_GCC_Upcase  : aliased constant S := "/UPPERCASE_EXTERNALS "           &
2741                                             "-gnatF";
2742    --        /NOUPPERCASE_EXTERNALS (D)
2743    --        /UPPERCASE_EXTERNALS
2744    --
2745    --   Fold default and explicit external names in pragmas Import and Export
2746    --   to uppercase for compatibility with the default behavior of DEC C.
2747
2748    S_GCC_Valid   : aliased constant S := "/VALIDITY_CHECKING="             &
2749                                             "DEFAULT "                     &
2750                                                "-gnatVd "                  &
2751                                             "NODEFAULT "                   &
2752                                                "-gnatVD "                  &
2753                                             "COPIES "                      &
2754                                                "-gnatVc "                  &
2755                                             "NOCOPIES "                    &
2756                                                "-gnatVC "                  &
2757                                             "COMPONENTS "                  &
2758                                                "-gnatVe "                  &
2759                                             "NOCOMPONENTS "                &
2760                                                "-gnatVE "                  &
2761                                             "FLOATS "                      &
2762                                                "-gnatVf "                  &
2763                                             "NOFLOATS "                    &
2764                                                "-gnatVF "                  &
2765                                             "IN_PARAMS "                   &
2766                                                "-gnatVi "                  &
2767                                             "NOIN_PARAMS "                 &
2768                                                "-gnatVI "                  &
2769                                             "MOD_PARAMS "                  &
2770                                                "-gnatVm "                  &
2771                                             "NOMOD_PARAMS "                &
2772                                                "-gnatVM "                  &
2773                                             "OPERANDS "                    &
2774                                                "-gnatVo "                  &
2775                                             "NOOPERANDS "                  &
2776                                                "-gnatVO "                  &
2777                                             "PARAMETERS "                  &
2778                                                "-gnatVp "                  &
2779                                             "NOPARAMETERS "                &
2780                                                "-gnatVP "                  &
2781                                             "RETURNS "                     &
2782                                                "-gnatVr "                  &
2783                                             "NORETURNS "                   &
2784                                                "-gnatVR "                  &
2785                                             "SUBSCRIPTS "                  &
2786                                                "-gnatVs "                  &
2787                                             "NOSUBSCRIPTS "                &
2788                                                "-gnatVS "                  &
2789                                             "TESTS "                       &
2790                                                "-gnatVt "                  &
2791                                             "NOTESTS "                     &
2792                                                "-gnatVT "                  &
2793                                             "ALL "                         &
2794                                                "-gnatVa "                  &
2795                                             "NONE "                        &
2796                                                "-gnatVn";
2797    --        /VALIDITY_CHECKING[=(keyword,[...])]
2798    --
2799    --   Control level of validity checking.
2800    --
2801    --        DEFAULT (D)     In this mode checks are made to prevent
2802    --                        erroneous behavior in accordance with the RM.
2803    --                        Notably extra checks may be needed for case
2804    --                        statements and subscripted array assignments.
2805    --
2806    --        NONE            No special checks for invalid values are
2807    --                        performed. This means that references to
2808    --                        uninitialized variables can cause erroneous
2809    --                        behavior from constructs like case statements
2810    --                        and subscripted array assignments. In this
2811    --                        mode, invalid values can lead to erroneous
2812    --                        behavior.
2813    --
2814    --        FULL            Every assignment is checked for validity, so
2815    --                        that it is impossible to assign invalid values.
2816    --                        The RM specifically allows such assignments,
2817    --                        but in this mode, invalid values can never be
2818    --                        assigned, and an attempt to perform such an
2819    --                        assignment immediately raises Constraint_Error.
2820    --                        This behavior is allowed (but not required) by
2821    --                        the RM. This mode is intended as a debugging aid,
2822    --                        and may be useful in helping to track down
2823    --                        uninitialized variables. It may be useful to
2824    --                        use this in conjunction with the Normalize_Scalars
2825    --                        pragma which attempts to initialize with invalid
2826    --                        values where possible.
2827
2828    S_GCC_Verbose : aliased constant S := "/VERBOSE "                       &
2829                                             "-v";
2830    --        /VERBOSE
2831    --        /NOVERBOSE
2832    --
2833    --   Show commands generated by the GCC driver. Normally used only for
2834    --   debugging purposes or if you need to be sure what version of the
2835    --   compiler you are executing.
2836
2837    S_GCC_Verb_Asm : aliased constant S := "/VERBOSE_ASM " &
2838                                           "-S,-verbose_asm,!-c";
2839    --        /NOASM (D)
2840    --        /ASM
2841    --
2842    --   Use to cause the assembler source file to be generated, using S as the
2843    --   filetype, instead of the object file. This may be useful if you need
2844    --   to examine the generated assembly code.
2845
2846    S_GCC_Warn    : aliased constant S := "/WARNINGS="                      &
2847                                             "DEFAULT "                     &
2848                                                "!-gnatws,!-gnatwe "        &
2849                                             "ALL "                         &
2850                                                "-gnatwa "                  &
2851                                             "EVERY "                       &
2852                                                "-gnatw.e "                 &
2853                                             "OPTIONAL "                    &
2854                                                "-gnatwa "                  &
2855                                             "NOOPTIONAL "                  &
2856                                                "-gnatwA "                  &
2857                                             "NOALL "                       &
2858                                                "-gnatwA "                  &
2859                                             "ALL_GCC "                     &
2860                                                "-Wall "                    &
2861                                             "FAILING_ASSERTIONS "          &
2862                                                "-gnatw.a "                 &
2863                                             "NO_FAILING_ASSERTIONS "       &
2864                                                "-gnatw.A "                 &
2865                                             "BAD_FIXED_VALUES "            &
2866                                                "-gnatwb "                  &
2867                                             "NO_BAD_FIXED_VALUES "         &
2868                                                "-gnatwB "                  &
2869                                             "BIASED_REPRESENTATION "       &
2870                                                "-gnatw.b "                 &
2871                                             "NO_BIASED_REPRESENTATION "    &
2872                                                "-gnatw.B "                 &
2873                                             "CONDITIONALS "                &
2874                                                "-gnatwc "                  &
2875                                             "NOCONDITIONALS "              &
2876                                                "-gnatwC "                  &
2877                                             "MISSING_COMPONENT_CLAUSES "   &
2878                                                "-gnatw.c "                 &
2879                                             "NOMISSING_COMPONENT_CLAUSES " &
2880                                                "-gnatw.C "                 &
2881                                             "IMPLICIT_DEREFERENCE "        &
2882                                                "-gnatwd "                  &
2883                                             "NO_IMPLICIT_DEREFERENCE "     &
2884                                                "-gnatwD "                  &
2885                                             "ERRORS "                      &
2886                                                "-gnatwe "                  &
2887                                             "UNREFERENCED_FORMALS "        &
2888                                                "-gnatwf "                  &
2889                                             "NOUNREFERENCED_FORMALS "      &
2890                                                "-gnatwF "                  &
2891                                             "UNRECOGNIZED_PRAGMAS "        &
2892                                                "-gnatwg "                  &
2893                                             "NOUNRECOGNIZED_PRAGMAS "      &
2894                                                "-gnatwG "                  &
2895                                             "HIDING "                      &
2896                                                "-gnatwh "                  &
2897                                             "NOHIDING "                    &
2898                                                "-gnatwH "                  &
2899                                             "IMPLEMENTATION "              &
2900                                                "-gnatwi "                  &
2901                                             "NOIMPLEMENTATION "            &
2902                                                "-gnatwI "                  &
2903                                             "OBSOLESCENT "                 &
2904                                                "-gnatwj "                  &
2905                                             "NOOBSOLESCENT "               &
2906                                                "-gnatwJ "                  &
2907                                             "CONSTANT_VARIABLES "          &
2908                                                "-gnatwk "                  &
2909                                             "NOCONSTANT_VARIABLES "        &
2910                                                "-gnatwK "                  &
2911                                             "ELABORATION "                 &
2912                                                "-gnatwl "                  &
2913                                             "NOELABORATION "               &
2914                                                "-gnatwL "                  &
2915                                             "MODIFIED_UNREF "              &
2916                                                "-gnatwm "                  &
2917                                             "NOMODIFIED_UNREF "            &
2918                                                "-gnatwM "                  &
2919                                             "SUSPICIOUS_MODULUS "          &
2920                                                "-gnatw.m "                 &
2921                                             "NOSUSPICIOUS_MODULUS "        &
2922                                                "-gnatw.M "                 &
2923                                             "NORMAL "                      &
2924                                                "-gnatwn "                  &
2925                                             "OVERLAYS "                    &
2926                                                "-gnatwo "                  &
2927                                             "NOOVERLAYS "                  &
2928                                                "-gnatwO "                  &
2929                                             "OUT_PARAM_UNREF "             &
2930                                                "-gnatw.o "                 &
2931                                             "NOOUT_PARAM_UNREF "           &
2932                                                "-gnatw.O "                 &
2933                                             "INEFFECTIVE_INLINE "          &
2934                                                "-gnatwp "                  &
2935                                             "NOINEFFECTIVE_INLINE "        &
2936                                                "-gnatwP "                  &
2937                                             "MISSING_PARENS "              &
2938                                                "-gnatwq "                  &
2939                                             "PARAMETER_ORDER "             &
2940                                                "-gnatw.p "                 &
2941                                             "NOPARAMETER_ORDER "           &
2942                                                "-gnatw.P "                 &
2943                                             "NOMISSING_PARENS "            &
2944                                                "-gnatwQ "                  &
2945                                             "REDUNDANT "                   &
2946                                                "-gnatwr "                  &
2947                                             "NOREDUNDANT "                 &
2948                                                "-gnatwR "                  &
2949                                             "OBJECT_RENAMES "              &
2950                                                "-gnatw.r "                 &
2951                                             "NOOBJECT_RENAMES "            &
2952                                                "-gnatw.R "                 &
2953                                             "SUPPRESS "                    &
2954                                                "-gnatws "                  &
2955                                             "DELETED_CODE "                &
2956                                                "-gnatwt "                  &
2957                                             "NODELETED_CODE "              &
2958                                                "-gnatwT "                  &
2959                                             "UNINITIALIZED "               &
2960                                                "-Wuninitialized "          &
2961                                             "UNUSED "                      &
2962                                                "-gnatwu "                  &
2963                                             "NOUNUSED "                    &
2964                                                "-gnatwU "                  &
2965                                             "VARIABLES_UNINITIALIZED "     &
2966                                                "-gnatwv "                  &
2967                                             "NOVARIABLES_UNINITIALIZED "   &
2968                                                "-gnatwV "                  &
2969                                             "LOWBOUND_ASSUMED "            &
2970                                                "-gnatww "                  &
2971                                             "NOLOWBOUND_ASSUMED "          &
2972                                                "-gnatwW "                  &
2973                                             "WARNINGS_OFF_PRAGMAS "        &
2974                                                "-gnatw.w "                 &
2975                                             "NO_WARNINGS_OFF_PRAGMAS "     &
2976                                                "-gnatw.W "                 &
2977                                             "IMPORT_EXPORT_PRAGMAS "       &
2978                                                "-gnatwx "                  &
2979                                             "NOIMPORT_EXPORT_PRAGMAS "     &
2980                                                "-gnatwX "                  &
2981                                             "LOCAL_RAISE_HANDLING "        &
2982                                                "-gnatw.x "                 &
2983                                             "NOLOCAL_RAISE_HANDLING "      &
2984                                                "-gnatw.X "                 &
2985                                             "ADA_2005_COMPATIBILITY "      &
2986                                                "-gnatwy "                  &
2987                                             "NOADA_2005_COMPATIBILITY "    &
2988                                                "-gnatwY "                  &
2989                                             "UNCHECKED_CONVERSIONS "       &
2990                                                "-gnatwz "                  &
2991                                             "NOUNCHECKED_CONVERSIONS "     &
2992                                                "-gnatwZ";
2993    --        /NOWARNINGS
2994    --
2995    --   Suppress the output of all warning messages from the GNAT front end.
2996    --   Note that it does not suppress warnings from the gcc back end.
2997    --
2998    --        /WARNINGS[=(keyword[,...])]
2999    --
3000    --   In addition to error messages, corresponding to illegalities as
3001    --   defined in the reference manual, the compiler detects two kinds of
3002    --   warning situations.  First, the compiler considers some constructs
3003    --   suspicious and generates a warning message to alert you to a possible
3004    --   error. Second, if the compiler detects a situation that is sure to
3005    --   raise an exception at runtime, it generates a warning message.
3006    --
3007    --   You may specify the following keywords to change this behavior:
3008    --
3009    --   DEFAULT (D)             The default behavior above.
3010    --
3011    --   ALL                     Activate all optional warnings.
3012    --                           Activates most optional warning messages,
3013    --                           see remaining list in this section for
3014    --                           details on optional warning messages that
3015    --                           can be individually controlled.
3016    --                           The warnings that are not turned on by
3017    --                           this option are BIASED_ROUNDING,
3018    --                           IMPLICIT_DEREFERENCE, HIDING and
3019    --                           ELABORATION. All other optional Ada
3020    --                           warnings are turned on.
3021    --
3022    --   EVERY                   Activate every optional warning.
3023    --                           Activates all optional warnings, including
3024    --                           those listed above as exceptions for ALL.
3025    --
3026    --   NOALL                   Suppress all optional errors.
3027    --                           Suppresses all optional warning messages
3028    --                           that can be activated by option ALL.
3029    --
3030    --   ALL_GCC                 Request additional messages from the GCC
3031    --                           backend.  Most of these are not relevant
3032    --                           to Ada.
3033    --
3034    --   CONDITIONALS            Activate warnings for conditional
3035    --                           Expressions used in tests that are known
3036    --                           to be True or False at compile time. The
3037    --                           default is that such warnings are not
3038    --                           generated.
3039    --
3040    --   NOCONDITIONALS          Suppress warnings for conditional
3041    --                           expressions used in tests that are known
3042    --                           to be True or False at compile time.
3043    --
3044    --   IMPLICIT_DEREFERENCE    Activate warnings on implicit dereferencing.
3045    --                           The use of a prefix of an access type in an
3046    --                           indexed component, slice, or selected component
3047    --                           without an explicit .all will generate
3048    --                           a warning. With this warning enabled, access
3049    --                           checks occur only at points where an explicit
3050    --                           .all appears in the source code (assuming no
3051    --                           warnings are generated as a result of this
3052    --                           option). The default is that such warnings are
3053    --                           not generated. Note that /WARNINGS=ALL does not
3054    --                           affect the setting of this warning option.
3055    --
3056    --   NOIMPLICIT_DEREFERENCE  Suppress warnings on implicit dereferencing.
3057    --                           in indexed components, slices, and selected
3058    --                           components.
3059    --
3060    --   ELABORATION             Activate warnings on missing pragma
3061    --                           Elaborate_All statements. The default is
3062    --                           that such warnings are not generated.
3063    --
3064    --   NOELABORATION           Suppress warnings on missing pragma
3065    --                           Elaborate_All statements.
3066    --
3067    --   ERRORS                  Warning messages are to be treated as errors.
3068    --                           The warning string still appears, but the
3069    --                           warning messages are counted as errors, and
3070    --                           prevent the generation of an object file.
3071    --
3072    --   HIDING                  Activate warnings on hiding declarations.
3073    --                           A declaration is considered hiding if it is
3074    --                           for a non-overloadable entity, and it declares
3075    --                           an entity with the same name as some other
3076    --                           entity that is directly or use-visible. The
3077    --                           default is that such warnings are not
3078    --                           generated.
3079    --
3080    --   NOHIDING                Suppress warnings on hiding declarations.
3081    --
3082    --   IMPLEMENTATION          Activate warnings for a with of an internal
3083    --                           GNAT implementation unit, defined as any unit
3084    --                           from the Ada, Interfaces, GNAT, DEC or
3085    --                           System hierarchies that is not documented in
3086    --                           either the Ada Reference Manual or the GNAT
3087    --                           Programmer's Reference Manual. Such units are
3088    --                           intended only for internal implementation
3089    --                           purposes and should not be with'ed by user
3090    --                           programs. The default is that such warnings
3091    --                           are generated.
3092    --
3093    --   NOIMPLEMENTATION        Disables warnings for a with of an internal
3094    --                           GNAT implementation unit.
3095    --
3096    --   INEFFECTIVE_INLINE      Activate warnings on ineffective pragma Inlines
3097    --                           Activates warnings for failure of front end
3098    --                           inlining (activated by /INLINE=FULL) to inline
3099    --                           a particular call. There are many reasons for
3100    --                           not being able to inline a call, including most
3101    --                           commonly that the call is too complex to
3102    --                           inline. This warning can also be turned on
3103    --                           using /INLINE=FULL.
3104    --
3105    --   NOINEFFECTIVE_INLINE    Suppress warnings on ineffective pragma Inlines
3106    --                           Suppresses warnings on ineffective pragma
3107    --                           Inlines. If the inlining mechanism cannot
3108    --                           inline a call, it will simply ignore the
3109    --                           request silently.
3110    --
3111    --   MISSING_COMPONENT_CLAUSES
3112    --                           Activate warnings for cases when there are
3113    --                           component clauses for a record type, but not
3114    --                           for every component of the record.
3115    --
3116    --   NOMISSING_COMPONENT_CLAUSES
3117    --                           Suppress warnings for cases when there are
3118    --                           missing component clauses for a record type.
3119    --
3120    --   MISSING_PARENS
3121    --                           Activate warnings for cases where parentheses
3122    --                           are not used and the result is potential
3123    --                           ambiguity from a reader's point of view.
3124    --                           For example (not a > b) when a and b are
3125    --                           modular means (not (a) > b) and very likely
3126    --                           the programmer intended (not (a > b)).
3127    --
3128    --   NOMISSING_PARENS
3129    --                           Suppress warnings for cases where parentheses
3130    --                           are not used and the result is potential
3131    --                           ambiguity from a reader's point of view.
3132    --
3133    --   MODIFIED_UNREF          Activates warnings for variables that are
3134    --                           assigned (using an initialization value or with
3135    --                           one or more assignment statements) but whose
3136    --                           value is never read. The warning is suppressed
3137    --                           for volatile variables and also for variables
3138    --                           that are renamings of other variables or for
3139    --                           which an address clause is given. This warning
3140    --                           can also be turned on using /WARNINGS/OPTIONAL.
3141    --
3142    --   NOMODIFIED_UNREF        Disables warnings for variables that are
3143    --                           assigned or initialized, but never read.
3144    --
3145    --   NORMAL                  Sets normal warning mode, in which enabled
3146    --                           warnings are issued and treated as warnings
3147    --                           rather than errors. This is the default mode.
3148    --                           It can be used to cancel the effect of an
3149    --                           explicit /WARNINGS=SUPPRESS or
3150    --                           /WARNINGS=ERRORS. It also cancels the effect
3151    --                           of the implicit /WARNINGS=ERRORS that is
3152    --                           activated by the use of /STYLE=GNAT.
3153    --
3154    --   OBSOLESCENT             Activates warnings for calls to subprograms
3155    --                           marked with pragma Obsolescent and for use of
3156    --                           features in Annex J of the Ada Reference
3157    --                           Manual. In the case of Annex J, not all
3158    --                           features are flagged. In particular use of the
3159    --                           renamed packages (like Text_IO), use of package
3160    --                           ASCII and use of the attribute 'Constrained are
3161    --                           not flagged, since these are very common and
3162    --                           would generate many annoying positive warnings.
3163    --                           The default is that such warnings are not
3164    --                           generated.
3165    --
3166    --   NOOBSOLESCENT           Disables warnings on use of obsolescent
3167    --                           features.
3168    --
3169    --   OBJECT_RENAME           Activate warnings for non limited objects
3170    --                           renaming parameterless functions.
3171    --
3172    --   NOOBJECT_RENAME         Suppress warnings for non limited objects
3173    --                           renaming parameterless functions.
3174    --
3175    --   OPTIONAL                Equivalent to ALL.
3176    --
3177    --   NOOPTIONAL              Equivalent to NOALL.
3178    --
3179    --   OVERLAYS                Activate warnings for possibly unintended
3180    --                           initialization effects of defining address
3181    --                           clauses that cause one variable to overlap
3182    --                           another. The default is that such warnings
3183    --                           are generated.
3184    --
3185    --   NOOVERLAYS              Suppress warnings on possibly unintended
3186    --                           initialization effects of defining address
3187    --                           clauses that cause one variable to overlap
3188    --                           another.
3189    --
3190    --   REDUNDANT               Activate warnings for redundant constructs.
3191    --                           In particular assignments of a variable to
3192    --                           itself, and a type conversion that converts
3193    --                           an object to its own type. The default
3194    --                           is that such warnings are not generated.
3195    --
3196    --   NOREDUNDANT             Suppress warnings for redundant constructs.
3197    --
3198    --   SUPPRESS                Completely suppress the output of all warning
3199    --                           messages.  Same as /NOWARNINGS.
3200    --
3201    --   UNCHECKED_CONVERSIONS   Activates warnings on unchecked conversions.
3202    --                           Causes warnings to be generated for
3203    --                           unchecked conversions when the two types are
3204    --                           known at compile time to have different sizes.
3205    --                           The default is that such warnings are
3206    --                           generated.
3207    --
3208    --   NOUNCHECKED_CONVERSIONS Suppress warnings for unchecked conversions.
3209    --
3210    --   UNINITIALIZED           Generate warnings for uninitialized variables.
3211    --                           This is a GCC option, not an Ada option.
3212    --                           You must also specify the /OPTIMIZE qualifier
3213    --                           with a value other than NONE (in other words,
3214    --                           this keyword works only if optimization is
3215    --                           turned on).
3216    --
3217    --   UNREFERENCED_FORMALS    Activate warnings on unreferenced formals.
3218    --                           Causes a warning to be generated if a formal
3219    --                           parameter is not referenced in the body of
3220    --                           the subprogram. This warning can also be turned
3221    --                           on using option ALL or UNUSED.
3222    --
3223    --   NOUNREFERENCED_FORMALS  Suppress warnings on unreferenced formals.
3224    --                           Suppresses warnings for unreferenced formal
3225    --                           parameters. Note that the combination UNUSED
3226    --                           followed by NOUNREFERENCED_FORMALS has the
3227    --                           effect of warning on unreferenced entities
3228    --                           other than subprogram formals.
3229    --
3230    --   UNUSED                  Activates warnings to be generated for entities
3231    --                           that are defined but not referenced, and for
3232    --                           units that are with'ed and not referenced. In
3233    --                           the case of packages, a warning is also
3234    --                           generated if no entities in the package are
3235    --                           referenced. This means that if the package
3236    --                           is referenced but the only references are in
3237    --                           use clauses or renames declarations, a warning
3238    --                           is still generated. A warning is also generated
3239    --                           for a generic package that is with'ed but never
3240    --                           instantiated.  In the case where a package or
3241    --                           subprogram body is compiled, and there is a
3242    --                           with on the corresponding spec that is only
3243    --                           referenced in the body, a warning is also
3244    --                           generated, noting that the with can be moved
3245    --                           to the body. The default is that such warnings
3246    --                           are not generated.
3247    --
3248    --   NOUNUSED                Suppress warnings for unused entities and
3249    --                           packages.
3250    --
3251    --   VARIABLES_UNINITIALIZED Activates warnings on unassigned variables.
3252    --                           Causes warnings to be generated when a variable
3253    --                           is accessed which may not be properly
3254    --                           uninitialized.
3255    --                           The default is that such warnings are
3256    --                           generated.
3257    --
3258    --   NOVARIABLES_UNINITIALIZED       Suppress warnings for uninitialized
3259    --                                   variables.
3260
3261    S_GCC_WarnX   : aliased constant S := "/NOWARNINGS "                    &
3262                                             "-gnatws";
3263    --  NODOC (see /WARNINGS)
3264
3265    S_GCC_No_Back : aliased constant S := "/NO_BACK_END_WARNINGS "          &
3266                                             "-w";
3267    --        /NO_BACK_END_WARNINGS
3268    --
3269    --   Inhibit all warning messages of the GCC back-end.
3270
3271    S_GCC_All_Back : aliased constant S := "/ALL_BACK_END_WARNINGS "        &
3272                                             "-Wall";
3273    --        /ALL_BACK_END_WARNINGS
3274    --
3275    --   Activate all warning messages of the GCC back-end.
3276
3277    S_GCC_Wide    : aliased constant S := "/WIDE_CHARACTER_ENCODING="       &
3278                                              "BRACKETS "                   &
3279                                                 "-gnatWb "                 &
3280                                              "HEX "                        &
3281                                                 "-gnatWh "                 &
3282                                              "UPPER "                      &
3283                                                 "-gnatWu "                 &
3284                                              "SHIFT_JIS "                  &
3285                                                 "-gnatWs "                 &
3286                                              "UTF8 "                       &
3287                                                 "-gnatW8 "                 &
3288                                              "EUC "                        &
3289                                                 "-gnatWe";
3290    --        /NOWIDE_CHARACTER_ENCODING (D)
3291    --        /WIDE_CHARACTER_ENCODING[=encode-type]
3292    --
3293    --   Specifies the mechanism used to encode wide characters.  'encode-type'
3294    --   is one of the following:
3295    --
3296    --   BRACKETS (D)    A wide character is encoded as ["xxxx"] where XXXX
3297    --                   are four hexadecimal digits representing the coding
3298    --                   ('Pos value) of the character in type
3299    --                   Wide_Character. The hexadecimal digits may use upper
3300    --                   or lower case letters.
3301    --
3302    --                   This notation can also be used for upper half
3303    --                   Character values using the format ["xx"] where XX is
3304    --                   two hexadecimal digits representing the coding ('Pos
3305    --                   value) of the character in type Character (or
3306    --                   Wide_Character). The hexadecimal digits may use upper
3307    --                   of lower case.
3308    --
3309    --   NONE            No wide characters are allowed.  Same
3310    --                   as /NOWIDE_CHARACTER_ENCODING.
3311    --
3312    --   HEX             In this encoding, a wide character is represented by
3313    --                   the following five character sequence: ESC a b c d
3314    --                   Where 'a', 'b', 'c', and 'd' are the four hexadecimal
3315    --                   characters (using uppercase letters) of the wide
3316    --                   character code. For example, ESC A345 is used to
3317    --                   represent the wide character with code 16#A345#. This
3318    --                   scheme is compatible with use of the full
3319    --                   Wide_Character set.
3320    --
3321    --   UPPER           The wide character with encoding 16#abcd# where the
3322    --                   upper bit is on (in other words, "a" is in the range
3323    --                   8-F) is represented as two bytes, 16#ab# and 16#cd#.
3324    --                   The second byte may never be a format control
3325    --                   character, but is not required to be in the upper
3326    --                   half. This method can be also used for shift-JIS or
3327    --                   EUC, where the internal coding matches the external
3328    --                   coding.
3329    --
3330    --   SHIFT_JIS       A wide character is represented by a two-character
3331    --                   sequence, 16#ab# and 16#cd#, with the restrictions
3332    --                   described for upper-half encoding as described above.
3333    --                   The internal character code is the corresponding JIS
3334    --                   character according to the standard algorithm for
3335    --                   Shift-JIS conversion. Only characters defined in the
3336    --                   JIS code set table can be used with this encoding
3337    --                   method.
3338    --
3339    --   UTF8            A wide character is represented using
3340    --                   UCS Transformation Format 8 (UTF-8) as defined in Annex
3341    --                   R of ISO 10646-1/Am.2.  Depending on the character
3342    --                   value, the representation is a one, two, or three byte
3343    --                   sequence:
3344    --
3345    --                   16#0000#-16#007f#: 2#0xxxxxxx#
3346    --                   16#0080#-16#07ff#: 2#110xxxxx# 2#10xxxxxx#
3347    --                   16#0800#-16#ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx#
3348    --
3349    --                   where the xxx bits correspond to the left-padded bits
3350    --                   of the 16-bit character value. Note that all lower
3351    --                   half ASCII characters are represented as ASCII bytes
3352    --                   and all upper half characters and other wide characters
3353    --                   are represented as sequences of upper-half (The full
3354    --                   UTF-8 scheme allows for encoding 31-bit characters as
3355    --                   6-byte sequences, but in this implementation, all UTF-8
3356    --                   sequences of four or more bytes length will be treated
3357    --                   as illegal).
3358    --
3359    --   EUC             A wide character is represented by a two-character
3360    --                   sequence 16#ab# and 16#cd#, with both characters being
3361    --                   in the upper half. The internal character code is the
3362    --                   corresponding JIS character according to the EUC
3363    --                   encoding algorithm. Only characters defined in the JIS
3364    --                   code set table can be used with this encoding method.
3365
3366    S_GCC_WideX   : aliased constant S := "/NOWIDE_CHARACTER_ENCODING "     &
3367                                              "-gnatWn";
3368    --  NODOC (see /WIDE_CHARACTER_ENCODING)
3369
3370    S_GCC_Xdebug  : aliased constant S := "/XDEBUG "                        &
3371                                             "-gnatD";
3372    --        /NOXDEBUG (D)
3373    --        /XDEBUG
3374    --
3375    --   Output expanded source files for source level debugging.
3376    --   The expanded source (see /EXPAND_SOURCE) is written to files
3377    --   with names formed by appending "_DG" to the input file name,
3378    --   The debugging information generated by the /DEBUG qualifier will then
3379    --   refer to the generated file. This allows source level debugging using
3380    --   the generated code which is sometimes useful for complex code, for
3381    --   example to find out exactly which part of a complex construction
3382    --   raised an exception. The maximum line length for the output is 72.
3383
3384    S_GCC_Lxdebug : aliased constant S := "/LXDEBUG=#"                      &
3385                                             "-gnatD=#";
3386    --        /LXDEBUG=nnn
3387    --
3388    --   Output expanded source files for source level debugging.
3389    --   The expanded source (see /EXPAND_SOURCE) is written to files
3390    --   with names formed by appending "_DG" to the input file name,
3391    --   The debugging information generated by the /DEBUG qualifier will then
3392    --   refer to the generated file. This allows source level debugging using
3393    --   the generated code which is sometimes useful for complex code, for
3394    --   example to find out exactly which part of a complex construction
3395    --   raised an exception. The parameter is the maximum line length for
3396    --   the output.
3397
3398    S_GCC_Xref    : aliased constant S := "/XREF="                          &
3399                                             "GENERATE "                    &
3400                                                "!-gnatx "                  &
3401                                             "SUPPRESS "                    &
3402                                                "-gnatx";
3403    --        /XREF[=keyword]
3404    --
3405    --   Normally the compiler generates full cross-referencing information in
3406    --   the .ALI file. This information is used by a number of tools,
3407    --   including GNAT FIND and GNAT XREF.
3408    --
3409    --        GENERATE (D)            Generate cross-referencing information.
3410    --
3411    --        SUPPRESS                Suppress cross-referencing information.
3412    --                                This saves some space and may slightly
3413    --                                speed up compilation, but means that some
3414    --                                tools cannot be used.
3415
3416    GCC_Switches : aliased constant Switches :=
3417                     (S_GCC_Ada_83  'Access,
3418                      S_GCC_Ada_95  'Access,
3419                      S_GCC_Ada_05  'Access,
3420                      S_GCC_Add     'Access,
3421                      S_GCC_Asm     'Access,
3422                      S_GCC_AValid  'Access,
3423                      S_GCC_Checks  'Access,
3424                      S_GCC_ChecksX 'Access,
3425                      S_GCC_Compres 'Access,
3426                      S_GCC_Config  'Access,
3427                      S_GCC_Current 'Access,
3428                      S_GCC_Debug   'Access,
3429                      S_GCC_DebugX  'Access,
3430                      S_GCC_Data    'Access,
3431                      S_GCC_Dist    'Access,
3432                      S_GCC_DistX   'Access,
3433                      S_GCC_Error   'Access,
3434                      S_GCC_ErrorX  'Access,
3435                      S_GCC_Expand  'Access,
3436                      S_GCC_Lexpand 'Access,
3437                      S_GCC_Extend  'Access,
3438                      S_GCC_Ext     'Access,
3439                      S_GCC_File    'Access,
3440                      S_GCC_Follow  'Access,
3441                      S_GCC_Force   'Access,
3442                      S_GCC_Full    'Access,
3443                      S_GCC_Generate'Access,
3444                      S_GCC_GNAT    'Access,
3445                      S_GCC_Help    'Access,
3446                      S_GCC_Ident   'Access,
3447                      S_GCC_IdentX  'Access,
3448                      S_GCC_Ignore  'Access,
3449                      S_GCC_Immed   'Access,
3450                      S_GCC_Inline  'Access,
3451                      S_GCC_InlineX 'Access,
3452                      S_GCC_Intsrc  'Access,
3453                      S_GCC_Just    'Access,
3454                      S_GCC_JustX   'Access,
3455                      S_GCC_Length  'Access,
3456                      S_GCC_List    'Access,
3457                      S_GCC_Output  'Access,
3458                      S_GCC_Machine 'Access,
3459                      S_GCC_Mapping 'Access,
3460                      S_GCC_Mess    'Access,
3461                      S_GCC_Nesting 'Access,
3462                      S_GCC_Noadc   'Access,
3463                      S_GCC_Noload  'Access,
3464                      S_GCC_Nostinc 'Access,
3465                      S_GCC_Nostlib 'Access,
3466                      S_GCC_Opt     'Access,
3467                      S_GCC_OptX    'Access,
3468                      S_GCC_Pointer 'Access,
3469                      S_GCC_Polling 'Access,
3470                      S_GCC_Project 'Access,
3471                      S_GCC_Psta    'Access,
3472                      S_GCC_Report  'Access,
3473                      S_GCC_ReportX 'Access,
3474                      S_GCC_Repinfo 'Access,
3475                      S_GCC_RepinfX 'Access,
3476                      S_GCC_RTS     'Access,
3477                      S_GCC_Search  'Access,
3478                      S_GCC_Style   'Access,
3479                      S_GCC_StyleX  'Access,
3480                      S_GCC_Subdirs 'Access,
3481                      S_GCC_Symbol  'Access,
3482                      S_GCC_Syntax  'Access,
3483                      S_GCC_Table   'Access,
3484                      S_GCC_Trace   'Access,
3485                      S_GCC_Tree    'Access,
3486                      S_GCC_Trys    'Access,
3487                      S_GCC_Units   'Access,
3488                      S_GCC_Unique  'Access,
3489                      S_GCC_Upcase  'Access,
3490                      S_GCC_Valid   'Access,
3491                      S_GCC_Verbose 'Access,
3492                      S_GCC_Verb_Asm'Access,
3493                      S_GCC_Warn    'Access,
3494                      S_GCC_WarnX   'Access,
3495                      S_GCC_Wide    'Access,
3496                      S_GCC_WideX   'Access,
3497                      S_GCC_No_Back 'Access,
3498                      S_GCC_All_Back'Access,
3499                      S_GCC_Xdebug  'Access,
3500                      S_GCC_Lxdebug 'Access,
3501                      S_GCC_Xref    'Access);
3502
3503    ----------------------------
3504    -- Switches for GNAT ELIM --
3505    ----------------------------
3506
3507    S_Elim_Add    : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"       &
3508                                            "-aP*";
3509    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
3510    --
3511    --   Add directories to the project search path.
3512
3513    S_Elim_All    : aliased constant S := "/ALL "                           &
3514                                             "-a";
3515    --        /NOALL (D)
3516    --        /ALL
3517    --
3518    --   Also look for subprograms from the GNAT run time that can be
3519    --   eliminated. Note that when 'gnat.adc' is produced using this switch,
3520    --   the entire program must be recompiled with qualifier /ALL_FILES of
3521    --   GNAT MAKE.
3522
3523    S_Elim_Bind   : aliased constant S := "/BIND_FILE=<"                    &
3524                                             "-b>";
3525    --        /BIND_FILE=file_name
3526    --
3527    --   Specifies file_name as the bind file to process. If this qualifier is
3528    --   not used, the name of the bind file is computed from the full expanded
3529    --   Ada name of a main subprogram.
3530
3531    S_Elim_Comp   : aliased constant S := "/COMPILER=@"                     &
3532                                             "--GCC=@";
3533    --        /COMPILER=path_name
3534    --
3535    --   Instructs GNAT ELIM to use a specific gcc compiler instead of one
3536    --   available on the path.
3537
3538    S_Elim_Config : aliased constant S := "/CONFIGURATION_PRAGMAS=<"        &
3539                                             "-C>";
3540    --        /CONFIGURATION_PRAGMAS=path_name
3541    --
3542    --   Specifies a file that contains configuration pragmas.
3543    --   The file must be specified with absolute path.
3544
3545    S_Elim_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
3546                                            "!-I-";
3547    --        /CURRENT_DIRECTORY (D)
3548    --        /NOCURRENT_DIRECTORY
3549    --
3550    --        Look for source files in the default directory.
3551
3552    S_Elim_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3553                                              "-X" & '"';
3554    --       /EXTERNAL_REFERENCE="name=val"
3555    --
3556    --   Specifies an external reference to the project manager. Useful only if
3557    --   /PROJECT_FILE is used.
3558    --
3559    --   Example:
3560    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3561
3562    S_Elim_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
3563                                             "-eL";
3564    --        /NOFOLLOW_LINKS_FOR_FILES (D)
3565    --        /FOLLOW_LINKS_FOR_FILES
3566    --
3567    --    Follow links when parsing project files
3568
3569    S_Elim_GNATMAKE : aliased constant S := "/GNATMAKE=@"                   &
3570                                             "--GNATMAKE=@";
3571    --        /GNATMAKE=path_name
3572    --
3573    --   Instructs GNAT MAKE to use a specific gnatmake instead of one available
3574    --   on the path.
3575
3576    S_Elim_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3577                                              "DEFAULT "                    &
3578                                                 "-vP0 "                    &
3579                                              "MEDIUM "                     &
3580                                                 "-vP1 "                    &
3581                                              "HIGH "                       &
3582                                                 "-vP2";
3583    --        /MESSAGES_PROJECT_FILE[=messages-option]
3584    --
3585    --   Specifies the "verbosity" of the parsing of project files.
3586    --   messages-option may be one of the following:
3587    --
3588    --      DEFAULT (D)  No messages are output if there is no error or warning.
3589    --
3590    --      MEDIUM       A small number of messages are output.
3591    --
3592    --      HIGH         A great number of messages are output, most of them not
3593    --                   being useful for the user.
3594
3595    S_Elim_Project : aliased constant S := "/PROJECT_FILE=<"                &
3596                                              "-P>";
3597    --        /PROJECT_FILE=filename
3598    --
3599    --   Specifies the main project file to be used. The project files rooted
3600    --   at the main project file will be parsed before the invocation of the
3601    --   gnatelim. The source directories to be searched will be communicated
3602    --   to gnatelim through logical name ADA_PRJ_INCLUDE_FILE.
3603
3604    S_Elim_Quiet  : aliased constant S := "/QUIET "                         &
3605                                             "-q";
3606    --        /NOQUIET (D)
3607    --        /QUIET
3608    --
3609    --   Quiet mode: by default GNAT ELIM outputs to the standard error stream
3610    --   the number of program units left to be processed. This option turns
3611    --   this trace off.
3612
3613    S_Elim_Search : aliased constant S := "/SEARCH=*"                       &
3614                                             "-I*";
3615    --        /SEARCH=(directory, ...)
3616    --
3617    --   When looking for source files also look in the specified directories.
3618
3619    S_Elim_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
3620                                              "--subdirs=>";
3621    --        /SUBDIRS=dir
3622    --
3623    --   The actual directories (object, exec, library, ...) are subdirectories
3624    --   of the directory specified in the project file. If the subdirectory
3625    --   does not exist, it is created automatically.
3626
3627    S_Elim_Verb   : aliased constant S := "/VERBOSE "                       &
3628                                             "-v";
3629    --        /NOVERBOSE (D)
3630    --        /VERBOSE
3631    --
3632    --   Verbose mode: GNAT ELIM version information is output as Ada comments
3633    --   to the standard output stream. Also, in addition to the number of
3634    --   program units left, GNAT ELIM will output the name of the current unit
3635    --   being processed.
3636
3637    Elim_Switches : aliased constant Switches :=
3638                      (S_Elim_Add     'Access,
3639                       S_Elim_All     'Access,
3640                       S_Elim_Bind    'Access,
3641                       S_Elim_Comp    'Access,
3642                       S_Elim_Config  'Access,
3643                       S_Elim_Current 'Access,
3644                       S_Elim_Ext     'Access,
3645                       S_Elim_Follow  'Access,
3646                       S_Elim_GNATMAKE'Access,
3647                       S_Elim_Mess    'Access,
3648                       S_Elim_Project 'Access,
3649                       S_Elim_Quiet   'Access,
3650                       S_Elim_Search  'Access,
3651                       S_Elim_Subdirs 'Access,
3652                       S_Elim_Verb    'Access);
3653
3654    ----------------------------
3655    -- Switches for GNAT FIND --
3656    ----------------------------
3657
3658    S_Find_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
3659                                             "-aP*";
3660    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
3661    --
3662    --   Add directories to the project search path.
3663
3664    S_Find_All     : aliased constant S := "/ALL_FILES "                    &
3665                                             "-a";
3666    --        /NOALL_FILES (D)
3667    --        /ALL_FILES
3668    --
3669    --   If this switch is present, FIND and XREF will parse the read-only
3670    --   files found in the library search path. Otherwise, these files will
3671    --   be ignored. This option can be used to protect Gnat sources or your
3672    --   own libraries from being parsed, thus making FIND and XREF much
3673    --   faster, and their output much smaller.
3674
3675    S_Find_Deriv   : aliased constant S := "/DERIVED_TYPE_INFORMATION "     &
3676                                             "-d";
3677    --        /NODERIVED_TYPE_INFORMATION (D)
3678    --        /DERIVED_TYPE_INFORMATION
3679    --
3680    --   Output the parent type reference for each matching derived types.
3681
3682    S_Find_Expr    : aliased constant S := "/EXPRESSIONS "                  &
3683                                             "-e";
3684    --        /NOEXPRESSIONS (D)
3685    --        /EXPRESSIONS
3686    --
3687    --   By default, FIND accepts the simple regular expression set for pattern.
3688    --   If this switch is set, then the pattern will be considered as a full
3689    --   Unix-style regular expression.
3690
3691    S_Find_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3692                                             "-X" & '"';
3693    --        /EXTERNAL_REFERENCE="name=val"
3694    --
3695    --   Specifies an external reference to the project manager. Useful only if
3696    --   /PROJECT_FILE is used.
3697    --
3698    --   Example:
3699    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3700
3701    S_Find_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
3702                                             "-eL";
3703    --        /NOFOLLOW_LINKS_FOR_FILES (D)
3704    --        /FOLLOW_LINKS_FOR_FILES
3705    --
3706    --    Follow links when parsing project files
3707
3708    S_Find_Full    : aliased constant S := "/FULL_PATHNAME "                &
3709                                             "-f";
3710    --        /NOFULL_PATHNAME (D)
3711    --        /FULL_PATHNAME
3712    --
3713    --   If this switch is set, the output file names will be preceded by their
3714    --   directory (if the file was found in the search path). If this switch
3715    --   is not set, the directory will not be printed.
3716
3717    S_Find_Ignore  : aliased constant S := "/IGNORE_LOCALS "                &
3718                                             "-g";
3719    --        /NOIGNORE_LOCALS (D)
3720    --        /IGNORE_LOCALS
3721    --
3722    --   If this switch is set, information is output only for library-level
3723    --   entities, ignoring local entities. The use of this switch may
3724    --   accelerate FIND and XREF.
3725
3726    S_Find_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3727                                             "DEFAULT "                     &
3728                                                "-vP0 "                     &
3729                                             "MEDIUM "                      &
3730                                                "-vP1 "                     &
3731                                             "HIGH "                        &
3732                                                "-vP2";
3733    --        /MESSAGES_PROJECT_FILE[=messages-option]
3734    --
3735    --   Specifies the "verbosity" of the parsing of project files.
3736    --   messages-option may be one of the following:
3737    --
3738    --      DEFAULT (D)  No messages are output if there is no error or warning.
3739    --
3740    --      MEDIUM       A small number of messages are output.
3741    --
3742    --      HIGH         A great number of messages are output, most of them not
3743    --                   being useful for the user.
3744
3745    S_Find_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
3746                                             "-nostdinc";
3747    --        /NOSTD_INCLUDES
3748    --
3749    --   Do not look for sources in the system default directory.
3750
3751    S_Find_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
3752                                             "-nostdlib";
3753    --        /NOSTD_LIBRARIES
3754    --
3755    --   Do not look for library files in the system default directory.
3756
3757    S_Find_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
3758                                             "-aO*";
3759    --        /OBJECT_SEARCH=(directory,...)
3760    --
3761    --   When searching for library and object files, look in the specified
3762    --   directories. The order in which library files are searched is the same
3763    --   as for MAKE.
3764
3765    S_Find_Print   : aliased constant S := "/PRINT_LINES "                  &
3766                                             "-s";
3767    --        /NOPRINT_LINES (D)
3768    --        /PRINT_LINES
3769    --
3770    --   Output the content of the Ada source file lines were the entity was
3771    --   found.
3772
3773    S_Find_Project : aliased constant S := "/PROJECT=@"                     &
3774                                             "-p@";
3775    --        /PROJECT=file
3776    --
3777    --   Specify a project file to use. By default, FIND and XREF will try to
3778    --   locate a project file in the current directory.
3779    --
3780    --   If a project file is either specified or found by the tools, then the
3781    --   content of the source directory and object directory lines are added
3782    --   as if they had been specified respectively by /SOURCE_SEARCH and
3783    --   /OBJECT_SEARCH.
3784    --
3785    --   This qualifier is not compatible with /PROJECT_FILE
3786
3787    S_Find_Prj     : aliased constant S := "/PROJECT_FILE=<"                &
3788                                             "-P>";
3789    --        /PROJECT_FILE=filename
3790    --
3791    --   Specifies the main project file to be used. The project files rooted
3792    --   at the main project file will be parsed before looking for sources.
3793    --   The source and object directories to be searched will be communicated
3794    --   to gnatfind through logical names ADA_PRJ_INCLUDE_FILE and
3795    --   ADA_PRJ_OBJECTS_FILE.
3796
3797    S_Find_Ref     : aliased constant S := "/REFERENCES "                   &
3798                                             "-r";
3799    --        /NOREFERENCES (D)
3800    --        /REFERENCES
3801    --
3802    --   By default, FIND will output only the information about the
3803    --   declaration, body or type completion of the entities. If this switch
3804    --   is set, the FIND will locate every reference to the entities in the
3805    --   files specified on the command line (or in every file in the search
3806    --   path if no file is given on the command line).
3807
3808    S_Find_Search  : aliased constant S := "/SEARCH=*"                      &
3809                                             "-I*";
3810    --        /SEARCH=(directory,...)
3811    --
3812    --   Equivalent to:
3813    --   /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
3814
3815    S_Find_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
3816                                             "-aI*";
3817    --        /SOURCE_SEARCH=(directory,...)
3818    --
3819    --   When looking for source files also look in the specified directories.
3820    --   The order in which source file search is undertaken is the same as for
3821    --   MAKE.
3822
3823    S_Find_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
3824                                              "--subdirs=>";
3825    --        /SUBDIRS=dir
3826    --
3827    --   The actual directories (object, exec, library, ...) are subdirectories
3828    --   of the directory specified in the project file. If the subdirectory
3829    --   does not exist, it is created automatically.
3830
3831    S_Find_Types   : aliased constant S := "/TYPE_HIERARCHY "               &
3832                                             "-t";
3833    --        /NOTYPE_HIERARCHY (D)
3834    --        /TYPE_HIERARCHY
3835    --
3836    --   Output the type hierarchy for the specified type. It acts like the
3837    --   /DERIVED_TYPE_INFORMATION qualifier, but recursively from parent type
3838    --   to parent type. When this qualifier is specified it is not possible to
3839    --   specify more than one file.
3840
3841    Find_Switches : aliased constant Switches :=
3842                      (S_Find_Add     'Access,
3843                       S_Find_All     'Access,
3844                       S_Find_Deriv   'Access,
3845                       S_Find_Expr    'Access,
3846                       S_Find_Ext     'Access,
3847                       S_Find_Follow  'Access,
3848                       S_Find_Full    'Access,
3849                       S_Find_Ignore  'Access,
3850                       S_Find_Mess    'Access,
3851                       S_Find_Nostinc 'Access,
3852                       S_Find_Nostlib 'Access,
3853                       S_Find_Object  'Access,
3854                       S_Find_Print   'Access,
3855                       S_Find_Project 'Access,
3856                       S_Find_Prj     'Access,
3857                       S_Find_Ref     'Access,
3858                       S_Find_Search  'Access,
3859                       S_Find_Source  'Access,
3860                       S_Find_Subdirs 'Access,
3861                       S_Find_Types   'Access);
3862
3863    ------------------------------
3864    -- Switches for GNAT KRUNCH --
3865    ------------------------------
3866
3867    S_Krunch_Count  : aliased constant S := "/COUNT=#"                      &
3868                                             "`#";
3869    --        /COUNT=39 (D)
3870    --        /COUNT=nnn
3871    --
3872    --   Limit file names to nnn characters (where nnn is a decimal
3873    --   integer). The maximum file name length is 39, but if you want to
3874    --   generate a set of files that would be usable if ported to a system
3875    --   with some different maximum file length, then a different value can
3876    --   be specified.
3877
3878    Krunch_Switches : aliased constant Switches  :=
3879                        (1 .. 1 => S_Krunch_Count  'Access);
3880
3881    ----------------------------
3882    -- Switches for GNAT LINK --
3883    ----------------------------
3884
3885    S_Link_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
3886                                             "-aP*";
3887    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
3888    --
3889    --   Add directories to the project search path.
3890
3891    S_Link_Bind    : aliased constant S := "/BIND_FILE="                    &
3892                                             "ADA "                         &
3893                                                "-A "                       &
3894                                             "C "                           &
3895                                                "-C";
3896    --        /BIND_FILE=[bind-file-option]
3897    --
3898    --   Specifies the language of the binder generated file.
3899    --
3900    --        ADA (D)         Binder file is Ada.
3901    --
3902    --        C               Binder file is 'C'.
3903
3904    S_Link_Debug   : aliased constant S := "/DEBUG="                        &
3905                                             "ALL "                         &
3906                                                "-g3 "                      &
3907                                             "NONE "                        &
3908                                                "-g0 "                      &
3909                                             "TRACEBACK "                   &
3910                                                "-g1 "                      &
3911                                             "NOTRACEBACK "                 &
3912                                                "-g0";
3913    --        /NODEBUG (D)
3914    --        /DEBUG[=debug-option]
3915    --
3916    --   Specifies the amount of debugging information included. 'debug-option'
3917    --   is one of the following:
3918    --
3919    --        ALL (D)      Include full debugging information.
3920    --
3921    --        NONE         Provide no debugging information.  Same as /NODEBUG.
3922    --
3923    --        TRACEBACK    Provide sufficient debug information for a traceback.
3924    --
3925    --        NOTRACEBACK  Same as NONE.
3926
3927    S_Link_Nodebug : aliased constant S := "/NODEBUG "                      &
3928                                             "-g0";
3929    --  NODOC (see /DEBUG)
3930
3931    S_Link_Execut  : aliased constant S := "/EXECUTABLE=@"                  &
3932                                             "-o@";
3933    --        /EXECUTABLE=exec-name
3934    --
3935    --   'exec-name' specifies an alternative name for the generated executable
3936    --   program. If this qualifier switch is omitted, the executable is called
3937    --   the name of the main unit. So "$ GNAT LINK TRY.ALI" creates an
3938    --   executable called TRY.EXE.
3939
3940    S_Link_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
3941                                             "-X" & '"';
3942    --        /EXTERNAL_REFERENCE="name=val"
3943    --
3944    --   Specifies an external reference to the project manager. Useful only if
3945    --   /PROJECT_FILE is used.
3946    --
3947    --   Example:
3948    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
3949
3950    S_Link_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
3951                                             "-eL";
3952    --        /NOFOLLOW_LINKS_FOR_FILES (D)
3953    --        /FOLLOW_LINKS_FOR_FILES
3954    --
3955    --    Follow links when parsing project files
3956
3957    S_Link_Forlink : aliased constant S := "/FOR_LINKER=" & '"'             &
3958                                             "--for-linker=" & '"';
3959    --        /FOR_LINKER=<string>
3960    --
3961    --   Transmit the option <string> to the underlying linker.
3962
3963    S_Link_Force   : aliased constant S := "/FORCE_OBJECT_FILE_LIST "       &
3964                                             "-f";
3965    --        /NOFORCE_OBJECT_FILE_LIST (D)
3966    --        /FORCE_OBJECT_FILE_LIST
3967    --
3968    --   Forces the generation of a file that contains commands for the linker.
3969    --   This is useful in some cases to deal with special situations where the
3970    --   command line length is exceeded.
3971
3972    S_Link_Ident   : aliased constant S := "/IDENTIFICATION=" & '"'         &
3973                                             "--for-linker=IDENT="          &
3974                                             '"';
3975    --        /IDENTIFICATION="<string>"
3976    --
3977    --   "<string>" specifies the string to be stored in the image file ident-
3978    --   ification field in the image header. It overrides any pragma Ident
3979    --   specified string.
3980
3981    S_Link_Libdir  : aliased constant S := "/LIBDIR=*"                      &
3982                                             "-L*";
3983    --        /LIBDIR=(directory, ...)
3984    --
3985    --   Look for libraries in the specified directories.
3986
3987    S_Link_Library : aliased constant S := "/LIBRARY=|"                     &
3988                                             "-l|";
3989    --        /LIBRARY=xyz
3990    --
3991    --   Link with library named "xyz".
3992
3993    S_Link_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
3994                                             "DEFAULT "                     &
3995                                                "-vP0 "                     &
3996                                             "MEDIUM "                      &
3997                                                "-vP1 "                     &
3998                                             "HIGH "                        &
3999                                                "-vP2";
4000    --        /MESSAGES_PROJECT_FILE[=messages-option]
4001    --
4002    --   Specifies the "verbosity" of the parsing of project files.
4003    --   messages-option may be one of the following:
4004    --
4005    --      DEFAULT (D)  No messages are output if there is no error or warning.
4006    --
4007    --      MEDIUM       A small number of messages are output.
4008    --
4009    --      HIGH         A great number of messages are output, most of them not
4010    --                   being useful for the user.
4011
4012    S_Link_Nocomp  : aliased constant S := "/NOCOMPILE "                    &
4013                                             "-n";
4014    --        /NOCOMPILE
4015    --
4016    --   Do not compile the file generated by the binder.
4017    --   This may be used when a link is rerun with different options,
4018    --   but there is no need to recompile the binder generated file.
4019
4020    S_Link_Noinhib : aliased constant S := "/NOINHIBIT-EXEC "               &
4021                                             "--for-linker=--noinhibit-exec";
4022    --        /NOINHIBIT-EXEC
4023    --
4024    --   Delete executable if there are errors or warnings.
4025
4026    S_Link_Nofiles : aliased constant S := "/NOSTART_FILES "                &
4027                                             "-nostartfiles";
4028    --        /NOSTART_FILES
4029    --
4030    --   Link in default image initialization and startup functions.
4031
4032    S_Link_Project : aliased constant S := "/PROJECT_FILE=<"                &
4033                                             "-P>";
4034    --        /PROJECT_FILE=filename
4035    --
4036    --   Specifies the main project file to be used. The project files rooted
4037    --   at the main project file will be parsed before the invocation of the
4038    --   linker.
4039    --   The source and object directories to be searched will be communicated
4040    --   to the linker through logical names ADA_PRJ_INCLUDE_FILE and
4041    --   ADA_PRJ_OBJECTS_FILE.
4042
4043    S_Link_Return  : aliased constant S := "/RETURN_CODES="                 &
4044                                             "POSIX "                       &
4045                                                "!-mvms-return-codes "      &
4046                                             "VMS "                         &
4047                                                "-mvms-return-codes";
4048    --        /RETURN_CODES=POSIX (D)
4049    --        /RETURN_CODES=VMS
4050    --
4051    --   Specifies the style of codes returned by
4052    --   Ada.Command_Line.Set_Exit_Status. Must be used in conjunction with
4053    --   and match the Bind qualifier with the same name.
4054    --
4055    --        POSIX (D)   Return Posix compatible exit codes.
4056    --
4057    --        VMS         Return VMS compatible exit codes. The value returned
4058    --                    is identically equal to the Set_Exit_Status parameter.
4059
4060    S_Link_Static  : aliased constant S := "/STATIC "                       &
4061                                             "--for-linker=-static";
4062    --        /NOSTATIC (D)
4063    --        /STATIC
4064    --
4065    --   Indicate to the linker that the link is static.
4066
4067    S_Link_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
4068                                              "--subdirs=>";
4069    --        /SUBDIRS=dir
4070    --
4071    --   The actual directories (object, exec, library, ...) are subdirectories
4072    --   of the directory specified in the project file. If the subdirectory
4073    --   does not exist, it is created automatically.
4074
4075    S_Link_Verb    : aliased constant S := "/VERBOSE "                      &
4076                                             "-v";
4077    --        /NOVERBOSE (D)
4078    --        /VERBOSE
4079    --
4080    --   Causes additional information to be output, including a full list of
4081    --   the included object files. This switch option is most useful when you
4082    --   want to see what set of object files are being used in the link step.
4083
4084    S_Link_ZZZZZ   : aliased constant S := "/<other> "                      &
4085                                             "--for-linker=";
4086    --        /<other>
4087    --
4088    --   Any other switch that will be transmitted to the underlying linker.
4089
4090    Link_Switches : aliased constant Switches :=
4091                      (S_Link_Add     'Access,
4092                       S_Link_Bind    'Access,
4093                       S_Link_Debug   'Access,
4094                       S_Link_Nodebug 'Access,
4095                       S_Link_Execut  'Access,
4096                       S_Link_Ext     'Access,
4097                       S_Link_Follow  'Access,
4098                       S_Link_Forlink 'Access,
4099                       S_Link_Force   'Access,
4100                       S_Link_Ident   'Access,
4101                       S_Link_Libdir  'Access,
4102                       S_Link_Library 'Access,
4103                       S_Link_Mess    'Access,
4104                       S_Link_Nocomp  'Access,
4105                       S_Link_Nofiles 'Access,
4106                       S_Link_Noinhib 'Access,
4107                       S_Link_Project 'Access,
4108                       S_Link_Return  'Access,
4109                       S_Link_Static  'Access,
4110                       S_Link_Subdirs 'Access,
4111                       S_Link_Verb    'Access,
4112                       S_Link_ZZZZZ   'Access);
4113
4114    ----------------------------
4115    -- Switches for GNAT LIST --
4116    ----------------------------
4117
4118    S_List_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
4119                                             "-aP*";
4120    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4121    --
4122    --   Add directories to the project search path.
4123
4124    S_List_All     : aliased constant S := "/ALL_UNITS "                    &
4125                                             "-a";
4126    --        /NOALL_UNITS (D)
4127    --        /ALL_UNITS
4128    --
4129    --   Consider all units, including those of the predefined Ada library.
4130    --   Especially useful with /DEPENDENCIES.
4131
4132    S_List_Allproj : aliased constant S := "/ALL_PROJECTS "                 &
4133                                             "-U";
4134    --        /NOALL_PROJECTS (D)
4135    --        /ALL_PROJECTS
4136    --
4137    --   When used with a project file and no file specified, indicate
4138    --   that gnatls should be called for all sources of all projects in
4139    --   the project tree.
4140
4141    S_List_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
4142                                             "!-I-";
4143    --        /CURRENT_DIRECTORY (D)
4144    --        /NOCURRENT_DIRECTORY
4145    --
4146    --   Look for source, library or object files in the default directory.
4147
4148    S_List_Depend  : aliased constant S := "/DEPENDENCIES "                 &
4149                                             "-d";
4150    --        /NODEPENDENCIES (D)
4151    --        /DEPENDENCIES
4152
4153    S_List_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
4154                                             "-X" & '"';
4155    --        /EXTERNAL_REFERENCE="name=val"
4156    --
4157    --   Specifies an external reference to the project manager. Useful only if
4158    --   /PROJECT_FILE is used.
4159    --
4160    --   Example:
4161    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4162
4163    S_List_Files   : aliased constant S := "/FILES=@"                       &
4164                                             "-files=@";
4165    --        /FILES=filename
4166    --
4167    --   Take as arguments the files that are listed in the specified
4168    --   text file.
4169
4170    S_List_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
4171                                             "-eL";
4172    --        /NOFOLLOW_LINKS_FOR_FILES (D)
4173    --        /FOLLOW_LINKS_FOR_FILES
4174    --
4175    --    Follow links when parsing project files
4176
4177    S_List_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
4178                                             "DEFAULT "                     &
4179                                                "-vP0 "                     &
4180                                             "MEDIUM "                      &
4181                                                "-vP1 "                     &
4182                                             "HIGH "                        &
4183                                                "-vP2";
4184    --        /MESSAGES_PROJECT_FILE[=messages-option]
4185    --
4186    --   Specifies the "verbosity" of the parsing of project files.
4187    --   messages-option may be one of the following:
4188    --
4189    --      DEFAULT (D)  No messages are output if there is no error or warning.
4190    --
4191    --      MEDIUM       A small number of messages are output.
4192    --
4193    --      HIGH         A great number of messages are output, most of them not
4194    --                   being useful for the user.
4195
4196    S_List_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
4197                                             "-nostdinc";
4198    --        /NOSTD_INCLUDES
4199    --
4200    --   Do not look for sources of the run time in the standard directory.
4201
4202    S_List_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
4203                                             "-aO*";
4204    --        /OBJECT_SEARCH=(directory,...)
4205    --
4206    --   When looking for library and object files look also in the specified
4207    --   directories.
4208
4209    S_List_Output  : aliased constant S := "/OUTPUT="                       &
4210                                             "SOURCES "                     &
4211                                                "-s "                       &
4212                                             "DEPEND "                      &
4213                                                "-d "                       &
4214                                             "OBJECTS "                     &
4215                                                "-o "                       &
4216                                             "UNITS "                       &
4217                                                "-u "                       &
4218                                             "OPTIONS "                     &
4219                                                "-h "                       &
4220                                             "VERBOSE "                     &
4221                                                "-v ";
4222    --        /OUTPUT=(option,option,...)
4223    --
4224    --        SOURCES (D)     Only output information about source files.
4225    --
4226    --        DEPEND          List sources from which specified units depend on.
4227    --
4228    --        OBJECTS         Only output information about object files.
4229    --
4230    --        UNITS           Only output information about compilation units.
4231    --
4232    --        OPTIONS         Output the list of options.
4233    --
4234    --        VERBOSE         Output the complete source and object paths.
4235    --                        Do not use the default column layout but instead
4236    --                        use long format giving as much as information
4237    --                        possible on each requested units, including
4238    --                        special characteristics.
4239
4240    S_List_Project : aliased constant S := "/PROJECT_FILE=<"                &
4241                                             "-P>";
4242    --        /PROJECT_FILE=filename
4243    --
4244    --   Specifies the main project file to be used. The project files rooted
4245    --   at the main project file will be parsed before doing any listing.
4246    --   The source and object directories to be searched will be communicated
4247    --   to gnatlist through logical names ADA_PRJ_INCLUDE_FILE and
4248    --   ADA_PRJ_OBJECTS_FILE.
4249
4250    S_List_Search  : aliased constant S := "/SEARCH=*"                      &
4251                                             "-I*";
4252    --        /SEARCH=(directory,...)
4253    --
4254    --   Search the specified directories for both source and object files.
4255
4256    S_List_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
4257                                             "-aI*";
4258    --        /SOURCE_SEARCH=(directory,...)
4259    --
4260    --   When looking for source files also look in the specified directories.
4261
4262    S_List_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
4263                                              "--subdirs=>";
4264    --        /SUBDIRS=dir
4265    --
4266    --   The actual directories (object, exec, library, ...) are subdirectories
4267    --   of the directory specified in the project file. If the subdirectory
4268    --   does not exist, it is created automatically.
4269
4270    List_Switches : aliased constant Switches :=
4271                      (S_List_Add     'Access,
4272                       S_List_All     'Access,
4273                       S_List_Allproj 'Access,
4274                       S_List_Current 'Access,
4275                       S_List_Depend  'Access,
4276                       S_List_Ext     'Access,
4277                       S_List_Files   'Access,
4278                       S_List_Follow  'Access,
4279                       S_List_Mess    'Access,
4280                       S_List_Nostinc 'Access,
4281                       S_List_Object  'Access,
4282                       S_List_Output  'Access,
4283                       S_List_Project 'Access,
4284                       S_List_Search  'Access,
4285                       S_List_Source  'Access,
4286                       S_List_Subdirs 'Access);
4287
4288    ----------------------------
4289    -- Switches for GNAT MAKE --
4290    ----------------------------
4291
4292    S_Make_Actions : aliased constant S := "/ACTIONS="                      &
4293                                             "COMPILE "                     &
4294                                                "-c "                       &
4295                                             "BIND "                        &
4296                                                "-b "                       &
4297                                             "LINK "                        &
4298                                                "-l ";
4299    --        /ACTIONS=(keyword[,...])
4300    --
4301    --  GNAT MAKE default behavior is to check if the sources are up to date,
4302    --  compile those sources that are not up to date, bind the main source,
4303    --  then link the executable.
4304    --
4305    --  With the /ACTIONS qualifier, GNAT MAKE may be restricted to one or
4306    --  two of these three steps:
4307    --
4308    --  o Compile
4309    --  o Bind
4310    --  o Link
4311    --
4312    --
4313    --   You may specify one or more of the following keywords to the /ACTIONS
4314    --   qualifier:
4315    --
4316    --   BIND            Bind only. Can be combined with /ACTIONS=COMPILE
4317    --                   to do compilation and binding, but no linking.
4318    --                   Can be combined with /ACTIONS=LINK to do binding and
4319    --                   linking. When not combined with /ACTIONS=COMPILE,
4320    --                   all the units in the closure of the main program must
4321    --                   have been previously compiled and must be up to date.
4322    --
4323    --   COMPILE         Compile only. Do not perform binding, except when
4324    --                   /ACTIONS=BIND is also specified. Do not perform
4325    --                   linking, except if both /ACTIONS=BIND and /ACTIONS=LINK
4326    --                   are also specified.
4327    --
4328    --   LINK            Link only. Can be combined with /ACTIONS=BIND to do
4329    --                   binding and linking. Linking will not be performed
4330    --                   if combined with /ACTIONS=COMPILE but not with
4331    --                   /ACTIONS=BIND\. When not combined with /ACTIONS=BIND
4332    --                   all the units in the closure of the main program must
4333    --                   have been previously compiled and must be up to date,
4334    --                   and the main program need to have been bound.
4335
4336    S_Make_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
4337                                             "-aP*";
4338    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4339    --
4340    --   Add directories to the project search path.
4341
4342    S_Make_All     : aliased constant S := "/ALL_FILES "                    &
4343                                             "-a";
4344    --        /NOALL_FILES (D)
4345    --        /ALL_FILES
4346    --
4347    --   Consider all files in the make process, even the GNAT internal system
4348    --   files (for example, the predefined Ada library files). By default,
4349    --   GNAT MAKE does not check these files (however, if there is an
4350    --   installation problem, it will be caught when GNAT MAKE binds your
4351    --   program). You may have to specify this qualifier if you are working on
4352    --   GNAT itself.  The vast majority of GNAT MAKE users never need to
4353    --   specify this switch.  All GNAT internal files with will be compiled
4354    --   with /STYLE_CHECK=GNAT.
4355
4356    S_Make_Allproj : aliased constant S := "/ALL_PROJECTS "                 &
4357                                             "-U";
4358    --        /NOALL_PROJECTS (D)
4359    --        /ALL_PROJECTS
4360    --
4361    --   Implies /Unique.
4362    --   When used without project files, it is equivalent to /UNIQUE.
4363    --   When used with a project file with no main (neither on the command
4364    --   line nor in the attribute Main) check every source of every project,
4365    --   recompile all sources that are not up to date and rebuild libraries
4366    --   if necessary.
4367
4368    S_Make_Bind    : aliased constant S := "/BINDER_QUALIFIERS=?"           &
4369                                             "-bargs BIND";
4370    --        /BINDER_QUALIFIERS
4371    --
4372    --   Any qualifiers specified after this qualifier other than
4373    --   /COMPILER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
4374    --   passed to any GNAT BIND commands generated by GNAT MAKE.
4375
4376    S_Make_Bindprj : aliased constant S := "/BND_LNK_FULL_PROJECT "         &
4377                                             "-B";
4378    --        /BND_LNK_FULL_PROJECT
4379    --
4380    --   Bind and link all sources of a project, without any consideration
4381    --   to attribute Main, if there is one. This qualifier need to be
4382    --   used in conjunction with the /PROJECT_FILE= qualifier and cannot
4383    --   be used with a main subprogram on the command line or for
4384    --   a library project file. As the binder is invoked with the option
4385    --   meaning "No Ada main subprogram", the user must ensure that the
4386    --   proper options are specified to the linker. This qualifier is
4387    --   normally used when the main subprogram is in a foreign language
4388    --   such as C.
4389
4390    S_Make_Comp    : aliased constant S := "/COMPILER_QUALIFIERS=?"         &
4391                                             "-cargs COMPILE";
4392    --        /COMPILER_QUALIFIERS
4393    --
4394    --   Any qualifiers specified after this qualifier other than
4395    --   /BINDER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
4396    --   passed to any GNAT COMPILE commands generated by GNAT MAKE.
4397
4398    S_Make_Cond    : aliased constant S := "/CONDITIONAL_SOURCE_SEARCH=*"   &
4399                                             "-A*";
4400    --        /CONDITIONAL_SOURCE_SEARCH=dir
4401    --
4402    --   Equivalent to "/SOURCE_SEARCH=dir /SKIP_MISSING=dir".
4403
4404    S_Make_Cont    : aliased constant S := "/CONTINUE_ON_ERROR "            &
4405                                             "-k";
4406    --        /NOCONTINUE_ON_ERROR (D)
4407    --        /CONTINUE_ON_ERROR
4408    --
4409    --   Keep going. Continue as much as possible after a compilation error.
4410    --   To ease the programmer's task in case of compilation errors, the list
4411    --   of sources for which the compile fails is given when GNAT MAKE
4412    --   terminates.
4413
4414    S_Make_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
4415                                             "!-I-";
4416    --        /CURRENT_DIRECTORY (D)
4417    --        /NOCURRENT_DIRECTORY
4418    --
4419    --   Look for source, library or object files in the default directory.
4420
4421    S_Make_Dep     : aliased constant S := "/DEPENDENCIES_LIST "            &
4422                                             "-M";
4423    --        /NODEPENDENCIES_LIST (D)
4424    --        /DEPENDENCIES_LIST
4425    --
4426    --   Check if all objects are up to date. If they are, output the object
4427    --   dependences to SYS$OUTPUT in a form that can be directly exploited in
4428    --   a Unix-style Makefile. By default, each source file is prefixed with
4429    --   its (relative or absolute) directory name. This name is whatever you
4430    --   specified in the various /SOURCE_SEARCH and /SEARCH qualifiers.  If
4431    --   you also specify the /QUIET qualifier, only the source file names,
4432    --   without relative paths, are output. If you just specify the
4433    --   /DEPENDENCY_LIST qualifier, dependencies of the GNAT internal system
4434    --   files are omitted.  This is typically what you want. If you also
4435    --   specify the /ALL_FILES qualifier, dependencies of the GNAT internal
4436    --   files are also listed. Note that dependencies of the objects in
4437    --   external Ada libraries (see the /SKIP_MISSING qualifier) are never
4438    --   reported.
4439
4440    S_Make_Dirobj  : aliased constant S := "/DIRECTORY_OBJECTS=@"           &
4441                                             "-D@";
4442    --        /DIRECTORY_OBJECTS=<file>
4443    --
4444    --   Put all object files and .ALI files in <file>.
4445    --   This qualifier is not compatible with /PROJECT_FILE.
4446
4447    S_Make_Disprog : aliased constant S := "/DISPLAY_PROGRESS "             &
4448                                             "-d";
4449    --        /NOPLAY_PROGRESS (D)
4450    --        /DISPLAY_PROGRESS
4451    --
4452    --   Display progress for each source, up to date or not, as a single line
4453    --      completed x out of y (zz%)
4454    --   If the file needs to be compiled this is displayed after the
4455    --   invocation of the compiler. These lines are displayed even in quiet
4456    --   output mode (/QUIET).
4457
4458    S_Make_Doobj   : aliased constant S := "/DO_OBJECT_CHECK "              &
4459                                             "-n";
4460    --        /NODO_OBJECT_CHECK (D)
4461    --        /DO_OBJECT_CHECK
4462    --
4463    --   Don't compile, bind, or link. Output a single command that will
4464    --   recompile an out of date unit, if any. Repeated use of this option,
4465    --   followed by carrying out the indicated compilation, will eventually
4466    --   result in recompiling all required units.
4467    --
4468    --   If any ALI is missing during the process, GNAT MAKE halts and
4469    --   displays an error message.
4470
4471    S_Make_Execut  : aliased constant S := "/EXECUTABLE=@"                  &
4472                                             "-o@";
4473    --        /EXECUTABLE=exec-name
4474    --
4475    --   The name of the final executable program will be 'exec_name'. If this
4476    --   qualifier is omitted the default name for the executable will be the
4477    --   name of the input file with an EXE filetype.  You may prefix
4478    --   'exec_name' with a relative or absolute directory path.
4479
4480    S_Make_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
4481                                             "-X" & '"';
4482    --        /EXTERNAL_REFERENCE="name=val"
4483    --
4484    --   Specifies an external reference to the project manager. Useful only if
4485    --   /PROJECT_FILE is used.
4486    --
4487    --   Example:
4488    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4489
4490    S_Make_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
4491                                             "-eL";
4492    --        /NOFOLLOW_LINKS_FOR_FILES (D)
4493    --        /FOLLOW_LINKS_FOR_FILES
4494    --
4495    --    Follow links when parsing project files
4496
4497    S_Make_Force   : aliased constant S := "/FORCE_COMPILE "                &
4498                                             "-f";
4499    --        /NOFORCE_COMPILE (D)
4500    --        /FORCE_COMPILE
4501    --
4502    --   Force recompilations. Recompile all sources, even though some object
4503    --   files may be up to date, but don't recompile predefined or GNAT
4504    --   internal files unless the /ALL_FILES qualifier is also specified.
4505
4506    S_Make_Full    : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES "  &
4507                                             "-F";
4508    --        /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
4509    --        /FULL_PATH_IN_BRIEF_MESSAGES
4510    --
4511    --   When using project files, if some errors or warnings are detected
4512    --   during parsing and verbose mode is not in effect (no use of qualifier
4513    --   /VERBOSE), then error lines start with the full path name of the
4514    --   project file, rather than its simple file name.
4515
4516    S_Make_Hi_Verb : aliased constant S := "/HIGH_VERBOSITY "               &
4517                                           "-vh";
4518    --        /NOHIGH_VERBOSITY (D)
4519    --        /HIGH_VERBOSITY
4520    --
4521    --   Displays the reason for all recompilations GNAT MAKE decides are
4522    --   necessary, in high verbosity. Equivalent to /VERBOSE.
4523
4524    S_Make_Inplace : aliased constant S := "/IN_PLACE "                     &
4525                                             "-i";
4526    --        /NOIN_PLACE (D)
4527    --        /IN_PLACE
4528    --
4529    --   In normal mode, GNAT MAKE compiles all object files and ALI files
4530    --   into the current directory. If the /IN_PLACE switch is used,
4531    --   then instead object files and ALI files that already exist are over-
4532    --   written in place. This means that once a large project is organized
4533    --   into separate directories in the desired manner, then GNAT MAKE will
4534    --   automatically maintain and update this organization. If no ALI files
4535    --   are found on the Ada object path, the new object and ALI files are
4536    --   created in the directory containing the source being compiled.
4537
4538    S_Make_Index   : aliased constant S := "/SOURCE_INDEX=#"                &
4539                                              "-eI#";
4540    --        /SOURCE_INDEX=nnn
4541    --
4542    --   Specifies the index of the units in the source file
4543    --   By default, source files are mono-unit and there is no index
4544    --   When /SOURCE_INDEX=nnn is specified, only one main may be specified
4545    --   on the command line.
4546
4547    S_Make_Library : aliased constant S := "/LIBRARY_SEARCH=*"              &
4548                                             "-L*";
4549    --        /LIBRARY_SEARCH=(directory[,...])
4550    --
4551    --   Add the specified directories to the list of directories in which the
4552    --   linker will search for libraries.
4553
4554    S_Make_Link    : aliased constant S := "/LINKER_QUALIFIERS=?"           &
4555                                             "-largs LINK";
4556    --        /LINKER_QUALIFIERS
4557    --
4558    --   Any qualifiers specified after this qualifier other than
4559    --   /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /MAKE_QUALIFIERS will be
4560    --   passed to any GNAT LINK commands generated by GNAT LINK.
4561
4562    S_Make_Low_Verb : aliased constant S := "/LOW_VERBOSITY "               &
4563                                            "-vl";
4564    --        /NOLOW_VERBOSITY (D)
4565    --        /LOW_VERBOSITY
4566    --
4567    --   Displays the reason for all recompilations GNAT MAKE decides are
4568    --   necessary, in low verbosity, that is with less output than
4569    --   /MEDIUM_VERBOSITY, /HIGH_VERBOSITY or /VERBOSE.
4570
4571    S_Make_Make    : aliased constant S := "/MAKE_QUALIFIERS=?"             &
4572                                             "-margs MAKE";
4573    --        /MAKE_QUALIFIERS
4574    --
4575    --   Any qualifiers specified after this qualifier other than
4576    --   /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /LINKER_QUALIFIERS
4577    --   are for the benefit of GNAT MAKE itself.
4578
4579    S_Make_Mapping : aliased constant S := "/MAPPING "                      &
4580                                             "-C";
4581    --        /NOMAPPING (D)
4582    --        /MAPPING
4583    --
4584    --   Use a mapping file.  A mapping file is a way to communicate to the
4585    --   compiler two mappings: from unit names to file names (without any
4586    --   directory information) and from file names to path names (with full
4587    --   directory information). These mappings are used by the compiler to
4588    --   short-circuit the path search. When GNAT MAKE is invoked with this
4589    --   qualifier, it will create a mapping file, initially populated by the
4590    --   project manager, if /PROJECT_File= is used, otherwise initially empty.
4591    --   Each invocation of the compiler will add the newly accessed sources to
4592    --   the mapping file. This will improve the source search during the next
4593    --   invocations of the compiler
4594
4595    S_Make_Med_Verb : aliased constant S := "/MEDIUM_VERBOSITY "            &
4596                                            "-vm";
4597    --        /NOMEDIUM_VERBOSITY (D)
4598    --        /MEDIUM_VERBOSITY
4599    --
4600    --   Displays the reason for all recompilations GNAT MAKE decides are
4601    --   necessary, in medium verbosity, that is with potentially less output
4602    --   than /HIGH_VERBOSITY or /VERBOSE.
4603
4604    S_Make_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
4605                                             "DEFAULT "                     &
4606                                                "-vP0 "                     &
4607                                             "MEDIUM "                      &
4608                                                "-vP1 "                     &
4609                                             "HIGH "                        &
4610                                                "-vP2";
4611    --        /MESSAGES_PROJECT_FILE[=messages-option]
4612    --
4613    --   Specifies the "verbosity" of the parsing of project files.
4614    --   messages-option may be one of the following:
4615    --
4616    --      DEFAULT (D)  No messages are output if there is no error or warning.
4617    --
4618    --      MEDIUM       A small number of messages are output.
4619    --
4620    --      HIGH         A great number of messages are output, most of them not
4621    --                   being useful for the user.
4622
4623    S_Make_Minimal : aliased constant S := "/MINIMAL_RECOMPILATION "        &
4624                                             "-m";
4625    --        /NOMINIMAL_RECOMPILATION (D)
4626    --        /MINIMAL_RECOMPILATION
4627    --
4628    --   Specifies that the minimum necessary amount of recompilation
4629    --   be performed. In this mode GNAT MAKE ignores time stamp differences
4630    --   when the only modifications to a source file consist in
4631    --   adding/removing comments, empty lines, spaces or tabs.
4632
4633    S_Make_Missing : aliased constant S := "/CREATE_MISSING_DIRS "          &
4634                                             "-p";
4635    --        /NOCREATE_MISSING_DIRS (D)
4636    --        /CREATE_MISSING_DIRS
4637    --
4638    --   When an object directory, a library directory or an exec directory
4639    --   in missing, attempt to create the directory.
4640
4641    S_Make_Nolink  : aliased constant S := "/NOLINK "                       &
4642                                             "-c";
4643    --        /NOLINK
4644    --
4645    --   Compile only. Do not perform binding and linking. If the root unit is
4646    --   not a main unit, this is the default.  Otherwise GNAT MAKE will
4647    --   attempt binding and linking unless all objects are up to date and the
4648    --   executable is more recent than the objects.
4649    --   This is equivalent to /ACTIONS=COMPILE
4650
4651    S_Make_Nomain  : aliased constant S := "/NOMAIN "                       &
4652                                             "-z";
4653    --        /NOMAIN
4654    --
4655    --   No main subprogram. Bind and link the program even if the unit name
4656    --   given on the command line is a package name. The resulting executable
4657    --   will execute the elaboration routines of the package and its closure,
4658    --   then the finalization routines.
4659
4660    S_Make_Nonpro  : aliased constant S := "/NON_PROJECT_UNIT_COMPILATION " &
4661                                             "-x";
4662    --        /NON_PROJECT_UNIT_COMPILATION
4663    --
4664    --    Normally, when using project files, a unit that is not part of any
4665    --    project file, cannot be compile. These units may be compile, when
4666    --    needed, if this qualifier is specified.
4667
4668    S_Make_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
4669                                             "-nostdinc";
4670    --        /NOSTD_INCLUDES
4671    --
4672    --    Do not look for sources the in the system default directory.
4673
4674    S_Make_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
4675                                             "-nostdlib";
4676    --        /NOSTD_LIBRARIES
4677    --
4678    --    Do not look for library files in the system default directory.
4679
4680    S_Make_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
4681                                             "-aO*";
4682    --        /OBJECT_SEARCH=(directory[,...])
4683    --
4684    --   When looking for library and object files look also in the specified
4685    --   directories.
4686
4687    S_Make_Proc    : aliased constant S := "/PROCESSES=#"                   &
4688                                             "-j#";
4689    --        /NOPROCESSES (D)
4690    --        /PROCESSES=NNN
4691    --
4692    --   Use NNN processes to carry out the (re)compilations. If you have a
4693    --   multiprocessor machine, compilations will occur in parallel.  In the
4694    --   event of compilation errors, messages from various compilations might
4695    --   get interspersed (but GNAT MAKE will give you the full ordered list of
4696    --   failing compiles at the end). This can at times be annoying.  To get a
4697    --   clean list of error messages don't use this qualifier.
4698
4699    S_Make_Nojobs  : aliased constant S := "/NOPROCESSES "                  &
4700                                             "-j1";
4701    --  NODOC (see /PROCESS)
4702
4703    S_Make_Project : aliased constant S := "/PROJECT_FILE=<"                &
4704                                             "-P>";
4705    --        /PROJECT_FILE=filename
4706    --
4707    --   Specifies the main project file to be used. The project files rooted
4708    --   at the main project file will be parsed before any other processing to
4709    --   set the building environment.
4710
4711    S_Make_Quiet   : aliased constant S := "/QUIET "                        &
4712                                             "-q";
4713    --        /NOQUIET (D)
4714    --        /QUIET
4715    --
4716    --   When this qualifiers is specified, the commands carried out by GNAT
4717    --   MAKE are not displayed.
4718
4719    S_Make_Reason  : aliased constant S := "/REASONS "                      &
4720                                             "-v";
4721    --        /NOREASONS (D)
4722    --        /REASONS
4723    --
4724    --   Displays the reason for all recompilations GNAT MAKE decides are
4725    --   necessary.
4726
4727    S_Make_RTS     : aliased constant S := "/RUNTIME_SYSTEM=|"              &
4728                                             "--RTS=|";
4729    --        /RUNTIME_SYSTEM=xxx
4730    --
4731    --    Build against an alternate runtime system named xxx or RTS-xxx.
4732
4733    S_Make_Search  : aliased constant S := "/SEARCH=*"                      &
4734                                             "-I*";
4735    --        /SEARCH=(directory[,...])
4736    --
4737    --   Search the specified directories for both source and object files.
4738
4739    S_Make_Skip    : aliased constant S := "/SKIP_MISSING=*"                &
4740                                             "-aL*";
4741    --        /SKIP_MISSING=(directory[,...])
4742    --
4743    --   Skip missing library sources if ALI in 'directory'.
4744
4745    S_Make_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
4746                                             "-aI*";
4747    --        /SOURCE_SEARCH=(directory[,...])
4748    --
4749    --   When looking for source files also look in the specified directories.
4750
4751    S_Make_Stand   : aliased constant S := "/STANDARD_OUTPUT_FOR_COMMANDS " &
4752                                             "-eS";
4753    --        /NOSTANDARD_OUTPUT_FOR_COMMANDS (D)
4754    --        /STANDARD_OUTPUT_FOR_COMMANDS
4755    --
4756    --   Output the commands for the compiler, the binder and the linker
4757    --   on SYS$OUTPUT, instead of SYS$ERROR.
4758
4759    S_Make_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
4760                                              "--subdirs=>";
4761    --        /SUBDIRS=dir
4762    --
4763    --   The actual directories (object, exec, library, ...) are subdirectories
4764    --   of the directory specified in the project file. If the subdirectory
4765    --   does not exist, it is created automatically.
4766
4767    S_Make_Switch  : aliased constant S := "/SWITCH_CHECK "                 &
4768                                             "-s";
4769    --        /NOSWITCH_CHECK (D)
4770    --        /SWITCH_CHECK
4771    --
4772    --   Recompile if compiler switches have changed since last compilation.
4773    --   All compiler switches but -I and -o are taken into account in the
4774    --   following way: orders between different "first letter" switches are
4775    --   ignored, but orders between same switches are taken into account.
4776    --   For example, -O -O2 is different than -O2 -O, but -g -O is equivalent
4777    --   to -O -g.
4778
4779    S_Make_Unique  : aliased constant S := "/UNIQUE "                       &
4780                                             "-u";
4781    --        /NOUNIQUE (D)
4782    --        /UNIQUE
4783    --
4784    --  Recompile at most the main file. It implies /ACTIONS=COMPILE.
4785    --  Combined with /FORCE_COMPILE, it is equivalent to calling the compiler
4786    --  directly.
4787
4788    S_Make_Use_Map : aliased constant S := "/USE_MAPPING_File=@"            &
4789                                             "-C=@";
4790    --        /USE_MAPPING_FILE=file_name
4791    --
4792    --   Use a specific mapping file. The file 'file_name', specified as a path
4793    --   name (absolute or relative) by this qualifier, should already exist,
4794    --   otherwise the qualifier is ineffective. The specified mapping file
4795    --   will be communicated to the compiler. This switch is not compatible
4796    --   with a project file (/PROJECT_FILE=) or with multiple compiling
4797    --   processes (/PROCESSES=nnn, when nnn is greater than 1).
4798
4799    S_Make_Verbose : aliased constant S := "/VERBOSE "                      &
4800                                             "-v";
4801    --        /NOVERBOSE (D)
4802    --        /VERBOSE
4803    --
4804    --   Displays the reason for all recompilations GNAT MAKE decides are
4805    --   necessary.
4806
4807    Make_Switches : aliased constant Switches :=
4808                      (S_Make_Add     'Access,
4809                       S_Make_Actions 'Access,
4810                       S_Make_All     'Access,
4811                       S_Make_Allproj 'Access,
4812                       S_Make_Bind    'Access,
4813                       S_Make_Comp    'Access,
4814                       S_Make_Cond    'Access,
4815                       S_Make_Cont    'Access,
4816                       S_Make_Current 'Access,
4817                       S_Make_Dep     'Access,
4818                       S_Make_Dirobj  'Access,
4819                       S_Make_Disprog 'Access,
4820                       S_Make_Doobj   'Access,
4821                       S_Make_Execut  'Access,
4822                       S_Make_Ext     'Access,
4823                       S_Make_Follow  'Access,
4824                       S_Make_Force   'Access,
4825                       S_Make_Full    'Access,
4826                       S_Make_Hi_Verb 'Access,
4827                       S_Make_Inplace 'Access,
4828                       S_Make_Index   'Access,
4829                       S_Make_Library 'Access,
4830                       S_Make_Link    'Access,
4831                       S_Make_Low_Verb'Access,
4832                       S_Make_Make    'Access,
4833                       S_Make_Mapping 'Access,
4834                       S_Make_Med_Verb'Access,
4835                       S_Make_Mess    'Access,
4836                       S_Make_Minimal 'Access,
4837                       S_Make_Missing 'Access,
4838                       S_Make_Nolink  'Access,
4839                       S_Make_Nomain  'Access,
4840                       S_Make_Nonpro  'Access,
4841                       S_Make_Nostinc 'Access,
4842                       S_Make_Nostlib 'Access,
4843                       S_Make_Object  'Access,
4844                       S_Make_Proc    'Access,
4845                       S_Make_Nojobs  'Access,
4846                       S_Make_Project 'Access,
4847                       S_Make_Quiet   'Access,
4848                       S_Make_Reason  'Access,
4849                       S_Make_RTS     'Access,
4850                       S_Make_Search  'Access,
4851                       S_Make_Skip    'Access,
4852                       S_Make_Source  'Access,
4853                       S_Make_Stand   'Access,
4854                       S_Make_Subdirs 'Access,
4855                       S_Make_Switch  'Access,
4856                       S_Make_Unique  'Access,
4857                       S_Make_Use_Map 'Access,
4858                       S_Make_Verbose 'Access);
4859
4860    ------------------------------
4861    -- Switches for GNAT METRIC --
4862    ------------------------------
4863
4864    S_Metric_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"    &
4865                                               "-aP*";
4866    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4867    --
4868    --   Add directories to the project search path.
4869
4870    S_Metric_All_Prjs : aliased constant S := "/ALL_PROJECTS "              &
4871                                                "-U";
4872    --        /NOALL_PROJECTS (D)
4873    --        /ALL_PROJECTS
4874    --   When GNAT METRIC is used with a Project File and no source is
4875    --   specified, the underlying tool gnatmetric is called for all the
4876    --   sources of all the Project Files in the project tree.
4877
4878    S_Metric_Debug    : aliased constant S := "/DEBUG_OUTPUT "              &
4879                                              "-dv";
4880    --      /DEBUG_OUTPUT
4881    --
4882    --   Generate the debug information
4883
4884    S_Metric_Direct   : aliased constant S := "/DIRECTORY=@"                &
4885                                              "-d=@";
4886    --      /DIRECTORY=pathname
4887    --
4888    --   Put the files with detailed metric information into the specified
4889    --   directory
4890
4891    S_Metric_Element : aliased constant S := "/ELEMENT_METRICS="            &
4892                                              "ALL "                        &
4893                                               "!-ed,!-es,!-enl,!-eps,"     &
4894                                               "!-eas,!-ept,!-eat,!-enu,"   &
4895                                               "!-ec "                      &
4896                                              "DECLARATION_TOTAL "          &
4897                                               "-ed "                       &
4898                                              "STATEMENT_TOTAL "            &
4899                                               "-es "                       &
4900                                              "LOOP_NESTING_MAX "           &
4901                                               "-enl "                      &
4902                                              "INT_SUBPROGRAMS "            &
4903                                               "-eps "                      &
4904                                              "SUBPROGRAMS_ALL "            &
4905                                               "-eas "                      &
4906                                              "INT_TYPES "                  &
4907                                               "-ept "                      &
4908                                              "TYPES_ALL "                  &
4909                                               "-eat "                      &
4910                                              "PROGRAM_NESTING_MAX "        &
4911                                               "-enu "                      &
4912                                              "CONSTRUCT_NESTING_MAX "      &
4913                                               "-ec";
4914    --  NODOC  (see /SYNTAX_METRICS)
4915
4916    S_Metric_Syntax : aliased constant S := "/SYNTAX_METRICS="              &
4917                                              "ALL "                        &
4918                                              "--syntax-all "               &
4919                                              "NONE "                       &
4920                                              "--no-syntax-all "            &
4921                                              "DECLARATIONS "               &
4922                                              "--declarations "             &
4923                                              "NODECLARATIONS "             &
4924                                              "--no-declarations "          &
4925                                              "STATEMENTS "                 &
4926                                              "--statements "               &
4927                                              "NOSTATEMENTS "               &
4928                                              "--no-statements "            &
4929                                              "PUBLIC_SUBPROGRAMS "         &
4930                                              "--public-subprograms "       &
4931                                              "NOPUBLIC_SUBPROGRAMS "       &
4932                                              "--no-public-subprograms "    &
4933                                              "ALL_SUBPROGRAMS "            &
4934                                              "--all-subprograms "          &
4935                                              "NOALL_SUBPROGRAMS "          &
4936                                              "--no-all-subprograms "       &
4937                                              "PUBLIC_TYPES "               &
4938                                              "--public-types "             &
4939                                              "NOPUBLIC_TYPES "             &
4940                                              "--no-public-types "          &
4941                                              "ALL_TYPES "                  &
4942                                              "--all-types "                &
4943                                              "NOALL_TYPES "                &
4944                                              "--no-all-types "             &
4945                                              "UNIT_NESTING "               &
4946                                              "--unit-nesting "             &
4947                                              "NOUNIT_NESTING "             &
4948                                              "--no-unit-nesting "          &
4949                                              "CONSTRUCT_NESTING "          &
4950                                              "--construct-nesting "        &
4951                                              "NOCONSTRUCT_NESTING "        &
4952                                              "--no-construct-nesting";
4953    --       /SYNTAX_METRICS(option, option ...)
4954    --
4955    --   Specifies the syntax element metrics to be computed (if at least one
4956    --   positive syntax element metric, line metric, complexity or coupling
4957    --   metric is specified then only explicitly specified syntax element
4958    --   metrics are computed and reported)
4959    --
4960    --   option may be one of the following:
4961    --
4962    --     ALL (D)               All the syntax element metrics are computed
4963    --     NONE                  None of syntax element metrics is computed
4964    --     DECLARATIONS          Compute the total number of declarations
4965    --     NODECLARATIONS        Do not compute the total number of declarations
4966    --     STATEMENTS            Compute the total number of statements
4967    --     NOSTATEMENTS          Do not compute the total number of statements
4968    --     PUBLIC_SUBPROGRAMS    Compute the number of public subprograms
4969    --     NOPUBLIC_SUBPROGRAMS  Do not compute the number of public subprograms
4970    --     ALL_SUBPROGRAMS       Compute the number of all the subprograms
4971    --     NOALL_SUBPROGRAMS     Do not compute the number of all the
4972    --                           subprograms
4973    --     PUBLIC_TYPES          Compute the number of public types
4974    --     NOPUBLIC_TYPES        Do not compute the number of public types
4975    --     ALL_TYPES             Compute the number of all the types
4976    --     NOALL_TYPES           Do not compute the number of all the types
4977    --     UNIT_NESTING          Compute the maximal program unit nesting
4978    --                           level
4979    --     NOUNIT_NESTING        Do not compute the maximal program unit
4980    --                           nesting level
4981    --     CONSTRUCT_NESTING     Compute the maximal construct nesting level
4982    --     NOCONSTRUCT_NESTING   Do not compute the maximal construct nesting
4983    --                           level
4984    --
4985    --   All combinations of syntax element metrics options are allowed.
4986
4987    S_Metric_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'   &
4988                                              "-X" & '"';
4989    --       /EXTERNAL_REFERENCE="name=val"
4990    --
4991    --   Specifies an external reference to the project manager. Useful only if
4992    --   /PROJECT_FILE is used.
4993    --
4994    --   Example:
4995    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
4996
4997    S_Metric_Files   : aliased constant S := "/FILES=@"                     &
4998                                              "-files=@";
4999    --      /FILES=filename
5000    --
5001    --   Take as arguments the files that are listed in the specified
5002    --   text file.
5003
5004    S_Metric_Format  : aliased constant S := "/FORMAT_OUTPUT="              &
5005                                              "DEFAULT "                    &
5006                                               "!-x,!-nt,!-sfn "            &
5007                                              "XML "                        &
5008                                               "-x "                        &
5009                                              "XSD "                        &
5010                                               "-xs "                       &
5011                                              "NO_TEXT "                    &
5012                                               "-nt "                       &
5013                                              "SHORT_SOURCE_FILE_NAME "     &
5014                                               "-sfn";
5015    --       /FORMAT_OUTPUT=(option, option ...)
5016    --
5017    --   Specifies the details of the tool output
5018    --
5019    --   option may be one of the following:
5020    --
5021    --     DEFAULT (D)             Generate the text output only, use full
5022    --                             argument source names in global information
5023    --     XML                     Generate the output in XML format
5024    --     XSD                     Generate the output in XML format, and
5025    --                             generate an XML schema file that describes
5026    --                             the structure of XML metrics report
5027    --     NO_TEXT                 Do not generate the text output (implies XML)
5028    --     SHORT_SOURCE_FILE_NAME  Use short argument source names in output
5029
5030    S_Metric_Globout : aliased constant S := "/GLOBAL_OUTPUT=@"             &
5031                                              "-og@";
5032    --        /GLOBAL_OUTPUT=filename
5033    --
5034    --   Put the textual global metric information into the specified file
5035
5036    S_Metric_Line     : aliased constant S := "/LINE_METRICS="              &
5037                                                 "ALL "                     &
5038                                                  "!-la,!-lcode,!-lcomm,"   &
5039                                                  "!-leol,!-lb "            &
5040                                                 "LINES_ALL "               &
5041                                                  "-la "                    &
5042                                                 "CODE_LINES "              &
5043                                                  "-lcode "                 &
5044                                                 "COMENT_LINES "            &
5045                                                  "-lcomm "                 &
5046                                                 "MIXED_CODE_COMMENTS "     &
5047                                                  "-leol "                  &
5048                                                 "COMMENT_PERCENTAGE "      &
5049                                                  "-lratio "                &
5050                                                 "BLANK_LINES "             &
5051                                                  "-lb "                    &
5052                                                 "AVERAGE_LINES_IN_BODIES " &
5053                                                  "-lav ";
5054    --  NODOC  (see /LINE_COUNT_METRICS)
5055
5056    S_Metric_Lines : aliased constant S := "/LINE_COUNT_METRICS="           &
5057                                            "ALL "                          &
5058                                            "--lines-all "                  &
5059                                            "NONE "                         &
5060                                            "--no-lines-all "               &
5061                                            "ALL_LINES "                    &
5062                                            "--lines "                      &
5063                                            "NOALL_LINES "                  &
5064                                            "--no-lines "                   &
5065                                            "CODE_LINES "                   &
5066                                            "--lines-code "                 &
5067                                            "NOCODE_LINES "                 &
5068                                            "--no-lines-code "              &
5069                                            "COMMENT_LINES "                &
5070                                            "--lines-comment "              &
5071                                            "NOCOMMENT_LINES "              &
5072                                            "--no-lines-comment "           &
5073                                            "CODE_COMMENT_LINES "           &
5074                                            "--lines-eol-comment "          &
5075                                            "NOCODE_COMMENT_LINES "         &
5076                                            "--no-lines-eol-comment "       &
5077                                            "COMMENT_PERCENTAGE "           &
5078                                            "--lines-ratio "                &
5079                                            "NOCOMMENT_PERCENTAGE "         &
5080                                            "--no-lines-ratio "             &
5081                                            "BLANK_LINES "                  &
5082                                            "--lines-blank "                &
5083                                            "NOBLANK_LINES "                &
5084                                            "--no-lines-blank "             &
5085                                            "AVERAGE_BODY_LINES "           &
5086                                            "--lines-average "              &
5087                                            "NOAVERAGE_BODY_LINES "         &
5088                                            "--no-lines-average";
5089    --      /LINE_COUNT_METRICS=(option, option ...)
5090
5091    --   Specifies the line metrics to be computed (if at least one positive
5092    --   syntax element metric, line metric, complexity or coupling metric is
5093    --   specified then only explicitly specified line metrics are computed
5094    --   and reported)
5095    --
5096    --   option may be one of the following:
5097    --
5098    --     ALL (D)               All the line metrics are computed
5099    --     NONE                  None of line metrics is computed
5100    --     ALL_LINES             All lines are computed
5101    --     NOALL_LINES           All lines are not computed
5102    --     CODE_LINES            Lines with Ada code are computed
5103    --     NOCODE_LINES          Lines with Ada code are not computed
5104    --     COMMENT_LINES         Comment lines are computed
5105    --     NOCOMMENT_LINES       Comment lines are not computed
5106    --     CODE_COMMENT_LINES    Lines containing both code and comment parts
5107    --                           are computed
5108    --     NOCODE_COMMENT_LINES  Lines containing both code and comment parts
5109    --                           are not computed
5110    --     COMMENT_PERCENTAGE    Ratio between comment lines and all the lines
5111    --                           containing comments and program code is
5112    --                           computed
5113    --     NOCOMMENT_PERCENTAGE  Ratio between comment lines and all the lines
5114    --                           containing comments and program code is not
5115    --                           computed
5116    --     BLANK_LINES           Blank lines are computed
5117    --     NOBLANK_LINES         Blank lines are not computed
5118    --     AVERAGE_BODY_LINES    Average number of code lines in subprogram,
5119    --                           task and entry bodies and statement sequences
5120    --                           of package bodies is computed
5121    --     NOAVERAGE_BODY_LINES  Average number of code lines in subprogram,
5122    --                           task and entry bodies and statement sequences
5123    --                           of package bodies is not computed
5124    --
5125    --   All combinations of line metrics options are allowed.
5126
5127    S_Metric_Complexity : aliased constant S := "/COMPLEXITY_METRICS="      &
5128                                                "ALL "                      &
5129                                                "--complexity-all "         &
5130                                               "NONE "                      &
5131                                               "--no-complexity-all "       &
5132                                               "CYCLOMATIC "                &
5133                                               "--complexity-cyclomatic "   &
5134                                               "NOCYCLOMATIC "              &
5135                                               "--no-complexity-cyclomatic "&
5136                                               "ESSENTIAL "                 &
5137                                               "--complexity-essential "    &
5138                                               "NOESSENTIAL "               &
5139                                               "--no-complexity-essential " &
5140                                               "LOOP_NESTING "              &
5141                                               "--loop-nesting "            &
5142                                               "NOLOOP_NESTING "            &
5143                                               "--no-loop-nesting "         &
5144                                               "AVERAGE_COMPLEXITY "        &
5145                                               "--complexity-average "      &
5146                                               "NOAVERAGE_COMPLEXITY "      &
5147                                               "--no-complexity-average "   &
5148                                               "EXTRA_EXIT_POINTS "         &
5149                                               "--extra-exit-points "       &
5150                                               "NOEXTRA_EXIT_POINTS "       &
5151                                               "--no-extra-exit-points";
5152    --      /COMPLEXITY_METRICS=(option, option ...)
5153
5154    --   Specifies the complexity metrics to be computed (if at least one
5155    --   positive syntax element metric, line metric, complexity or coupling
5156    --   metric is specified then only explicitly specified complexity metrics
5157    --   are computed and reported)
5158    --
5159    --   option may be one of the following:
5160    --
5161    --     ALL (D)               All the complexity metrics are computed
5162    --     NONE                  None of complexity metrics is computed
5163    --     CYCLOMATIC            Compute the McCabe Cyclomatic Complexity
5164    --     NOCYCLOMATIC          Do not compute the McCabe Cyclomatic Complexity
5165    --     ESSENTIAL             Compute the Essential Complexity
5166    --     NOESSENTIAL           Do not compute the Essential Complexity
5167    --     LOOP_NESTING          Compute the maximal loop nesting
5168    --     NOLOOP_NESTING        Do not compute the maximal loop nesting
5169    --     AVERAGE_COMPLEXITY    Compute the average complexity for executable
5170    --                           bodies
5171    --     NOAVERAGE_COMPLEXITY  Do not compute the average complexity for
5172    --                           executable bodies
5173    --     EXTRA_EXIT_POINTS     Compute extra exit points metric
5174    --     NOEXTRA_EXIT_POINTS   Do not compute extra exit points metric
5175    --
5176    --   All combinations of line metrics options are allowed.
5177
5178    S_Metric_Coupling : aliased constant S := "/COUPLING_METRICS="             &
5179                                            "ALL "                             &
5180                                            "--coupling-all "                  &
5181                                            "NONE "                            &
5182                                            "--no-coupling-all "               &
5183                                            "PACKAGE_EFFERENT "                &
5184                                            "--package-efferent-coupling "     &
5185                                            "NOPACKAGE_EFFERENT "              &
5186                                            "--no-package-efferent-coupling "  &
5187                                            "PACKAGE_AFFERENT "                &
5188                                            "--package-afferent-coupling "     &
5189                                            "NOPACKAGE_AFFERENT "              &
5190                                            "--no-package-afferent-coupling "  &
5191                                            "CATEGORY_EFFERENT "               &
5192                                            "--category-efferent-coupling "    &
5193                                            "NOCATEGORY_EFFERENT "             &
5194                                            "--no-category-efferent-coupling " &
5195                                            "CATEGORY_AFFERENT "               &
5196                                            "--category-afferent-coupling "    &
5197                                            "NOCATEGORY_AFFERENT "             &
5198                                            "--no-category-afferent-coupling";
5199
5200    --      /COUPLING_METRICS=(option, option ...)
5201
5202    --   Specifies the coupling metrics to be computed.
5203    --
5204    --   option may be one of the following:
5205    --
5206    --     ALL                   All the coupling metrics are computed
5207    --     NONE (D)              None of coupling metrics is computed
5208    --     PACKAGE_EFFERENT      Compute package efferent coupling
5209    --     NOPACKAGE_EFFERENT    Do not compute package efferent coupling
5210    --     PACKAGE_AFFERENT      Compute package afferent coupling
5211    --     NOPACKAGE_AFFERENT    Do not compute package afferent coupling
5212    --     CATEGORY_EFFERENT     Compute category efferent coupling
5213    --     NOCATEGORY_EFFERENT   Do not compute category efferent coupling
5214    --     CATEGORY_AFFERENT     Compute category afferent coupling
5215    --     NOCATEGORY_AFFERENT   Do not compute category afferent coupling
5216    --
5217    --   All combinations of coupling metrics options are allowed.
5218
5219    S_Metric_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "      &
5220                                              "-eL";
5221    --        /NOFOLLOW_LINKS_FOR_FILES (D)
5222    --        /FOLLOW_LINKS_FOR_FILES
5223    --
5224    --    Follow links when parsing project files
5225
5226    S_Metric_No_Local : aliased constant S := "/NO_LOCAL_DETAILS "          &
5227                                              "-nolocal";
5228    --        /LOCAL_DETAILS (D)
5229    --        /NO_LOCAL_DETAILS
5230    --
5231    --   Do not compute the detailed metrics for local program units.
5232
5233    S_Metric_No_Exits_As_Gotos : aliased constant S := "/NO_EXITS_AS_GOTOS " &
5234                                                       "-ne";
5235    --        /EXITS_AS_GOTOS (D)
5236    --        /NO_EXITS_AS_GOTOS
5237    --
5238    --   Do not count EXIT statements as GOTOs when computing the Essential
5239    --   Complexity.
5240
5241    S_Metric_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="      &
5242                                              "DEFAULT "                    &
5243                                                 "-vP0 "                    &
5244                                              "MEDIUM "                     &
5245                                                 "-vP1 "                    &
5246                                              "HIGH "                       &
5247                                                 "-vP2";
5248    --        /MESSAGES_PROJECT_FILE[=messages-option]
5249    --
5250    --   Specifies the "verbosity" of the parsing of project files.
5251    --   messages-option may be one of the following:
5252    --
5253    --      DEFAULT (D)  No messages are output if there is no error or warning.
5254    --
5255    --      MEDIUM       A small number of messages are output.
5256    --
5257    --      HIGH         A great number of messages are output, most of them not
5258    --                   being useful for the user.
5259
5260    S_Metric_Project : aliased constant S := "/PROJECT_FILE=<"              &
5261                                              "-P>";
5262    --        /PROJECT_FILE=filename
5263    --
5264    --   Specifies the main project file to be used. The project files rooted
5265    --   at the main project file will be parsed before the invocation of the
5266    --   binder.
5267
5268    S_Metric_Quiet    : aliased constant S := "/QUIET "                     &
5269                                              "-q";
5270    --        /NOQUIET (D)
5271    --        /QUIET
5272    --
5273    --   Quiet mode: by default GNAT METRIC outputs to the standard error stream
5274    --   the number of program units left to be processed. This option turns
5275    --   this trace off.
5276
5277    S_Metric_Subdirs : aliased constant S := "/SUBDIRS=<"                   &
5278                                                "--subdirs=>";
5279    --        /SUBDIRS=dir
5280    --
5281    --   The actual directories (object, exec, library, ...) are subdirectories
5282    --   of the directory specified in the project file. If the subdirectory
5283    --   does not exist, it is created automatically.
5284
5285    S_Metric_Suffix  : aliased constant S := "/SUFFIX_DETAILS=" & '"'       &
5286                                              "-o" & '"';
5287    --        /SUFFIX_DETAILS=suffix
5288    --
5289    --   Use the given suffix as the suffix for the name of the file to place
5290    --   the detailed metrics into.
5291
5292    S_Metric_Suppress : aliased constant S :=  "/SUPPRESS="                 &
5293                                                "NOTHING "                  &
5294                                                 "!-nocc,!-noec,!-nonl,"    &
5295                                                 "!-ne,!-nolocal "          &
5296                                                "CYCLOMATIC_COMPLEXITY "    &
5297                                                 "-nocc "                   &
5298                                                "ESSENTIAL_COMPLEXITY "     &
5299                                                 "-noec "                   &
5300                                                "MAXIMAL_LOOP_NESTING "     &
5301                                                 "-nonl "                   &
5302                                                "EXITS_AS_GOTOS "           &
5303                                                 "-ne "                     &
5304                                                "LOCAL_DETAILS "            &
5305                                                 "-nolocal ";
5306    --  NODOC  (see /COMPLEXITY_METRICS /NO_LOCAL_DETAILS /NO_EXITS_AS_GOTOS)
5307
5308    S_Metric_Verbose  : aliased constant S := "/VERBOSE "                   &
5309                                              "-v";
5310    --        /NOVERBOSE (D)
5311    --        /VERBOSE
5312    --
5313    --   Verbose mode.
5314
5315    S_Metric_XMLout  : aliased constant S := "/XML_OUTPUT=@"                &
5316                                              "-ox@";
5317    --        /XML_OUTPUT=filename
5318    --
5319    --   Place the XML output into the specified file
5320
5321    Metric_Switches : aliased constant Switches :=
5322                        (S_Metric_Add              'Access,
5323                         S_Metric_All_Prjs         'Access,
5324                         S_Metric_Complexity       'Access,
5325                         S_Metric_Coupling         'Access,
5326                         S_Metric_Debug            'Access,
5327                         S_Metric_Direct           'Access,
5328                         S_Metric_Element          'Access,
5329                         S_Metric_Ext              'Access,
5330                         S_Metric_Files            'Access,
5331                         S_Metric_Follow           'Access,
5332                         S_Metric_Format           'Access,
5333                         S_Metric_Globout          'Access,
5334                         S_Metric_Line             'Access,
5335                         S_Metric_Lines            'Access,
5336                         S_Metric_Mess             'Access,
5337                         S_Metric_No_Exits_As_Gotos'Access,
5338                         S_Metric_No_Local         'Access,
5339                         S_Metric_Project          'Access,
5340                         S_Metric_Quiet            'Access,
5341                         S_Metric_Suffix           'Access,
5342                         S_Metric_Subdirs          'Access,
5343                         S_Metric_Syntax           'Access,
5344                         S_Metric_Suppress         'Access,
5345                         S_Metric_Verbose          'Access,
5346                         S_Metric_XMLout           'Access);
5347
5348    ----------------------------
5349    -- Switches for GNAT NAME --
5350    ----------------------------
5351
5352    S_Name_Conf    : aliased constant S := "/CONFIG_FILE=<"                 &
5353                                             "-c>";
5354    --        /CONFIG_FILE=path_name
5355    --
5356    --   Create a configuration pragmas file 'path_name' (instead of the default
5357    --   'gnat.adc'). 'path_name' may include directory information. 'path_name'
5358    --   must be writable. There may be only one qualifier /CONFIG_FILE.
5359    --   This qualifier is not compatible with qualifier /PROJECT_FILE.
5360
5361    S_Name_Dirs    : aliased constant S := "/SOURCE_DIRS=*"                 &
5362                                             "-d*";
5363    --        /SOURCE_DIRS=(directory, ...)
5364    --
5365    --   Look for source files in the specified directories. When this qualifier
5366    --   is specified, the current working directory will not be searched for
5367    --   source files, unless it is explicitly specified with a qualifier
5368    --   /SOURCE_DIRS or /DIRS_FILE. Several qualifiers /SOURCE_DIRS may be
5369    --   specified. If a directory is specified as a relative path, it is
5370    --   relative to the directory of the configuration pragmas file specified
5371    --   with qualifier /CONFIG_FILE, or to the directory of the project file
5372    --   specified with qualifier /PROJECT_FILE or, if neither qualifier
5373    --   /CONFIG_FILE nor qualifier /PROJECT_FILE are specified, it is relative
5374    --   to the current working directory. The directories specified with
5375    --   qualifiers /SOURCE_DIRS must exist and be readable.
5376
5377    S_Name_Dfile   : aliased constant S := "/DIRS_FILE=<"                   &
5378                                             "-D>";
5379    --        /DIRS_FILE=file_name
5380    --
5381    --   Look for source files in all directories listed in text file
5382    --   'file_name'. 'file_name' must be an existing, readable text file.
5383    --   Each non empty line in the specified file must be a directory.
5384    --   Specifying qualifier /DIRS_FILE is equivalent to specifying as many
5385    --   qualifiers /SOURCE_DIRS as there are non empty lines in the specified
5386    --   text file.
5387
5388    S_Name_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
5389                                             "-eL";
5390    --        /NOFOLLOW_LINKS_FOR_FILES (D)
5391    --        /FOLLOW_LINKS_FOR_FILES
5392    --
5393    --    Follow links when parsing project files
5394
5395    S_Name_Frng    : aliased constant S := "/FOREIGN_PATTERN=" & '"'        &
5396                                             "-f" & '"';
5397    --        /FOREIGN_PATTERN=<string>
5398    --
5399    --   Specify a foreign pattern.
5400    --   Using this qualifier, it is possible to add sources of languages other
5401    --   than Ada to the list of sources of a project file. It is only useful
5402    --   if a qualifier /PROJECT_FILE is used. For example,
5403    --
5404    --   GNAT NAME /PROJECT_FILE=PRJ /FOREIGN_PATTERN="*.C" "*.ADA"
5405    --
5406    --   will look for Ada units in all files with the '.ADA' extension, and
5407    --   will add to the list of file for project PRJ.GPR the C files with
5408    --   extension ".C".
5409
5410    S_Name_Help    : aliased constant S := "/HELP "                         &
5411                                             "-h";
5412    --        /NOHELP (D)
5413    --        /HELP
5414    --
5415    --   Output usage information to the standard output stream.
5416
5417    S_Name_Proj    : aliased constant S := "/PROJECT_FILE=<"                &
5418                                             "-P>";
5419    --        /PROJECT_FILE=file_name
5420    --
5421    --   Create or update a project file. 'file_name' may include directory
5422    --   information. The specified file must be writable. There may be only
5423    --   one qualifier /PROJECT_FILE. When a qualifier /PROJECT_FILE is
5424    --   specified, no qualifier /CONFIG_FILE may be specified.
5425
5426    S_Name_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
5427                                              "--subdirs=>";
5428    --        /SUBDIRS=dir
5429    --
5430    --   The actual directories (object, exec, library, ...) are subdirectories
5431    --   of the directory specified in the project file. If the subdirectory
5432    --   does not exist, it is created automatically.
5433
5434    S_Name_Verbose : aliased constant S := "/VERBOSE "                      &
5435                                             "-v";
5436    --        /NOVERBOSE (D)
5437    --        /VERBOSE
5438    --
5439    --   Verbose mode. Output detailed explanation of behavior to the standard
5440    --   output stream. This includes name of the file written, the name of the
5441    --   directories to search and, for each file in those directories whose
5442    --   name matches at least one of the Naming Patterns, an indication of
5443    --   whether the file contains a unit, and if so the name of the unit.
5444
5445    S_Name_Excl    : aliased constant S := "/EXCLUDED_PATTERN=" & '"'       &
5446                                             "-x" & '"';
5447    --      /EXCLUDED_PATTERN=<string>
5448    --
5449    --   Specify an excluded pattern.
5450    --   Using this qualifier, it is possible to exclude some files that would
5451    --   match the Naming patterns. For example,
5452    --
5453    --   GNAT NAME /EXCLUDED_PATTERN="*_NT.ADA" "*.ADA"
5454    --
5455    --   will look for Ada units in all files with the '.ADA' extension, except
5456    --   those whose names end with '_NT.ADA'.
5457
5458    Name_Switches : aliased constant Switches :=
5459                      (S_Name_Conf    'Access,
5460                       S_Name_Dirs    'Access,
5461                       S_Name_Dfile   'Access,
5462                       S_Name_Follow  'Access,
5463                       S_Name_Frng    'Access,
5464                       S_Name_Help    'Access,
5465                       S_Name_Proj    'Access,
5466                       S_Name_Subdirs 'Access,
5467                       S_Name_Verbose 'Access,
5468                       S_Name_Excl    'Access);
5469
5470    ----------------------------------
5471    -- Switches for GNAT PREPROCESS --
5472    ----------------------------------
5473
5474    S_Prep_Assoc   : aliased constant S := "/ASSOCIATE=" & '"'              &
5475                                             "-D" & '"';
5476    --        /ASSOCIATE="name=val"
5477    --
5478    --   Defines a new symbol, associated with value. If no value is given
5479    --   on the command line, then symbol is considered to be True.
5480    --   This qualifier can be used in place of a definition file.
5481
5482    S_Prep_Blank   : aliased constant S := "/BLANK_LINES "                  &
5483                                             "-b";
5484    --        /NOBLANK_LINES (D)
5485    --        /BLANK_LINES
5486    --
5487    --   Causes both preprocessor lines and the lines deleted by preprocessing
5488    --   to be replaced by blank lines in the output source file, thus
5489    --   preserving line numbers in the output file.
5490
5491    S_Prep_Com     : aliased constant S := "/COMMENTS "                     &
5492                                             "-c";
5493    --        /NOCOMMENTS (D)
5494    --        /COMMENTS
5495    --
5496    --   /COMMENTS causes both preprocessor lines and the lines deleted
5497    --   by preprocessing to be retained in the output source as comments marked
5498    --   with the special string "--! ". This option will result in line numbers
5499    --   being preserved in the output file.
5500    --
5501    --   /NOCOMMENTS causes both preprocessor lines and the lines deleted by
5502    --   preprocessing to be replaced by blank lines in the output source file,
5503    --   thus preserving line numbers in the output file.
5504
5505    S_Prep_Ref     : aliased constant S := "/REFERENCE "                    &
5506                                             "-r";
5507    --        /NOREFERENCE (D)
5508    --        /REFERENCE
5509    --
5510    --   Causes a "Source_Reference" pragma to be generated that references the
5511    --   original input file, so that error messages will use the file name of
5512    --   this original file.  Also implies /BLANK_LINES if /COMMENTS is not
5513    --   specified.
5514
5515    S_Prep_Remove  : aliased constant S := "/REMOVE "                       &
5516                                             "!-b,!-c";
5517    --        /REMOVE (D)
5518    --        /NOREMOVE
5519    --
5520    --   Preprocessor lines and deleted lines are completely removed from the
5521    --   output.
5522
5523    S_Prep_Replace : aliased constant S := "/REPLACE_IN_COMMENTS "          &
5524                                             "-C";
5525    --        /NOREPLACE_IN_COMMENTS (D)
5526    --        /REPLACE_IN_COMMENTS
5527    --
5528    --   Causes preprocessor to scan comments and perform replacements on
5529    --   any $symbol occurrences within the comment text.
5530
5531    S_Prep_Symbols : aliased constant S := "/SYMBOLS "                      &
5532                                             "-s";
5533    --        /NOSYMBOLS (D)
5534    --        /SYMBOLS
5535    --
5536    --   Causes a sorted list of symbol names and values to be listed on
5537    --   SYS$OUTPUT.
5538
5539    S_Prep_Undef   : aliased constant S := "/UNDEFINED "                    &
5540                                             "-u";
5541    --        /NOUNDEFINED (D)
5542    --        /UNDEFINED
5543
5544    Prep_Switches : aliased constant Switches :=
5545                      (S_Prep_Assoc   'Access,
5546                       S_Prep_Blank   'Access,
5547                       S_Prep_Com     'Access,
5548                       S_Prep_Ref     'Access,
5549                       S_Prep_Remove  'Access,
5550                       S_Prep_Replace 'Access,
5551                       S_Prep_Symbols 'Access,
5552                       S_Prep_Undef   'Access);
5553
5554    ------------------------------
5555    -- Switches for GNAT PRETTY --
5556    ------------------------------
5557
5558    S_Pretty_Add    : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"     &
5559                                              "-aP*";
5560    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
5561    --
5562    --   Add directories to the project search path.
5563
5564    S_Pretty_Align  : aliased constant S := "/ALIGN="                       &
5565                                            "DEFAULT "                      &
5566                                                "-A12345 "                  &
5567                                            "OFF "                          &
5568                                                "-A0 "                      &
5569                                            "COLONS "                       &
5570                                                "-A1 "                      &
5571                                            "DECLARATIONS "                 &
5572                                                "-A2 "                      &
5573                                            "STATEMENTS "                   &
5574                                                "-A3 "                      &
5575                                            "ARROWS "                       &
5576                                                "-A4 "                      &
5577                                            "COMPONENT_CLAUSES "            &
5578                                                "-A5";
5579    --        /ALIGN[=align-option, align-option, ...]
5580    --
5581    --   Set alignments. By default, all alignments (colons in declarations,
5582    --   initialisations in declarations, assignments and arrow delimiters) are
5583    --   ON.
5584    --
5585    --   align-option may be one of the following:
5586    --
5587    --      OFF (D)           Set all alignments to OFF
5588    --      COLONS            Set alignments of colons in declarations to ON
5589    --      DECLARATIONS      Set alignments of initialisations in declarations
5590    --                        to ON
5591    --      STATEMENTS        Set alignments of assignments statements to ON
5592    --      ARROWS            Set alignments of arrow delimiters to ON.
5593    --      COMPONENT_CLAUSES Set alignments of AT keywords in component
5594    --                        clauses ON
5595    --
5596    --   Specifying one of the ON options without first specifying the OFF
5597    --   option has no effect, because by default all alignments are set to ON.
5598
5599    S_Pretty_All_Prjs : aliased constant S := "/ALL_PROJECTS "              &
5600                                               "-U";
5601    --        /NOALL_PROJECTS (D)
5602    --        /ALL_PROJECTS
5603    --   When GNAT PRETTY is used with a Project File and no source is
5604    --   specified, the underlying tool gnatpp is called for all the
5605    --   sources of all the Project Files in the project tree.
5606
5607    S_Pretty_Attrib : aliased constant S := "/ATTRIBUTE_CASING="            &
5608                                            "MIXED_CASE "                   &
5609                                                "-aM "                      &
5610                                            "LOWER_CASE "                   &
5611                                                "-aL "                      &
5612                                            "UPPER_CASE "                   &
5613                                                "-aU";
5614    --        /ATTRIBUTE_CASING[=casing-option]
5615    --
5616    --   Set the case of the attributes. By default the attributes are in mixed
5617    --   case.
5618    --   casing-option may be one of the following:
5619    --
5620    --      MIXED_CASE (D)
5621    --      LOWER_CASE
5622    --      UPPER_CASE
5623
5624    S_Pretty_Comments  : aliased constant S := "/COMMENTS_LAYOUT="          &
5625                                               "UNTOUCHED "                 &
5626                                                  "-c0 "                    &
5627                                               "DEFAULT "                   &
5628                                                  "-c1 "                    &
5629                                               "STANDARD_INDENT "           &
5630                                                  "-c2 "                    &
5631                                               "GNAT_BEGINNING "            &
5632                                                  "-c3 "                    &
5633                                               "REFORMAT "                  &
5634                                                  "-c4 "                    &
5635                                               "KEEP_SPECIAL "              &
5636                                                  "-c5";
5637    --        /COMMENTS_LAYOUT[=layout-option, layout-option, ...]
5638    --
5639    --   Set the comment layout. By default, comments use the GNAT style
5640    --   comment line indentation.
5641    --
5642    --   layout-option may be one of the following:
5643    --
5644    --     UNTOUCHED           All the comments remain unchanged
5645    --     DEFAULT (D)         GNAT style comment line indentation
5646    --     STANDARD_INDENT     Standard comment line indentation
5647    --     GNAT_BEGINNING      GNAT style comment beginning
5648    --     REFORMAT            Reformat comment blocks
5649    --     KEEP_SPECIAL        Keep unchanged special form comments
5650    --
5651    --     All combinations of layout options are allowed, except for DEFAULT
5652    --     and STANDARD_INDENT which are mutually exclusive, and also if
5653    --     UNTOUCHED is specified, this must be the only option.
5654    --
5655    --     The difference between "GNAT style comment line indentation" and
5656    --     "standard comment line indentation" is the following: for standard
5657    --     comment indentation, any comment line is indented as if it were
5658    --     a declaration or statement at the same place.
5659    --     For GNAT style comment indentation, comment lines which are
5660    --     immediately followed by if or case statement alternative, record
5661    --     variant or 'begin' keyword are indented as the keyword that follows
5662    --     them.:
5663    --
5664    --     Standard indentation:
5665    --
5666    --        if A then
5667    --           null;
5668    --           -- some comment
5669    --        else
5670    --           null;
5671    --        end if;
5672    --
5673    --     GNAT style indentation:
5674    --
5675    --        if A then
5676    --           null;
5677    --        -- some comment
5678    --        else
5679    --           null;
5680    --        end if;
5681    --
5682    --     Option "GNAT style comment beginning" means that for each comment
5683    --     which is not considered as non-formattable separator (that is, the
5684    --     comment line contains only dashes, or a comment line ends with two
5685    --     dashes), there will be at least two spaces between starting "--" and
5686    --     the first non-blank character of the comment.
5687
5688    S_Pretty_Config    : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
5689                                               "-gnatec>";
5690    --        /CONFIGURATION_PRAGMAS_FILE=file
5691    --
5692    --   Specify a configuration pragmas file that need to be passed to the
5693    --   compiler.
5694
5695    S_Pretty_Constr    : aliased constant S := "/CONSTRUCT_LAYOUT="         &
5696                                                "GNAT "                     &
5697                                                   "-l1 "                   &
5698                                                "COMPACT "                  &
5699                                                   "-l2 "                   &
5700                                                "UNCOMPACT "                &
5701                                                    "-l3";
5702    --        /CONSTRUCT_LAYOUT[=construct-option]
5703    --
5704    --   Set construct layout. Default is GNAT style layout.
5705    --   construct-option may be one of the following:
5706    --
5707    --      GNAT (D)
5708    --      COMPACT
5709    --      UNCOMPACT
5710    --
5711    --   The difference between GNAT style and Compact layout on one hand
5712    --   and Uncompact layout on the other hand can be illustrated by the
5713    --   following examples:
5714    --
5715    --       GNAT style and                          Uncompact layout
5716    --       Compact layout
5717    --
5718    --       type q is record                        type q is
5719    --          a : integer;                            record
5720    --          b : integer;                               a : integer;
5721    --       end record;                                   b : integer;
5722    --                                                  end record;
5723    --
5724    --
5725    --       Block : declare                         Block :
5726    --          A : Integer := 3;                       declare
5727    --       begin                                         A : Integer := 3;
5728    --          Proc (A, A);                            begin
5729    --       end Block;                                    Proc (A, A);
5730    --                                                  end Block;
5731    --
5732    --       Clear : for J in 1 .. 10 loop           Clear :
5733    --          A (J) := 0;                             for J in 1 .. 10 loop
5734    --       end loop Clear;                               A (J) := 0;
5735    --                                                  end loop Clear;
5736    --
5737    --
5738    --   A further difference between GNAT style layout and compact layout is
5739    --   that in GNAT style layout compound statements, return statements and
5740    --   bodies are always separated by empty lines.
5741
5742    S_Pretty_Comind    : aliased constant S := "/CONTINUATION_INDENT=#"     &
5743                                                  "-cl#";
5744    --        /CONTINUATION_INDENT=nnn
5745    --
5746    --   Indentation level for continuation lines, nnn from 1 .. 9.
5747    --   The default value is one less then the (normal) indentation level,
5748    --   unless the indentation is set to 1: in that case the default value for
5749    --   continuation line indentation is also 1.
5750
5751    S_Pretty_Compact_Is : aliased constant S := "/NO_SEPARATE_IS "          &
5752                                                  "--no-separate-is";
5753    --        /NO_SEPARATE_IS
5754    --
5755    --   Do not place the IS keyword on a separate line in a subprogram body in
5756    --   case if the specification occupies more then one line.
5757
5758    S_Pretty_Sep_Label : aliased constant S := "/SEPARATE_LABEL "           &
5759                                                     "--separate-label";
5760    --        /SEPARATE_LABEL
5761    --
5762    --   Place statement label(s) and the statement itself on separate lines.
5763
5764    S_Pretty_Sep_Loop_Then : aliased constant S := "/SEPARATE_LOOP_THEN "   &
5765                                                     "--separate-loop-then";
5766    --        /SEPARATE_LOOP_THEN
5767    --
5768    --   Place the THEN keyword in IF statement and the LOOP keyword in for-
5769    --   and while-loops on a separate line.
5770
5771    S_Pretty_N_Sep_Loop_Then : aliased constant S := "/NO_SEPARATE_LOOP_THEN " &
5772                                                     "--no-separate-loop-then";
5773    --        /NO_SEPARATE_LOOP_THEN
5774    --
5775    --   Do not place the THEN keyword in IF statement and the LOOP keyword in
5776    --   for- and while-loops on a separate line.
5777
5778    S_Pretty_Use_On_New_Line : aliased constant S := "/USE_ON_NEW_LINE "    &
5779                                                       "--use-on-new-line";
5780    --        /USE_ON_NEW_LINE
5781    --
5782    --   Start any USE clause that is a part of a context clause from a
5783    --   separate line.
5784
5785    S_Pretty_Stnm_On_Nw_Line : aliased constant S := "/STMT_NAME_ON_NEW_LINE " &
5786                                                       "--separate-stmt-name";
5787    --        /STMT_NAME_ON_NEW_LINE
5788    --
5789    --   For named block and loop statements use a separate line for the
5790    --   statement name, but do not use an extra indentation level for the
5791    --   statement itself.
5792
5793    S_Pretty_Eol       : aliased constant S := "/END_OF_LINE="              &
5794                                                 "DOS "                     &
5795                                                    "--eol=dos "            &
5796                                                 "UNIX "                    &
5797                                                    "--eol=unix "           &
5798                                                 "CRLF "                    &
5799                                                    "--eol=crlf "           &
5800                                                 "LF "                      &
5801                                                    "--eol=lf";
5802    --        /END_OF_LINE=[option]
5803    --
5804    --   Specifies the form of the line terminators in the produced source.
5805    --   By default, the form of the line terminator depends on the platforms.
5806    --   On Unix and VMS, it is a Line Feed (LF) character. On Windows (DOS),
5807    --   It is a Carriage Return (CR) followed by a Line Feed.
5808    --   The Options DOS and CRLF are equivalent. The options UNIX and LF are
5809    --   also equivalent.
5810
5811    S_Pretty_Ext       : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
5812                                             "-X" & '"';
5813    --        /EXTERNAL_REFERENCE="name=val"
5814    --
5815    --   Specifies an external reference to the project manager. Useful only if
5816    --   /PROJECT_FILE is used.
5817    --
5818    --   Example:
5819    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
5820
5821    S_Pretty_Current   : aliased constant S := "/CURRENT_DIRECTORY "        &
5822                                               "!-I-";
5823    --        /CURRENT_DIRECTORY (D)
5824    --
5825    --   Look for source files in the current working directory.
5826    --
5827    --        /NOCURRENT_DIRECTORY
5828    --   Do not look for source files in the current working directory.
5829
5830    S_Pretty_Dico      : aliased constant S := "/DICTIONARY=*"              &
5831                                               "-D*";
5832    --        /DICTIONARY=(file_name, ...)
5833    --
5834    --   Use each specified file as a dictionary file that defines the casing
5835    --   for a set of specified names, thereby overriding the effect on these
5836    --   names by any explicit or implicit /NAME_CASING qualifier.
5837    --
5838    --   GNAT PRETTY implicitly uses a default dictionary file to define the
5839    --   casing for the Ada predefined names and the names declared in the GNAT
5840    --   libraries.
5841    --
5842    --   The structure of a dictionary file, and details on the conventions
5843    --   used in the default dictionary file, are defined in the GNAT User's
5844    --   Guide.
5845
5846    S_Pretty_Encoding  : aliased constant S := "/RESULT_ENCODING="          &
5847                                               "BRACKETS "                  &
5848                                                  "-Wb "                    &
5849                                               "HEX "                       &
5850                                                  "-Wh "                    &
5851                                               "UPPER "                     &
5852                                                  "-Wu "                    &
5853                                               "SHIFT_JIS "                 &
5854                                                  "-Ws "                    &
5855                                               "EUC "                       &
5856                                                  "-We "                    &
5857                                               "UTF8 "                      &
5858                                                  "-W8";
5859    --        /RESULT_ENCODING[=encoding-type]
5860    --
5861    --   Specify the wide character encoding method used when writing the
5862    --   reformatted code in the result file. 'encoding-type' is one of the
5863    --   following:
5864    --
5865    --      BRACKETS (D)      Brackets encoding.
5866    --
5867    --      HEX               Hex ESC encoding.
5868    --
5869    --      UPPER             Upper half encoding.
5870    --
5871    --      SHIFT_JIS         Shift-JIS encoding.
5872    --
5873    --      EUC               EUC Encoding.
5874    --
5875    --      UTF8              UTF-8 encoding.
5876    --
5877    --   See 'HELP GNAT COMPILE /WIDE_CHARACTER_ENCODING' for an explanation
5878    --   about the different character encoding methods.
5879
5880    S_Pretty_Files     : aliased constant S := "/FILES=@"                   &
5881                                                  "-files=@";
5882    --      /FILES=filename
5883    --
5884    --   Take as arguments the files that are listed in the specified
5885    --   text file.
5886
5887    S_Pretty_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "      &
5888                                              "-eL";
5889    --        /NOFOLLOW_LINKS_FOR_FILES (D)
5890    --        /FOLLOW_LINKS_FOR_FILES
5891    --
5892    --    Follow links when parsing project files
5893
5894    S_Pretty_Forced    : aliased constant S := "/FORCED_OUTPUT=@"           &
5895                                                  "-of@";
5896    --        /FORCED_OUTPUT=file
5897    --
5898    --   Write the output into the specified file, overriding any possibly
5899    --   existing file.
5900
5901    S_Pretty_Formfeed  : aliased constant S := "/FORM_FEED_AFTER_PRAGMA_PAGE " &
5902                                               "-ff";
5903    --        /FORM_FEED_AFTER_PRAGMA_PAGE
5904    --
5905    --   When there is a pragma Page in the source, insert a Form Feed
5906    --   character immediately after the semicolon that follows the pragma
5907    --   Page.
5908
5909    S_Pretty_Indent    : aliased constant S := "/INDENTATION_LEVEL=#"       &
5910                                                 "-i#";
5911    --        /INDENTATION_LEVEL=nnn
5912    --
5913    --   Specify the number of spaces to add for each indentation level.
5914    --   nnn must be between 1 and 9. The default is 3.
5915
5916    S_Pretty_Keyword   : aliased constant S := "/KEYWORD_CASING="           &
5917                                               "LOWER_CASE "                &
5918                                                  "-kL "                    &
5919                                               "UPPER_CASE "                &
5920                                                  "-kU";
5921    --        /KEYWORD_CASING[=keyword-option]
5922    --
5923    --   Specify the case of Ada keywords. The default is keywords in lower
5924    --   case.
5925    --
5926    --   keyword-option may be one of the following:
5927    --
5928    --      LOWER_CASE (D)
5929    --      UPPER_CASE
5930
5931    S_Pretty_Maxlen    : aliased constant S := "/LINE_LENGTH_MAX=#"         &
5932                                                  "-M#";
5933    --        /LINE_LENGTH_MAX=nnn
5934    --
5935    --   Set the maximum line length, nnn from 32 ..256. The default is 79.
5936
5937    S_Pretty_Maxind    : aliased constant S := "/MAX_INDENT=#"              &
5938                                                  "-T#";
5939    --        /MAX_INDENT=nnn
5940    --
5941    --   Do not use an additional indentation level for case alternatives
5942    --   and variants if their number is nnn or more. The default is 10.
5943    --   If nnn is zero, an additional indentation level is used for any
5944    --   number of case alternatives and variants.
5945
5946    S_Pretty_Mess      : aliased constant S := "/MESSAGES_PROJECT_FILE="    &
5947                                             "DEFAULT "                     &
5948                                                "-vP0 "                     &
5949                                             "MEDIUM "                      &
5950                                                "-vP1 "                     &
5951                                             "HIGH "                        &
5952                                                "-vP2";
5953    --        /MESSAGES_PROJECT_FILE[=messages-option]
5954    --
5955    --   Specifies the "verbosity" of the parsing of project files.
5956    --   messages-option may be one of the following:
5957    --
5958    --      DEFAULT (D)  No messages are output if there is no error or warning.
5959    --
5960    --      MEDIUM       A small number of messages are output.
5961    --
5962    --      HIGH         A great number of messages are output, most of them not
5963    --                   being useful for the user.
5964
5965    S_Pretty_Names     : aliased constant S := "/NAME_CASING="              &
5966                                               "AS_DECLARED "               &
5967                                                  "-nD "                    &
5968                                               "LOWER_CASE "                &
5969                                                  "-nL "                    &
5970                                               "UPPER_CASE "                &
5971                                                  "-nU "                    &
5972                                               "MIXED_CASE "                &
5973                                                  "-nM";
5974    --        /NAME_CASING[=name-option]
5975    --
5976    --   Specify the casing of names.
5977    --   'name-option' may be one of:
5978    --
5979    --      AS_DECLARED (D)   Name casing for defining occurrences are as they
5980    --                        appear in the source file.
5981    --
5982    --      LOWER_CASE        Names are in lower case.
5983    --
5984    --      UPPER_CASE        Names are in upper case.
5985    --
5986    --      MIXED_CASE        Names are in mixed case.
5987
5988    S_Pretty_Replace_No_Backup : aliased constant S := "/REPLACE_NO_BACKUP " &
5989                                                  "-rnb";
5990    --        /REPLACE_NO_BACKUP
5991    --
5992    --   Replace the argument source with the pretty-printed source without
5993    --   creating any backup copy of the argument source.
5994
5995    S_Pretty_No_Labels : aliased constant S := "/NO_MISSED_LABELS "         &
5996                                                  "-e";
5997    --        /NO_MISSED_LABELS
5998    --
5999    --   Do not insert missing end/exit labels. The end label is the name of
6000    --   a construct that may optionally appear at the end of the construct.
6001    --   This includes the names of packages and subprograms.
6002    --   Similarly, the exit label is the name of a loop that may appear as the
6003    --   argument of an exit statement within the loop. By default, GNAT PRETTY
6004    --   inserts these end/exit labels when they are absent in the original
6005    --   source. This qualifier /NO_MISSED_LABELS suppresses this insertion,
6006    --   so that the formatted source reflects the original.
6007
6008    S_Pretty_Notabs    : aliased constant S := "/NOTABS "                   &
6009                                                  "-notabs";
6010    --        /NOTABS
6011    --
6012    --   Replace all tabulations in comments with spaces.
6013
6014    S_Pretty_Output    : aliased constant S := "/OUTPUT=@"                  &
6015                                               "-o@";
6016    --        /OUTPUT=file
6017    --
6018    --   Write the output to the specified file. If the file already exists,
6019    --   an error is reported.
6020
6021    S_Pretty_Override  : aliased constant S := "/OVERRIDING_REPLACE "       &
6022                                                  "-rf";
6023    --        /NOOVERRIDING_REPLACE (D)
6024    --        /OVERRIDING_REPLACE
6025    --
6026    --   Replace the argument source with the pretty-printed source and copy the
6027    --   argument source into filename.NPP, overriding any existing file if
6028    --   needed.
6029
6030    S_Pretty_Pragma    : aliased constant S := "/PRAGMA_CASING="            &
6031                                               "MIXED_CASE "                &
6032                                                  "-pM "                    &
6033                                               "LOWER_CASE "                &
6034                                                  "-pL "                    &
6035                                               "UPPER_CASE "                &
6036                                                  "-pU";
6037    --        /PRAGMA_CASING[=pragma-option]
6038    --
6039    --   Set the case of pragma identifiers. The default is Mixed case.
6040    --   pragma-option may be one of the following:
6041    --
6042    --      MIXED_CASE (D)
6043    --      LOWER_CASE
6044    --      UPPER_CASE
6045
6046    S_Pretty_Project   : aliased constant S := "/PROJECT_FILE=<"            &
6047                                                 "-P>";
6048    --        /PROJECT_FILE=filename
6049    --
6050    --   Specifies the main project file to be used. The project files rooted
6051    --   at the main project file will be parsed before any other processing to
6052    --   set the building environment.
6053
6054    S_Pretty_Replace   : aliased constant S := "/REPLACE "                  &
6055                                                  "-r";
6056    --        /NOREPLACE (D)
6057    --        /REPLACE
6058    --
6059    --   Replace the argument source with the pretty-printed source and copy the
6060    --   argument source into filename.NPP. If filename.NPP already exists,
6061    --   report an error and exit.
6062
6063    S_Pretty_RTS       : aliased constant S := "/RUNTIME_SYSTEM=|"          &
6064                                                "--RTS=|";
6065    --        /RUNTIME_SYSTEM=xxx
6066    --
6067    --    Compile against an alternate runtime system named xxx or RTS-xxx.
6068
6069    S_Pretty_Search    : aliased constant S := "/SEARCH=*"                  &
6070                                               "-I*";
6071    --        /SEARCH=(directory[,...])
6072    --
6073    --    When looking for source files also look in directories specified.
6074
6075    S_Pretty_Specific  : aliased constant S := "/SPECIFIC_CASING "          &
6076                                               "-D-";
6077    --        /SPECIFIC_CASING
6078    --
6079    --   Do not use the default dictionary file; instead, use the casing
6080    --   defined by a qualifier /NAME_CASING and/or any explicit dictionary
6081    --   file specified by a qualifier /DICTIONARY.
6082
6083    S_Pretty_Standard  : aliased constant S := "/STANDARD_OUTPUT "          &
6084                                               "-pipe";
6085    --        /NOSTANDARD_OUTPUT (D)
6086    --        /STANDARD_OUTPUT
6087    --
6088    --   Redirect the output to the standard output.
6089
6090    S_Pretty_Subdirs : aliased constant S := "/SUBDIRS=<"                   &
6091                                                "--subdirs=>";
6092    --        /SUBDIRS=dir
6093    --
6094    --   The actual directories (object, exec, library, ...) are subdirectories
6095    --   of the directory specified in the project file. If the subdirectory
6096    --   does not exist, it is created automatically.
6097
6098    S_Pretty_Verbose   : aliased constant S := "/VERBOSE "                  &
6099                                               "-v";
6100    --        /NOVERBOSE (D)
6101    --        /VERBOSE
6102    --
6103    --   Verbose mode; GNAT PRETTY generates version information and then a
6104    --   trace of the actions it takes to produce or obtain the ASIS tree.
6105
6106    S_Pretty_Warnings  : aliased constant S := "/WARNINGS "                 &
6107                                               "-w";
6108    --        /NOWARNINGS (D)
6109    --        /WARNINGS
6110    --
6111    --   Issue a warning to the standard error stream if it is not possible
6112    --   to provide the required layout in the result source.
6113    --   By default such warnings are not activated.
6114
6115    Pretty_Switches : aliased constant Switches :=
6116                        (S_Pretty_Add              'Access,
6117                         S_Pretty_Align            'Access,
6118                         S_Pretty_All_Prjs         'Access,
6119                         S_Pretty_Attrib           'Access,
6120                         S_Pretty_Comments         'Access,
6121                         S_Pretty_Compact_Is       'Access,
6122                         S_Pretty_Config           'Access,
6123                         S_Pretty_Constr           'Access,
6124                         S_Pretty_Comind           'Access,
6125                         S_Pretty_Current          'Access,
6126                         S_Pretty_Dico             'Access,
6127                         S_Pretty_Eol              'Access,
6128                         S_Pretty_Ext              'Access,
6129                         S_Pretty_Encoding         'Access,
6130                         S_Pretty_Files            'Access,
6131                         S_Pretty_Follow           'Access,
6132                         S_Pretty_Forced           'Access,
6133                         S_Pretty_Formfeed         'Access,
6134                         S_Pretty_Indent           'Access,
6135                         S_Pretty_Keyword          'Access,
6136                         S_Pretty_Maxlen           'Access,
6137                         S_Pretty_Maxind           'Access,
6138                         S_Pretty_Mess             'Access,
6139                         S_Pretty_Names            'Access,
6140                         S_Pretty_No_Labels        'Access,
6141                         S_Pretty_Notabs           'Access,
6142                         S_Pretty_Output           'Access,
6143                         S_Pretty_Override         'Access,
6144                         S_Pretty_Pragma           'Access,
6145                         S_Pretty_Replace          'Access,
6146                         S_Pretty_Replace_No_Backup'Access,
6147                         S_Pretty_Project          'Access,
6148                         S_Pretty_RTS              'Access,
6149                         S_Pretty_Search           'Access,
6150                         S_Pretty_Sep_Label        'Access,
6151                         S_Pretty_Sep_Loop_Then    'Access,
6152                         S_Pretty_N_Sep_Loop_Then  'Access,
6153                         S_Pretty_Subdirs          'Access,
6154                         S_Pretty_Use_On_New_Line  'Access,
6155                         S_Pretty_Stnm_On_Nw_Line  'Access,
6156                         S_Pretty_Specific         'Access,
6157                         S_Pretty_Standard         'Access,
6158                         S_Pretty_Verbose          'Access,
6159                         S_Pretty_Warnings         'Access);
6160
6161    ------------------------------
6162    -- Switches for GNAT SHARED --
6163    ------------------------------
6164
6165    S_Shared_Debug   : aliased constant S := "/DEBUG="                      &
6166                                             "ALL "                         &
6167                                                "-g3 "                      &
6168                                             "NONE "                        &
6169                                                "-g0 "                      &
6170                                             "TRACEBACK "                   &
6171                                                "-g1 "                      &
6172                                             "NOTRACEBACK "                 &
6173                                                "-g0";
6174    --        /DEBUG[=debug-option]
6175    --        /NODEBUG
6176    --
6177    --   Specifies the amount of debugging information included. 'debug-option'
6178    --   is one of the following:
6179    --
6180    --        ALL (D)      Include full debugging information.
6181    --
6182    --        NONE         Provide no debugging information. Same as /NODEBUG.
6183    --
6184    --        TRACEBACK    Provide sufficient debug information for a traceback.
6185    --
6186    --        NOTRACEBACK  Same as NONE.
6187
6188    S_Shared_Image  : aliased constant S := "/IMAGE=@"                      &
6189                                             "-o@";
6190    --        /IMAGE=image-name
6191    --
6192    --   'image-name' specifies the name for the generated shared library.
6193
6194    S_Shared_Ident   : aliased constant S := "/IDENTIFICATION=" & '"'       &
6195                                             "--for-linker=IDENT="          &
6196                                             '"';
6197    --        /IDENTIFICATION="<string>"
6198    --
6199    --   "<string>" specifies the string to be stored in the image file ident-
6200    --   ification field in the image header. It overrides any pragma Ident
6201    --   specified string.
6202
6203    S_Shared_Nofiles : aliased constant S := "/NOSTART_FILES "              &
6204                                             "-nostartfiles";
6205    --        /NOSTART_FILES
6206    --
6207    --   Link in default image initialization and startup functions.
6208
6209    S_Shared_Noinhib : aliased constant S := "/NOINHIBIT-IMAGE "            &
6210                                             "--for-linker=--noinhibit-exec";
6211    --        /NOINHIBIT-IMAGE
6212    --
6213    --   Delete image if there are errors or warnings.
6214
6215    S_Shared_Verb    : aliased constant S := "/VERBOSE "                    &
6216                                             "-v";
6217    --        /NOVERBOSE (D)
6218    --        /VERBOSE
6219    --
6220    --   Causes additional information to be output, including a full list of
6221    --   the included object files. This switch option is most useful when you
6222    --   want to see what set of object files are being used in the link step.
6223
6224    S_Shared_ZZZZZ   : aliased constant S := "/<other> "                    &
6225                                             "--for-linker=";
6226    --        /<other>
6227    --
6228    --   Any other switch transmitted to the underlying linker.
6229
6230    Shared_Switches : aliased constant Switches :=
6231                        (S_Shared_Debug   'Access,
6232                         S_Shared_Image   'Access,
6233                         S_Shared_Ident   'Access,
6234                         S_Shared_Nofiles 'Access,
6235                         S_Shared_Noinhib 'Access,
6236                         S_Shared_Verb    'Access,
6237                         S_Shared_ZZZZZ   'Access);
6238
6239    -----------------------------
6240    -- Switches for GNAT STACK --
6241    -----------------------------
6242
6243    S_Stack_Add        : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"  &
6244                                                 "-aP*";
6245    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6246    --
6247    --   Add directories to the project search path.
6248
6249    S_Stack_All        : aliased constant S := "/ALL_SUBPROGRAMS "          &
6250                                                 "-a";
6251    --        /NOALL_SUBPROGRAMS (D)
6252    --        /ALL_SUBPROGRAMS
6253    --
6254    --   Consider all subprograms as entry points.
6255
6256    S_Stack_All_Cycles : aliased constant S := "/ALL_CYCLES "               &
6257                                                 "-ca";
6258    --        /NOALL_CYCLES (D)
6259    --        /ALL_CYCLES
6260    --
6261    --   Extract all possible cycles in the call graph.
6262
6263    S_Stack_All_Prjs   : aliased constant S := "/ALL_PROJECTS "             &
6264                                                 "-U";
6265    --        /NOALL_PROJECTS (D)
6266    --        /ALL_PROJECTS
6267    --
6268    --   When GNAT STACK is used with a Project File and no source is
6269    --   specified, the underlying tool gnatstack is called for all the
6270    --   units of all the Project Files in the project tree.
6271
6272    S_Stack_Debug      : aliased constant S := "/DEBUG "                    &
6273                                                 "-g";
6274    --        /NODEBUG (D)
6275    --        /DEBUG
6276    --
6277    --   Generate internal debug information.
6278
6279    S_Stack_Directory  : aliased constant S := "/DIRECTORY=*"               &
6280                                                 "-aO*";
6281    --        /DIRECTORY=(direc[,...])
6282    --
6283    --   When looking for .ci files look also in directories specified.
6284
6285    S_Stack_Entries    : aliased constant S := "/ENTRIES=*"                 &
6286                                                 "-e*";
6287    --
6288    --        /ENTRY=(entry_point[,...])
6289    --
6290    --   Name of symbol to be used as entry point for the analysis.
6291
6292    S_Stack_Files      : aliased constant S := "/FILES=@"                   &
6293                                                 "-files=@";
6294    --      /FILES=filename
6295    --
6296    --   Take as arguments the files that are listed in the specified
6297    --   text file.
6298
6299    S_Stack_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
6300                                             "-eL";
6301    --        /NOFOLLOW_LINKS_FOR_FILES (D)
6302    --        /FOLLOW_LINKS_FOR_FILES
6303    --
6304    --    Follow links when parsing project files
6305
6306    S_Stack_Help       : aliased constant S := "/HELP "                     &
6307                                                 "-h";
6308    --        /NOHELP (D)
6309    --        /HELP
6310    --
6311    --   Output a message explaining the usage of gnatstack.
6312
6313    S_Stack_List       : aliased constant S := "/LIST=#"                    &
6314                                                 "-l#";
6315    --        /LIST=nnn
6316    --
6317    --   Print the nnn subprograms requiring the biggest local stack usage. By
6318    --   default none will be displayed.
6319
6320    S_Stack_Order      : aliased constant S := "/ORDER="                    &
6321                                               "STACK "                     &
6322                                                  "-os "                    &
6323                                               "ALPHABETICAL "              &
6324                                                  "-oa";
6325    --        /ORDER[=order-option]
6326    --
6327    --   Specifies the order for displaying the different call graphs.
6328    --   order-option may be one of the following:
6329    --
6330    --      STACK (D)    Select stack usage order
6331    --
6332    --      ALPHABETICAL Select alphabetical order
6333
6334    S_Stack_Path       : aliased constant S := "/PATH "                     &
6335                                                 "-p";
6336    --        /NOPATH (D)
6337    --        /PATH
6338    --
6339    --   Print all the subprograms that make up the worst-case path for every
6340    --   entry point.
6341
6342    S_Stack_Project    : aliased constant S := "/PROJECT_FILE=<"            &
6343                                                 "-P>";
6344    --        /PROJECT_FILE=filename
6345    --
6346    --   Specifies the main project file to be used. The project files rooted
6347    --   at the main project file will be parsed before the invocation of
6348    --   gnatstack.
6349
6350    S_Stack_Output     : aliased constant S := "/OUTPUT=@"                  &
6351                                                 "-f@";
6352    --        /OUTPUT=filename
6353    --
6354    --   Name of the file containing the generated graph (VCG format).
6355
6356    S_Stack_Regexp     : aliased constant S := "/EXPRESSION=|"              &
6357                                                 "-r|";
6358    --
6359    --        /EXPRESSION=regular-expression
6360    --
6361    --   Any symbol matching the regular expression will be considered as a
6362    --   potential entry point for the analysis.
6363
6364    S_Stack_Subdirs : aliased constant S := "/SUBDIRS=<"                    &
6365                                               "--subdirs=>";
6366    --        /SUBDIRS=dir
6367    --
6368    --   The actual directories (object, exec, library, ...) are subdirectories
6369    --   of the directory specified in the project file. If the subdirectory
6370    --   does not exist, it is created automatically.
6371
6372    S_Stack_Unbounded  : aliased constant S := "/UNBOUNDED=#"               &
6373                                                 "-d#";
6374    --        /UNBOUNDED=nnn
6375    --
6376    --   Default stack size to be used for unbounded (dynamic) frames.
6377
6378    S_Stack_Unknown    : aliased constant S := "/UNKNOWN=#"                 &
6379                                                 "-u#";
6380    --        /UNKNOWN=nnn
6381    --
6382    --   Default stack size to be used for unknown (external) calls.
6383
6384    S_Stack_Verbose    : aliased constant S := "/VERBOSE "                  &
6385                                                 "-v";
6386    --        /NOVERBOSE (D)
6387    --        /VERBOSE
6388    --
6389    --   Specifies the amount of information to be displayed about the
6390    --   different subprograms. In verbose mode the full location of the
6391    --   subprogram will be part of the output, as well as detailed information
6392    --   about inaccurate data.
6393
6394    S_Stack_Warnings   : aliased constant S := "/WARNINGS="                 &
6395                                               "ALL "                       &
6396                                                  "-Wa "                    &
6397                                               "CYCLES "                    &
6398                                                  "-Wc "                    &
6399                                               "UNBOUNDED "                 &
6400                                                  "-Wu "                    &
6401                                               "EXTERNAL "                  &
6402                                                  "-We "                    &
6403                                               "INDIRECT "                  &
6404                                                  "-Wi";
6405    --        /WARNINGS[=(keyword[,...])]
6406    --
6407    --    The following keywords are supported:
6408    --
6409    --        ALL        Turn on all optional warnings
6410    --
6411    --        CYCLES     Turn on warnings for cycles
6412    --
6413    --        UNBOUNDED  Turn on warnings for unbounded frames
6414    --
6415    --        EXTERNAL   Turn on warnings for external calls
6416    --
6417    --        INDIRECT   Turn on warnings for indirect calls
6418
6419    Stack_Switches : aliased constant Switches :=
6420                       (S_Stack_Add        'Access,
6421                        S_Stack_All        'Access,
6422                        S_Stack_All_Cycles 'Access,
6423                        S_Stack_All_Prjs   'Access,
6424                        S_Stack_Debug      'Access,
6425                        S_Stack_Directory  'Access,
6426                        S_Stack_Entries    'Access,
6427                        S_Stack_Files      'Access,
6428                        S_Stack_Follow     'Access,
6429                        S_Stack_Help       'Access,
6430                        S_Stack_List       'Access,
6431                        S_Stack_Order      'Access,
6432                        S_Stack_Path       'Access,
6433                        S_Stack_Project    'Access,
6434                        S_Stack_Output     'Access,
6435                        S_Stack_Regexp     'Access,
6436                        S_Stack_Subdirs    'Access,
6437                        S_Stack_Unbounded  'Access,
6438                        S_Stack_Unknown    'Access,
6439                        S_Stack_Verbose    'Access,
6440                        S_Stack_Warnings   'Access);
6441
6442    ----------------------------
6443    -- Switches for GNAT STUB --
6444    ----------------------------
6445
6446    S_Stub_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
6447                                             "-aP*";
6448    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6449    --
6450    --   Add directories to the project search path.
6451
6452    S_Stub_Config  : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<"  &
6453                                             "-gnatec>";
6454    --        /CONFIGURATION_PRAGMAS_FILE=filespec
6455    --
6456    --   Specifies a configuration pragmas file that must be taken into account
6457    --   when compiling.
6458
6459    S_Stub_Current : aliased constant S := "/CURRENT_DIRECTORY "            &
6460                                             "!-I-";
6461    --        /CURRENT_DIRECTORY (D)
6462    --        /NOCURRENT_DIRECTORY
6463    --
6464    --   Look for source, library or object files in the default directory.
6465
6466    S_Stub_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
6467                                             "-X" & '"';
6468    --        /EXTERNAL_REFERENCE="name=val"
6469    --
6470    --   Specifies an external reference to the project manager. Useful only if
6471    --   /PROJECT_FILE is used.
6472    --
6473    --   Example:
6474    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
6475
6476    S_Stub_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
6477                                             "-eL";
6478    --        /NOFOLLOW_LINKS_FOR_FILES (D)
6479    --        /FOLLOW_LINKS_FOR_FILES
6480    --
6481    --    Follow links when parsing project files
6482
6483    S_Stub_Full    : aliased constant S := "/FULL "                         &
6484                                             "-f";
6485    --        /NOFULL (D)
6486    --        /FULL
6487    --
6488    --   If the destination directory already contains a file with the name of
6489    --   the body file for the argument file spec, replace it with the generated
6490    --   body stub. If /FULL is not used and there is already a body file, this
6491    --   existing body file is not replaced.
6492
6493    S_Stub_Header  : aliased constant S := "/HEADER="                       &
6494                                             "GENERAL "                     &
6495                                                "-hg "                      &
6496                                             "SPEC "                        &
6497                                                "-hs";
6498    --        /HEADER[=header-option]
6499    --
6500    --   Specifies the form of the comment header above the generated body stub.
6501    --   If no /HEADER qualifier is specified, there is no comment header.
6502    --   header-option is one of the following:
6503    --
6504    --
6505    --      GENERAL (D)  Put a sample comment header into the body stub.
6506    --
6507    --      SPEC         Put the comment header (i.e., all the comments
6508    --                   preceding the compilation unit) from the source of the
6509    --                   library unit declaration into the body stub.
6510
6511    S_Stub_Header_File : aliased constant S := "/FROM_HEADER_FILE=<" &
6512                                                 "--header-file=>";
6513
6514    --        /FROM_HEADER_FILE==filename
6515    --
6516    --   Use the content of the file as the comment header for a generated body
6517    --   stub.
6518
6519    S_Stub_Indent  : aliased constant S := "/INDENTATION=#"                 &
6520                                             "-i#";
6521    --        /INDENTATION=nnn
6522    --
6523    --   (nnn is a non-negative integer). Set the indentation level in the
6524    --   generated body stub to nnn. nnn=0 means "no indentation".
6525    --   Default indentation is 3.
6526
6527    S_Stub_Keep    : aliased constant S := "/KEEP "                         &
6528                                             "-k";
6529    --        /NOKEEP (D)
6530    --        /KEEP
6531    --
6532    --   Do not delete the tree file (i.e., the snapshot of the compiler
6533    --   internal structures used by gnatstub) after creating the body stub.
6534
6535    S_Stub_Length  : aliased constant S := "/LINE_LENGTH=#"                 &
6536                                             "-l#";
6537    --        /LINE_LENGTH=nnn
6538    --
6539    --   (n is a non-negative integer). Set the maximum line length in the body
6540    --   stub to nnn. Default is 78.
6541
6542    S_Stub_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
6543                                             "DEFAULT "                     &
6544                                                "-vP0 "                     &
6545                                             "MEDIUM "                      &
6546                                                "-vP1 "                     &
6547                                             "HIGH "                        &
6548                                                "-vP2";
6549    --        /MESSAGES_PROJECT_FILE[=messages-option]
6550    --
6551    --   Specifies the "verbosity" of the parsing of project files.
6552    --   messages-option may be one of the following:
6553    --
6554    --      DEFAULT (D)  No messages are output if there is no error or warning.
6555    --
6556    --      MEDIUM       A small number of messages are output.
6557    --
6558    --      HIGH         A great number of messages are output, most of them not
6559    --                   being useful for the user.
6560
6561    S_Stub_No_Exc  : aliased constant S := "/NO_EXCEPTION "                 &
6562                                           "--no-exception";
6563    --        /NONO_EXCEPTION (D)
6564    --        /NO_EXCEPTION
6565    --
6566    --  Avoid raising PROGRAM_ERROR in the generated program unit stubs.
6567
6568    S_Stub_No_Head : aliased constant S := "/NO_LOCAL_HEADER "             &
6569                                           "--no-local-header";
6570    --        /NONO_LOCAL_HEADER (D)
6571    --        /NO_LOCAL_HEADER
6572    --
6573    --  Do not put local comment header before body stub for local program unit.
6574
6575    S_Stub_Output  : aliased constant S := "/OUTPUT=@"                      &
6576                                             "-o@";
6577    --        /OUTPUT=filespec
6578    --
6579    --   Body file name. This should be set if the argument file name does not
6580    --   follow the GNAT file naming conventions. If this switch is omitted,
6581    --   the default name for the body will be obtained from the argument file
6582    --   name according to the GNAT file naming conventions.
6583
6584    S_Stub_Project : aliased constant S := "/PROJECT_FILE=<"                &
6585                                             "-P>";
6586    --        /PROJECT_FILE=filename
6587    --
6588    --   Specifies the main project file to be used. The project files rooted
6589    --   at the main project file will be parsed before any other processing.
6590    --   The source and object directories to be searched will be communicated
6591    --   to gnatstub through logical names ADA_PRJ_INCLUDE_FILE and
6592    --   ADA_PRJ_OBJECTS_FILE.
6593
6594    S_Stub_Quiet   : aliased constant S := "/QUIET "                        &
6595                                             "-q";
6596    --        /NOQUIET (D)
6597    --        /QUIET
6598    --
6599    --   Quiet mode: do not generate a confirmation when a body is successfully
6600    --   created, and do not generate a message when a body is not required for
6601    --   an argument unit.
6602
6603    S_Stub_Search  : aliased constant S := "/SEARCH=*"                      &
6604                                             "-I*";
6605    --        /SEARCH=(directory[,...])
6606    --
6607    --    When looking for source files also look in directories specified.
6608
6609    S_Stub_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
6610                                              "--subdirs=>";
6611    --        /SUBDIRS=dir
6612    --
6613    --   The actual directories (object, exec, library, ...) are subdirectories
6614    --   of the directory specified in the project file. If the subdirectory
6615    --   does not exist, it is created automatically.
6616
6617    S_Stub_Tree    : aliased constant S := "/TREE_FILE="                    &
6618                                             "OVERWRITE "                   &
6619                                                "-t "                       &
6620                                             "SAVE "                        &
6621                                                "-k "                       &
6622                                             "REUSE "                       &
6623                                                "-r";
6624    --        /TREE_FILE[=treefile-option]
6625    --
6626    --   Specify what to do with the tree file.
6627    --   treefile-option is one of the following:
6628    --
6629    --      OVERWRITE (D)  Overwrite the existing tree file. If the current
6630    --                     directory already contains the file which, according
6631    --                     to the GNAT file naming rules should be considered
6632    --                     as a tree file for the argument source file, gnatstub
6633    --                     will refuse to create the tree file needed to create
6634    --                     a sample body unless this option is chosen.
6635    --
6636    --      SAVE           Do not remove the tree file (i.e., the snapshot
6637    --                     of the compiler internal structures used by gnatstub)
6638    --                     after creating the body stub.
6639    --
6640    --      REUSE          Reuse the tree file (if it exists) instead of
6641    --                     creating it.
6642    --                     Instead of creating the tree file for the library
6643    --                     unit declaration, gnatstub tries to find it in the
6644    --                     current directory and use it for creating a body.
6645    --                     If the tree file is not found, no body is created.
6646    --                     This option also implies `SAVE', whether or not the
6647    --                     latter is set explicitly.
6648
6649    S_Stub_Verbose : aliased constant S := "/VERBOSE "                      &
6650                                             "-v";
6651    --        /NOVERBOSE (D)
6652    --        /VERBOSE
6653    --
6654    --   Verbose mode: generate version information.
6655
6656    Stub_Switches : aliased constant Switches :=
6657                      (S_Stub_Add        'Access,
6658                       S_Stub_Config     'Access,
6659                       S_Stub_Current    'Access,
6660                       S_Stub_Ext        'Access,
6661                       S_Stub_Follow     'Access,
6662                       S_Stub_Full       'Access,
6663                       S_Stub_Header     'Access,
6664                       S_Stub_Header_File'Access,
6665                       S_Stub_Indent     'Access,
6666                       S_Stub_Keep       'Access,
6667                       S_Stub_Length     'Access,
6668                       S_Stub_Mess       'Access,
6669                       S_Stub_Output     'Access,
6670                       S_Stub_Project    'Access,
6671                       S_Stub_No_Exc     'Access,
6672                       S_Stub_No_Head    'Access,
6673                       S_Stub_Quiet      'Access,
6674                       S_Stub_Search     'Access,
6675                       S_Stub_Subdirs    'Access,
6676                       S_Stub_Tree       'Access,
6677                       S_Stub_Verbose    'Access);
6678
6679    ----------------------------
6680    -- Switches for GNAT SYNC --
6681    ----------------------------
6682
6683    S_Sync_Add    : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"       &
6684                                             "-aP*";
6685    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6686    --
6687    --   Add directories to the project search path.
6688
6689    S_Sync_All    : aliased constant S := "/ALL "                           &
6690                                             "-a";
6691    --        /NOALL (D)
6692    --        /ALL
6693    --
6694    --   Also check the components of the GNAT run time and process the needed
6695    --  components of the GNAT RTL when building and analyzing the global
6696    --  structure for checking the global rules.
6697
6698    S_Sync_Allproj : aliased constant S := "/ALL_PROJECTS "                 &
6699                                             "-U";
6700    --        /NOALL_PROJECTS (D)
6701    --        /ALL_PROJECTS
6702    --
6703    --   When GNAT SYNC is used with a Project File and no source is
6704    --   specified, the underlying tool gnatsync is called for all the
6705    --   sources of all the Project Files in the project tree.
6706
6707    S_Sync_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
6708                                              "-X" & '"';
6709    --       /EXTERNAL_REFERENCE="name=val"
6710    --
6711    --   Specifies an external reference to the project manager. Useful only if
6712    --   /PROJECT_FILE is used.
6713    --
6714    --   Example:
6715    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
6716
6717    S_Sync_Files  : aliased constant S := "/FILES=@"                        &
6718                                              "-files=@";
6719    --      /FILES=filename
6720    --
6721    --   Take as arguments the files that are listed in the specified
6722    --   text file.
6723
6724    S_Sync_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
6725                                             "-eL";
6726    --        /NOFOLLOW_LINKS_FOR_FILES (D)
6727    --        /FOLLOW_LINKS_FOR_FILES
6728    --
6729    --    Follow links when parsing project files
6730
6731    S_Sync_Main    : aliased constant S := "/MAIN_SUBPROGRAM=@"             &
6732                                             "-main=@";
6733    --        /MAIN_SUBPROGRAM=filename
6734    --
6735    --   Specify the name of the file containing the main subprogram
6736
6737    S_Sync_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
6738                                              "DEFAULT "                    &
6739                                                 "-vP0 "                    &
6740                                              "MEDIUM "                     &
6741                                                 "-vP1 "                    &
6742                                              "HIGH "                       &
6743                                                 "-vP2";
6744    --        /MESSAGES_PROJECT_FILE[=messages-option]
6745    --
6746    --   Specifies the "verbosity" of the parsing of project files.
6747    --   messages-option may be one of the following:
6748    --
6749    --      DEFAULT (D)  No messages are output if there is no error or warning.
6750    --
6751    --      MEDIUM       A small number of messages are output.
6752    --
6753    --      HIGH         A great number of messages are output, most of them not
6754    --                   being useful for the user.
6755
6756    S_Sync_Project : aliased constant S := "/PROJECT_FILE=<"                &
6757                                              "-P>";
6758    --        /PROJECT_FILE=filename
6759    --
6760    --   Specifies the main project file to be used. The project files rooted
6761    --   at the main project file will be parsed before the invocation of the
6762    --   gnatcheck. The source directories to be searched will be communicated
6763    --   to gnatcheck through logical name ADA_PRJ_INCLUDE_FILE.
6764
6765    S_Sync_Quiet  : aliased constant S := "/QUIET "                         &
6766                                             "-q";
6767    --        /NOQUIET (D)
6768    --        /QUIET
6769    --
6770    --   Work quietly, only output warnings and errors.
6771
6772    S_Sync_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
6773                                              "--subdirs=>";
6774    --        /SUBDIRS=dir
6775    --
6776    --   The actual directories (object, exec, library, ...) are subdirectories
6777    --   of the directory specified in the project file. If the subdirectory
6778    --   does not exist, it is created automatically.
6779
6780    S_Sync_Verb   : aliased constant S := "/VERBOSE "                       &
6781                                             "-v";
6782    --        /NOVERBOSE (D)
6783    --        /VERBOSE
6784    --
6785    --   The version number and copyright notice are output, as well as exact
6786    --   copies of the gnat1 commands spawned to obtain the chop control
6787    --   information.
6788
6789    S_Sync_Exec   : aliased constant S := "/EXECUTION_TIME "                &
6790                                             "-t";
6791    --        /NOEXECUTION_TIME (D)
6792    --        /EXECUTION_TIME
6793    --
6794    --   Output the execution time
6795
6796    S_Sync_Details : aliased constant S := "/DETAILS="                      &
6797                                              "MEDIUM "                     &
6798                                                "-om "                      &
6799                                              "SHORT "                      &
6800                                                "-os "                      &
6801                                              "FULL "                       &
6802                                                "-of";
6803    --         /DETAILS[=options]
6804    --
6805    --   Specifies the details of the output.
6806    --   Options may be one of the following:
6807    --
6808    --       MEDIUM (D)
6809    --       SHORT
6810    --       FULL
6811
6812    S_Sync_Warnoff : aliased constant S := "/WARNINGS_OFF "                 &
6813                                              "-wq";
6814    --
6815    --         /WARNINGS_OFF
6816    --
6817    --   Turn warnings off
6818
6819    S_Sync_Output  : aliased constant S := "/OUTPUT_FILE=<"                 &
6820                                              "-out_file=>";
6821    --
6822    --        /OUTPUT_FILE=filename
6823    --
6824    --   Redirect output to a text file
6825
6826    Sync_Switches : aliased constant Switches :=
6827                       (S_Sync_Add      'Access,
6828                        S_Sync_All      'Access,
6829                        S_Sync_Allproj  'Access,
6830                        S_Sync_Ext      'Access,
6831                        S_Sync_Follow   'Access,
6832                        S_Sync_Files    'Access,
6833                        S_Sync_Main     'Access,
6834                        S_Sync_Mess     'Access,
6835                        S_Sync_Project  'Access,
6836                        S_Sync_Quiet    'Access,
6837                        S_Sync_Subdirs  'Access,
6838                        S_Sync_Verb     'Access,
6839                        S_Sync_Exec     'Access,
6840                        S_Sync_Details  'Access,
6841                        S_Sync_Warnoff  'Access,
6842                        S_Sync_Output   'Access);
6843
6844    ----------------------------
6845    -- Switches for GNAT XREF --
6846    ----------------------------
6847
6848    S_Xref_Add     : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*"      &
6849                                             "-aP*";
6850    --        /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6851    --
6852    --   Add directories to the project search path.
6853
6854    S_Xref_All     : aliased constant S := "/ALL_FILES "                    &
6855                                             "-a";
6856    --        /NOALL_FILES (D)
6857    --        /ALL_FILES
6858    --
6859    --   If this switch is present, FIND and XREF will parse the read-only
6860    --   files found in the library search path. Otherwise, these files will
6861    --   be ignored. This option can be used to protect Gnat sources or your
6862    --   own libraries from being parsed, thus making FIND and XREF much
6863    --   faster, and their output much smaller.
6864
6865    S_Xref_Deriv   : aliased constant S := "/DERIVED_TYPES "                &
6866                                             "-d";
6867    --        /NODERIVED_TYPES (D)
6868    --        /DERIVED_TYPES
6869    --
6870    --   Output the parent type reference for each matching derived types.
6871
6872    S_Xref_Ext     : aliased constant S := "/EXTERNAL_REFERENCE=" & '"'     &
6873                                             "-X" & '"';
6874    --        /EXTERNAL_REFERENCE="name=val"
6875    --
6876    --   Specifies an external reference to the project manager. Useful only if
6877    --   /PROJECT_FILE is used.
6878    --
6879    --   Example:
6880    --      /EXTERNAL_REFERENCE="DEBUG=TRUE"
6881
6882    S_Xref_Follow  : aliased constant S := "/FOLLOW_LINKS_FOR_FILES "       &
6883                                             "-eL";
6884    --        /NOFOLLOW_LINKS_FOR_FILES (D)
6885    --        /FOLLOW_LINKS_FOR_FILES
6886    --
6887    --    Follow links when parsing project files
6888
6889    S_Xref_Full    : aliased constant S := "/FULL_PATHNAME "                &
6890                                             "-f";
6891    --        /NOFULL_PATHNAME (D)
6892    --        /FULL_PATHNAME
6893    --
6894    --   If this switch is set, the output file names will be preceded by their
6895    --   directory (if the file was found in the search path). If this switch
6896    --   is not set, the directory will not be printed.
6897
6898    S_Xref_Global  : aliased constant S := "/IGNORE_LOCALS "                &
6899                                             "-g";
6900    --        /NOIGNORE_LOCALS (D)
6901    --        /IGNORE_LOCALS
6902    --
6903    --   If this switch is set, information is output only for library-level
6904    --   entities, ignoring local entities. The use of this switch may
6905    --   accelerate FIND and XREF.
6906
6907    S_Xref_Mess    : aliased constant S := "/MESSAGES_PROJECT_FILE="        &
6908                                             "DEFAULT "                     &
6909                                                "-vP0 "                     &
6910                                             "MEDIUM "                      &
6911                                                "-vP1 "                     &
6912                                             "HIGH "                        &
6913                                                "-vP2";
6914    --        /MESSAGES_PROJECT_FILE[=messages-option]
6915    --
6916    --   Specifies the "verbosity" of the parsing of project files.
6917    --   messages-option may be one of the following:
6918    --
6919    --      DEFAULT (D)  No messages are output if there is no error or warning.
6920    --
6921    --      MEDIUM       A small number of messages are output.
6922    --
6923    --      HIGH         A great number of messages are output, most of them not
6924    --                   being useful for the user.
6925
6926    S_Xref_Nostinc : aliased constant S := "/NOSTD_INCLUDES "               &
6927                                             "-nostdinc";
6928    --        /NOSTD_INCLUDES
6929    --
6930    --   Do not look for sources in the system default directory.
6931
6932    S_Xref_Nostlib : aliased constant S := "/NOSTD_LIBRARIES "              &
6933                                             "-nostdlib";
6934    --        /NOSTD_LIBRARIES
6935    --
6936    --   Do not look for library files in the system default directory.
6937
6938    S_Xref_Object  : aliased constant S := "/OBJECT_SEARCH=*"               &
6939                                             "-aO*";
6940    --        /OBJECT_SEARCH=(directory,...)
6941    --
6942    --   When searching for library and object files, look in the specified
6943    --   directories. The order in which library files are searched is the same
6944    --   as for MAKE.
6945
6946    S_Xref_Project : aliased constant S := "/PROJECT=@"                     &
6947                                             "-p@";
6948    --        /PROJECT=file
6949    --
6950    --   Specify a project file to use. By default, FIND and XREF will try to
6951    --   locate a project file in the current directory.
6952    --
6953    --   If a project file is either specified or found by the tools, then the
6954    --   content of the source directory and object directory lines are added
6955    --   as if they had been specified respectively by /SOURCE_SEARCH and
6956    --   /OBJECT_SEARCH.
6957
6958    S_Xref_Prj     : aliased constant S := "/PROJECT_FILE=<"                &
6959                                             "-P>";
6960    --        /PROJECT_FILE=filename
6961    --
6962    --   Specifies the main project file to be used. The project files rooted
6963    --   at the main project file will be parsed before doing any processing.
6964    --   The source and object directories to be searched will be communicated
6965    --   to gnatxref through logical names ADA_PRJ_INCLUDE_FILE and
6966    --   ADA_PRJ_OBJECTS_FILE.
6967
6968    S_Xref_Search  : aliased constant S := "/SEARCH=*"                      &
6969                                             "-I*";
6970    --        /SEARCH=(directory,...)
6971    --
6972    --   Equivalent to:
6973    --           /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
6974
6975    S_Xref_Source  : aliased constant S := "/SOURCE_SEARCH=*"               &
6976                                             "-aI*";
6977    --        /SOURCE_SEARCH=(directory,...)
6978    --
6979    --   When looking for source files also look in the specified directories.
6980    --   The order in which source file search is undertaken is the same as for
6981    --   MAKE.
6982
6983    S_Xref_Subdirs : aliased constant S := "/SUBDIRS=<"                     &
6984                                              "--subdirs=>";
6985    --        /SUBDIRS=dir
6986    --
6987    --   The actual directories (object, exec, library, ...) are subdirectories
6988    --   of the directory specified in the project file. If the subdirectory
6989    --   does not exist, it is created automatically.
6990
6991    S_Xref_Output  : aliased constant S := "/UNUSED "                       &
6992                                             "-u";
6993    --        /SOURCE_SEARCH=(directory,...)
6994    --
6995    --   When looking for source files also look in the specified directories.
6996    --   The order in which source file search is undertaken is the same as for
6997    --   MAKE.
6998
6999    S_Xref_Tags    : aliased constant S := "/TAGS "                         &
7000                                             "-v";
7001    --        /NOTAGS (D)
7002    --        /TAGS
7003    --
7004    --   Print a 'tags' file for vi.
7005
7006    Xref_Switches : aliased constant Switches :=
7007                      (S_Xref_Add     'Access,
7008                       S_Xref_All     'Access,
7009                       S_Xref_Deriv   'Access,
7010                       S_Xref_Ext     'Access,
7011                       S_Xref_Follow  'Access,
7012                       S_Xref_Full    'Access,
7013                       S_Xref_Global  'Access,
7014                       S_Xref_Mess    'Access,
7015                       S_Xref_Nostinc 'Access,
7016                       S_Xref_Nostlib 'Access,
7017                       S_Xref_Object  'Access,
7018                       S_Xref_Project 'Access,
7019                       S_Xref_Prj     'Access,
7020                       S_Xref_Search  'Access,
7021                       S_Xref_Source  'Access,
7022                       S_Xref_Subdirs 'Access,
7023                       S_Xref_Output  'Access,
7024                       S_Xref_Tags    'Access);
7025
7026 end VMS_Data;