* arm.c (FL_WBUF): Define.
[official-gcc.git] / gcc / ada / vms_data.ads
blob40a262f684d71487c838b16d275e4541e302a76b
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-2005 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, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, 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 CHOP --
670 ----------------------------
672 S_Chop_Comp : aliased constant S := "/COMPILATION " &
673 "-c";
674 -- /NOCOMPILATION (D)
675 -- /COMPILATION
677 -- Compilation mode, handle configuration pragmas strictly according to
678 -- RM rules.
680 S_Chop_File : aliased constant S := "/FILE_NAME_MAX_LENGTH=#" &
681 "-k#";
682 -- /FILE_NAME_MAX_LENGTH[=nnn]
684 -- Limit generated file names to NNN (default of 8) characters. This is
685 -- useful if the resulting set of files is required to be interoperable
686 -- with systems like MS-DOS which limit the length of file names.
688 S_Chop_Help : aliased constant S := "/HELP " &
689 "-h";
690 -- /NOHELP (D)
691 -- /HELP
693 -- Print usage information.
695 S_Chop_Over : aliased constant S := "/OVERWRITE " &
696 "-w";
697 -- /NOOVERWRITE (D)
698 -- /OVERWRITE
700 -- Overwrite existing file names. Normally GNAT CHOP regards it as a
701 -- fatal error situation if there is already a file with the same name as
702 -- a file it would otherwise output. The /OVERWRITE qualifier bypasses
703 -- this check, and any such existing files will be silently overwritten.
705 S_Chop_Pres : aliased constant S := "/PRESERVE " &
706 "-p";
707 -- /NOPRESERVE (D)
708 -- /PRESERVE
710 -- Causes the file modification time stamp of the input file to be
711 -- preserved and used for the time stamp of the output file(s). This may
712 -- be useful for preserving coherency of time stamps in an enviroment
713 -- where gnatchop is used as part of a standard build process.
715 S_Chop_Quiet : aliased constant S := "/QUIET " &
716 "-q";
717 -- /NOQUIET (D)
718 -- /QUIET
720 -- Work quietly, only output warnings and errors.
722 S_Chop_Ref : aliased constant S := "/REFERENCE " &
723 "-r";
724 -- /NOREFERENCE (D)
725 -- /REFERENCE
727 -- Generate "Source_Reference" pragmas. Use this qualifier if the output
728 -- files are regarded as temporary and development is to be done in terms
729 -- of the original unchopped file. The /REFERENCE qualifier causes
730 -- "Source_Reference" pragmas to be inserted into each of the generated
731 -- files to refers back to the original file name and line number. The
732 -- result is that all error messages refer back to the original unchopped
733 -- file.
735 -- In addition, the debugging information placed into the object file
736 -- (when the /DEBUG qualifier of GNAT COMPILE or GNAT MAKE is specified)
737 -- also refers back to this original file so that tools like profilers
738 -- and debuggers will give information in terms of the original unchopped
739 -- file.
741 S_Chop_Verb : aliased constant S := "/VERBOSE " &
742 "-v";
743 -- /NOVERBOSE (D)
744 -- /VERBOSE
746 -- The version number and copyright notice are output, as well as exact
747 -- copies of the gnat1 commands spawned to obtain the chop control
748 -- information.
750 Chop_Switches : aliased constant Switches :=
751 (S_Chop_Comp 'Access,
752 S_Chop_File 'Access,
753 S_Chop_Help 'Access,
754 S_Chop_Over 'Access,
755 S_Chop_Pres 'Access,
756 S_Chop_Quiet 'Access,
757 S_Chop_Ref 'Access,
758 S_Chop_Verb 'Access);
760 -----------------------------
761 -- Switches for GNAT CLEAN --
762 -----------------------------
764 S_Clean_Compil : aliased constant S := "/COMPILER_FILES_ONLY " &
765 "-c";
766 -- /NOCOMPILER_FILES_ONLY (D)
767 -- /COMPILER_FILES_ONLY
769 -- Only attempt to delete the files produced by the compiler, not those
770 -- produced by the binder or the linker. The files that are not to be
771 -- deleted are library files, interface copy files, binder generated files
772 -- and executable files.
774 S_Clean_Current : aliased constant S := "/CURRENT_DIRECTORY " &
775 "!-I-";
776 -- /CURRENT_DIRECTORY (D)
778 -- Look for ALI or object files in the directory where GNAT CLEAN was
779 -- invoked.
781 -- /NOCURRENT_DIRECTORY
783 -- Do not look for ALI or object files in the directory where GNAT CLEAN
784 -- was invoked.
786 S_Clean_Delete : aliased constant S := "/DELETE " &
787 "!-n";
788 -- /DELETE (D)
790 -- Delete the files that are not read-only.
792 -- /NODELETE
794 -- Informative-only mode. Do not delete any files. Output the list of the
795 -- files that would have been deleted if this switch was not specified.
797 S_Clean_Dirobj : aliased constant S := "/DIRECTORY_OBJECTS=@" &
798 "-D@";
799 -- /DIRECTORY_OBJECTS=<file>
801 -- Find the object files and .ALI files in <file>.
802 -- This qualifier is not compatible with /PROJECT_FILE.
804 S_Clean_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
805 "-X" & '"';
806 -- /EXTERNAL_REFERENCE="name=val"
808 -- Specifies an external reference to the project manager. Useful only if
809 -- /PROJECT_FILE is used.
811 -- Example:
812 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
814 S_Clean_Full : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES " &
815 "-F";
816 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
817 -- /FULL_PATH_IN_BRIEF_MESSAGES
819 -- When using project files, if some errors or warnings are detected
820 -- during parsing and verbose mode is not in effect (no use of qualifier
821 -- /VERBOSE), then error lines start with the full path name of the
822 -- project file, rather than its simple file name.
824 S_Clean_Help : aliased constant S := "/HELP " &
825 "-h";
826 -- /NOHELP (D)
827 -- /HELP
829 -- Output a message explaining the usage of gnatclean.
831 S_Clean_Index : aliased constant S := "/SOURCE_INDEX=#" &
832 "-i#";
833 -- /SOURCE_INDEX=nnn
835 -- Specifies the index of the units in the source file
836 -- By default, source files are mono-unit and there is no index
838 S_Clean_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
839 "DEFAULT " &
840 "-vP0 " &
841 "MEDIUM " &
842 "-vP1 " &
843 "HIGH " &
844 "-vP2";
845 -- /MESSAGES_PROJECT_FILE[=messages-option]
847 -- Specifies the "verbosity" of the parsing of project files.
848 -- messages-option may be one of the following:
850 -- DEFAULT (D) No messages are output if there is no error or warning.
852 -- MEDIUM A small number of messages are output.
854 -- HIGH A great number of messages are output, most of them not
855 -- being useful for the user.
857 S_Clean_Object : aliased constant S := "/OBJECT_SEARCH=*" &
858 "-aO*";
859 -- /OBJECT_SEARCH=(directory,...)
861 -- When searching for library and object files, look in the specified
862 -- directories. The order in which library files are searched is the same
863 -- as for MAKE.
865 S_Clean_Project : aliased constant S := "/PROJECT_FILE=<" &
866 "-P>";
867 -- /PROJECT_FILE=filename
869 -- Specifies the main project file to be used. The project files rooted
870 -- at the main project file will be parsed before the invocation of the
871 -- compiler. The source and object directories to be searched will be
872 -- communicated to gnatclean through logical names ADA_PRJ_INCLUDE_FILE
873 -- and ADA_PRJ_OBJECTS_FILE.
875 S_Clean_Quiet : aliased constant S := "/QUIET " &
876 "-q";
877 -- /NOQUIET (D)
878 -- /QUIET
880 -- Quiet output. If there are no error, do not ouuput anything, except in
881 -- verbose mode (qualifier /VERBOSE) or in informative-only mode
882 -- (qualifier /NODELETE).
884 S_Clean_Recurs : aliased constant S := "/RECURSIVE " &
885 "-r";
886 -- /NORECURSIVE (D)
887 -- /RECURSIVE
889 -- When a project file is specified (using switch -P), clean all imported
890 -- and extended project files, recursively. If this qualifier is not
891 -- specified, only the files related to the main project file are to be
892 -- deleted. This qualifier has no effect if no project file is specified.
894 S_Clean_Search : aliased constant S := "/SEARCH=*" &
895 "-I*";
896 -- /SEARCH=(directory,...)
898 -- Equivalent to /OBJECT_SEARCH=(directory,...).
900 S_Clean_Verbose : aliased constant S := "/VERBOSE " &
901 "-v";
902 -- /NOVERBOSE (D)
903 -- /VERBOSE
905 -- Verbose mode.
907 Clean_Switches : aliased constant Switches :=
908 (S_Clean_Compil 'Access,
909 S_Clean_Current'Access,
910 S_Clean_Delete 'Access,
911 S_Clean_Dirobj 'Access,
912 S_Clean_Ext 'Access,
913 S_Clean_Full 'Access,
914 S_Clean_Help 'Access,
915 S_Clean_Index 'Access,
916 S_Clean_Mess 'Access,
917 S_Clean_Object 'Access,
918 S_Clean_Project'Access,
919 S_Clean_Quiet 'Access,
920 S_Clean_Recurs 'Access,
921 S_Clean_Search 'Access,
922 S_Clean_Verbose'Access);
924 -------------------------------
925 -- Switches for GNAT COMPILE --
926 -------------------------------
928 S_GCC_Ada_83 : aliased constant S := "/83 " &
929 "-gnat83";
930 -- /NO83 (D)
931 -- /83
933 -- Although GNAT is primarily an Ada 95 compiler, it accepts this
934 -- qualifier to specify that an Ada 83 mode program is being compiled. If
935 -- you specify this qualifier, GNAT rejects Ada 95 extensions and applies
936 -- Ada 83 semantics. It is not possible to guarantee this qualifier does
937 -- a perfect job; for example, some subtle tests of pathological cases,
938 -- such as are found in ACVC tests that have been removed from the ACVC
939 -- suite for Ada 95, may not compile correctly. However for practical
940 -- purposes, using this qualifier should ensure that programs that
941 -- compile correctly under the /83 qualifier can be ported reasonably
942 -- easily to an Ada 83 compiler. This is the main use of this qualifier.
944 -- With few exceptions (most notably the need to use "<>" on
945 -- unconstrained generic formal parameters), it is not necessary to use
946 -- this qualifier switch when compiling Ada 83 programs, because, with
947 -- rare and obscure exceptions, Ada 95 is upwardly compatible with Ada
948 -- 83. This means that a correct Ada 83 program is usually also a correct
949 -- Ada 95 program.
951 S_GCC_Ada_95 : aliased constant S := "/95 " &
952 "-gnat95";
953 -- /95 (D)
955 -- Allows GNAT to recognize the full range of Ada 95 constructs.
956 -- This is the normal default for GNAT Pro.
958 S_GCC_Ada_05 : aliased constant S := "/05 " &
959 "-gnat05";
960 -- /05 (D)
962 -- Allows GNAT to recognize all implemented proposed Ada 2005
963 -- extensions. See features file for list of implemented features.
965 S_GCC_Asm : aliased constant S := "/ASM " &
966 "-S,!-c";
967 -- /NOASM (D)
968 -- /ASM
970 -- Use to cause the assembler source file to be generated, using S as the
971 -- filetype, instead of the object file. This may be useful if you need
972 -- to examine the generated assembly code.
974 S_GCC_Checks : aliased constant S := "/CHECKS=" &
975 "FULL " &
976 "-gnato,!-gnatE,!-gnatp " &
977 "OVERFLOW " &
978 "-gnato " &
979 "ELABORATION " &
980 "-gnatE " &
981 "ASSERTIONS " &
982 "-gnata " &
983 "DEFAULT " &
984 "!-gnato,!-gnatp " &
985 "STACK " &
986 "-fstack-check " &
987 "SUPPRESS_ALL " &
988 "-gnatp";
989 -- /NOCHECKS
990 -- /CHECKS[=(keyword[,...])]
992 -- If you compile with the default options, GNAT will insert many runtime
993 -- checks into the compiled code, including code that performs range
994 -- checking against constraints, but not arithmetic overflow checking for
995 -- integer operations (including division by zero) or checks for access
996 -- before elaboration on subprogram calls. All other runtime checks, as
997 -- required by the Ada 95 Reference Manual, are generated by default.
999 -- You may specify one or more of the following keywords to the /CHECKS
1000 -- qualifier to modify this behavior:
1002 -- DEFAULT The behavior described above. This is the default
1003 -- if the /CHECKS qualifier is not present on the
1004 -- command line. Same as /NOCHECKS.
1006 -- OVERFLOW Enables overflow checking for integer operations and
1007 -- checks for access before elaboration on subprogram
1008 -- calls. This causes GNAT to generate slower and larger
1009 -- executable programs by adding code to check for both
1010 -- overflow and division by zero (resulting in raising
1011 -- "Constraint_Error" as required by Ada semantics).
1012 -- Similarly, GNAT does not generate elaboration check
1013 -- by default, and you must specify this keyword to
1014 -- enable them.
1016 -- Note that this keyword does not affect the code
1017 -- generated for any floating-point operations; it
1018 -- applies only to integer operations. For floating-point,
1019 -- GNAT has the "Machine_Overflows" attribute set to
1020 -- "False" and the normal mode of operation is to generate
1021 -- IEEE NaN and infinite values on overflow or invalid
1022 -- operations (such as dividing 0.0 by 0.0).
1024 -- ELABORATION Enables dynamic checks for access-before-elaboration
1025 -- on subprogram calls and generic instantiations.
1027 -- ASSERTIONS The pragmas "Assert" and "Debug" normally have no
1028 -- effect and are ignored. This keyword causes "Assert"
1029 -- and "Debug" pragmas to be activated.
1031 -- SUPPRESS_ALL Suppress all runtime checks as though you have "pragma
1032 -- Suppress (all_checks)" in your source. Use this switch
1033 -- to improve the performance of the code at the expense
1034 -- of safety in the presence of invalid data or program
1035 -- bugs.
1037 -- DEFAULT Suppress the effect of any option OVERFLOW or
1038 -- ASSERTIONS.
1040 -- FULL (D) Similar to OVERFLOW, but suppress the effect of any
1041 -- option ELABORATION or SUPPRESS_ALL.
1043 -- These keywords only control the default setting of the checks. You
1044 -- may modify them using either "Suppress" (to remove checks) or
1045 -- "Unsuppress" (to add back suppressed checks) pragmas in your program
1046 -- source.
1048 S_GCC_ChecksX : aliased constant S := "/NOCHECKS " &
1049 "-gnatp,!-gnato,!-gnatE";
1050 -- NODOC (see /CHECKS)
1052 S_GCC_Compres : aliased constant S := "/COMPRESS_NAMES " &
1053 "-gnatC";
1054 -- /NOCOMPRESS_NAMES (D)
1055 -- /COMPRESS_NAMES
1057 -- Compress debug information and external symbol name table entries.
1058 -- In the generated debugging information, and also in the case of long
1059 -- external names, the compiler uses a compression mechanism if the name
1060 -- is very long. This compression method uses a checksum, and avoids
1061 -- trouble on some operating systems which have difficulty with very long
1062 -- names.
1064 S_GCC_Config : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
1065 "-gnatec>";
1066 -- /CONFIGURATION_PRAGMAS_FILE=file
1068 -- Specify a configuration pragmas file that need to be taken into account
1070 S_GCC_Current : aliased constant S := "/CURRENT_DIRECTORY " &
1071 "!-I-";
1072 -- /CURRENT_DIRECTORY (D)
1073 -- /NOCURRENT_DIRECTORY
1075 -- Look for source files in the default directory.
1077 S_GCC_Data : aliased constant S := "/DATA_PREPROCESSING=<" &
1078 "-gnatep>";
1079 -- /DATA_PREPROCESSING=file_name
1081 -- This qualifier indicates to the compiler the file name (without
1082 -- directory information) of the preprocessor data file to use.
1083 -- The preprocessor data file should be found in the source directories.
1085 -- A preprocessing data file is a text file with significant lines
1086 -- indicating how should be preprocessed either a specific source or all
1087 -- sources not mentioned in other lines. A significant line is a non
1088 -- empty, non comment line. Comments are similar to Ada comments.
1090 -- Each significant line starts with either a literal string or the
1091 -- character '*'. A literal string is the file name (without directory
1092 -- information) of the source to preprocess. A character '*' indicates the
1093 -- preprocessing for all the sources that are not specified explicitly on
1094 -- other lines. It is an error to have two lines with the same file name
1095 -- or two lines starting with the character '*'.
1097 -- After the file name or the character '*', another optional literal
1098 -- string indicating the file name of the definition file to be used for
1099 -- preprocessing. (see 15.3 Form of Definitions File. The definition files
1100 -- are found by the compiler in one of the source directories. In some
1101 -- cases, when compiling a source in a directory other than the current
1102 -- directory, if the definition file is in the current directory, it may
1103 -- be necessary to add the current directory as a source directory through
1104 -- qualifier "/SEARCH=[]", otherwise the compiler would not find the
1105 -- definition file.
1107 -- Then, optionally, switches similar to those of gnatprep may be found.
1108 -- Those switches are:
1110 -- -b Causes both preprocessor lines and the lines deleted by
1111 -- preprocessing to be replaced by blank lines, preserving
1112 -- the line number. This switch is always implied;
1113 -- however, if specified after `-c' it cancels the effect
1114 -- of `-c'.
1116 -- -c Causes both preprocessor lines and the lines deleted by
1117 -- preprocessing to be retained as comments marked with
1118 -- the special string "--! ".
1120 -- -Dsymbol=value Define or redefine a symbol, associated with value.
1121 -- A symbol is an Ada identifier, or an Ada reserved word,
1122 -- with the exception of "if", "else", "elsif", "end",
1123 -- "and", "or" and "then". value is either a literal
1124 -- string, an Ada identifier or any Ada reserved word.
1125 -- A symbol declared with this switch replaces a symbol
1126 -- with the same name defined in a definition file.
1128 -- -s Causes a sorted list of symbol names and values to be
1129 -- listed on the standard output file.
1131 -- -u Causes undefined symbols to be treated as having the
1132 -- value FALSE in the context of a preprocessor test.
1133 -- In the absence of this option, an undefined symbol
1134 -- in a #if or #elsif test will be treated as an error.
1136 -- Examples of valid lines in a preprocessor data file:
1138 -- "toto.adb" "prep.def" -u
1139 -- -- preprocess "toto.adb", using definition file "prep.def",
1140 -- -- undefined symbol are False.
1142 -- * -c -DVERSION=V101
1143 -- -- preprocess all other sources without a definition file;
1144 -- -- suppressed lined are commented; symbol VERSION has the value
1145 -- -- V101.
1147 -- "titi.adb" "prep2.def" -s
1148 -- -- preprocess "titi.adb", using definition file "prep2.def";
1149 -- -- list all symbols with their values.
1151 S_GCC_Debug : aliased constant S := "/DEBUG=" &
1152 "SYMBOLS " &
1153 "-g2 " &
1154 "NOSYMBOLS " &
1155 "!-g2 " &
1156 "TRACEBACK " &
1157 "-g1 " &
1158 "ALL " &
1159 "-g3 " &
1160 "NONE " &
1161 "-g0 " &
1162 "NOTRACEBACK " &
1163 "-g0";
1164 -- /DEBUG[=debug-level]
1165 -- /NODEBUG
1167 -- Specifies how much debugging information is to be included in
1168 -- the resulting object fie.
1170 -- 'debug-level' is one of the following:
1172 -- SYMBOLS (D) Include both debugger symbol records and traceback
1173 -- in the object file.
1175 -- ALL Include debugger symbol records, traceback plus
1176 -- extra debug information in the object file.
1178 -- NONE Excludes both debugger symbol records and traceback
1179 -- from the object file. Same as /NODEBUG.
1181 -- TRACEBACK Includes only traceback records in the object
1182 -- file. This is the default when /DEBUG is not used.
1184 S_GCC_DebugX : aliased constant S := "/NODEBUG " &
1185 "!-g";
1186 -- NODOC (see /Debug)
1188 S_GCC_Dist : aliased constant S := "/DISTRIBUTION_STUBS=" &
1189 "RECEIVER " &
1190 "-gnatzr " &
1191 "CALLER " &
1192 "-gnatzc";
1193 -- /NODISTRIBUTION_STUBS (D)
1194 -- /DISTRIBUTION_STUBS[=dist-opt]
1196 -- 'dist-opt' is either RECEIVER (the default) or SENDER and indicates
1197 -- that stubs for use in distributed programs (see the Distributed
1198 -- Systems Annex of the Ada RM) should be generated.
1200 S_GCC_DistX : aliased constant S := "/NODISTRIBUTION_STUBS " &
1201 "!-gnatzr,!-gnatzc";
1202 -- NODOC (see /DISTRIBUTION_STUBS)
1204 S_GCC_Error : aliased constant S := "/ERROR_LIMIT=#" &
1205 "-gnatm#";
1206 -- /NOERROR_LIMIT (D)
1207 -- /ERROR_LIMIT=nnn
1209 -- NNN is a decimal integer in the range of 1 to 999999 and limits the
1210 -- number of error messages to be generated to that number. Once that
1211 -- number has been reached, the compilation is abandoned.
1212 -- Specifying 999999 is equivalent to /NOERROR_LIMIT.
1214 S_GCC_ErrorX : aliased constant S := "/NOERROR_LIMIT " &
1215 "-gnatm999999";
1216 -- NODOC (see /ERROR_LIMIT)
1218 S_GCC_Expand : aliased constant S := "/EXPAND_SOURCE " &
1219 "-gnatG";
1220 -- /NOEXPAND_SOURCE (D)
1221 -- /EXPAND_SOURCE
1223 -- Produces a listing of the expanded code in Ada source form. For
1224 -- example, all tasking constructs are reduced to appropriate run-time
1225 -- library calls.
1227 S_GCC_Extend : aliased constant S := "/EXTENSIONS_ALLOWED " &
1228 "-gnatX";
1229 -- /NOEXTENSIONS_ALLOWED (D)
1230 -- /EXTENSIONS_ALLOWED
1232 -- GNAT specific language extensions allowed.
1234 S_GCC_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
1235 "-X" & '"';
1236 -- /EXTERNAL_REFERENCE="name=val"
1238 -- Specifies an external reference to the project manager. Useful only if
1239 -- /PROJECT_FILE is used.
1241 -- Example:
1242 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
1244 S_GCC_File : aliased constant S := "/FILE_NAME_MAX_LENGTH=#" &
1245 "-gnatk#";
1246 -- /FILE_NAME_MAX_LENGTH=nnn
1248 -- Activates file name "krunching". NNN, a decimal integer in the range
1249 -- 1-999, indicates the maximum allowable length of a file name (not
1250 -- including the ADS or ADB filetype. The default is not to enable file
1251 -- name krunching.
1253 S_GCC_Force : aliased constant S := "/FORCE_ALI " &
1254 "-gnatQ";
1255 -- /NOFORCE_ALI (D)
1256 -- /FORCE_ALI
1258 -- In normal operation mode, the .ALI file is not generated if any
1259 -- illegalities are detected in the program. The use of this qualifier
1260 -- forces generation of the .ALI file. This file is marked as being
1261 -- in error, so it cannot be used for binding purposes, but it does
1262 -- contain reasonably complete cross-reference information, and thus may
1263 -- be useful for use by tools (e.g. semantic browing tools or integrated
1264 -- development environments) that are driven from the .ALI file.
1266 S_GCC_Full : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES " &
1267 "-gnatef";
1268 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
1269 -- /FULL_PATH_IN_BRIEF_MESSAGES
1271 -- When using project files, if some errors or warnings are detected
1272 -- during parsing and verbose mode is not in effect (no use of qualifier
1273 -- /VERBOSE), then error lines start with the full path name of the
1274 -- project file, rather than its simple file name.
1276 S_GCC_Help : aliased constant S := "/HELP " &
1277 "-gnath";
1278 -- /NOHELP (D)
1279 -- /HELP
1281 -- Output usage information.
1283 S_GCC_Ident : aliased constant S := "/IDENTIFIER_CHARACTER_SET=" &
1284 "DEFAULT " &
1285 "-gnati1 " &
1286 "1 " &
1287 "-gnati1 " &
1288 "2 " &
1289 "-gnati2 " &
1290 "3 " &
1291 "-gnati3 " &
1292 "4 " &
1293 "-gnati4 " &
1294 "5 " &
1295 "-gnati5 " &
1296 "PC " &
1297 "-gnatip " &
1298 "PC850 " &
1299 "-gnati8 " &
1300 "FULL_UPPER " &
1301 "-gnatif " &
1302 "NO_UPPER " &
1303 "-gnatin " &
1304 "WIDE " &
1305 "-gnatiw";
1306 -- /NOIDENTIFIER_CHARACTER_SET (D)
1307 -- /IDENTIFIER_CHARACTER_SET=char-set
1309 -- Normally GNAT recognizes the Latin-1 character set in source program
1310 -- identifiers, as described in the reference manual. This qualifier
1311 -- causes GNAT to recognize alternate character sets in identifiers.
1312 -- 'char-set' is one of the following strings indicating the character
1313 -- set:
1315 -- DEFAULT (D) Equivalent to 1, below. Also equivalent to
1316 -- /NOIDENTIFIER_CHARACTER_SET.
1318 -- 1 The basic character set is Latin-1. This character
1319 -- set is defined by ISO standard 8859, part 1. The lower
1320 -- half (character codes 16#00# ... 16#7F#) is identical
1321 -- to standard ASCII coding, but the upper half is used
1322 -- to represent additional characters. This includes
1323 -- extended letters used by European languages, such as
1324 -- the umlaut used in German.
1326 -- You may use any of these extended characters freely
1327 -- in character or string literals. In addition, the
1328 -- extended characters that represent letters can be
1329 -- used in identifiers.
1331 -- 2 Latin-2 letters allowed in identifiers, with uppercase
1332 -- and lowercase equivalence.
1334 -- 3 Latin-3 letters allowed in identifiers, with uppercase
1335 -- and lower case equivalence.
1337 -- 4 Latin-4 letters allowed in identifiers, with uppercase
1338 -- and lower case equivalence.
1340 -- PC IBM PC code page 437. This code page is the normal
1341 -- default for PCs in the U.S. It corresponds to the
1342 -- original IBM PC character set. This set has some, but
1343 -- not all, of the extended Latin-1 letters, but these
1344 -- letters do not have the same encoding as Latin-1. In
1345 -- this mode, these letters are allowed in identifiers
1346 -- with uppercase and lowercase equivalence.
1348 -- PC850 This code page (850) is a modification of 437 extended
1349 -- to include all the Latin-1 letters, but still not with
1350 -- the usual Latin-1 encoding. In this mode, all these
1351 -- letters are allowed in identifiers with uppercase and
1352 -- lower case equivalence.
1354 -- FULL_UPPER Any character in the range 80-FF allowed in
1355 -- identifiers, and all are considered distinct. In
1356 -- other words, there are no uppercase and lower case
1357 -- equivalences in this range.
1359 -- NO_UPPER No upper-half characters in the range 80-FF are
1360 -- allowed in identifiers. This gives Ada 95
1361 -- compatibility for identifier names.
1363 -- WIDE GNAT allows wide character codes to appear in
1364 -- character and string literals, and also optionally
1365 -- in identifiers. See the /WIDE_CHARACTER_ENCODING
1366 -- qualifier for information on encoding formats.
1368 S_GCC_IdentX : aliased constant S := "/NOIDENTIFIER_CHARACTER_SET " &
1369 "-gnati1";
1370 -- NODOC (see /IDENTIFIER_CHARACTER_SET)
1372 S_GCC_Immed : aliased constant S := "/IMMEDIATE_ERRORS " &
1373 "-gnatdO";
1374 -- /NOIMMEDIATE_ERRORS (D)
1375 -- /IMMEDIATE_ERRORS
1377 -- Causes errors to be displayed as soon as they are encountered, rather
1378 -- than after compilation is terminated. If GNAT terminates prematurely
1379 -- or goes into an infinite loop, the last error message displayed may
1380 -- help to pinpoint the culprit.
1382 S_GCC_Inline : aliased constant S := "/INLINE=" &
1383 "PRAGMA " &
1384 "-gnatn " &
1385 "FULL " &
1386 "-gnatN " &
1387 "SUPPRESS " &
1388 "-fno-inline";
1389 -- /NOINLINE (D)
1390 -- /INLINE[=keyword]
1392 -- Selects the level of inlining for your program. In the absence of this
1393 -- qualifier, GNAT does not attempt inlining across units and does not
1394 -- need to access the bodies of subprograms for which "pragma Inline" is
1395 -- specified if they are not in the current unit.
1397 -- The supported keywords are as follows:
1399 -- PRAGMA (D) Recognize and process "Inline" pragmas. However,
1400 -- for the inlining to actually occur, optimization
1401 -- must be enabled. This enables inlining across unit
1402 -- boundaries, that is, inlining a call in one unit of
1403 -- a subprogram declared in a with'ed unit. The compiler
1404 -- will access these bodies, creating an extra source
1405 -- dependency for the resulting object file, and where
1406 -- possible, the call will be inlined.
1408 -- This qualifier also turns on full optimization and
1409 -- requests GNAT to try to attempt automatic inlining
1410 -- of small subprograms within a unit.
1412 -- Specifying /OPTIMIZE=NONE will disable the main effect
1413 -- of this qualifier, but you may specify other
1414 -- optimization options, to get either lower
1415 -- (/OPTIMIZE=SOME) or higher (/OPTIMIZE=UNROLL_LOOPS)
1416 -- levels of optimization.
1418 -- FULL Front end inlining. The front end inlining activated
1419 -- by this switch is generally more extensive, and quite
1420 -- often more effective than the standard PRAGMA inlining
1421 -- mode. It will also generate additional dependencies.
1423 -- SUPPRESS Suppresses all inlining, even if other optimization
1424 -- or inlining switches are set.
1426 S_GCC_InlineX : aliased constant S := "/NOINLINE " &
1427 "!-gnatn,!-gnatN";
1428 -- NODOC (see /INLINE)
1430 S_GCC_Jumps : aliased constant S := "/LONGJMP_SETJMP " &
1431 "-gnatL";
1432 -- /NOLONGJMP_SETJMP (D)
1433 -- /LONGJMP_SETJMP
1435 -- Causes the longjmp/setjmp approach to be used for exception handling.
1437 -- The default mechanism for OpenVMS is zero cost exceptions. This
1438 -- qualifier can be used to modify this default, but it must be used for
1439 -- all units in the partition, including all run-time library units.
1440 -- One way to achieve this is to use the /ALL_FILES and /FORCE_COMPILE
1441 -- for gnatmake.
1442 -- This option is rarely used. One case in which it may be advantageous is
1443 -- in an application where exception raising is common and the overall
1444 -- performance of the application is improved by favoring exception
1445 -- propagation.
1447 S_GCC_Length : aliased constant S := "/MAX_LINE_LENGTH=#" &
1448 "-gnatyM#";
1449 -- /MAX_LINE_LENGTH=nnn
1451 -- Set maximum line length.
1452 -- The length of lines must not exceed the given value nnn.
1454 S_GCC_List : aliased constant S := "/LIST " &
1455 "-gnatl";
1456 -- /NOLIST (D)
1457 -- /LIST
1459 -- Cause a full listing of the file to be generated.
1461 S_GCC_Mapping : aliased constant S := "/MAPPING_FILE=<" &
1462 "-gnatem>";
1463 -- /MAPPING_FILE=file_name
1465 -- Use mapping file file_name
1467 -- A mapping file is a way to communicate to the compiler two mappings:
1468 -- from unit names to file names (without any directory information) and
1469 -- from file names to path names (with full directory information).
1470 -- These mappings are used by the compiler to short-circuit the path
1471 -- search.
1473 -- The use of mapping files is not required for correct operation of the
1474 -- compiler, but mapping files can improve efficiency, particularly when
1475 -- sources are read over a slow network connection. In normal operation,
1476 -- you need not be concerned with the format or use of mapping files,
1477 -- and /MAPPING_FILE is not a qualifier that you would use explicitly.
1478 -- It is intended only for use by automatic tools such as GNAT MAKE
1479 -- running under the project file facility. The description here of the
1480 -- format of mapping files is provided for completeness and for possible
1481 -- use by other tools.
1483 -- A mapping file is a sequence of sets of three lines. In each set, the
1484 -- first line is the unit name, in lower case, with "%s" appended for
1485 -- specifications and "%b" appended for bodies; the second line is the
1486 -- file name; and the third line is the path name.
1488 -- Example:
1490 -- main%b
1491 -- main.2_ada
1492 -- /gnat/project1/sources/main.2_ada
1494 -- When qualifier ?MAPPING_FILE is specified, the compiler will create in
1495 -- memory the two mappings from the specified file. If there is any
1496 -- problem (non existent file, truncated file or duplicate entries),
1497 -- no mapping will be created.
1499 -- Several /MAPPING_FILE qualifiers may be specified; however, only the
1500 -- last one on the command line will be taken into account.
1502 -- When using a project file, GNAT MAKE creates a temporary mapping file
1503 -- and communicates it to the compiler using this switch.
1505 S_GCC_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
1506 "DEFAULT " &
1507 "-vP0 " &
1508 "MEDIUM " &
1509 "-vP1 " &
1510 "HIGH " &
1511 "-vP2";
1512 -- /MESSAGES_PROJECT_FILE[=messages-option]
1514 -- Specifies the "verbosity" of the parsing of project files.
1515 -- messages-option may be one of the following:
1517 -- DEFAULT (D) No messages are output if there is no error or warning.
1519 -- MEDIUM A small number of messages are output.
1521 -- HIGH A great number of messages are output, most of them not
1522 -- being useful for the user.
1524 S_GCC_Nesting : aliased constant S := "/MAX_NESTING=#" &
1525 "-gnatyL#";
1526 -- /MAX_NESTING=nnn
1528 -- Set maximum level of nesting of constructs (including subprograms,
1529 -- loops, blocks, packages, and conditionals).
1530 -- The level of nesting must not exceed the given value nnn.
1531 -- A value of zero disable this style check (not enabled by default).
1533 S_GCC_Noadc : aliased constant S := "/NO_GNAT_ADC " &
1534 "-gnatA";
1535 -- /NO_GNAT_ADC
1537 -- Cause the compiler to ignore any configuration pragmas file GNAT.ADC
1538 -- in the default directory. Implied by qualifier /PROJECT_FILE.
1539 -- Often used in conjunction with qualifier /CONFIGURATION_PRAGMAS_FILE.
1541 S_GCC_Noload : aliased constant S := "/NOLOAD " &
1542 "-gnatc";
1543 -- /NOLOAD
1545 -- Cause the compiler to operate in semantic check mode with full
1546 -- checking for all illegalities specified in the reference manual, but
1547 -- without generation of any source code (no object or ALI file
1548 -- generated).
1550 -- Since dependent files must be accessed, you must follow the GNAT
1551 -- semantic restrictions on file structuring to operate in this mode:
1553 -- o The needed source files must be accessible.
1554 -- o Each file must contain only one compilation unit.
1555 -- o The file name and unit name must match.
1557 -- The output consists of error messages as appropriate. No object file
1558 -- or ALI file is generated. The checking corresponds exactly to the
1559 -- notion of legality in the Ada reference manual.
1561 -- Any unit can be compiled in semantics-checking-only mode, including
1562 -- units that would not normally be compiled (generic library units,
1563 -- subunits, and specifications where a separate body is present).
1565 S_GCC_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
1566 "-nostdinc";
1567 -- /NOSTD_INCLUDES
1569 -- Do not look in the default directory for source files of the runtime.
1571 S_GCC_Nostlib : aliased constant S := "/NOSTD_LIBRARIES " &
1572 "-nostdlib";
1573 -- /NOSTD_LIBRARIES
1575 -- Do not look for library files in the system default directory.
1577 S_GCC_Opt : aliased constant S := "/OPTIMIZE=" &
1578 "ALL " &
1579 "-O2,!-O0,!-O1,!-O3 " &
1580 "NONE " &
1581 "-O0,!-O1,!-O2,!-O3 " &
1582 "SOME " &
1583 "-O1,!-O0,!-O2,!-O3 " &
1584 "DEVELOPMENT " &
1585 "-O1,!-O0,!-O2,!-O3 " &
1586 "UNROLL_LOOPS " &
1587 "-funroll-loops " &
1588 "NO_STRICT_ALIASING " &
1589 "-fno-strict-aliasing " &
1590 "INLINING " &
1591 "-O3,!-O0,!-O1,!-O2";
1592 -- /NOOPTIMIZE (D)
1593 -- /OPTIMIZE[=(keyword[,...])]
1595 -- Selects the level of optimization for your program. The supported
1596 -- keywords are as follows:
1598 -- ALL (D) Perform most optimizations, including those that
1599 -- may be expensive.
1601 -- NONE Do not do any optimizations. Same as /NOOPTIMIZE.
1603 -- SOME Perform some optimizations, but omit ones that
1604 -- are costly in compilation time.
1606 -- DEVELOPMENT Same as SOME.
1608 -- INLINING Full optimization, and also attempt automatic inlining
1609 -- of small subprograms within a unit
1611 -- UNROLL_LOOPS Try to unroll loops. This keyword may be specified
1612 -- with any keyword above other than NONE. Loop
1613 -- unrolling usually, but not always, improves the
1614 -- performance of programs.
1616 -- NO_STRICT_ALIASING
1617 -- Suppress aliasing analysis. When optimization is
1618 -- enabled (ALL or SOME above), the compiler assumes
1619 -- that pointers do in fact point to legitimate values
1620 -- of the pointer type (allocated from the proper pool).
1621 -- If this assumption is violated, e.g. by the use of
1622 -- unchecked conversion, then it may be necessary to
1623 -- suppress this assumption using this keyword (which
1624 -- may be specified only in conjunction with any
1625 -- keyword above, other than NONE).
1627 S_GCC_OptX : aliased constant S := "/NOOPTIMIZE " &
1628 "-O0,!-O1,!-O2,!-O3";
1629 -- NODOC (see /OPTIMIZE)
1631 S_GCC_Polling : aliased constant S := "/POLLING " &
1632 "-gnatP";
1633 -- /NOPOLLING (D)
1634 -- /POLLING
1636 -- Enable polling. See the description of pragma Polling in the GNAT
1637 -- Reference Manual for full details.
1639 S_GCC_Project : aliased constant S := "/PROJECT_FILE=<" &
1640 "-P>";
1641 -- /PROJECT_FILE=filename
1643 -- Specifies the main project file to be used. The project files rooted
1644 -- at the main project file will be parsed before the invocation of the
1645 -- compiler. The source and object directories to be searched will be
1646 -- communicated to the compiler through logical names
1647 -- ADA_PRJ_INCLUDE_FILE and ADA_PRJ_OBJECTS_FILE.
1649 S_GCC_Psta : aliased constant S := "/PRINT_STANDARD " &
1650 "-gnatS";
1651 -- /PRINT_STANDARD
1653 -- cause the compiler to output a representation of package Standard
1654 -- in a form very close to standard Ada. It is not quite possible to
1655 -- do this and remain entirely Standard (since new numeric base types
1656 -- cannot be created in standard Ada), but the output is easily
1657 -- readable to any Ada programmer, and is useful to determine the
1658 -- characteristics of target dependent types in package Standard.
1660 S_GCC_Report : aliased constant S := "/REPORT_ERRORS=" &
1661 "VERBOSE " &
1662 "-gnatv " &
1663 "BRIEF " &
1664 "-gnatb " &
1665 "FULL " &
1666 "-gnatf " &
1667 "IMMEDIATE " &
1668 "-gnatdO " &
1669 "DEFAULT " &
1670 "!-gnatb,!-gnatv";
1671 -- /NOREPORT_ERRORS (D)
1672 -- /REPORT_ERRORS[=(keyword[,...])]
1674 -- Change the way errors are reported. The following keywords are
1675 -- supported:
1677 -- VERBOSE (D) Verbose mode. Full error output with source lines
1678 -- to SYS$OUTPUT.
1680 -- BRIEF Generate the brief format error messages to
1681 -- SYS$OUTPUT as well as the verbose format message or
1682 -- full listing.
1684 -- FULL Normally, the compiler suppresses error messages that
1685 -- are likely to be redundant. This keyword causes all
1686 -- error messages to be generated. One particular effect
1687 -- is for the case of references to undefined variables.
1688 -- If a given variable is referenced several times, the
1689 -- normal format of messages produces one error. With
1690 -- FULL, each undefined reference produces a separate
1691 -- error message.
1693 -- IMMEDIATE Normally, the compiler saves up error messages and
1694 -- generates them at the end of compilation in proper
1695 -- sequence. This keyword causes error messages to be
1696 -- generated as soon as they are detected. The use of
1697 -- IMMEDIATE usually causes error messages to be
1698 -- generated out of sequence. Use it when the compiler
1699 -- blows up due to an internal error. In this case, the
1700 -- error messages may be lost. Sometimes blowups are
1701 -- the result of mishandled error messages, so you may
1702 -- want to run with this keyword to determine whether
1703 -- any error messages were generated.
1705 -- DEFAULT Turn off VERBOSE and BRIEF. Same as /NOREPORT_ERRORS.
1707 S_GCC_ReportX : aliased constant S := "/NOREPORT_ERRORS " &
1708 "!-gnatb,!-gnatv";
1709 -- NODOC (see /REPORT_ERRORS)
1711 S_GCC_Repinfo : aliased constant S := "/REPRESENTATION_INFO=" &
1712 "DEFAULT " &
1713 "-gnatR " &
1714 "NONE " &
1715 "-gnatR0 " &
1716 "ARRAYS " &
1717 "-gnatR1 " &
1718 "ARRAYS_FILE " &
1719 "-gnatR1s " &
1720 "OBJECTS " &
1721 "-gnatR2 " &
1722 "OBJECTS_FILE " &
1723 "-gnatR2s " &
1724 "SYMBOLIC " &
1725 "-gnatR3 " &
1726 "SYMBOLIC_FILE " &
1727 "-gnatR3s";
1728 -- /NOREPRESENTATION_INFO (D)
1729 -- /REPRESENTATION_INFO[=(keyword[,...])]
1731 -- This qualifier controls output from the compiler of a listing showing
1732 -- representation information for declared types and objects.
1734 -- ARRAYS (D) Size and alignment information is listed for
1735 -- declared array and record types.
1737 -- ARRAYS_FILE Similar to ARRAYS, but the output is to a file
1738 -- with the name 'file_rep' where 'file' is the name
1739 -- of the corresponding source file.
1741 -- NONE no information is output (equivalent to omitting
1742 -- the /REPRESENTATION_INFO qualifiers).
1744 -- OBJECTS Size and alignment information is listed for all
1745 -- declared types and objects.
1747 -- OBJECTS_FILE Similar to OBJECTS, but the output is to a file
1748 -- with the name 'file_rep' where 'file' is the name
1749 -- of the corresponding source file.
1751 -- SYMBOLIC Symbolic expression information for values that
1752 -- are computed at run time for variant records.
1754 -- SYMBOLIC_FILE Similar to SYMBOLIC, but the output is to a file
1755 -- with the name 'file_rep' where 'file' is the name
1756 -- of the corresponding source file.
1758 -- DEFAULT Equivalent to ARRAYS.
1760 S_GCC_RepinfX : aliased constant S := "/NOREPRESENTATION_INFO " &
1761 "!-gnatR";
1762 -- NODOC (see /REPRESENTATION_INFO)
1764 S_GCC_RTS : aliased constant S := "/RUNTIME_SYSTEM=|" &
1765 "--RTS=|";
1766 -- /RUNTIME_SYSTEM=xxx
1768 -- Build against an alternate runtime system named xxx or RTS-xxx.
1770 S_GCC_Search : aliased constant S := "/SEARCH=*" &
1771 "-I*";
1772 -- /SEARCH=(directory[,...])
1774 -- When looking for source files also look in directories specified.
1776 S_GCC_Style : aliased constant S := "/STYLE_CHECKS=" &
1777 "ALL_BUILTIN " &
1778 "-gnaty " &
1779 "1 " &
1780 "-gnaty1 " &
1781 "2 " &
1782 "-gnaty2 " &
1783 "3 " &
1784 "-gnaty3 " &
1785 "4 " &
1786 "-gnaty4 " &
1787 "5 " &
1788 "-gnaty5 " &
1789 "6 " &
1790 "-gnaty6 " &
1791 "7 " &
1792 "-gnaty7 " &
1793 "8 " &
1794 "-gnaty8 " &
1795 "9 " &
1796 "-gnaty9 " &
1797 "ATTRIBUTE " &
1798 "-gnatya " &
1799 "BLANKS " &
1800 "-gnatyb " &
1801 "COMMENTS " &
1802 "-gnatyc " &
1803 "NOCRLF" &
1804 "-gnatyd " &
1805 "END " &
1806 "-gnatye " &
1807 "VTABS " &
1808 "-gnatyf " &
1809 "GNAT " &
1810 "-gnatg " &
1811 "HTABS " &
1812 "-gnatyh " &
1813 "IF_THEN " &
1814 "-gnatyi " &
1815 "KEYWORD " &
1816 "-gnatyk " &
1817 "LAYOUT " &
1818 "-gnatyl " &
1819 "LINE_LENGTH " &
1820 "-gnatym " &
1821 "NONE " &
1822 "-gnatyN " &
1823 "STANDARD_CASING " &
1824 "-gnatyn " &
1825 "ORDERED_SUBPROGRAMS " &
1826 "-gnatyo " &
1827 "NONE " &
1828 "!-gnatg,!-gnaty* " &
1829 "PRAGMA " &
1830 "-gnatyp " &
1831 "REFERENCES " &
1832 "-gnatyr " &
1833 "SPECS " &
1834 "-gnatys " &
1835 "TOKEN " &
1836 "-gnatyt " &
1837 "XTRA_PARENS " &
1838 "-gnatyx ";
1839 -- /NOSTYLE_CHECKS (D)
1840 -- /STYLE_CHECKS[=(keyword,[...])]
1842 -- Normally, GNAT permits any code layout consistent with the reference
1843 -- manual requirements. This qualifier imposes style checking on the
1844 -- input source code. The following keywords are supported:
1846 -- ALL_BUILTIN (D) Equivalent to the following list of options:
1847 -- 3, ATTRIBUTE, BLANKS, COMMENTS, END, VTABS,
1848 -- HTABS, IF_THEN, KEYWORD, LAYOUT, LINE_LENGTH,
1849 -- PRAGMA, REFERENCES, SPECS, TOKEN.
1851 -- 1 .. 9 Specify indentation level from 1 to 9.
1852 -- The general style of required indentation is as
1853 -- specified by the examples in the Ada Reference
1854 -- Manual. Full line comments must be aligned with
1855 -- the -- starting on a column that is a multiple
1856 -- of the alignment level.
1858 -- ATTRIBUTE Check attribute casing.
1859 -- Attribute names, including the case of keywords
1860 -- such as digits used as attributes names,
1861 -- must be written in mixed case, that is,
1862 -- the initial letter and any letter following an
1863 -- underscore must be uppercase.
1864 -- All other letters must be lowercase.
1866 -- BLANKS Blanks not allowed at statement end.
1867 -- Trailing blanks are not allowed at the end of
1868 -- statements. The purpose of this rule, together
1869 -- with option HTABS (no horizontal tabs), is to
1870 -- enforce a canonical format for the use of
1871 -- blanks to separate source tokens.
1873 -- COMMENTS Check comments.
1874 -- Comments must meet the following set of rules:
1876 -- * The "--" that starts the column must either
1877 -- start in column one, or else at least one
1878 -- blank must precede this sequence.
1880 -- * Comments that follow other tokens on a line
1881 -- must have at least one blank following the
1882 -- "--" at the start of the comment.
1884 -- * Full line comments must have two blanks
1885 -- following the "--" that starts the comment,
1886 -- with the following exceptions.
1888 -- * A line consisting only of the "--"
1889 -- characters, possibly preceded by blanks is
1890 -- permitted.
1892 -- * A comment starting with "--x" where x is
1893 -- a special character is permitted. This
1894 -- allows proper processing of the output
1895 -- generated by specialized tools including
1896 -- gnatprep (where --! is used) and the SPARK
1897 -- annnotation language (where --# is used).
1898 -- For the purposes of this rule, a special
1899 -- character is defined as being in one of the
1900 -- ASCII ranges 16#21#..16#2F# or
1901 -- 16#3A#..16#3F#.
1903 -- * A line consisting entirely of minus signs,
1904 -- possibly preceded by blanks, is permitted.
1905 -- This allows the construction of box
1906 -- comments where lines of minus signs are
1907 -- used to form the top and bottom of the box.
1909 -- * If a comment starts and ends with "--" is
1910 -- permitted as long as at least one blank
1911 -- follows the initial "--". Together with
1912 -- the preceding rule, this allows the
1913 -- construction of box comments, as shown in
1914 -- the following example:
1916 -- ---------------------------
1917 -- -- This is a box comment --
1918 -- ---------------------------
1920 -- END Check end/exit labels.
1921 -- Optional labels on end statements ending
1922 -- subprograms and on exit statements exiting
1923 -- named loops, are required to be present.
1925 -- GNAT Enforces a set of style conventions that
1926 -- correspond to the style used in the GNAT
1927 -- source code. All compiler units are always
1928 -- compile with this keyword specified.
1930 -- You can find the full documentation for the
1931 -- style conventions imposed by this keyword
1932 -- in the body of the package "Style" in the
1933 -- compiler sources.
1935 -- You should not normally use this keyword.
1936 -- However, you MUST use it for compiling any
1937 -- language-defined unit, or for adding children
1938 -- to any language-defined unit other than
1939 -- "Standard".
1941 -- HTABS No horizontal tabs.
1942 -- Horizontal tab characters are not permitted in
1943 -- the source text. Together with the BLANKS
1944 -- (no blanks at end of line) option, this
1945 -- enforces a canonical form for the use of blanks
1946 -- to separate source tokens.
1948 -- IF_THEN Check if-then layout.
1949 -- The keyword then must appear either on the
1950 -- same line as the corresponding if, or on a line
1951 -- on its own, lined up under the if with at least
1952 -- one non-blank line in between containing all or
1953 -- part of the condition to be tested.
1955 -- KEYWORD Check keyword casing.
1956 -- All keywords must be in lower case (with the
1957 -- exception of keywords such as digits used as
1958 -- attribute names to which this check does not
1959 -- apply).
1961 -- LAYOUT Check layout.
1962 -- Layout of statement and declaration constructs
1963 -- must follow the recommendations in the Ada
1964 -- Reference Manual, as indicated by the form of
1965 -- the syntax rules. For example an else keyword
1966 -- must be lined up with the corresponding if
1967 -- keyword.
1969 -- There are two respects in which the style rule
1970 -- enforced by this check option are more liberal
1971 -- than those in the Ada Reference Manual.
1972 -- First in the case of record declarations,
1973 -- it is permissible to put the record keyword on
1974 -- the same line as the type keyword, and then
1975 -- the end in end record must line up under type.
1976 -- For example, either of the following two
1977 -- layouts is acceptable:
1979 -- type q is record
1980 -- a : integer;
1981 -- b : integer;
1982 -- end record;
1984 -- type q is
1985 -- record
1986 -- a : integer;
1987 -- b : integer;
1988 -- end record;
1990 -- Second, in the case of a block statement,
1991 -- a permitted alternative is to put the block
1992 -- label on the same line as the declare or begin
1993 -- keyword, and then line the end keyword up under
1994 -- the block label. For example both the following
1995 -- are permitted:
1999 -- Block : declare
2000 -- A : Integer := 3;
2001 -- begin
2002 -- Proc (A, A);
2003 -- end Block;
2005 -- Block :
2006 -- declare
2007 -- A : Integer := 3;
2008 -- begin
2009 -- Proc (A, A);
2010 -- end Block;
2012 -- The same alternative format is allowed for
2013 -- loops. For example, both of the following are
2014 -- permitted:
2018 -- Clear : while J < 10 loop
2019 -- A (J) := 0;
2020 -- end loop Clear;
2022 -- Clear :
2023 -- while J < 10 loop
2024 -- A (J) := 0;
2025 -- end loop Clear;
2029 -- LINE_LENGTH Check maximum line length.
2030 -- The length of source lines must not exceed 79
2031 -- characters, including any trailing blanks
2032 -- The value of 79 allows convenient display on
2033 -- an 80 character wide device or window, allowing
2034 -- for possible special treatment of 80 character
2035 -- lines.
2037 -- NONE Clear any previously set style checks.
2039 -- ORDERED_SUBPROGRAMS Check order of subprogram bodies.
2040 -- All subprogram bodies in a given scope (e.g.
2041 -- a package body) must be in alphabetical order.
2042 -- The ordering rule uses normal Ada rules for
2043 -- comparing strings, ignoring casing of letters,
2044 -- except that if there is a trailing numeric
2045 -- suffix, then the value of this suffix is used
2046 -- in the ordering (e.g. Junk2 comes before
2047 -- Junk10).
2049 -- NONE The default behavior. Same as /NOSTYLE_CHECKS.
2051 -- PRAGMA Check pragma casing.
2052 -- Pragma names must be written in mixed case,
2053 -- that is, the initial letter and any letter
2054 -- following an underscore must be uppercase.
2055 -- All other letters must be lowercase.
2057 -- REFERENCES Check references.
2058 -- All identifier references must be cased in the
2059 -- same way as the corresponding declaration.
2060 -- No specific casing style is imposed on
2061 -- identifiers. The only requirement is for
2062 -- consistency of references with declarations.
2064 -- RM_COLUMN_LAYOUT Enforce the layout conventions suggested by
2065 -- the examples and syntax rules of the Ada
2066 -- Language Reference Manual. For example, an
2067 -- "else" must line up with an "if" and code in
2068 -- the "then" and "else" parts must be indented.
2069 -- The compiler considers violations of the
2070 -- layout rules a syntax error if you specify
2071 -- this keyword.
2073 -- SPECS Check separate specs.
2074 -- Separate declarations ("specs") are required
2075 -- for subprograms (a body is not allowed to serve
2076 -- as its own declaration). The only exception is
2077 -- that parameterless library level procedures are
2078 -- not required to have a separate declaration.
2079 -- This exception covers the most frequent form of
2080 -- main program procedures.
2082 -- STANDARD_CASING Check casing of entities in Standard.
2083 -- Any identifier from Standard must be cased to
2084 -- match the presentation in the Ada Reference
2085 -- Manual (for example, Integer and ASCII.NUL).
2087 -- TOKEN Check token spacing.
2088 -- The following token spacing rules are enforced:
2090 -- * The keywords abs and not must be followed
2091 -- by a space.
2093 -- * The token => must be surrounded by spaces.
2095 -- * The token <> must be preceded by a space or
2096 -- a left parenthesis.
2098 -- * Binary operators other than ** must be
2099 -- surrounded by spaces. There is no
2100 -- restriction on the layout of the ** binary
2101 -- operator.
2103 -- * Colon must be surrounded by spaces.
2105 -- * Colon-equal (assignment) must be surrounded
2106 -- by spaces.
2108 -- * Comma must be the first non-blank character
2109 -- on the line, or be immediately preceded by
2110 -- a non-blank character, and must be followed
2111 -- by a space.
2113 -- * If the token preceding a left paren ends
2114 -- with a letter or digit, then a space must
2115 -- separate the two tokens.
2117 -- * A right parenthesis must either be the
2118 -- first non-blank character on a line, or it
2119 -- must be preceded by a non-blank character.
2121 -- * A semicolon must not be preceded by
2122 -- a space, and must not be followed by
2123 -- a non-blank character.
2125 -- * A unary plus or minus may not be followed
2126 -- by a space.
2128 -- * A vertical bar must be surrounded by
2129 -- spaces.
2131 -- In the above rules, appearing in column one is
2132 -- always permitted, that is, counts as meeting
2133 -- either a requirement for a required preceding
2134 -- space, or as meeting a requirement for no
2135 -- preceding space.
2137 -- Appearing at the end of a line is also always
2138 -- permitted, that is, counts as meeting either
2139 -- a requirement for a following space,
2140 -- or as meeting a requirement for no following
2141 -- space.
2143 -- VTABS No form feeds or vertical tabs.
2144 -- Form feeds or vertical tab characters are not
2145 -- permitted in the source text.
2147 S_GCC_StyleX : aliased constant S := "/NOSTYLE_CHECKS " &
2148 "!-gnatg,!-gnaty*";
2149 -- NODOC (see /STYLE_CHECKS)
2151 S_GCC_Symbol : aliased constant S := "/SYMBOL_PREPROCESSING=" & '"' &
2152 "-gnateD" & '"';
2153 -- /SYMBOL_PREPROCESSING="symbol=value"
2155 -- Define or redefine a preprocessing symbol, associated with value.
2156 -- If "=value" is not specified, then the value of the symbol is True.
2157 -- A symbol is an identifier, following normal Ada (case-insensitive)
2158 -- rules for its syntax, and value is any sequence (including an empty
2159 -- sequence) of characters from the set (letters, digits, period,
2160 -- underline). Ada reserved words may be used as symbols, with the
2161 -- exceptions of "if", "else", "elsif", "end", "and", "or" and "then".
2163 -- A symbol declared with this qualifier on the command line replaces
2164 -- a symbol with the same name either in a definition file or specified
2165 -- with a switch -D in the preprocessor data file.
2167 -- This qualifier is similar to qualifier /ASSOCIATE of
2168 -- GNAT PREPROCESSING.
2170 S_GCC_Syntax : aliased constant S := "/SYNTAX_ONLY " &
2171 "-gnats";
2172 -- /NOSYNTAX_ONLY (D)
2173 -- /SYNTAX_ONLY
2175 -- Run GNAT in syntax checking only mode. You can check a series of
2176 -- files in a single command, and can use wild cards to specify such a
2177 -- group of files.
2179 -- You may use other qualifiers in conjunction with this qualifier. In
2180 -- particular, /LIST and /REPORT_ERRORS=VERBOSE are useful to control the
2181 -- format of any generated error messages.
2183 -- The output is simply the error messages, if any. No object file or ALI
2184 -- file is generated by a syntax-only compilation. Also, no units other
2185 -- than the one specified are accessed. For example, if a unit "X" with's
2186 -- a unit "Y", compiling unit "X" in syntax check only mode does not
2187 -- access the source file containing unit "Y".
2189 -- Normally, GNAT allows only a single unit in a source file. However,
2190 -- this restriction does not apply in syntax-check-only mode, and it is
2191 -- possible to check a file containing multiple compilation units
2192 -- concatenated together. This is primarily used by the GNAT CHOP
2193 -- command.
2195 S_GCC_Table : aliased constant S := "/TABLE_MULTIPLIER=#" &
2196 "-gnatT#";
2197 -- /TABLE_MULTIPLIER=nnn
2199 -- All compiler tables start at nnn times usual starting size.
2201 S_GCC_Trace : aliased constant S := "/TRACE_UNITS " &
2202 "-gnatdc";
2203 -- /TRACE_UNITS
2204 -- /NOTRACE_UNITS
2206 -- This switch that does for the frontend what /VERBOSE does for the
2207 -- backend. The system prints the name of each unit, either a compilation
2208 -- unit or nested unit, as it is being analyzed.
2210 S_GCC_Tree : aliased constant S := "/TREE_OUTPUT " &
2211 "-gnatt";
2212 -- /TREE_OUTPUT
2213 -- /NOTREE_OUTPUT
2215 -- Cause GNAT to write the internal tree for a unit to a file (with the
2216 -- filetype ATB for a body or ATS for a spec). This is not normally
2217 -- required, but is used by separate analysis tools. Typically these
2218 -- tools do the necessary compilations automatically, so you should never
2219 -- have to specify this switch in normal operation.
2221 S_GCC_Trys : aliased constant S := "/TRY_SEMANTICS " &
2222 "-gnatq";
2223 -- /TRY_SEMANTICS
2224 -- /NOTRY_SEMANTICS
2226 -- In normal operation mode the compiler first parses the program and
2227 -- determines if there are any syntax errors. If there are, appropriate
2228 -- error messages are generated and compilation is immediately
2229 -- terminated. This qualifier tells GNAT to continue with semantic
2230 -- analysis even if syntax errors have been found. This may enable the
2231 -- detection of more errors in a single run. On the other hand, the
2232 -- semantic analyzer is more likely to encounter some internal fatal
2233 -- error when given a syntactically invalid tree.
2235 S_GCC_Units : aliased constant S := "/UNITS_LIST " &
2236 "-gnatu";
2237 -- /NOUNITS_LIST (D)
2238 -- /UNITS_LIST
2240 -- Print a list of units required by this compilation on SYS$OUTPUT. The
2241 -- listing includes all units on which the unit being compiled depends
2242 -- either directly or indirectly.
2244 S_GCC_Unique : aliased constant S := "/UNIQUE_ERROR_TAG " &
2245 "-gnatU";
2246 -- /NOUNIQUE_ERROR_TAG (D)
2247 -- /UNIQUE_ERROR_TAG
2249 -- Tag compiler error messages with the string "error: ".
2251 S_GCC_Upcase : aliased constant S := "/UPPERCASE_EXTERNALS " &
2252 "-gnatF";
2253 -- /NOUPPERCASE_EXTERNALS (D)
2254 -- /UPPERCASE_EXTERNALS
2256 -- Fold default and explicit external names in pragmas Import and Export
2257 -- to uppercase for compatibility with the default behavior of DEC C.
2259 S_GCC_Valid : aliased constant S := "/VALIDITY_CHECKING=" &
2260 "DEFAULT " &
2261 "-gnatVd " &
2262 "NODEFAULT " &
2263 "-gnatVD " &
2264 "COPIES " &
2265 "-gnatVc " &
2266 "NOCOPIES " &
2267 "-gnatVC " &
2268 "FLOATS " &
2269 "-gnatVf " &
2270 "NOFLOATS " &
2271 "-gnatVF " &
2272 "IN_PARAMS " &
2273 "-gnatVi " &
2274 "NOIN_PARAMS " &
2275 "-gnatVI " &
2276 "MOD_PARAMS " &
2277 "-gnatVm " &
2278 "NOMOD_PARAMS " &
2279 "-gnatVM " &
2280 "OPERANDS " &
2281 "-gnatVo " &
2282 "NOOPERANDS " &
2283 "-gnatVO " &
2284 "PARAMETERS " &
2285 "-gnatVp " &
2286 "NOPARAMETERS " &
2287 "-gnatVP " &
2288 "RETURNS " &
2289 "-gnatVr " &
2290 "NORETURNS " &
2291 "-gnatVR " &
2292 "SUBSCRIPTS " &
2293 "-gnatVs " &
2294 "NOSUBSCRIPTS " &
2295 "-gnatVS " &
2296 "TESTS " &
2297 "-gnatVt " &
2298 "NOTESTS " &
2299 "-gnatVT " &
2300 "ALL " &
2301 "-gnatVa " &
2302 "NONE " &
2303 "-gnatVn";
2304 -- /VALIDITY_CHECKING[=(keyword,[...])]
2306 -- Control level of validity checking.
2308 -- DEFAULT (D) In this mode checks are made to prevent
2309 -- erroneous behavior in accordance with the RM.
2310 -- Notably extra checks may be needed for case
2311 -- statements and subscripted array assignments.
2313 -- NONE No special checks for invalid values are
2314 -- performed. This means that references to
2315 -- uninitialized variables can cause erroneous
2316 -- behavior from constructs like case statements
2317 -- and subscripted array assignments. In this
2318 -- mode, invalid values can lead to erroneous
2319 -- behavior.
2321 -- FULL Every assignment is checked for validity, so
2322 -- that it is impossible to assign invalid values.
2323 -- The RM specifically allows such assignments,
2324 -- but in this mode, invalid values can never be
2325 -- assigned, and an attempt to perform such an
2326 -- assignment immediately raises Constraint_Error.
2327 -- This behavior is allowed (but not required) by
2328 -- the RM. This mode is intended as a debugging aid,
2329 -- and may be useful in helping to track down
2330 -- uninitialized variables. It may be useful to
2331 -- use this in conjunction with the Normalize_Scalars
2332 -- pragma which attempts to initialize with invalid
2333 -- values where possible.
2335 S_GCC_Verbose : aliased constant S := "/VERBOSE " &
2336 "-v";
2337 -- /VERBOSE
2338 -- /NOVERBOSE
2340 -- Show commands generated by the GCC driver. Normally used only for
2341 -- debugging purposes or if you need to be sure what version of the
2342 -- compiler you are executing.
2344 S_GCC_Verb_Asm : aliased constant S := "/VERBOSE_ASM " &
2345 "-S,-verbose_asm,!-c";
2346 -- /NOASM (D)
2347 -- /ASM
2349 -- Use to cause the assembler source file to be generated, using S as the
2350 -- filetype, instead of the object file. This may be useful if you need
2351 -- to examine the generated assembly code.
2353 S_GCC_Warn : aliased constant S := "/WARNINGS=" &
2354 "DEFAULT " &
2355 "!-gnatws,!-gnatwe " &
2356 "ALL " &
2357 "-gnatwa " &
2358 "NOALL " &
2359 "-gnatwA " &
2360 "ALL_GCC " &
2361 "-Wall " &
2362 "BAD_FIXED_VALUES " &
2363 "-gnatwb " &
2364 "NO_BAD_FIXED_VALUES " &
2365 "-gnatwB " &
2366 "CONDITIONALS " &
2367 "-gnatwc " &
2368 "NOCONDITIONALS " &
2369 "-gnatwC " &
2370 "CONSTANT_VARIABLES " &
2371 "-gnatwk " &
2372 "NOCONSTANT_VARIABLES " &
2373 "-gnatwK " &
2374 "IMPLICIT_DEREFERENCE " &
2375 "-gnatwd " &
2376 "NO_IMPLICIT_DEREFERENCE " &
2377 "-gnatwD " &
2378 "ELABORATION " &
2379 "-gnatwl " &
2380 "NOELABORATION " &
2381 "-gnatwL " &
2382 "ERRORS " &
2383 "-gnatwe " &
2384 "HIDING " &
2385 "-gnatwh " &
2386 "NOHIDING " &
2387 "-gnatwH " &
2388 "IMPLEMENTATION " &
2389 "-gnatwi " &
2390 "NOIMPLEMENTATION " &
2391 "-gnatwI " &
2392 "INEFFECTIVE_INLINE " &
2393 "-gnatwp " &
2394 "NOINEFFECTIVE_INLINE " &
2395 "-gnatwP " &
2396 "MODIFIED_UNREF " &
2397 "-gnatwm " &
2398 "NOMODIFIED_UNREF " &
2399 "-gnatwM " &
2400 "OPTIONAL " &
2401 "-gnatwa " &
2402 "NOOPTIONAL " &
2403 "-gnatwA " &
2404 "NORMAL " &
2405 "-gnatwn " &
2406 "OBSOLESCENT " &
2407 "-gnatwj " &
2408 "NOOBSOLESCENT " &
2409 "-gnatwJ " &
2410 "OVERLAYS " &
2411 "-gnatwo " &
2412 "NOOVERLAYS " &
2413 "-gnatwO " &
2414 "REDUNDANT " &
2415 "-gnatwr " &
2416 "NOREDUNDANT " &
2417 "-gnatwR " &
2418 "SUPPRESS " &
2419 "-gnatws " &
2420 "UNINITIALIZED " &
2421 "-Wuninitialized " &
2422 "UNREFERENCED_FORMALS " &
2423 "-gnatwf " &
2424 "NOUNREFERENCED_FORMALS " &
2425 "-gnatwF " &
2426 "UNRECOGNIZED_PRAGMAS " &
2427 "-gnatwg " &
2428 "NOUNRECOGNIZED_PRAGMAS " &
2429 "-gnatwG " &
2430 "UNUSED " &
2431 "-gnatwu " &
2432 "NOUNUSED " &
2433 "-gnatwU " &
2434 "VARIABLES_UNINITIALIZED " &
2435 "-gnatwv " &
2436 "NOVARIABLES_UNINITIALIZED " &
2437 "-gnatwV " &
2438 "IMPORT_EXPORT_PRAGMAS " &
2439 "-gnatwx " &
2440 "NOIMPORT_EXPORT_PRAGMAS " &
2441 "-gnatwX " &
2442 "UNCHECKED_CONVERSIONS " &
2443 "-gnatwz " &
2444 "NOUNCHECKED_CONVERSIONS " &
2445 "-gnatwZ";
2446 -- /NOWARNINGS
2448 -- Suppress the output of all warning messages from the GNAT front end.
2449 -- Note that it does not suppress warnings from the gcc back end.
2451 -- /WARNINGS[=(keyword[,...])]
2453 -- In addition to error messages, corresponding to illegalities as
2454 -- defined in the reference manual, the compiler detects two kinds of
2455 -- warning situations. First, the compiler considers some constructs
2456 -- suspicious and generates a warning message to alert you to a possible
2457 -- error. Second, if the compiler detects a situation that is sure to
2458 -- raise an exception at runtime, it generates a warning message.
2460 -- You may specify the following keywords to change this behavior:
2462 -- DEFAULT (D) The default behavior above.
2464 -- ALL Activate all optional warnings.
2465 -- Activates most optional warning messages,
2466 -- see remaining list in this section for
2467 -- details on optional warning messages that
2468 -- can be individually controlled.
2469 -- The warnings that are not turned on by
2470 -- this option are BIASED_ROUNDING,
2471 -- IMPLICIT_DEREFERENCE, HIDING and
2472 -- ELABORATION. All other optional Ada
2473 -- warnings are turned on.
2475 -- NOALL Suppress all optional errors.
2476 -- Suppresses all optional warning messages
2477 -- that can be activated by option ALL.
2479 -- ALL_GCC Request additional messages from the GCC
2480 -- backend. Most of these are not relevant
2481 -- to Ada.
2483 -- CONDITIONALS Activate warnings for conditional
2484 -- Expressions used in tests that are known
2485 -- to be True or False at compile time. The
2486 -- default is that such warnings are not
2487 -- generated.
2489 -- NOCONDITIONALS Suppress warnings for conditional
2490 -- expressions used in tests that are known
2491 -- to be True or False at compile time.
2493 -- IMPLICIT_DEREFERENCE Activate warnings on implicit dereferencing.
2494 -- The use of a prefix of an access type in an
2495 -- indexed component, slice, or selected component
2496 -- without an explicit .all will generate
2497 -- a warning. With this warning enabled, access
2498 -- checks occur only at points where an explicit
2499 -- .all appears in the source code (assuming no
2500 -- warnings are generated as a result of this
2501 -- option). The default is that such warnings are
2502 -- not generated. Note that /WARNINGS=ALL does not
2503 -- affect the setting of this warning option.
2505 -- NOIMPLICIT_DEREFERENCE Suppress warnings on implicit dereferencing.
2506 -- in indexed components, slices, and selected
2507 -- components.
2509 -- ELABORATION Activate warnings on missing pragma
2510 -- Elaborate_All statements. The default is
2511 -- that such warnings are not generated.
2513 -- NOELABORATION Suppress warnings on missing pragma
2514 -- Elaborate_All statements.
2516 -- ERRORS Warning messages are to be treated as errors.
2517 -- The warning string still appears, but the
2518 -- warning messages are counted as errors, and
2519 -- prevent the generation of an object file.
2521 -- HIDING Activate warnings on hiding declarations.
2522 -- A declaration is considered hiding if it is
2523 -- for a non-overloadable entity, and it declares
2524 -- an entity with the same name as some other
2525 -- entity that is directly or use-visible. The
2526 -- default is that such warnings are not
2527 -- generated.
2529 -- NOHIDING Suppress warnings on hiding declarations.
2531 -- IMPLEMENTATION Activate warnings for a with of an internal
2532 -- GNAT implementation unit, defined as any unit
2533 -- from the Ada, Interfaces, GNAT, DEC or
2534 -- System hierarchies that is not documented in
2535 -- either the Ada Reference Manual or the GNAT
2536 -- Programmer's Reference Manual. Such units are
2537 -- intended only for internal implementation
2538 -- purposes and should not be with'ed by user
2539 -- programs. The default is that such warnings
2540 -- are generated.
2542 -- NOIMPLEMENTATION Disables warnings for a with of an internal
2543 -- GNAT implementation unit.
2545 -- INEFFECTIVE_INLINE Activate warnings on ineffective pragma Inlines
2546 -- Activates warnings for failure of front end
2547 -- inlining (activated by /INLINE=FULL) to inline
2548 -- a particular call. There are many reasons for
2549 -- not being able to inline a call, including most
2550 -- commonly that the call is too complex to
2551 -- inline. This warning can also be turned on
2552 -- using /INLINE=FULL.
2554 -- NOINEFFECTIVE_INLINE Suppress warnings on ineffective pragma Inlines
2555 -- Suppresses warnings on ineffective pragma
2556 -- Inlines. If the inlining mechanism cannot
2557 -- inline a call, it will simply ignore the
2558 -- request silently.
2560 -- MODIFIED_UNREF Activates warnings for variables that are
2561 -- assigned (using an initialization value or with
2562 -- one or more assignment statements) but whose
2563 -- value is never read. The warning is suppressed
2564 -- for volatile variables and also for variables
2565 -- that are renamings of other variables or for
2566 -- which an address clause is given. This warning
2567 -- can also be turned on using /WARNINGS/OPTIONAL.
2569 -- NOMODIFIED_UNREF Disables warnings for variables that are
2570 -- assigned or initialized, but never read.
2572 -- NORMAL Sets normal warning mode, in which enabled
2573 -- warnings are issued and treated as warnings
2574 -- rather than errors. This is the default mode.
2575 -- It can be used to cancel the effect of an
2576 -- explicit /WARNINGS=SUPPRESS or
2577 -- /WARNINGS=ERRORS. It also cancels the effect
2578 -- of the implicit /WARNINGS=ERRORS that is
2579 -- activated by the use of /STYLE=GNAT.
2581 -- OBSOLESCENT Activates warnings for calls to subprograms
2582 -- marked with pragma Obsolescent and for use of
2583 -- features in Annex J of the Ada Reference
2584 -- Manual. In the case of Annex J, not all
2585 -- features are flagged. In particular use of the
2586 -- renamed packages (like Text_IO), use of package
2587 -- ASCII and use of the attribute 'Constrained are
2588 -- not flagged, since these are very common and
2589 -- would generate many annoying positive warnings.
2590 -- The default is that such warnings are not
2591 -- generated.
2593 -- NOOBSOLESCENT Disables warnings on use of obsolescent
2594 -- features.
2596 -- OPTIONAL Activate all optional warning messages.
2597 -- See other options under this qualifier
2598 -- for details on optional warning messages
2599 -- that can be individually controlled. The
2600 -- one exception is that /WARNINGS=OPTIONAL
2601 -- doesn't activate warnings for hiding
2602 -- variables (/WARNINGS=HIDING), so if this
2603 -- warning is required it must be explicitly
2604 -- set.
2606 -- NOOPTIONAL Suppress all optional warning messages.
2607 -- See other options under this qualifier
2608 -- for details on optional warning messages
2609 -- that can be individually controlled.
2611 -- OVERLAYS Activate warnings for possibly unintended
2612 -- initialization effects of defining address
2613 -- clauses that cause one variable to overlap
2614 -- another. The default is that such warnings
2615 -- are generated.
2617 -- NOOVERLAYS Suppress warnings on possibly unintended
2618 -- initialization effects of defining address
2619 -- clauses that cause one variable to overlap
2620 -- another.
2622 -- REDUNDANT Activate warnings for redundant constructs.
2623 -- In particular assignments of a variable to
2624 -- itself, and a type conversion that converts
2625 -- an object to its own type. The default
2626 -- is that such warnings are not generated.
2628 -- NOREDUNDANT Suppress warnings for redundant constructs.
2630 -- SUPPRESS Completely suppresse the output of all warning
2631 -- messages. Same as /NOWARNINGS.
2633 -- UNCHECKED_CONVERSIONS Activates warnings on unchecked conversions.
2634 -- Causes warnings to be generated for
2635 -- unchecked conversions when the two types are
2636 -- known at compile time to have different sizes.
2637 -- The default is that such warnings are
2638 -- generated.
2640 -- NOUNCHECKED_CONVERSIONS Suppress warnings for unchecked conversions.
2642 -- UNINITIALIZED Generate warnings for uninitialized variables.
2643 -- This is a GCC option, not an Ada option.
2644 -- You must also specify the /OPTIMIZE qualifier
2645 -- with a value other than NONE (in other words,
2646 -- this keyword works only if optimization is
2647 -- turned on).
2649 -- UNREFERENCED_FORMALS Activate warnings on unreferenced formals.
2650 -- Causes a warning to be generated if a formal
2651 -- parameter is not referenced in the body of
2652 -- the subprogram. This warning can also be turned
2653 -- on using option ALL or UNUSED.
2655 -- NOUNREFERENCED_FORMALS Suppress warnings on unreferenced formals.
2656 -- Suppresses warnings for unreferenced formal
2657 -- parameters. Note that the combination UNUSED
2658 -- followed by NOUNREFERENCED_FORMALS has the
2659 -- effect of warning on unreferenced entities
2660 -- other than subprogram formals.
2662 -- UNUSED Activates warnings to be generated for entities
2663 -- that are defined but not referenced, and for
2664 -- units that are with'ed and not referenced. In
2665 -- the case of packages, a warning is also
2666 -- generated if no entities in the package are
2667 -- referenced. This means that if the package
2668 -- is referenced but the only references are in
2669 -- use clauses or renames declarations, a warning
2670 -- is still generated. A warning is also generated
2671 -- for a generic package that is with'ed but never
2672 -- instantiated. In the case where a package or
2673 -- subprogram body is compiled, and there is a
2674 -- with on the corresponding spec that is only
2675 -- referenced in the body, a warning is also
2676 -- generated, noting that the with can be moved
2677 -- to the body. The default is that such warnings
2678 -- are not generated.
2680 -- NOUNUSED Suppress warnings for unused entities and
2681 -- packages.
2683 -- VARIABLES_UNINITIALIZED Activates warnings on unassigned variables.
2684 -- Causes warnings to be generated when a variable
2685 -- is accessed which may not be properly
2686 -- uninitialized.
2687 -- The default is that such warnings are
2688 -- generated.
2690 -- NOVARIABLES_UNINITIALIZED Suppress warnings for uninitialized
2691 -- variables.
2693 S_GCC_WarnX : aliased constant S := "/NOWARNINGS " &
2694 "-gnatws";
2695 -- NODOC (see /WARNINGS)
2697 S_GCC_No_Back : aliased constant S := "/NO_BACK_END_WARNINGS " &
2698 "-w";
2699 -- /NO_BACK_END_WARNINGS
2701 -- Inhibit all warning messages of the GCC back-end.
2703 S_GCC_Wide : aliased constant S := "/WIDE_CHARACTER_ENCODING=" &
2704 "BRACKETS " &
2705 "-gnatWb " &
2706 "NONE " &
2707 "-gnatWn " &
2708 "HEX " &
2709 "-gnatWh " &
2710 "UPPER " &
2711 "-gnatWu " &
2712 "SHIFT_JIS " &
2713 "-gnatWs " &
2714 "UTF8 " &
2715 "-gnatW8 " &
2716 "EUC " &
2717 "-gnatWe";
2718 -- /NOWIDE_CHARACTER_ENCODING (D)
2719 -- /WIDE_CHARACTER_ENCODING[=encode-type]
2721 -- Specifies the mechanism used to encode wide characters. 'encode-type'
2722 -- is one of the following:
2724 -- BRACKETS (D) A wide character is encoded as ["xxxx"] where XXXX
2725 -- are four hexadecimal digits representing the coding
2726 -- ('Pos value) of the character in type
2727 -- Wide_Character. The hexadecimal digits may use upper
2728 -- or lower case letters.
2730 -- This notation can also be used for upper half
2731 -- Character values using the format ["xx"] where XX is
2732 -- two hexadecimal digits representing the coding ('Pos
2733 -- value) of the character in type Character (or
2734 -- Wide_Character). The hexadecimal digits may use upper
2735 -- of lower case.
2737 -- NONE No wide characters are allowed. Same
2738 -- as /NOWIDE_CHARCTER_ENCODING.
2740 -- HEX In this encoding, a wide character is represented by
2741 -- the following five character sequence: ESC a b c d
2742 -- Where 'a', 'b', 'c', and 'd' are the four hexadecimal
2743 -- characters (using uppercase letters) of the wide
2744 -- character code. For example, ESC A345 is used to
2745 -- represent the wide character with code 16#A345#. This
2746 -- scheme is compatible with use of the full
2747 -- Wide_Character set.
2749 -- UPPER The wide character with encoding 16#abcd# where the
2750 -- upper bit is on (in other words, "a" is in the range
2751 -- 8-F) is represented as two bytes, 16#ab# and 16#cd#.
2752 -- The second byte may never be a format control
2753 -- character, but is not required to be in the upper
2754 -- half. This method can be also used for shift-JIS or
2755 -- EUC, where the internal coding matches the external
2756 -- coding.
2758 -- SHIFT_JIS A wide character is represented by a two-character
2759 -- sequence, 16#ab# and 16#cd#, with the restrictions
2760 -- described for upper-half encoding as described above.
2761 -- The internal character code is the corresponding JIS
2762 -- character according to the standard algorithm for
2763 -- Shift-JIS conversion. Only characters defined in the
2764 -- JIS code set table can be used with this encoding
2765 -- method.
2767 -- UTF8 A wide character is represented using
2768 -- UCS Transformation Format 8 (UTF-8) as defined in Annex
2769 -- R of ISO 10646-1/Am.2. Depending on the character
2770 -- value, the representation is a one, two, or three byte
2771 -- sequence:
2773 -- 16#0000#-16#007f#: 2#0xxxxxxx#
2774 -- 16#0080#-16#07ff#: 2#110xxxxx# 2#10xxxxxx#
2775 -- 16#0800#-16#ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx#
2777 -- where the xxx bits correspond to the left-padded bits
2778 -- of the the 16-bit character value. Note that all lower
2779 -- half ASCII characters are represented as ASCII bytes
2780 -- and all upper half characters and other wide characters
2781 -- are represented as sequences of upper-half (The full
2782 -- UTF-8 scheme allows for encoding 31-bit characters as
2783 -- 6-byte sequences, but in this implementation, all UTF-8
2784 -- sequences of four or more bytes length will be treated
2785 -- as illegal).
2787 -- EUC A wide character is represented by a two-character
2788 -- sequence 16#ab# and 16#cd#, with both characters being
2789 -- in the upper half. The internal character code is the
2790 -- corresponding JIS character according to the EUC
2791 -- encoding algorithm. Only characters defined in the JIS
2792 -- code set table can be used with this encoding method.
2794 S_GCC_WideX : aliased constant S := "/NOWIDE_CHARACTER_ENCODING " &
2795 "-gnatWn";
2796 -- NODOC (see /WIDE_CHARACTER_ENCODING)
2798 S_GCC_Xdebug : aliased constant S := "/XDEBUG " &
2799 "-gnatD";
2800 -- /NOXDEBUG (D)
2801 -- /XDEBUG
2803 -- Output expanded source files for source level debugging.
2804 -- The expanded source (see /EXPAND_SOURCE) is written to files
2805 -- with names formed by appending "_DG" to the input file name,
2806 -- The debugging information generated by the /DEBUG qualifier will then
2807 -- refer to the generated file. This allows source level debugging using
2808 -- the generated code which is sometimes useful for complex code, for
2809 -- example to find out exactly which part of a complex construction
2810 -- raised an exception.
2812 S_GCC_Xref : aliased constant S := "/XREF=" &
2813 "GENERATE " &
2814 "!-gnatx " &
2815 "SUPPRESS " &
2816 "-gnatx";
2817 -- /XREF[=keyword]
2819 -- Normally the compiler generates full cross-referencing information in
2820 -- the .ALI file. This information is used by a number of tools,
2821 -- including GNAT FIND and GNAT XREF.
2823 -- GENERATE (D) Generate cross-referencing information.
2825 -- SUPPRESS Suppress cross-referencing information.
2826 -- This saves some space and may slightly
2827 -- speed up compilation, but means that some
2828 -- tools cannot be used.
2830 S_GCC_Zero : aliased constant S := "/ZERO_COST_EXCEPTIONS " &
2831 "-gnatZ";
2832 -- /ZERO_COST_EXCEPTIONS
2833 -- /NOZERO_COST_EXCEPTIONS
2835 -- As zero-cost exceptions is the default on VMS, this qualifier has
2836 -- no effect, except that it cancels the effect of a previous
2837 -- /LONGJMP_SETJUMP qualifier.
2839 GCC_Switches : aliased constant Switches :=
2840 (S_GCC_Ada_83 'Access,
2841 S_GCC_Ada_95 'Access,
2842 S_GCC_Ada_05 'Access,
2843 S_GCC_Asm 'Access,
2844 S_GCC_Checks 'Access,
2845 S_GCC_ChecksX 'Access,
2846 S_GCC_Compres 'Access,
2847 S_GCC_Config 'Access,
2848 S_GCC_Current 'Access,
2849 S_GCC_Debug 'Access,
2850 S_GCC_DebugX 'Access,
2851 S_GCC_Data 'Access,
2852 S_GCC_Dist 'Access,
2853 S_GCC_DistX 'Access,
2854 S_GCC_Error 'Access,
2855 S_GCC_ErrorX 'Access,
2856 S_GCC_Expand 'Access,
2857 S_GCC_Extend 'Access,
2858 S_GCC_Ext 'Access,
2859 S_GCC_File 'Access,
2860 S_GCC_Force 'Access,
2861 S_GCC_Full 'Access,
2862 S_GCC_Help 'Access,
2863 S_GCC_Ident 'Access,
2864 S_GCC_IdentX 'Access,
2865 S_GCC_Immed 'Access,
2866 S_GCC_Inline 'Access,
2867 S_GCC_InlineX 'Access,
2868 S_GCC_Jumps 'Access,
2869 S_GCC_Length 'Access,
2870 S_GCC_List 'Access,
2871 S_GCC_Mapping 'Access,
2872 S_GCC_Mess 'Access,
2873 S_GCC_Nesting 'Access,
2874 S_GCC_Noadc 'Access,
2875 S_GCC_Noload 'Access,
2876 S_GCC_Nostinc 'Access,
2877 S_GCC_Nostlib 'Access,
2878 S_GCC_Opt 'Access,
2879 S_GCC_OptX 'Access,
2880 S_GCC_Polling 'Access,
2881 S_GCC_Project 'Access,
2882 S_GCC_Psta 'Access,
2883 S_GCC_Report 'Access,
2884 S_GCC_ReportX 'Access,
2885 S_GCC_Repinfo 'Access,
2886 S_GCC_RepinfX 'Access,
2887 S_GCC_RTS 'Access,
2888 S_GCC_Search 'Access,
2889 S_GCC_Style 'Access,
2890 S_GCC_StyleX 'Access,
2891 S_GCC_Symbol 'Access,
2892 S_GCC_Syntax 'Access,
2893 S_GCC_Table 'Access,
2894 S_GCC_Trace 'Access,
2895 S_GCC_Tree 'Access,
2896 S_GCC_Trys 'Access,
2897 S_GCC_Units 'Access,
2898 S_GCC_Unique 'Access,
2899 S_GCC_Upcase 'Access,
2900 S_GCC_Valid 'Access,
2901 S_GCC_Verbose 'Access,
2902 S_GCC_Verb_Asm'Access,
2903 S_GCC_Warn 'Access,
2904 S_GCC_WarnX 'Access,
2905 S_GCC_Wide 'Access,
2906 S_GCC_WideX 'Access,
2907 S_GCC_No_Back 'Access,
2908 S_GCC_Xdebug 'Access,
2909 S_GCC_Xref 'Access,
2910 S_GCC_Zero 'Access);
2912 ----------------------------
2913 -- Switches for GNAT ELIM --
2914 ----------------------------
2916 S_Elim_All : aliased constant S := "/ALL " &
2917 "-a";
2918 -- /NOALL (D)
2919 -- /ALL
2921 -- Also look for subprograms from the GNAT run time that can be
2922 -- eliminated. Note that when 'gnat.adc' is produced using this switch,
2923 -- the entire program must be recompiled with qualifier /ALL_FILES of
2924 -- GNAT MAKE.
2926 S_Elim_Bind : aliased constant S := "/BIND_FILE=<" &
2927 "-b>";
2928 -- /BIND_FILE=file_name
2930 -- Specifies file_name as the bind file to process. If this qualifier is
2931 -- not used, the name of the bind file is computed from the full expanded
2932 -- Ada name of a main subprogram.
2934 S_Elim_Comp : aliased constant S := "/COMPILER=@" &
2935 "--GCC=@";
2936 -- /COMPILER=path_name
2938 -- Instructs GNAT ELIM to use a specific gcc compiler instead of one
2939 -- available on the path.
2941 S_Elim_Config : aliased constant S := "/CONFIGURATION_PRAGMAS=<" &
2942 "-C>";
2943 -- /CONFIGURATION_PRAGMAS=path_name
2945 -- Specifies a file that contains configuration pragmas.
2946 -- The file must be specified with absolute path.
2948 S_Elim_Current : aliased constant S := "/CURRENT_DIRECTORY " &
2949 "!-I-";
2950 -- /CURRENT_DIRECTORY (D)
2951 -- /NOCURRENT_DIRECTORY
2953 -- Look for source files in the default directory.
2955 S_Elim_GNATMAKE : aliased constant S := "/GNATMAKE=@" &
2956 "--GNATMAKE=@";
2957 -- /GNATMAKE=path_name
2959 -- Instructs GNAT MAKE to use a specific gnatmake instead of one available
2960 -- on the path.
2962 S_Elim_Quiet : aliased constant S := "/QUIET " &
2963 "-q";
2964 -- /NOQUIET (D)
2965 -- /QUIET
2967 -- Quiet mode: by default GNAT ELIM outputs to the standard error stream
2968 -- the number of program units left to be processed. This option turns
2969 -- this trace off.
2971 S_Elim_Search : aliased constant S := "/SEARCH=*" &
2972 "-I*";
2973 -- /SEARCH=(directory, ...)
2975 -- When looking for source files also look in the specified directories.
2977 S_Elim_Verb : aliased constant S := "/VERBOSE " &
2978 "-v";
2979 -- /NOVERBOSE (D)
2980 -- /VERBOSE
2982 -- Verbose mode: GNAT ELIM version information is output as Ada comments
2983 -- to the standard output stream. Also, in addition to the number of
2984 -- program units left, GNAT ELIM will output the name of the current unit
2985 -- being processed.
2987 Elim_Switches : aliased constant Switches :=
2988 (S_Elim_All 'Access,
2989 S_Elim_Bind 'Access,
2990 S_Elim_Comp 'Access,
2991 S_Elim_Config 'Access,
2992 S_Elim_Current 'Access,
2993 S_Elim_GNATMAKE'Access,
2994 S_Elim_Quiet 'Access,
2995 S_Elim_Search 'Access,
2996 S_Elim_Verb 'Access);
2998 ----------------------------
2999 -- Switches for GNAT FIND --
3000 ----------------------------
3002 S_Find_All : aliased constant S := "/ALL_FILES " &
3003 "-a";
3004 -- /NOALL_FILES (D)
3005 -- /ALL_FILES
3007 -- If this switch is present, FIND and XREF will parse the read-only
3008 -- files found in the library search path. Otherwise, these files will
3009 -- be ignored. This option can be used to protect Gnat sources or your
3010 -- own libraries from being parsed, thus making FIND and XREF much
3011 -- faster, and their output much smaller.
3013 S_Find_Deriv : aliased constant S := "/DERIVED_TYPE_INFORMATION " &
3014 "-d";
3015 -- /NODERIVED_TYPE_INFORMATION (D)
3016 -- /DERIVED_TYPE_INFORMATION
3018 -- Output the parent type reference for each matching derived types.
3020 S_Find_Expr : aliased constant S := "/EXPRESSIONS " &
3021 "-e";
3022 -- /NOEXPRESSIONS (D)
3023 -- /EXPRESSIONS
3025 -- By default, FIND accepts the simple regular expression set for pattern.
3026 -- If this switch is set, then the pattern will be considered as a full
3027 -- Unix-style regular expression.
3029 S_Find_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
3030 "-X" & '"';
3031 -- /EXTERNAL_REFERENCE="name=val"
3033 -- Specifies an external reference to the project manager. Useful only if
3034 -- /PROJECT_FILE is used.
3036 -- Example:
3037 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3039 S_Find_Full : aliased constant S := "/FULL_PATHNAME " &
3040 "-f";
3041 -- /NOFULL_PATHNAME (D)
3042 -- /FULL_PATHNAME
3044 -- If this switch is set, the output file names will be preceded by their
3045 -- directory (if the file was found in the search path). If this switch
3046 -- is not set, the directory will not be printed.
3048 S_Find_Ignore : aliased constant S := "/IGNORE_LOCALS " &
3049 "-g";
3050 -- /NOIGNORE_LOCALS (D)
3051 -- /IGNORE_LOCALS
3053 -- If this switch is set, information is output only for library-level
3054 -- entities, ignoring local entities. The use of this switch may
3055 -- accelerate FIND and XREF.
3057 S_Find_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
3058 "DEFAULT " &
3059 "-vP0 " &
3060 "MEDIUM " &
3061 "-vP1 " &
3062 "HIGH " &
3063 "-vP2";
3064 -- /MESSAGES_PROJECT_FILE[=messages-option]
3066 -- Specifies the "verbosity" of the parsing of project files.
3067 -- messages-option may be one of the following:
3069 -- DEFAULT (D) No messages are output if there is no error or warning.
3071 -- MEDIUM A small number of messages are output.
3073 -- HIGH A great number of messages are output, most of them not
3074 -- being useful for the user.
3076 S_Find_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
3077 "-nostdinc";
3078 -- /NOSTD_INCLUDES
3080 -- Do not look for sources in the system default directory.
3082 S_Find_Nostlib : aliased constant S := "/NOSTD_LIBRARIES " &
3083 "-nostdlib";
3084 -- /NOSTD_LIBRARIES
3086 -- Do not look for library files in the system default directory.
3088 S_Find_Object : aliased constant S := "/OBJECT_SEARCH=*" &
3089 "-aO*";
3090 -- /OBJECT_SEARCH=(directory,...)
3092 -- When searching for library and object files, look in the specified
3093 -- directories. The order in which library files are searched is the same
3094 -- as for MAKE.
3096 S_Find_Print : aliased constant S := "/PRINT_LINES " &
3097 "-s";
3098 -- /NOPRINT_LINES (D)
3099 -- /PRINT_LINES
3101 -- Output the content of the Ada source file lines were the entity was
3102 -- found.
3104 S_Find_Project : aliased constant S := "/PROJECT=@" &
3105 "-p@";
3106 -- /PROJECT=file
3108 -- Specify a project file to use. By default, FIND and XREF will try to
3109 -- locate a project file in the current directory.
3111 -- If a project file is either specified or found by the tools, then the
3112 -- content of the source directory and object directory lines are added
3113 -- as if they had been specified respectively by /SOURCE_SEARCH and
3114 -- /OBJECT_SEARCH.
3116 -- This qualifier is not compatible with /PROJECT_FILE
3118 S_Find_Prj : aliased constant S := "/PROJECT_FILE=<" &
3119 "-P>";
3120 -- /PROJECT_FILE=filename
3122 -- Specifies the main project file to be used. The project files rooted
3123 -- at the main project file will be parsed before looking for sources.
3124 -- The source and object directories to be searched will be communicated
3125 -- to gnatfind through logical names ADA_PRJ_INCLUDE_FILE and
3126 -- ADA_PRJ_OBJECTS_FILE.
3128 S_Find_Ref : aliased constant S := "/REFERENCES " &
3129 "-r";
3130 -- /NOREFERENCES (D)
3131 -- /REFERENCES
3133 -- By default, FIND will output only the information about the
3134 -- declaration, body or type completion of the entities. If this switch
3135 -- is set, the FIND will locate every reference to the entities in the
3136 -- files specified on the command line (or in every file in the search
3137 -- path if no file is given on the command line).
3139 S_Find_Search : aliased constant S := "/SEARCH=*" &
3140 "-I*";
3141 -- /SEARCH=(directory,...)
3143 -- Equivalent to:
3144 -- /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
3146 S_Find_Source : aliased constant S := "/SOURCE_SEARCH=*" &
3147 "-aI*";
3148 -- /SOURCE_SEARCH=(directory,...)
3150 -- When looking for source files also look in the specified directories.
3151 -- The order in which source file search is undertaken is the same as for
3152 -- MAKE.
3154 S_Find_Types : aliased constant S := "/TYPE_HIERARCHY " &
3155 "-t";
3156 -- /NOTYPE_HIERARCHY (D)
3157 -- /TYPE_HIERARCHY
3159 -- Output the type hierarchy for the specified type. It acts like the
3160 -- /DERIVED_TYPE_INFORMATION qualifier, but recursively from parent type
3161 -- to parent type. When this qualifier is specified it is not possible to
3162 -- specify more than one file.
3164 Find_Switches : aliased constant Switches :=
3165 (S_Find_All 'Access,
3166 S_Find_Deriv 'Access,
3167 S_Find_Expr 'Access,
3168 S_Find_Ext 'Access,
3169 S_Find_Full 'Access,
3170 S_Find_Ignore 'Access,
3171 S_Find_Mess 'Access,
3172 S_Find_Nostinc 'Access,
3173 S_Find_Nostlib 'Access,
3174 S_Find_Object 'Access,
3175 S_Find_Print 'Access,
3176 S_Find_Project 'Access,
3177 S_Find_Prj 'Access,
3178 S_Find_Ref 'Access,
3179 S_Find_Search 'Access,
3180 S_Find_Source 'Access,
3181 S_Find_Types 'Access);
3183 ------------------------------
3184 -- Switches for GNAT KRUNCH --
3185 ------------------------------
3187 S_Krunch_Count : aliased constant S := "/COUNT=#" &
3188 "`#";
3189 -- /COUNT=39 (D)
3190 -- /COUNT=nnn
3192 -- Limit file names to nnn characters (where nnn is a decimal
3193 -- integer). The maximum file name length is 39, but if you want to
3194 -- generate a set of files that would be usable if ported to a system
3195 -- with some different maximum file length, then a different value can
3196 -- be specified.
3198 Krunch_Switches : aliased constant Switches :=
3199 (1 .. 1 => S_Krunch_Count 'Access);
3201 -------------------------------
3202 -- Switches for GNAT LIBRARY --
3203 -------------------------------
3205 S_Lbr_Config : aliased constant S := "/CONFIG=@" &
3206 "--config=@";
3207 -- /CONFIG=file
3209 -- File containing configuration pragmas.
3211 S_Lbr_Create : aliased constant S := "/CREATE=%" &
3212 "--create=%";
3213 -- /CREATE=directory
3215 -- Directory to create and build alternate library in.
3217 S_Lbr_Delete : aliased constant S := "/DELETE=%" &
3218 "--delete=%";
3219 -- /DELETE=directory
3221 -- Directory containing alternate library to be deleted.
3223 S_Lbr_Set : aliased constant S := "/SET=%" &
3224 "--set=%";
3225 -- /SET=directory
3227 -- Directory containing alternate library to be made the current library.
3229 Lbr_Switches : aliased constant Switches :=
3230 (S_Lbr_Config 'Access,
3231 S_Lbr_Create 'Access,
3232 S_Lbr_Delete 'Access,
3233 S_Lbr_Set 'Access);
3235 ----------------------------
3236 -- Switches for GNAT LINK --
3237 ----------------------------
3239 S_Link_Bind : aliased constant S := "/BIND_FILE=" &
3240 "ADA " &
3241 "-A " &
3242 "C " &
3243 "-C";
3244 -- /BIND_FILE=[bind-file-option]
3246 -- Specifies the language of the binder generated file.
3248 -- ADA (D) Binder file is Ada.
3250 -- C Binder file is 'C'.
3252 S_Link_Debug : aliased constant S := "/DEBUG=" &
3253 "ALL " &
3254 "-g3 " &
3255 "NONE " &
3256 "-g0 " &
3257 "TRACEBACK " &
3258 "-g1 " &
3259 "NOTRACEBACK " &
3260 "-g0";
3261 -- /NODEBUG (D)
3262 -- /DEBUG[=debug-option]
3264 -- Specifies the amount of debugging information included. 'debug-option'
3265 -- is one of the following:
3267 -- ALL (D) Include full debugging information.
3269 -- NONE Provide no debugging information. Same as /NODEBUG.
3271 -- TRACEBACK Provide sufficient debug information for a traceback.
3273 -- NOTRACEBACK Same as NONE.
3275 S_Link_Nodebug : aliased constant S := "/NODEBUG " &
3276 "-g0";
3277 -- NODOC (see /DEBUG)
3279 S_Link_Execut : aliased constant S := "/EXECUTABLE=@" &
3280 "-o@";
3281 -- /EXECUTABLE=exec-name
3283 -- 'exec-name' specifies an alternative name for the generated executable
3284 -- program. If this qualifier switch is omitted, the executable is called
3285 -- the name of the main unit. So "$ GNAT LINK TRY.ALI" creates an
3286 -- executable called TRY.EXE.
3288 S_Link_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
3289 "-X" & '"';
3290 -- /EXTERNAL_REFERENCE="name=val"
3292 -- Specifies an external reference to the project manager. Useful only if
3293 -- /PROJECT_FILE is used.
3295 -- Example:
3296 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3298 S_Link_Forlink : aliased constant S := "/FOR_LINKER=" & '"' &
3299 "--for-linker=" & '"';
3300 -- /FOR_LINKER=<string>
3302 -- Transmit the option <string> to the underlying linker.
3304 S_Link_Force : aliased constant S := "/FORCE_OBJECT_FILE_LIST " &
3305 "-f";
3306 -- /NOFORCE_OBJECT_FILE_LIST (D)
3307 -- /FORCE_OBJECT_FILE_LIST
3309 -- Forces the generation of a file that contains commands for the linker.
3310 -- This is useful in some cases to deal with special situations where the
3311 -- command line length is exceeded.
3313 S_Link_Ident : aliased constant S := "/IDENTIFICATION=" & '"' &
3314 "--for-linker=IDENT=" &
3315 '"';
3316 -- /IDENTIFICATION="<string>"
3318 -- "<string>" specifies the string to be stored in the image file ident-
3319 -- ification field in the image header. It overrides any pragma Ident
3320 -- specified string.
3322 S_Link_Libdir : aliased constant S := "/LIBDIR=*" &
3323 "-L*";
3324 -- /LIBDIR=(directory, ...)
3326 -- Look for libraries in the specified directories.
3328 S_Link_Library : aliased constant S := "/LIBRARY=|" &
3329 "-l|";
3330 -- /LYBRARY=xyz
3332 -- Link with library named "xyz".
3334 S_Link_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
3335 "DEFAULT " &
3336 "-vP0 " &
3337 "MEDIUM " &
3338 "-vP1 " &
3339 "HIGH " &
3340 "-vP2";
3341 -- /MESSAGES_PROJECT_FILE[=messages-option]
3343 -- Specifies the "verbosity" of the parsing of project files.
3344 -- messages-option may be one of the following:
3346 -- DEFAULT (D) No messages are output if there is no error or warning.
3348 -- MEDIUM A small number of messages are output.
3350 -- HIGH A great number of messages are output, most of them not
3351 -- being useful for the user.
3353 S_Link_Nocomp : aliased constant S := "/NOCOMPILE " &
3354 "-n";
3355 -- /NOCOMPILE
3357 -- Do not compile the file generated by the binder.
3358 -- This may be used when a link is rerun with different options,
3359 -- but there is no need to recompile the binder generated file.
3361 S_Link_Noinhib : aliased constant S := "/NOINHIBIT-EXEC " &
3362 "--for-linker=--noinhibit-exec";
3363 -- /NOINHIBIT-EXEC
3365 -- Delete executable if there are errors or warnings.
3367 S_Link_Nofiles : aliased constant S := "/NOSTART_FILES " &
3368 "-nostartfiles";
3369 -- /NOSTART_FILES
3371 -- Link in default image initialization and startup functions.
3373 S_Link_Project : aliased constant S := "/PROJECT_FILE=<" &
3374 "-P>";
3375 -- /PROJECT_FILE=filename
3377 -- Specifies the main project file to be used. The project files rooted
3378 -- at the main project file will be parsed before the invocation of the
3379 -- linker.
3380 -- The source and object directories to be searched will be communicated
3381 -- to the linker through logical names ADA_PRJ_INCLUDE_FILE and
3382 -- ADA_PRJ_OBJECTS_FILE.
3384 S_Link_Return : aliased constant S := "/RETURN_CODES=" &
3385 "POSIX " &
3386 "!-mvms-return-codes " &
3387 "VMS " &
3388 "-mvms-return-codes";
3389 -- /RETURN_CODES=POSIX (D)
3390 -- /RETURN_CODES=VMS
3392 -- Specifies the style of codes returned by
3393 -- Ada.Command_Line.Set_Exit_Status. Must be used in conjunction with
3394 -- and match the Bind qualifer with the same name.
3396 -- POSIX (D) Return Posix compatible exit codes.
3398 -- VMS Return VMS compatible exit codes. The value returned
3399 -- is identically equal to the Set_Exit_Status parameter.
3401 S_Link_Static : aliased constant S := "/STATIC " &
3402 "--for-linker=-static";
3403 -- /NOSTATIC (D)
3404 -- /STATIC
3406 -- Indicate to the linker that the link is static.
3408 S_Link_Verb : aliased constant S := "/VERBOSE " &
3409 "-v";
3410 -- /NOVERBOSE (D)
3411 -- /VERBOSE
3413 -- Causes additional information to be output, including a full list of
3414 -- the included object files. This switch option is most useful when you
3415 -- want to see what set of object files are being used in the link step.
3417 S_Link_ZZZZZ : aliased constant S := "/<other> " &
3418 "--for-linker=";
3419 -- /<other>
3421 -- Any other switch that will be transmited to the underlying linker.
3423 Link_Switches : aliased constant Switches :=
3424 (S_Link_Bind 'Access,
3425 S_Link_Debug 'Access,
3426 S_Link_Nodebug 'Access,
3427 S_Link_Execut 'Access,
3428 S_Link_Ext 'Access,
3429 S_Link_Forlink 'Access,
3430 S_Link_Force 'Access,
3431 S_Link_Ident 'Access,
3432 S_Link_Libdir 'Access,
3433 S_Link_Library 'Access,
3434 S_Link_Mess 'Access,
3435 S_Link_Nocomp 'Access,
3436 S_Link_Nofiles 'Access,
3437 S_Link_Noinhib 'Access,
3438 S_Link_Project 'Access,
3439 S_Link_Return 'Access,
3440 S_Link_Static 'Access,
3441 S_Link_Verb 'Access,
3442 S_Link_ZZZZZ 'Access);
3444 ----------------------------
3445 -- Switches for GNAT LIST --
3446 ----------------------------
3448 S_List_All : aliased constant S := "/ALL_UNITS " &
3449 "-a";
3450 -- /NOALL_UNITS (D)
3451 -- /ALL_UNITS
3453 -- Consider all units, including those of the predefined Ada library.
3454 -- Especially useful with /DEPENDENCIES.
3456 S_List_Current : aliased constant S := "/CURRENT_DIRECTORY " &
3457 "!-I-";
3458 -- /CURRENT_DIRECTORY (D)
3459 -- /NOCURRENT_DIRECTORY
3461 -- Look for source, library or object files in the default directory.
3463 S_List_Depend : aliased constant S := "/DEPENDENCIES " &
3464 "-d";
3465 -- /NODEPENDENCIES (D)
3466 -- /DEPENDENCIES
3468 S_List_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
3469 "-X" & '"';
3470 -- /EXTERNAL_REFERENCE="name=val"
3472 -- Specifies an external reference to the project manager. Useful only if
3473 -- /PROJECT_FILE is used.
3475 -- Example:
3476 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3478 S_List_Files : aliased constant S := "/FILES=@" &
3479 "-files=@";
3480 -- /FILES=filename
3482 -- Take as arguments the files that are listed in the specified
3483 -- text file.
3485 S_List_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
3486 "DEFAULT " &
3487 "-vP0 " &
3488 "MEDIUM " &
3489 "-vP1 " &
3490 "HIGH " &
3491 "-vP2";
3492 -- /MESSAGES_PROJECT_FILE[=messages-option]
3494 -- Specifies the "verbosity" of the parsing of project files.
3495 -- messages-option may be one of the following:
3497 -- DEFAULT (D) No messages are output if there is no error or warning.
3499 -- MEDIUM A small number of messages are output.
3501 -- HIGH A great number of messages are output, most of them not
3502 -- being useful for the user.
3504 S_List_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
3505 "-nostdinc";
3506 -- /NOSTD_INCLUDES
3508 -- Do not look for sources of the run time in the standard directory.
3510 S_List_Object : aliased constant S := "/OBJECT_SEARCH=*" &
3511 "-aO*";
3512 -- /OBJECT_SEARCH=(directory,...)
3514 -- When looking for library and object files look also in the specified
3515 -- directories.
3517 S_List_Output : aliased constant S := "/OUTPUT=" &
3518 "SOURCES " &
3519 "-s " &
3520 "DEPEND " &
3521 "-d " &
3522 "OBJECTS " &
3523 "-o " &
3524 "UNITS " &
3525 "-u " &
3526 "OPTIONS " &
3527 "-h " &
3528 "VERBOSE " &
3529 "-v ";
3530 -- /OUTPUT=(option,option,...)
3532 -- SOURCES (D) Only output information about source files.
3534 -- DEPEND List sources from which specified units depend on.
3536 -- OBJECTS Only output information about object files.
3538 -- UNITS Only output information about compilation units.
3540 -- OPTIONS Output the list of options.
3542 -- VERBOSE Output the complete source and object paths.
3543 -- Do not use the default column layout but instead
3544 -- use long format giving as much as information
3545 -- possible on each requested units, including
3546 -- special characteristics.
3548 S_List_Project : aliased constant S := "/PROJECT_FILE=<" &
3549 "-P>";
3550 -- /PROJECT_FILE=filename
3552 -- Specifies the main project file to be used. The project files rooted
3553 -- at the main project file will be parsed before doing any listing.
3554 -- The source and object directories to be searched will be communicated
3555 -- to gnatlist through logical names ADA_PRJ_INCLUDE_FILE and
3556 -- ADA_PRJ_OBJECTS_FILE.
3558 S_List_Search : aliased constant S := "/SEARCH=*" &
3559 "-I*";
3560 -- /SEARCH=(directory,...)
3562 -- Search the specified directories for both source and object files.
3564 S_List_Source : aliased constant S := "/SOURCE_SEARCH=*" &
3565 "-aI*";
3566 -- /SOURCE_SEARCH=(directory,...)
3568 -- When looking for source files also look in the specified directories.
3570 List_Switches : aliased constant Switches :=
3571 (S_List_All 'Access,
3572 S_List_Current 'Access,
3573 S_List_Depend 'Access,
3574 S_List_Ext 'Access,
3575 S_List_Files 'Access,
3576 S_List_Mess 'Access,
3577 S_List_Nostinc 'Access,
3578 S_List_Object 'Access,
3579 S_List_Output 'Access,
3580 S_List_Project 'Access,
3581 S_List_Search 'Access,
3582 S_List_Source 'Access);
3584 ----------------------------
3585 -- Switches for GNAT MAKE --
3586 ----------------------------
3588 S_Make_Actions : aliased constant S := "/ACTIONS=" &
3589 "COMPILE " &
3590 "-c " &
3591 "BIND " &
3592 "-b " &
3593 "LINK " &
3594 "-l ";
3595 -- /ACTIONS=(keyword[,...])
3597 -- GNAT MAKE default behavior is to check if the sources are up to date,
3598 -- compile those sources that are not up to date, bind the main source,
3599 -- then link the executable.
3601 -- With the /ACTIONS qualifier, GNAT MAKE may be restricted to one or
3602 -- two of these three steps:
3604 -- o Compile
3605 -- o Bind
3606 -- o Link
3609 -- You may specify one or more of the following keywords to the /ACTIONS
3610 -- qualifier:
3612 -- BIND Bind only. Can be combined with /ACTIONS=COMPILE
3613 -- to do compilation and binding, but no linking.
3614 -- Can be combined with /ACTIONS=LINK to do binding and
3615 -- linking. When not combined with /ACTIONS=COMPILE,
3616 -- all the units in the closure of the main program must
3617 -- have been previously compiled and must be up to date.
3619 -- COMPILE Compile only. Do not perform binding, except when
3620 -- /ACTIONS=BIND is also specified. Do not perform
3621 -- linking, except if both /ACTIONS=BIND and /ACTIONS=LINK
3622 -- are also specified.
3624 -- LINK Link only. Can be combined with /ACTIONS=BIND to do
3625 -- binding and linking. Linking will not be performed
3626 -- if combined with /ACTIONS=COMPILE but not with
3627 -- /ACTIONS=BIND\. When not combined with /ACTIONS=BIND
3628 -- all the units in the closure of the main program must
3629 -- have been previously compiled and must be up to date,
3630 -- and the main program need to have been bound.
3632 S_Make_All : aliased constant S := "/ALL_FILES " &
3633 "-a";
3634 -- /NOALL_FILES (D)
3635 -- /ALL_FILES
3637 -- Consider all files in the make process, even the GNAT internal system
3638 -- files (for example, the predefined Ada library files). By default,
3639 -- GNAT MAKE does not check these files (however, if there is an
3640 -- installation problem, it will be caught when GNAT MAKE binds your
3641 -- program). You may have to specify this qualifier if you are working on
3642 -- GNAT itself. The vast majority of GNAT MAKE users never need to
3643 -- specify this switch. All GNAT internal files with will be compiled
3644 -- with /STYLE_CHECK=GNAT.
3646 S_Make_Allproj : aliased constant S := "/ALL_PROJECTS " &
3647 "-U";
3648 -- /NOALL_PROJECTS (D)
3649 -- /ALL_PROJECTS
3651 -- Implies /Unique.
3652 -- When used without project files, it is equivalent to /UNIQUE.
3653 -- When used with a project file wit no main (neither on the command
3654 -- line nor in the attribute Main) check every source of every project,
3655 -- recompile all sources that are not up to date and rebuild libraries
3656 -- if necessary.
3658 S_Make_Bind : aliased constant S := "/BINDER_QUALIFIERS=?" &
3659 "-bargs BIND";
3660 -- /BINDER_QUALIFIERS
3662 -- Any qualifiers specified after this qualifier other than
3663 -- /COMPILER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
3664 -- passed to any GNAT BIND commands generated by GNAT MAKE.
3666 S_Make_Bindprj : aliased constant S := "/BND_LNK_FULL_PROJECT " &
3667 "-B";
3668 -- /BND_LNK_FULL_PROJECT
3670 -- Bind and link all sources of a project, without any consideration
3671 -- to attribute Main, if there is one. This qualifier need to be
3672 -- used in conjunction with the /PROJECT_FILE= qualifier and cannot
3673 -- be used with a main subprogram on the command line or for
3674 -- a library project file. As the binder is invoked with the option
3675 -- meaning "No Ada main subprogram", the user must ensure that the
3676 -- proper options are specified to the linker. This qualifier is
3677 -- normally used when the main subprogram is in a foreign language
3678 -- such as C.
3680 S_Make_Comp : aliased constant S := "/COMPILER_QUALIFIERS=?" &
3681 "-cargs COMPILE";
3682 -- /COMPILER_QUALIFIERS
3684 -- Any qualifiers specified after this qualifier other than
3685 -- /BINDER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
3686 -- passed to any GNAT COMPILE commands generated by GNAT MAKE.
3688 S_Make_Cond : aliased constant S := "/CONDITIONAL_SOURCE_SEARCH=*" &
3689 "-A*";
3690 -- /CONDITIONAL_SOURCE_SEARCH=dir
3692 -- Equivalent to "/SOURCE_SEARCH=dir /SKIP_MISSING=dir".
3694 S_Make_Cont : aliased constant S := "/CONTINUE_ON_ERROR " &
3695 "-k";
3696 -- /NOCONTINUE_ON_ERROR (D)
3697 -- /CONTINUE_ON_ERROR
3699 -- Keep going. Continue as much as possible after a compilation error.
3700 -- To ease the programmer's task in case of compilation errors, the list
3701 -- of sources for which the compile fails is given when GNAT MAKE
3702 -- terminates.
3704 S_Make_Current : aliased constant S := "/CURRENT_DIRECTORY " &
3705 "!-I-";
3706 -- /CURRENT_DIRECTORY (D)
3707 -- /NOCURRENT_DIRECTORY
3709 -- Look for source, library or object files in the default directory.
3711 S_Make_Dep : aliased constant S := "/DEPENDENCIES_LIST " &
3712 "-M";
3713 -- /NODEPENDENCIES_LIST (D)
3714 -- /DEPENDENCIES_LIST
3716 -- Check if all objects are up to date. If they are, output the object
3717 -- dependences to SYS$OUTPUT in a form that can be directly exploited in
3718 -- a Unix-style Makefile. By default, each source file is prefixed with
3719 -- its (relative or absolute) directory name. This name is whatever you
3720 -- specified in the various /SOURCE_SEARCH and /SEARCH qualifiers. If
3721 -- you also speficy the /QUIET qualifier, only the source file names,
3722 -- without relative paths, are output. If you just specify the
3723 -- /DEPENDENCY_LIST qualifier, dependencies of the GNAT internal system
3724 -- files are omitted. This is typically what you want. If you also
3725 -- specify the /ALL_FILES qualifier, dependencies of the GNAT internal
3726 -- files are also listed. Note that dependencies of the objects in
3727 -- external Ada libraries (see the /SKIP_MISSING qualifier) are never
3728 -- reported.
3730 S_Make_Dirobj : aliased constant S := "/DIRECTORY_OBJECTS=@" &
3731 "-D@";
3732 -- /DIRECTORY_OBJECTS=<file>
3734 -- Put all object files and .ALI files in <file>.
3735 -- This qualifier is not compatible with /PROJECT_FILE.
3737 S_Make_Doobj : aliased constant S := "/DO_OBJECT_CHECK " &
3738 "-n";
3739 -- /NODO_OBJECT_CHECK (D)
3740 -- /DO_OBJECT_CHECK
3742 -- Don't compile, bind, or link. Output a single command that will
3743 -- recompile an out of date unit, if any. Repeated use of this option,
3744 -- followed by carrying out the indicated compilation, will eventually
3745 -- result in recompiling all required units.
3747 -- If any ALI is missing during the process, GNAT MAKE halts and
3748 -- displays an error message.
3750 S_Make_Execut : aliased constant S := "/EXECUTABLE=@" &
3751 "-o@";
3752 -- /EXECUTABLE=exec-name
3754 -- The name of the final executable program will be 'exec_name'. If this
3755 -- qualifier is omitted the default name for the executable will be the
3756 -- name of the input file with an EXE filetype. You may prefix
3757 -- 'exec_name' with a relative or absolute directory path.
3759 S_Make_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
3760 "-X" & '"';
3761 -- /EXTERNAL_REFERENCE="name=val"
3763 -- Specifies an external reference to the project manager. Useful only if
3764 -- /PROJECT_FILE is used.
3766 -- Example:
3767 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3769 S_Make_Force : aliased constant S := "/FORCE_COMPILE " &
3770 "-f";
3771 -- /NOFORCE_COMPILE (D)
3772 -- /FORCE_COMPILE
3774 -- Force recompilations. Recompile all sources, even though some object
3775 -- files may be up to date, but don't recompile predefined or GNAT
3776 -- internal files unless the /ALL_FILES qualfier is also specified.
3778 S_Make_Full : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES " &
3779 "-F";
3780 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
3781 -- /FULL_PATH_IN_BRIEF_MESSAGES
3783 -- When using project files, if some errors or warnings are detected
3784 -- during parsing and verbose mode is not in effect (no use of qualifier
3785 -- /VERBOSE), then error lines start with the full path name of the
3786 -- project file, rather than its simple file name.
3788 S_Make_Inplace : aliased constant S := "/IN_PLACE " &
3789 "-i";
3790 -- /NOIN_PLACE (D)
3791 -- /IN_PLACE
3793 -- In normal mode, GNAT MAKE compiles all object files and ALI files
3794 -- into the current directory. If the /IN_PLACE switch is used,
3795 -- then instead object files and ALI files that already exist are over-
3796 -- written in place. This means that once a large project is organized
3797 -- into separate directories in the desired manner, then GNAT MAKE will
3798 -- automatically maintain and update this organization. If no ALI files
3799 -- are found on the Ada object path, the new object and ALI files are
3800 -- created in the directory containing the source being compiled.
3802 S_Make_Index : aliased constant S := "/SOURCE_INDEX=#" &
3803 "-eI#";
3804 -- /SOURCE_INDEX=nnn
3806 -- Specifies the index of the units in the source file
3807 -- By default, source files are mono-unit and there is no index
3808 -- When /SOURCE_INDEX=nnn is specified, only one main may be specified
3809 -- on the command line.
3811 S_Make_Library : aliased constant S := "/LIBRARY_SEARCH=*" &
3812 "-L*";
3813 -- /LIBRARY_SEARCH=(directory[,...])
3815 -- Add the specified directories to the list of directories in which the
3816 -- linker will search for libraries.
3818 S_Make_Link : aliased constant S := "/LINKER_QUALIFIERS=?" &
3819 "-largs LINK";
3820 -- /LINKER_QUALIFIERS
3822 -- Any qualifiers specified after this qualifier other than
3823 -- /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /MAKE_QUALIFIERS will be
3824 -- passed to any GNAT LINK commands generated by GNAT LINK.
3826 S_Make_Make : aliased constant S := "/MAKE_QUALIFIERS=?" &
3827 "-margs MAKE";
3828 -- /MAKE_QUALIFIERS
3830 -- Any qualifiers specified after this qualifier other than
3831 -- /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /LINKER_QUALIFIERS
3832 -- are for the benefit of GNAT MAKE itself.
3834 S_Make_Mapping : aliased constant S := "/MAPPING " &
3835 "-C";
3836 -- /NOMAPPING (D)
3837 -- /MAPPING
3839 -- Use a mapping file. A mapping file is a way to communicate to the
3840 -- compiler two mappings: from unit names to file names (without any
3841 -- directory information) and from file names to path names (with full
3842 -- directory information). These mappings are used by the compiler to
3843 -- short-circuit the path search. When GNAT MAKE is invoked with this
3844 -- qualifier, it will create a mapping file, initially populated by the
3845 -- project manager, if /PROJECT_File= is used, otherwise initially empty.
3846 -- Each invocation of the compiler will add the newly accessed sources to
3847 -- the mapping file. This will improve the source search during the next
3848 -- invocations of the compiler
3850 S_Make_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
3851 "DEFAULT " &
3852 "-vP0 " &
3853 "MEDIUM " &
3854 "-vP1 " &
3855 "HIGH " &
3856 "-vP2";
3857 -- /MESSAGES_PROJECT_FILE[=messages-option]
3859 -- Specifies the "verbosity" of the parsing of project files.
3860 -- messages-option may be one of the following:
3862 -- DEFAULT (D) No messages are output if there is no error or warning.
3864 -- MEDIUM A small number of messages are output.
3866 -- HIGH A great number of messages are output, most of them not
3867 -- being useful for the user.
3869 S_Make_Minimal : aliased constant S := "/MINIMAL_RECOMPILATION " &
3870 "-m";
3871 -- /NOMINIMAL_RECOMPILATION (D)
3872 -- /MINIMAL_RECOMPILATION
3874 -- Specifies that the minimum necessary amount of recompilation
3875 -- be performed. In this mode GNAT MAKE ignores time stamp differences
3876 -- when the only modifications to a source file consist in
3877 -- adding/removing comments, empty lines, spaces or tabs.
3879 S_Make_Nolink : aliased constant S := "/NOLINK " &
3880 "-c";
3881 -- /NOLINK
3883 -- Compile only. Do not perform binding and linking. If the root unit is
3884 -- not a main unit, this is the default. Otherwise GNAT MAKE will
3885 -- attempt binding and linking unless all objects are up to date and the
3886 -- executable is more recent than the objects.
3887 -- This is equivalent to /ACTIONS=COMPILE
3889 S_Make_Nomain : aliased constant S := "/NOMAIN " &
3890 "-z";
3891 -- /NOMAIN
3893 -- No main subprogram. Bind and link the program even if the unit name
3894 -- given on the command line is a package name. The resulting executable
3895 -- will execute the elaboration routines of the package and its closure,
3896 -- then the finalization routines.
3898 S_Make_Nonpro : aliased constant S := "/NON_PROJECT_UNIT_COMPILATION " &
3899 "-x";
3900 -- /NON_PROJECT_UNIT_COMPILATION
3902 -- Normally, when using project files, a unit that is not part of any
3903 -- project file, cannot be compile. These units may be compile, when
3904 -- needed, if this qualifier is specified.
3906 S_Make_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
3907 "-nostdinc";
3908 -- /NOSTD_INCLUDES
3910 -- Do not look for sources the in the system default directory.
3912 S_Make_Nostlib : aliased constant S := "/NOSTD_LIBRARIES " &
3913 "-nostdlib";
3914 -- /NOSTD_LIBRARIES
3916 -- Do not look for library files in the system default directory.
3918 S_Make_Object : aliased constant S := "/OBJECT_SEARCH=*" &
3919 "-aO*";
3920 -- /OBJECT_SEARCH=(directory[,...])
3922 -- When looking for library and object files look also in the specified
3923 -- directories.
3925 S_Make_Proc : aliased constant S := "/PROCESSES=#" &
3926 "-j#";
3927 -- /NOPROCESSES (D)
3928 -- /PROCESSES=NNN
3930 -- Use NNN processes to carry out the (re)complations. If you have a
3931 -- multiprocessor machine, compilations will occur in parallel. In the
3932 -- event of compilation errors, messages from various compilations might
3933 -- get interspersed (but GNAT MAKE will give you the full ordered list of
3934 -- failing compiles at the end). This can at times be annoying. To get a
3935 -- clean list of error messages don't use this qualifier.
3937 S_Make_Nojobs : aliased constant S := "/NOPROCESSES " &
3938 "-j1";
3939 -- NODOC (see /PROCESS)
3941 S_Make_Project : aliased constant S := "/PROJECT_FILE=<" &
3942 "-P>";
3943 -- /PROJECT_FILE=filename
3945 -- Specifies the main project file to be used. The project files rooted
3946 -- at the main project file will be parsed before any other processing to
3947 -- set the building environment.
3949 S_Make_Quiet : aliased constant S := "/QUIET " &
3950 "-q";
3951 -- /NOQUIET (D)
3952 -- /QUIET
3954 -- When this qualifiers is specified, the commands carried out by GNAT
3955 -- MAKE are not displayed.
3957 S_Make_Reason : aliased constant S := "/REASONS " &
3958 "-v";
3959 -- /NOREASONS (D)
3960 -- /REASONS
3962 -- Displays the reason for all recompilations GNAT MAKE decides are
3963 -- necessary.
3965 S_Make_RTS : aliased constant S := "/RUNTIME_SYSTEM=|" &
3966 "--RTS=|";
3967 -- /RUNTIME_SYSTEM=xxx
3969 -- Build against an alternate runtime system named xxx or RTS-xxx.
3971 S_Make_Search : aliased constant S := "/SEARCH=*" &
3972 "-I*";
3973 -- /SEARCH=(directory[,...])
3975 -- Search the specified directories for both source and object files.
3977 S_Make_Skip : aliased constant S := "/SKIP_MISSING=*" &
3978 "-aL*";
3979 -- /SKIP_MISSING=(directory[,...])
3981 -- Skip missing library sources if ALI in 'directory'.
3983 S_Make_Source : aliased constant S := "/SOURCE_SEARCH=*" &
3984 "-aI*";
3985 -- /SOURCE_SEARCH=(directory[,...])
3987 -- When looking for source files also look in the specified directories.
3989 S_Make_Switch : aliased constant S := "/SWITCH_CHECK " &
3990 "-s";
3991 -- /NOSWITCH_CHECK (D)
3992 -- /SWITCH_CHECK
3994 -- Recompile if compiler switches have changed since last compilation.
3995 -- All compiler switches but -I and -o are taken into account in the
3996 -- following way: orders between different "first letter" switches are
3997 -- ignored, but orders between same switches are taken into account.
3998 -- For example, -O -O2 is different than -O2 -O, but -g -O is equivalent
3999 -- to -O -g.
4001 S_Make_Unique : aliased constant S := "/UNIQUE " &
4002 "-u";
4003 -- /NOUNIQUE (D)
4004 -- /UNIQUE
4006 -- Recompile at most the main file. It implies /ACTIONS=COMPILE.
4007 -- Combined with /FORCE_COMPILE, it is equivalent to calling the compiler
4008 -- directly.
4010 S_Make_Use_Map : aliased constant S := "/USE_MAPPING_File=@" &
4011 "-C=@";
4012 -- /USE_MAPPING_FILE=file_name
4014 -- Use a specific mapping file. The file 'file_name', specified as a path
4015 -- name (absolute or relative) by this qualifier, should already exist,
4016 -- otherwise the qualifier is ineffective. The specified mapping file
4017 -- will be communicated to the compiler. This switch is not compatible
4018 -- with a project file (/PROJECT_FILE=) or with multiple compiling
4019 -- processes (/PROCESSES=nnn, when nnn is greater than 1).
4021 S_Make_Verbose : aliased constant S := "/VERBOSE " &
4022 "-v";
4023 -- /NOVERBOSE (D)
4024 -- /VERBOSE
4026 -- Displays the reason for all recompilations GNAT MAKE decides are
4027 -- necessary.
4029 Make_Switches : aliased constant Switches :=
4030 (S_Make_Actions 'Access,
4031 S_Make_All 'Access,
4032 S_Make_Allproj 'Access,
4033 S_Make_Bind 'Access,
4034 S_Make_Comp 'Access,
4035 S_Make_Cond 'Access,
4036 S_Make_Cont 'Access,
4037 S_Make_Current 'Access,
4038 S_Make_Dep 'Access,
4039 S_Make_Dirobj 'Access,
4040 S_Make_Doobj 'Access,
4041 S_Make_Execut 'Access,
4042 S_Make_Ext 'Access,
4043 S_Make_Force 'Access,
4044 S_Make_Full 'Access,
4045 S_Make_Inplace 'Access,
4046 S_Make_Index 'Access,
4047 S_Make_Library 'Access,
4048 S_Make_Link 'Access,
4049 S_Make_Make 'Access,
4050 S_Make_Mapping 'Access,
4051 S_Make_Mess 'Access,
4052 S_Make_Minimal 'Access,
4053 S_Make_Nolink 'Access,
4054 S_Make_Nomain 'Access,
4055 S_Make_Nonpro 'Access,
4056 S_Make_Nostinc 'Access,
4057 S_Make_Nostlib 'Access,
4058 S_Make_Object 'Access,
4059 S_Make_Proc 'Access,
4060 S_Make_Nojobs 'Access,
4061 S_Make_Project 'Access,
4062 S_Make_Quiet 'Access,
4063 S_Make_Reason 'Access,
4064 S_Make_RTS 'Access,
4065 S_Make_Search 'Access,
4066 S_Make_Skip 'Access,
4067 S_Make_Source 'Access,
4068 S_Make_Switch 'Access,
4069 S_Make_Unique 'Access,
4070 S_Make_Use_Map 'Access,
4071 S_Make_Verbose 'Access);
4073 ------------------------------
4074 -- Switches for GNAT METRIC --
4075 ------------------------------
4077 S_Metric_Debug : aliased constant S := "/DEBUG_OUTPUT " &
4078 "-dv";
4079 -- /DEBUG_OUTPUT
4081 -- Generate the debug information
4083 S_Metric_Direct : aliased constant S := "/DIRECTORY=@" &
4084 "-d=@";
4085 -- /DIRECTORY=pathname
4087 -- Put the files with detailed metric information into the specified
4088 -- directory
4090 S_Metric_Element : aliased constant S := "/ELEMENT_METRICS=" &
4091 "ALL " &
4092 "!-ed,!-es,!-enl,!-eps," &
4093 "!-eas,!-ept,!-eat,!-enu," &
4094 "!-ec " &
4095 "DECLARATION_TOTAL " &
4096 "-ed " &
4097 "STATEMENT_TOTAL " &
4098 "-es " &
4099 "LOOP_NESTING_MAX " &
4100 "-enl " &
4101 "INT_SUBPROGRAMS " &
4102 "-eps " &
4103 "SUBPROGRAMS_ALL " &
4104 "-eas " &
4105 "INT_TYPES " &
4106 "-ept " &
4107 "TYPES_ALL " &
4108 "-eat " &
4109 "PROGRAM_NESTING_MAX " &
4110 "-enu " &
4111 "CONSTRUCT_NESTING_MAX " &
4112 "-ec";
4113 -- /ELEMENT_METRICS=(option, option ...)
4115 -- Specifies the element metrics to be computed (if not set, all the
4116 -- element metrics are set on, otherwise only specified metrics are
4117 -- computed and reported)
4119 -- option may be one of the following:
4121 -- ALL (D) All the element metrics are computed
4122 -- DECLARATION_TOTAL Compute the total number of declarations
4123 -- STATEMENT_TOTAL Compute the total number of statements
4124 -- LOOP_NESTING_MAX Compute the maximal loop nesting level
4125 -- INT_SUBPROGRAMS Compute the number of interface subprograms
4126 -- SUBPROGRAMS_ALL Compute the number of all the subprograms
4127 -- INT_TYPES Compute the number of interface types
4128 -- TYPES_ALL Compute the number of all the types
4129 -- PROGRAM_NESTING_MAX Compute the maximal program unit nesting level
4131 -- All combinations of element metrics options are allowed.
4133 S_Metric_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
4134 "-X" & '"';
4135 -- /EXTERNAL_REFERENCE="name=val"
4137 -- Specifies an external reference to the project manager. Useful only if
4138 -- /PROJECT_FILE is used.
4140 -- Example:
4141 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4143 S_Metric_Files : aliased constant S := "/FILES=@" &
4144 "-files=@";
4145 -- /FILES=filename
4147 -- Take as arguments the files that are listed in the specified
4148 -- text file.
4150 S_Metric_Format : aliased constant S := "/FORMAT_OUTPUT=" &
4151 "DEFAULT " &
4152 "!-x,!-nt,!-sfn " &
4153 "XML " &
4154 "-x " &
4155 "NO_TEXT " &
4156 "-nt " &
4157 "SHORT_SOURCE_FILE_NAME " &
4158 "-sfn";
4159 -- /FORMAT_OUTPUT=(option, option ...)
4161 -- Specifies the details of the tool output
4163 -- option may be one of the following:
4165 -- DEFAULT (D) Generate the text output only, use full
4166 -- argument source names in global information
4167 -- XML Generate the output in XML format
4168 -- NO_TEXT Do not generate the text output (implies XML)
4169 -- SHORT_SOURCE_FILE_NAME Use short argument source names in output
4171 S_Metric_Globout : aliased constant S := "/GLOBAL_OUTPUT=@" &
4172 "-og@";
4173 -- /GLOBAL_OUTPUT=filename
4175 -- Put the textual global metric information into the specified file
4177 S_Metric_Line : aliased constant S := "/LINE_METRICS=" &
4178 "ALL " &
4179 "!-la,!-lcode,!-lcomm," &
4180 "!-leol,!-lb " &
4181 "LINES_ALL " &
4182 "-la " &
4183 "CODE_LINES " &
4184 "-lcode " &
4185 "COMENT_LINES " &
4186 "-lcomm " &
4187 "MIXED_CODE_COMMENTS " &
4188 "-leol " &
4189 "BLANK_LINES " &
4190 "-lb ";
4191 -- /LINE_METRICS=(option, option ...)
4193 -- Specifies the line metrics to be computed (if not set, all the line
4194 -- metrics are set on, otherwise only specified metrics are computed and
4195 -- reported)
4197 -- option may be one of the following:
4199 -- ALL (D) All the line metrics are computed
4200 -- LINES_ALL All lines are computed
4201 -- CODE_LINES Lines with Ada code are computed
4202 -- COMENT_LINES All comment lines are computed
4203 -- MIXED_CODE_COMMENTS All lines containing both code and comment are
4204 -- computed
4205 -- BLANK_LINES Blank lines are computed
4207 -- All combinations of line metrics options are allowed.
4209 S_Metric_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
4210 "DEFAULT " &
4211 "-vP0 " &
4212 "MEDIUM " &
4213 "-vP1 " &
4214 "HIGH " &
4215 "-vP2";
4216 -- /MESSAGES_PROJECT_FILE[=messages-option]
4218 -- Specifies the "verbosity" of the parsing of project files.
4219 -- messages-option may be one of the following:
4221 -- DEFAULT (D) No messages are output if there is no error or warning.
4223 -- MEDIUM A small number of messages are output.
4225 -- HIGH A great number of messages are output, most of them not
4226 -- being useful for the user.
4228 S_Metric_Project : aliased constant S := "/PROJECT_FILE=<" &
4229 "-P>";
4230 -- /PROJECT_FILE=filename
4232 -- Specifies the main project file to be used. The project files rooted
4233 -- at the main project file will be parsed before the invocation of the
4234 -- binder.
4236 S_Metric_Quiet : aliased constant S := "/QUIET " &
4237 "-q";
4238 -- /NOQUIET (D)
4239 -- /QUIET
4241 -- Quiet mode: by default GNAT METRIC outputs to the standard error stream
4242 -- the number of program units left to be processed. This option turns
4243 -- this trace off.
4245 S_Metric_Suffix : aliased constant S := "/SUFFIX_DETAILS=" & '"' &
4246 "-o" & '"';
4247 -- /SUFFIX_DETAILS=suffix
4249 -- Use the given suffix as the suffix for the name of the file to place
4250 -- the detailed metrics into.
4252 S_Metric_Suppress : aliased constant S := "/SUPPRESS=" &
4253 "NOTHING " &
4254 "!-nocc,!-noec,!-nonl," &
4255 "!-ne,!-nolocal " &
4256 "CYCLOMATIC_COMPLEXITY " &
4257 "-nocc " &
4258 "ESSENTIAL_COMPLEXITY " &
4259 "-noec " &
4260 "MAXIMAL_LOOP_NESTING " &
4261 "-nonl " &
4262 "EXITS_AS_GOTOS " &
4263 "-ne " &
4264 "LOCAL_DETAILS " &
4265 "-nolocal ";
4266 -- /SUPPRESS=(option, option ...)
4268 -- Specifies the metric that should not be computed
4270 -- option may be one of the following:
4272 -- NOTHING (D) Do not suppress computation of any metric
4273 -- CYCLOMATIC_COMPLEXITY Do not compute the Cyclomatic Complexity
4274 -- ESSENTIAL_COMPLEXITY Do not compute the Essential Complexity
4275 -- MAXIMAL_LOOP_NESTING Do not compute the maximal loop nesting
4276 -- EXITS_AS_GOTOS Do not count EXIT statements as GOTOs when
4277 -- computing the Essential Complexity
4278 -- LOCAL_DETAILS Do not compute the detailed metrics for local
4279 -- program units
4281 -- All combinations of options are allowed.
4283 S_Metric_Verbose : aliased constant S := "/VERBOSE " &
4284 "-v";
4285 -- /NOVERBOSE (D)
4286 -- /VERBOSE
4288 -- Verbose mode.
4290 S_Metric_XMLout : aliased constant S := "/XML_OUTPUT=@" &
4291 "-ox@";
4292 -- /XML_OUTPUT=filename
4294 -- Place the XML output into the specified file
4296 Metric_Switches : aliased constant Switches :=
4297 (S_Metric_Debug 'Access,
4298 S_Metric_Direct 'Access,
4299 S_Metric_Element 'Access,
4300 S_Metric_Ext 'Access,
4301 S_Metric_Files 'Access,
4302 S_Metric_Format 'Access,
4303 S_Metric_Globout 'Access,
4304 S_Metric_Line 'Access,
4305 S_Metric_Mess 'Access,
4306 S_Metric_Project 'Access,
4307 S_Metric_Quiet 'Access,
4308 S_Metric_Suffix 'Access,
4309 S_Metric_Suppress 'Access,
4310 S_Metric_Verbose 'Access,
4311 S_Metric_XMLout 'Access);
4313 ----------------------------
4314 -- Switches for GNAT NAME --
4315 ----------------------------
4317 S_Name_Conf : aliased constant S := "/CONFIG_FILE=<" &
4318 "-c>";
4319 -- /CONFIG_FILE=path_name
4321 -- Create a configuration pragmas file 'path_name' (instead of the default
4322 -- 'gnat.adc'). 'path_name' may include directory information. 'path_name'
4323 -- must be writable. There may be only one qualifier /CONFIG_FILE.
4324 -- This qualifier is not compatible with qualifier /PROJECT_FILE.
4326 S_Name_Dirs : aliased constant S := "/SOURCE_DIRS=*" &
4327 "-d*";
4328 -- /SOURCE_DIRS=(directory, ...)
4330 -- Look for source files in the specified directories. When this qualifier
4331 -- is specified, the current working directory will not be searched for
4332 -- source files, unless it is explicitly specified with a qualifier
4333 -- /SOURCE_DIRS or /DIRS_FILE. Several qualifiers /SOURCE_DIRS may be
4334 -- specified. If a directory is specified as a relative path, it is
4335 -- relative to the directory of the configuration pragmas file specified
4336 -- with qualifier /CONFIG_FILE, or to the directory of the project file
4337 -- specified with qualifier /PROJECT_FILE or, if neither qualifier
4338 -- /CONFIG_FILE nor qualifier /PROJECT_FILE are specified, it is relative
4339 -- to the current working directory. The directories specified with
4340 -- qualifiers /SOURCE_DIRS must exist and be readable.
4342 S_Name_Dfile : aliased constant S := "/DIRS_FILE=<" &
4343 "-D>";
4344 -- /DIRS_FILE=file_name
4346 -- Look for source files in all directories listed in text file
4347 -- 'file_name'. 'file_name' must be an existing, readable text file.
4348 -- Each non empty line in the specified file must be a directory.
4349 -- Specifying qualifier /DIRS_FILE is equivalent to specifying as many
4350 -- qualifiers /SOURCE_DIRS as there are non empty lines in the specified
4351 -- text file.
4353 S_Name_Frng : aliased constant S := "/FOREIGN_PATTERN=" & '"' &
4354 "-f" & '"';
4355 -- /FOREIGN_PATTERN=<string>
4357 -- Specify a foreign pattern.
4358 -- Using this qualifier, it is possible to add sources of languages other
4359 -- than Ada to the list of sources of a project file. It is only useful
4360 -- if a qualifier /PROJECT_FILE is used. For example,
4362 -- GNAT NAME /PROJECT_FILE=PRJ /FOREIGN_PATTERN="*.C" "*.ADA"
4364 -- will look for Ada units in all files with the '.ADA' extension, and
4365 -- will add to the list of file for project PRJ.GPR the C files with
4366 -- extension ".C".
4368 S_Name_Help : aliased constant S := "/HELP " &
4369 "-h";
4370 -- /NOHELP (D)
4371 -- /HELP
4373 -- Output usage information to the standard output stream.
4375 S_Name_Proj : aliased constant S := "/PROJECT_FILE=<" &
4376 "-P>";
4377 -- /PROJECT_FILE=file_name
4379 -- Create or update a project file. 'file_name' may include directory
4380 -- information. The specified file must be writable. There may be only
4381 -- one qualifier /PROJECT_FILE. When a qualifier /PROJECT_DILE is
4382 -- specified, no qualifier /CONFIG_FILE may be specified.
4384 S_Name_Verbose : aliased constant S := "/VERBOSE " &
4385 "-v";
4386 -- /NOVERBOSE (D)
4387 -- /VERBOSE
4389 -- Verbose mode. Output detailed explanation of behavior to the standard
4390 -- output stream. This includes name of the file written, the name of the
4391 -- directories to search and, for each file in those directories whose
4392 -- name matches at least one of the Naming Patterns, an indication of
4393 -- whether the file contains a unit, and if so the name of the unit.
4395 S_Name_Excl : aliased constant S := "/EXCLUDED_PATTERN=" & '"' &
4396 "-x" & '"';
4397 -- /EXCLUDED_PATTERN=<string>
4399 -- Specify an excluded pattern.
4400 -- Using this qualifier, it is possible to exclude some files that would
4401 -- match the Naming patterns. For example,
4403 -- GNAT NAME /EXCLUDED_PATTERN="*_NT.ADA" "*.ADA"
4405 -- will look for Ada units in all files with the '.ADA' extension, except
4406 -- those whose names end with '_NT.ADA'.
4408 Name_Switches : aliased constant Switches :=
4409 (S_Name_Conf 'Access,
4410 S_Name_Dirs 'Access,
4411 S_Name_Dfile 'Access,
4412 S_Name_Frng 'Access,
4413 S_Name_Help 'Access,
4414 S_Name_Proj 'Access,
4415 S_Name_Verbose 'Access,
4416 S_Name_Excl 'Access);
4418 ----------------------------------
4419 -- Switches for GNAT PREPROCESS --
4420 ----------------------------------
4422 S_Prep_Assoc : aliased constant S := "/ASSOCIATE=" & '"' &
4423 "-D" & '"';
4424 -- /ASSOCIATE="name=val"
4426 -- Defines a new symbol, associated with value. If no value is given
4427 -- on the command line, then symbol is considered to be True.
4428 -- This qualifier can be used in place of a definition file.
4430 S_Prep_Blank : aliased constant S := "/BLANK_LINES " &
4431 "-b";
4432 -- /NOBLANK_LINES (D)
4433 -- /BLANK_LINES
4435 -- Causes both preprocessor lines and the lines deleted by preprocessing
4436 -- to be replaced by blank lines in the output source file, thus
4437 -- preserving line numbers in the output file.
4439 S_Prep_Com : aliased constant S := "/COMMENTS " &
4440 "-c";
4441 -- /NOCOMMENTS (D)
4442 -- /COMMENTS
4444 -- /COMMENTS causes both preprocessor lines and the lines deleted
4445 -- by preprocessing to be retained in the output source as comments marked
4446 -- with the special string "--! ". This option will result in line numbers
4447 -- being preserved in the output file.
4449 -- /NOCOMMENTS causes both preprocessor lines and the lines deleted by
4450 -- preprocessing to be replaced by blank lines in the output source file,
4451 -- thus preserving line numbers in the output file.
4453 S_Prep_Ref : aliased constant S := "/REFERENCE " &
4454 "-r";
4455 -- /NOREFERENCE (D)
4456 -- /REFERENCE
4458 -- Causes a "Source_Reference" pragma to be generated that references the
4459 -- original input file, so that error messages will use the file name of
4460 -- this original file. Also implies /BLANK_LINES if /COMMENTS is not
4461 -- specified.
4463 S_Prep_Remove : aliased constant S := "/REMOVE " &
4464 "!-b,!-c";
4465 -- /REMOVE (D)
4466 -- /NOREMOVE
4468 -- Preprocessor lines and deleted lines are completely removed from the
4469 -- output.
4471 S_Prep_Symbols : aliased constant S := "/SYMBOLS " &
4472 "-s";
4473 -- /NOSYMBOLS (D)
4474 -- /SYMBOLS
4476 -- Causes a sorted list of symbol names and values to be listed on
4477 -- SYS$OUTPUT.
4479 S_Prep_Undef : aliased constant S := "/UNDEFINED " &
4480 "-u";
4481 -- /NOUNDEFINED (D)
4482 -- /UNDEFINED
4484 Prep_Switches : aliased constant Switches :=
4485 (S_Prep_Assoc 'Access,
4486 S_Prep_Blank 'Access,
4487 S_Prep_Com 'Access,
4488 S_Prep_Ref 'Access,
4489 S_Prep_Remove 'Access,
4490 S_Prep_Symbols 'Access,
4491 S_Prep_Undef 'Access);
4493 ------------------------------
4494 -- Switches for GNAT PRETTY --
4495 ------------------------------
4497 S_Pretty_Align : aliased constant S := "/ALIGN=" &
4498 "DEFAULT " &
4499 "-A12345 " &
4500 "OFF " &
4501 "-A0 " &
4502 "COLONS " &
4503 "-A1 " &
4504 "DECLARATIONS " &
4505 "-A2 " &
4506 "STATEMENTS " &
4507 "-A3 " &
4508 "ARROWS " &
4509 "-A4 " &
4510 "COMPONENT_CLAUSES " &
4511 "-A5";
4512 -- /ALIGN[=align-option, align-option, ...]
4514 -- Set alignments. By default, all alignments (colons in declarations,
4515 -- initialisations in declarations, assignments and arrow delimiters) are
4516 -- ON.
4518 -- align-option may be one of the following:
4520 -- OFF (D) Set all alignments to OFF
4521 -- COLONS Set alignments of colons in declarations to ON
4522 -- DECLARATIONS Set alignments of initialisations in declarations
4523 -- to ON
4524 -- STATEMENTS Set alignments of assignments statements to ON
4525 -- ARROWS Set alignments of arrow delimiters to ON.
4526 -- COMPONENT_CLAUSES Set alignments of AT keywords in component
4527 -- clauses ON
4529 -- Specifying one of the ON options without first specifying the OFF
4530 -- option has no effect, because by default all alignments are set to ON.
4532 S_Pretty_Attrib : aliased constant S := "/ATTRIBUTE_CASING=" &
4533 "MIXED_CASE " &
4534 "-aM " &
4535 "LOWER_CASE " &
4536 "-aL " &
4537 "UPPER_CASE " &
4538 "-aU";
4539 -- /ATTRIBUTE_CASING[=casing-option]
4541 -- Set the case of the attributes. By default the attributes are in mixed
4542 -- case.
4543 -- casing-option may be one of the following:
4545 -- MIXED_CASE (D)
4546 -- LOWER_CASE
4547 -- UPPER_CASE
4549 S_Pretty_Comments : aliased constant S := "/COMMENTS_LAYOUT=" &
4550 "UNTOUCHED " &
4551 "-c0 " &
4552 "DEFAULT " &
4553 "-c1 " &
4554 "STANDARD_INDENT " &
4555 "-c2 " &
4556 "GNAT_BEGINNING " &
4557 "-c3 " &
4558 "REFORMAT " &
4559 "-c4";
4560 -- /COMMENTS_LAYOUT[=layout-option, layout-option, ...]
4562 -- Set the comment layout. By default, comments use the GNAT style
4563 -- comment line indentation.
4565 -- layout-option may be one of the following:
4567 -- UNTOUCHED           All the comments remain unchanged
4568 -- DEFAULT (D) GNAT style comment line indentation
4569 -- STANDARD_INDENT Standard comment line indentation
4570 -- GNAT_BEGINNING GNAT style comment beginning
4571 -- REFORMAT Reformat comment blocks
4573 -- All combinations of layout options are allowed, except for DEFAULT
4574 -- and STANDARD_INDENT which are mutually exclusive, and also if
4575 -- UNTOUCHED is specified, this must be the only option.
4577 -- The difference between "GNAT style comment line indentation" and
4578 -- "standard comment line indentation" is the following: for standard
4579 -- comment indentation, any comment line is indented as if it were
4580 -- a declaration or statement at the same place.
4581 -- For GNAT style comment indentation, comment lines which are
4582 -- immediately followed by if or case statement alternative, record
4583 -- variant or 'begin' keyword are indented as the keyword that follows
4584 -- them.:
4586 -- Standard indentation:
4588 -- if A then
4589 -- null;
4590 -- -- some comment
4591 -- else
4592 -- null;
4593 -- end if;
4595 -- GNAT style indentation:
4597 -- if A then
4598 -- null;
4599 -- -- some comment
4600 -- else
4601 -- null;
4602 -- end if;
4604 -- Option "GNAT style comment beginning" means that for each comment
4605 -- which is not considered as non-formattable separator (that is, the
4606 -- comment line contains only dashes, or a comment line ends with two
4607 -- dashes), there will be at least two spaces between starting "--" and
4608 -- the first non-blank character of the comment.
4610 S_Pretty_Config : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
4611 "-gnatec>";
4612 -- /CONFIGURATION_PRAGMAS_FILE=file
4614 -- Specify a configuration pragmas file that need to be passed to the
4615 -- compiler.
4617 S_Pretty_Constr : aliased constant S := "/CONSTRUCT_LAYOUT=" &
4618 "GNAT " &
4619 "-l1 " &
4620 "COMPACT " &
4621 "-l2 " &
4622 "UNCOMPACT " &
4623 "-l3";
4624 -- /CONSTRUCT_LAYOUT[=construct-option]
4626 -- Set construct layout. Default is GNAT style layout.
4627 -- construct-option may be one of the following:
4629 -- GNAT (D)
4630 -- COMPACT
4631 -- UNCOMPACT
4633 -- The difference between GNAT style and Compact layout on one hand
4634 -- and Uncompact layout on the other hand can be illustrated by the
4635 -- following examples:
4637 -- GNAT style and Uncompact layout
4638 -- Compact layout
4640 -- type q is record type q is
4641 -- a : integer; record
4642 -- b : integer; a : integer;
4643 -- end record; b : integer;
4644 -- end record;
4647 -- Block : declare Block :
4648 -- A : Integer := 3; declare
4649 -- begin A : Integer := 3;
4650 -- Proc (A, A); begin
4651 -- end Block; Proc (A, A);
4652 -- end Block;
4654 -- Clear : for J in 1 .. 10 loop Clear :
4655 -- A (J) := 0; for J in 1 .. 10 loop
4656 -- end loop Clear; A (J) := 0;
4657 -- end loop Clear;
4660 -- A further difference between GNAT style layout and compact layout is
4661 -- that in GNAT style layout compound statements, return statements and
4662 -- bodies are always separated by empty lines.
4664 S_Pretty_Comind : aliased constant S := "/CONTINUATION_INDENT=#" &
4665 "-cl#";
4666 -- /CONTINUATION_INDENT=nnn
4668 -- Indentation level for continuation lines, nnn from 1 .. 9.
4669 -- The default value is one less then the (normal) indentation level,
4670 -- unless the indentation is set to 1: in that case the default value for
4671 -- continuation line indentation is also 1.
4673 S_Pretty_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
4674 "-X" & '"';
4675 -- /EXTERNAL_REFERENCE="name=val"
4677 -- Specifies an external reference to the project manager. Useful only if
4678 -- /PROJECT_FILE is used.
4680 -- Example:
4681 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4683 S_Pretty_Current : aliased constant S := "/CURRENT_DIRECTORY " &
4684 "!-I-";
4685 -- /CURRENT_DIRECTORY (D)
4687 -- Look for source files in the current working directory.
4689 -- /NOCURRENT_DIRECTORY
4690 -- Do not look for source files in the current working directory.
4692 S_Pretty_Dico : aliased constant S := "/DICTIONARY=*" &
4693 "-D*";
4694 -- /DICTIONARY=(file_name, ...)
4696 -- Use each specified file as a dictionary file that defines the casing
4697 -- for a set of specified names, thereby overriding the effect on these
4698 -- names by any explicit or implicit /NAME_CASING qualifier.
4700 -- GNAT PRETTY implicitly uses a default dictionary file to define the
4701 -- casing for the Ada predefined names and the names declared in the GNAT
4702 -- libraries.
4704 -- The structure of a dictionary file, and details on the conventions
4705 -- used in the default dictionary file, are defined in the GNAT User's
4706 -- Guide.
4708 S_Pretty_Files : aliased constant S := "/FILES=@" &
4709 "-files=@";
4710 -- /FILES=filename
4712 -- Take as arguments the files that are listed in the specified
4713 -- text file.
4715 S_Pretty_Forced : aliased constant S := "/FORCED_OUTPUT=@" &
4716 "-of@";
4717 -- /FORCED_OUTPUT=file
4719 -- Write the output into the specified file, overriding any possibly
4720 -- existing file.
4722 S_Pretty_Formfeed : aliased constant S := "/FORM_FEED_AFTER_PRAGMA_PAGE " &
4723 "-ff";
4724 -- /FORM_FEED_AFTER_PRAGMA_PAGE
4726 -- When there is a pragma Page in the source, insert a Form Feed
4727 -- character immediately after the semicolon that follows the pragma
4728 -- Page.
4730 S_Pretty_Indent : aliased constant S := "/INDENTATION_LEVEL=#" &
4731 "-i#";
4732 -- /INDENTATION_LEVEL=nnn
4734 -- Specify the number of spaces to add for each indentation level.
4735 -- nnn must be between 1 and 9. The default is 3.
4737 S_Pretty_Keyword : aliased constant S := "/KEYWORD_CASING=" &
4738 "LOWER_CASE " &
4739 "-kL " &
4740 "UPPER_CASE " &
4741 "-kU";
4742 -- /KEYWORD_CASING[=keyword-option]
4744 -- Specify the case of Ada keywords. The default is keywords in lower
4745 -- case.
4746 -- keyword-option may be one of the following:
4748 -- LOWER_CASE (D)
4749 -- UPPER_CASE
4751 S_Pretty_Maxlen : aliased constant S := "/LINE_LENGTH_MAX=#" &
4752 "-M#";
4753 -- /LINE_LENGTH_MAX=nnn
4755 -- Set the maximum line length, nnn from 32 ..256. The default is 79.
4757 S_Pretty_Maxind : aliased constant S := "/MAX_INDENT=#" &
4758 "-T#";
4759 -- /MAX_INDENT=nnn
4761 -- Do not use an additional indentation level for case alternatives
4762 -- and variants if their number is nnn or more. The default is 10.
4763 -- If nnn is zero, an additional indentation level is used for any number
4764 -- of case alternatives and variants.
4766 S_Pretty_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
4767 "DEFAULT " &
4768 "-vP0 " &
4769 "MEDIUM " &
4770 "-vP1 " &
4771 "HIGH " &
4772 "-vP2";
4773 -- /MESSAGES_PROJECT_FILE[=messages-option]
4775 -- Specifies the "verbosity" of the parsing of project files.
4776 -- messages-option may be one of the following:
4778 -- DEFAULT (D) No messages are output if there is no error or warning.
4780 -- MEDIUM A small number of messages are output.
4782 -- HIGH A great number of messages are output, most of them not
4783 -- being useful for the user.
4785 S_Pretty_Names : aliased constant S := "/NAME_CASING=" &
4786 "AS_DECLARED " &
4787 "-nD " &
4788 "LOWER_CASE " &
4789 "-nL " &
4790 "UPPER_CASE " &
4791 "-nU " &
4792 "MIXED_CASE " &
4793 "-nM";
4794 -- /NAME_CASING[=name-option]
4796 -- Specify the casing of names.
4797 -- 'name-option' may be one of:
4799 -- AS_DECLARED (D) Name casing for defining occurrences are as they
4800 -- appear in the source file.
4802 -- LOWER_CASE Names are in lower case.
4804 -- UPPER_CASE Names are in upper case.
4806 -- MIXED_CASE Names are in mixed case.
4808 S_Pretty_No_Backup : aliased constant S := "/NO_BACKUP " &
4809 "-rnb";
4810 -- /REPLACE_NO_BACKUP
4812 -- Replace the argument source with the pretty-printed source without
4813 -- creating any backup copy of the argument source.
4815 S_Pretty_No_Labels : aliased constant S := "/NO_MISSED_LABELS " &
4816 "-e";
4817 -- /NO_MISSED_LABELS
4819 -- Do not insert missing end/exit labels. The end label is the name of
4820 -- a construct that may optionally appear at the end of the construct.
4821 -- This includes the names of packages and subprograms.
4822 -- Similarly, the exit label is the name of a loop that may appear as the
4823 -- argument of an exit statement within the loop. By default, GNAT PRETTY
4824 -- inserts these end/exit labels when they are absent in the original
4825 -- source. This qualifier /NO_MISSED_LABELS suppresses this insertion,
4826 -- so that the formatted source reflects the original.
4828 S_Pretty_Notabs : aliased constant S := "/NOTABS " &
4829 "-notabs";
4830 -- /NOTABS
4832 -- Replace all tabulations in comments with spaces.
4834 S_Pretty_Output : aliased constant S := "/OUTPUT=@" &
4835 "-o@";
4836 -- /OUTPUT=file
4838 -- Write the output to the specified file. If the file already exists,
4839 -- an error is reported.
4841 S_Pretty_Override : aliased constant S := "/OVERRIDING_REPLACE " &
4842 "-rf";
4843 -- /NOOVERRIDING_REPLACE (D)
4844 -- /OVERRIDING_REPLACE
4846 -- Replace the argument source with the pretty-printed source and copy the
4847 -- argument source into filename.NPP, overriding any existing file if
4848 -- needed.
4850 S_Pretty_Pragma : aliased constant S := "/PRAGMA_CASING=" &
4851 "MIXED_CASE " &
4852 "-pM " &
4853 "LOWER_CASE " &
4854 "-pL " &
4855 "UPPER_CASE " &
4856 "-pU";
4857 -- /PRAGMA_CASING[=pragma-option]
4859 -- Set the case of pragma identifiers. The default is Mixed case.
4860 -- pragma-option may be one of the following:
4862 -- MIXED_CASE (D)
4863 -- LOWER_CASE
4864 -- UPPER_CASE
4866 S_Pretty_Project : aliased constant S := "/PROJECT_FILE=<" &
4867 "-P>";
4868 -- /PROJECT_FILE=filename
4870 -- Specifies the main project file to be used. The project files rooted
4871 -- at the main project file will be parsed before any other processing to
4872 -- set the building environment.
4874 S_Pretty_Replace : aliased constant S := "/REPLACE " &
4875 "-r";
4876 -- /NOREPLACE (D)
4877 -- /REPLACE
4879 -- Replace the argument source with the pretty-printed source and copy the
4880 -- argument source into filename.NPP. If filename.NPP already exists,
4881 -- report an error and exit.
4883 S_Pretty_RTS : aliased constant S := "/RUNTIME_SYSTEM=|" &
4884 "--RTS=|";
4885 -- /RUNTIME_SYSTEM=xxx
4887 -- Compile against an alternate runtime system named xxx or RTS-xxx.
4889 S_Pretty_Search : aliased constant S := "/SEARCH=*" &
4890 "-I*";
4891 -- /SEARCH=(directory[,...])
4893 -- When looking for source files also look in directories specified.
4895 S_Pretty_Specific : aliased constant S := "/SPECIFIC_CASING " &
4896 "-D-";
4897 -- /SPECIFIC_CASING
4899 -- Do not use the default dictionary file; instead, use the casing
4900 -- defined by a qualifier /NAME_CASING and/or any explicit dictionary
4901 -- file specified by a qualifier /DICTIONARY.
4903 S_Pretty_Standard : aliased constant S := "/STANDARD_OUTPUT " &
4904 "-pipe";
4905 -- /NOSTANDARD_OUTPUT (D)
4906 -- /STANDARD_OUTPUT
4908 -- Redirect the output to the standard output.
4910 S_Pretty_Verbose : aliased constant S := "/VERBOSE " &
4911 "-v";
4912 -- /NOVERBOSE (D)
4913 -- /VERBOSE
4915 -- Verbose mode; GNAT PRETTY generates version information and then a
4916 -- trace of the actions it takes to produce or obtain the ASIS tree.
4918 S_Pretty_Warnings : aliased constant S := "/WARNINGS " &
4919 "-w";
4920 -- /NOWARNINGS (D)
4921 -- /WARNINGS
4923 -- Issue a warning to the standard error stream if it is not possible
4924 -- to provide the required layout in the result source.
4925 -- By default such warnings are not activated.
4927 Pretty_Switches : aliased constant Switches :=
4928 (S_Pretty_Align 'Access,
4929 S_Pretty_Attrib 'Access,
4930 S_Pretty_Comments 'Access,
4931 S_Pretty_Config 'Access,
4932 S_Pretty_Constr 'Access,
4933 S_Pretty_Comind 'Access,
4934 S_Pretty_Ext 'Access,
4935 S_Pretty_Current 'Access,
4936 S_Pretty_Dico 'Access,
4937 S_Pretty_Files 'Access,
4938 S_Pretty_Forced 'Access,
4939 S_Pretty_Formfeed 'Access,
4940 S_Pretty_Indent 'Access,
4941 S_Pretty_Keyword 'Access,
4942 S_Pretty_Maxlen 'Access,
4943 S_Pretty_Maxind 'Access,
4944 S_Pretty_Mess 'Access,
4945 S_Pretty_Names 'Access,
4946 S_Pretty_No_Backup 'Access,
4947 S_Pretty_No_Labels 'Access,
4948 S_Pretty_Notabs 'Access,
4949 S_Pretty_Output 'Access,
4950 S_Pretty_Override 'Access,
4951 S_Pretty_Pragma 'Access,
4952 S_Pretty_Replace 'Access,
4953 S_Pretty_Project 'Access,
4954 S_Pretty_RTS 'Access,
4955 S_Pretty_Search 'Access,
4956 S_Pretty_Specific 'Access,
4957 S_Pretty_Standard 'Access,
4958 S_Pretty_Verbose 'Access,
4959 S_Pretty_Warnings 'Access);
4961 -----------------------------
4962 -- Switches for GNAT SETUP --
4963 -----------------------------
4965 S_Setup_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
4966 "-X" & '"';
4967 -- /EXTERNAL_REFERENCE="name=val"
4969 -- Specifies an external reference to the project manager. Useful only if
4970 -- /PROJECT_FILE is used.
4972 -- Example:
4973 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4975 S_Setup_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
4976 "DEFAULT " &
4977 "-vP0 " &
4978 "MEDIUM " &
4979 "-vP1 " &
4980 "HIGH " &
4981 "-vP2";
4982 -- /MESSAGES_PROJECT_FILE[=messages-option]
4984 -- Specifies the "verbosity" of the parsing of project files.
4985 -- messages-option may be one of the following:
4987 -- DEFAULT (D) No messages are output if there is no error or warning.
4989 -- MEDIUM A small number of messages are output.
4991 -- HIGH A great number of messages are output, most of them not
4992 -- being useful for the user.
4994 S_Setup_Project : aliased constant S := "/PROJECT_FILE=<" &
4995 "-P>";
4996 -- /PROJECT_FILE=filename
4998 -- Specifies the main project file to be used. The project files rooted
4999 -- at the main project file are parsed and non existing object
5000 -- directories, library directories and exec directories are created.
5002 S_Setup_Quiet : aliased constant S := "/QUIET " &
5003 "-q";
5004 -- /NOQUIET (D)
5005 -- /QUIET
5007 -- Work quietly, only output warnings and errors.
5009 S_Setup_Verbose : aliased constant S := "/VERBOSE " &
5010 "-v";
5011 -- /NOVERBOSE (D)
5012 -- /VERBOSE
5014 -- Verbose mode; GNAT PRETTY generates version information and then a
5015 -- trace of the actions it takes to produce or obtain the ASIS tree.
5017 Setup_Switches : aliased constant Switches :=
5018 (S_Setup_Ext 'Access,
5019 S_Setup_Mess 'Access,
5020 S_Setup_Project 'Access,
5021 S_Setup_Quiet 'Access,
5022 S_Setup_Verbose 'Access);
5024 ------------------------------
5025 -- Switches for GNAT SHARED --
5026 ------------------------------
5028 S_Shared_Debug : aliased constant S := "/DEBUG=" &
5029 "ALL " &
5030 "-g3 " &
5031 "NONE " &
5032 "-g0 " &
5033 "TRACEBACK " &
5034 "-g1 " &
5035 "NOTRACEBACK " &
5036 "-g0";
5037 -- /DEBUG[=debug-option]
5038 -- /NODEBUG
5040 -- Specifies the amount of debugging information included. 'debug-option'
5041 -- is one of the following:
5043 -- ALL (D) Include full debugging information.
5045 -- NONE Provide no debugging information. Same as /NODEBUG.
5047 -- TRACEBACK Provide sufficient debug information for a traceback.
5049 -- NOTRACEBACK Same as NONE.
5051 S_Shared_Image : aliased constant S := "/IMAGE=@" &
5052 "-o@";
5053 -- /IMAGE=image-name
5055 -- 'image-name' specifies the name for the generated shared library.
5057 S_Shared_Ident : aliased constant S := "/IDENTIFICATION=" & '"' &
5058 "--for-linker=IDENT=" &
5059 '"';
5060 -- /IDENTIFICATION="<string>"
5062 -- "<string>" specifies the string to be stored in the image file ident-
5063 -- ification field in the image header. It overrides any pragma Ident
5064 -- specified string.
5066 S_Shared_Nofiles : aliased constant S := "/NOSTART_FILES " &
5067 "-nostartfiles";
5068 -- /NOSTART_FILES
5070 -- Link in default image initialization and startup functions.
5072 S_Shared_Noinhib : aliased constant S := "/NOINHIBIT-IMAGE " &
5073 "--for-linker=--noinhibit-exec";
5074 -- /NOINHIBIT-IMAGE
5076 -- Delete image if there are errors or warnings.
5078 S_Shared_Verb : aliased constant S := "/VERBOSE " &
5079 "-v";
5080 -- /NOVERBOSE (D)
5081 -- /VERBOSE
5083 -- Causes additional information to be output, including a full list of
5084 -- the included object files. This switch option is most useful when you
5085 -- want to see what set of object files are being used in the link step.
5087 S_Shared_ZZZZZ : aliased constant S := "/<other> " &
5088 "--for-linker=";
5089 -- /<other>
5091 -- Any other switch transmitted to the underlying linker.
5093 Shared_Switches : aliased constant Switches :=
5094 (S_Shared_Debug 'Access,
5095 S_Shared_Image 'Access,
5096 S_Shared_Ident 'Access,
5097 S_Shared_Nofiles 'Access,
5098 S_Shared_Noinhib 'Access,
5099 S_Shared_Verb 'Access,
5100 S_Shared_ZZZZZ 'Access);
5102 ----------------------------
5103 -- Switches for GNAT STUB --
5104 ----------------------------
5106 S_Stub_Config : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
5107 "-gnatec>";
5108 -- /CONFIGURATION_PRAGMAS_FILE=filespec
5110 -- Specifies a configuration pragmas file that must be taken into account
5111 -- when compiling.
5113 S_Stub_Current : aliased constant S := "/CURRENT_DIRECTORY " &
5114 "!-I-";
5115 -- /CURRENT_DIRECTORY (D)
5116 -- /NOCURRENT_DIRECTORY
5118 -- Look for source, library or object files in the default directory.
5120 S_Stub_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
5121 "-X" & '"';
5122 -- /EXTERNAL_REFERENCE="name=val"
5124 -- Specifies an external reference to the project manager. Useful only if
5125 -- /PROJECT_FILE is used.
5127 -- Example:
5128 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
5130 S_Stub_Full : aliased constant S := "/FULL " &
5131 "-f";
5132 -- /NOFULL (D)
5133 -- /FULL
5135 -- If the destination directory already contains a file with the name of
5136 -- the body file for the argument file spec, replace it with the generated
5137 -- body stub. If /FULL is not used and there is already a body file, this
5138 -- existing body file is not replaced.
5140 S_Stub_Header : aliased constant S := "/HEADER=" &
5141 "GENERAL " &
5142 "-hg " &
5143 "SPEC " &
5144 "-hs";
5145 -- /HEADER[=header-option]
5147 -- Specifies the form of the comment header above the generated body stub.
5148 -- If no /HEADER qualifier is specified, there is no comment header.
5149 -- header-option is one of the following:
5152 -- GENERAL (D) Put a sample comment header into the body stub.
5154 -- SPEC Put the comment header (i.e., all the comments
5155 -- preceding the compilation unit) from the source of the
5156 -- library unit declaration into the body stub.
5158 S_Stub_Indent : aliased constant S := "/INDENTATION=#" &
5159 "-i#";
5160 -- /INDENTATION=nnn
5162 -- (nnn is a non-negative integer). Set the indentation level in the
5163 -- generated body stub to nnn. nnn=0 means "no indentation".
5164 -- Default insdentation is 3.
5166 S_Stub_Keep : aliased constant S := "/KEEP " &
5167 "-k";
5168 -- /NOKEEP (D)
5169 -- /KEEP
5171 -- Do not delete the tree file (i.e., the snapshot of the compiler
5172 -- internal structures used by gnatstub) after creating the body stub.
5174 S_Stub_Length : aliased constant S := "/LINE_LENGTH=#" &
5175 "-l#";
5176 -- /LINE_LENGTH=nnn
5178 -- (n is a non-negative integer). Set the maximum line length in the body
5179 -- stub to nnn. Default is 78.
5181 S_Stub_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
5182 "DEFAULT " &
5183 "-vP0 " &
5184 "MEDIUM " &
5185 "-vP1 " &
5186 "HIGH " &
5187 "-vP2";
5188 -- /MESSAGES_PROJECT_FILE[=messages-option]
5190 -- Specifies the "verbosity" of the parsing of project files.
5191 -- messages-option may be one of the following:
5193 -- DEFAULT (D) No messages are output if there is no error or warning.
5195 -- MEDIUM A small number of messages are output.
5197 -- HIGH A great number of messages are output, most of them not
5198 -- being useful for the user.
5200 S_Stub_Output : aliased constant S := "/OUTPUT=@" &
5201 "-o@";
5202 -- /OUTPUT=filespec
5204 -- Body file name. This should be set if the argument file name does not
5205 -- follow the GNAT file naming conventions. If this switch is omitted,
5206 -- the default name for the body will be obtained from the argument file
5207 -- name according to the GNAT file naming conventions.
5209 S_Stub_Project : aliased constant S := "/PROJECT_FILE=<" &
5210 "-P>";
5211 -- /PROJECT_FILE=filename
5213 -- Specifies the main project file to be used. The project files rooted
5214 -- at the main project file will be parsed before any other processing.
5215 -- The source and object directories to be searched will be communicated
5216 -- to gnatstub through logical names ADA_PRJ_INCLUDE_FILE and
5217 -- ADA_PRJ_OBJECTS_FILE.
5219 S_Stub_Quiet : aliased constant S := "/QUIET " &
5220 "-q";
5221 -- /NOQUIET (D)
5222 -- /QUIET
5224 -- Quiet mode: do not generate a confirmation when a body is successfully
5225 -- created, and do not generate a message when a body is not required for
5226 -- an argument unit.
5228 S_Stub_Search : aliased constant S := "/SEARCH=*" &
5229 "-I*";
5230 -- /SEARCH=(directory[,...])
5232 -- When looking for source files also look in directories specified.
5234 S_Stub_Tree : aliased constant S := "/TREE_FILE=" &
5235 "OVERWRITE " &
5236 "-t " &
5237 "SAVE " &
5238 "-k " &
5239 "REUSE " &
5240 "-r";
5241 -- /TREE_FILE[=treefile-option]
5243 -- Specify what to do with the tree file.
5244 -- treefile-option is one of the following:
5246 -- OVERWRITE (D) Overwrite the existing tree file. If the current
5247 -- directory already contains the file which, according
5248 -- to the GNAT file naming rules should be considered
5249 -- as a tree file for the argument source file,
5250 -- gnatstub will refuse to create the tree file needed
5251 -- to create a sample body unless this option is chosen.
5253 -- SAVE Do not remove the tree file (i.e., the snapshot
5254 -- of the compiler internal structures used by gnatstub)
5255 -- after creating the body stub.
5257 -- REUSE Reuse the tree file (if it exists) instead of
5258 -- creating it.
5259 -- Instead of creating the tree file for the library
5260 -- unit declaration, gnatstub tries to find it in the
5261 -- current directory and use it for creating a body.
5262 -- If the tree file is not found, no body is created.
5263 -- This option also implies `SAVE', whether or not the
5264 -- latter is set explicitly.
5266 S_Stub_Verbose : aliased constant S := "/VERBOSE " &
5267 "-v";
5268 -- /NOVERBOSE (D)
5269 -- /VERBOSE
5271 -- Verbose mode: generate version information.
5273 Stub_Switches : aliased constant Switches :=
5274 (S_Stub_Config 'Access,
5275 S_Stub_Current 'Access,
5276 S_Stub_Ext 'Access,
5277 S_Stub_Full 'Access,
5278 S_Stub_Header 'Access,
5279 S_Stub_Indent 'Access,
5280 S_Stub_Keep 'Access,
5281 S_Stub_Length 'Access,
5282 S_Stub_Mess 'Access,
5283 S_Stub_Output 'Access,
5284 S_Stub_Project 'Access,
5285 S_Stub_Quiet 'Access,
5286 S_Stub_Search 'Access,
5287 S_Stub_Tree 'Access,
5288 S_Stub_Verbose 'Access);
5290 ----------------------------
5291 -- Switches for GNAT XREF --
5292 ----------------------------
5294 S_Xref_All : aliased constant S := "/ALL_FILES " &
5295 "-a";
5296 -- /NOALL_FILES (D)
5297 -- /ALL_FILES
5299 -- If this switch is present, FIND and XREF will parse the read-only
5300 -- files found in the library search path. Otherwise, these files will
5301 -- be ignored. This option can be used to protect Gnat sources or your
5302 -- own libraries from being parsed, thus making FIND and XREF much
5303 -- faster, and their output much smaller.
5305 S_Xref_Deriv : aliased constant S := "/DERIVED_TYPES " &
5306 "-d";
5307 -- /NODERIVED_TYPES (D)
5308 -- /DERIVED_TYPES
5310 -- Output the parent type reference for each matching derived types.
5312 S_Xref_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
5313 "-X" & '"';
5314 -- /EXTERNAL_REFERENCE="name=val"
5316 -- Specifies an external reference to the project manager. Useful only if
5317 -- /PROJECT_FILE is used.
5319 -- Example:
5320 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
5322 S_Xref_Full : aliased constant S := "/FULL_PATHNAME " &
5323 "-f";
5324 -- /NOFULL_PATHNAME (D)
5325 -- /FULL_PATHNAME
5327 -- If this switch is set, the output file names will be preceded by their
5328 -- directory (if the file was found in the search path). If this switch
5329 -- is not set, the directory will not be printed.
5331 S_Xref_Global : aliased constant S := "/IGNORE_LOCALS " &
5332 "-g";
5333 -- /NOIGNORE_LOCALS (D)
5334 -- /IGNORE_LOCALS
5336 -- If this switch is set, information is output only for library-level
5337 -- entities, ignoring local entities. The use of this switch may
5338 -- accelerate FIND and XREF.
5340 S_Xref_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
5341 "DEFAULT " &
5342 "-vP0 " &
5343 "MEDIUM " &
5344 "-vP1 " &
5345 "HIGH " &
5346 "-vP2";
5347 -- /MESSAGES_PROJECT_FILE[=messages-option]
5349 -- Specifies the "verbosity" of the parsing of project files.
5350 -- messages-option may be one of the following:
5352 -- DEFAULT (D) No messages are output if there is no error or warning.
5354 -- MEDIUM A small number of messages are output.
5356 -- HIGH A great number of messages are output, most of them not
5357 -- being useful for the user.
5359 S_Xref_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
5360 "-nostdinc";
5361 -- /NOSTD_INCLUDES
5363 -- Do not look for sources in the system default directory.
5365 S_Xref_Nostlib : aliased constant S := "/NOSTD_LIBRARIES " &
5366 "-nostdlib";
5367 -- /NOSTD_LIBRARIES
5369 -- Do not look for library files in the system default directory.
5371 S_Xref_Object : aliased constant S := "/OBJECT_SEARCH=*" &
5372 "-aO*";
5373 -- /OBJECT_SEARCH=(directory,...)
5375 -- When searching for library and object files, look in the specified
5376 -- directories. The order in which library files are searched is the same
5377 -- as for MAKE.
5379 S_Xref_Project : aliased constant S := "/PROJECT=@" &
5380 "-p@";
5381 -- /PROJECT=file
5383 -- Specify a project file to use. By default, FIND and XREF will try to
5384 -- locate a project file in the current directory.
5386 -- If a project file is either specified or found by the tools, then the
5387 -- content of the source directory and object directory lines are added
5388 -- as if they had been specified respectively by /SOURCE_SEARCH and
5389 -- /OBJECT_SEARCH.
5391 S_Xref_Prj : aliased constant S := "/PROJECT_FILE=<" &
5392 "-P>";
5393 -- /PROJECT_FILE=filename
5395 -- Specifies the main project file to be used. The project files rooted
5396 -- at the main project file will be parsed before doing any processing.
5397 -- The source and object directories to be searched will be communicated
5398 -- to gnatxref through logical names ADA_PRJ_INCLUDE_FILE and
5399 -- ADA_PRJ_OBJECTS_FILE.
5401 S_Xref_Search : aliased constant S := "/SEARCH=*" &
5402 "-I*";
5403 -- /SEARCH=(directory,...)
5405 -- Equivalent to:
5406 -- /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
5408 S_Xref_Source : aliased constant S := "/SOURCE_SEARCH=*" &
5409 "-aI*";
5410 -- /SOURCE_SEARCH=(directory,...)
5412 -- When looking for source files also look in the specified directories.
5413 -- The order in which source file search is undertaken is the same as for
5414 -- MAKE.
5416 S_Xref_Output : aliased constant S := "/UNUSED " &
5417 "-u";
5418 -- /SOURCE_SEARCH=(directory,...)
5420 -- When looking for source files also look in the specified directories.
5421 -- The order in which source file search is undertaken is the same as for
5422 -- MAKE.
5424 S_Xref_Tags : aliased constant S := "/TAGS " &
5425 "-v";
5426 -- /NOTAGS (D)
5427 -- /TAGS
5429 -- Print a 'tags' file for vi.
5431 Xref_Switches : aliased constant Switches :=
5432 (S_Xref_All 'Access,
5433 S_Xref_Deriv 'Access,
5434 S_Xref_Ext 'Access,
5435 S_Xref_Full 'Access,
5436 S_Xref_Global 'Access,
5437 S_Xref_Mess 'Access,
5438 S_Xref_Nostinc 'Access,
5439 S_Xref_Nostlib 'Access,
5440 S_Xref_Object 'Access,
5441 S_Xref_Project 'Access,
5442 S_Xref_Prj 'Access,
5443 S_Xref_Search 'Access,
5444 S_Xref_Source 'Access,
5445 S_Xref_Output 'Access,
5446 S_Xref_Tags 'Access);
5448 end VMS_Data;