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