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