1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1996-2012, Free Software Foundation, Inc. --
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. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
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
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
37 -- This package is also an input to the tool that generates the VMS GNAT
38 -- help information automatically.
40 -- NOTE: the format of this package must follow the following rules, so that
41 -- the VMS GNAT help tool works properly:
43 -- - Each command zone (where the eventual qualifiers are declared) must
44 -- begin with a boxed comment of the form:
46 -- ---------------------------------
47 -- -- Switches for GNAT <COMMAND> --
48 -- ---------------------------------
50 -- where <COMMAND> is the name of a GNAT command in capital letters, for
51 -- example BIND, COMPILE, XREF, ...
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.
59 -- - each command zone ends with the declaration of the constant array
60 -- for the command, of the form:
62 -- <Command>__Switches : aliased constant Switches :=
70 -- The syntax of a qualifier declaration is as follows:
72 -- SWITCH_STRING ::= "/ command-qualifier-name TRANSLATION"
76 -- | DIRECTORIES_TRANSLATION
78 -- | NO_SPACE_FILE_TRANSL
79 -- | NUMERIC_TRANSLATION
80 -- | STRING_TRANSLATION
81 -- | OPTIONS_TRANSLATION
82 -- | COMMANDS_TRANSLATION
83 -- | ALPHANUMPLUS_TRANSLATION
84 -- | OTHER_TRANSLATION
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 |
97 -- UNIX_SWITCHES ::= UNIX_SWITCH {, UNIX_SWITCH}
99 -- UNIX_SWITCH ::= unix-switch-string | !unix-switch-string | `string'
101 -- OPTION ::= option-name space UNIX_SWITCHES
103 -- ARGS ::= -cargs | -bargs | -largs
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.
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.
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
120 -- PATH=(direc,direc,direc,direc)
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 *.
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.
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.
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.
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:
142 -- /ERRORS=(FULL,VERBOSE)
143 -- /ERRORS=(BRIEF IMMEDIATE)
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.
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
158 -- /COMPILER_QUALIFIERS /LIST /BINDER_QUALIFIERS /MAIN
159 -- /COMPILER_QUALIFIERS /NOLIST /COMPILE_CHECKS=SYNTAX
161 -- Clearly these switches must come at the end of the list of switches
162 -- since all subsequent switches apply to an issued command.
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:
171 -- An implicit qualifier definition is created:
175 -- In the case where, a ! is already present, inverting the sense of the
176 -- switch means removing it.
179 -- A synonym to shorten the table
181 type String_Ptr
is access constant String;
182 -- String pointer type used throughout
184 type Switches
is array (Natural range <>) of String_Ptr
;
185 -- Type used for array of switches
187 type Switches_Ptr
is access constant Switches
;
189 ----------------------------
190 -- Switches for GNAT BIND --
191 ----------------------------
193 S_Bind_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
195 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
197 -- Add directories to the project search path.
199 S_Bind_ALI
: aliased constant S
:= "/ALI_LIST " &
204 -- Output full names of all the ALI files in the partition. The output is
205 -- written to SYS$OUTPUT.
207 S_Bind_Bind
: aliased constant S
:= "/BIND_FILE=" &
212 -- /BIND_FILE[=bind-file-option]
214 -- Specifies the language of the binder generated file.
216 -- ADA (D) Binder file is Ada.
218 -- C Binder file is 'C'.
220 S_Bind_Build
: aliased constant S
:= "/BUILD_LIBRARY=|" &
222 -- /BUILD_LIBRARY=xxx
224 -- Binds the units for library building. In this case the adainit and
225 -- adafinal procedures are rename to xxxinit and xxxfinal. Implies
228 S_Bind_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
230 -- /CURRENT_DIRECTORY (D)
231 -- /NOCURRENT_DIRECTORY
233 -- Look for source, library or object files in the default directory.
235 S_Bind_Debug
: aliased constant S
:= "/DEBUG=" &
250 -- /DEBUG[=debug-level]
253 -- Specify level of debugging information generated for the elaboration
254 -- routine. See corresponding qualifier for GNAT COMPILE.
256 S_Bind_DebugX
: aliased constant S
:= "/NODEBUG " &
258 -- NODOC (see /DEBUG)
260 S_Bind_Elab
: aliased constant S
:= "/ELABORATION_DEPENDENCIES " &
262 -- /ELABORATION_DEPENDENCIES
263 -- /NOELABORATION_DEPENDENCIES (D)
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.
270 S_Bind_Error
: aliased constant S
:= "/ERROR_LIMIT=#" &
274 -- Limit number of detected errors to nnn (1-999999).
276 S_Bind_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
278 -- /EXTERNAL_REFERENCE="name=val"
280 -- Specifies an external reference to the project manager. Useful only if
281 -- /PROJECT_FILE is used.
284 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
286 S_Bind_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
288 -- /NOFOLLOW_LINKS_FOR_FILES (D)
289 -- /FOLLOW_LINKS_FOR_FILES
291 -- Follow links when parsing project files
293 S_Bind_Force
: aliased constant S
:= "/FORCE_ELAB_FLAGS " &
295 -- /NOFORCE_ELAB_FLAGS (D)
298 -- Force checking of elaboration Flags
300 S_Bind_Help
: aliased constant S
:= "/HELP " &
304 -- Output usage information.
306 S_Bind_Init
: aliased constant S
:= "/INITIALIZE_SCALARS=" &
313 -- /INITIALIZE_SCALARS[=scalar-option]
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:
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.
323 S_Bind_Leap
: aliased constant S
:= "/ENABLE_LEAP_SECONDS " &
325 -- /ENABLE_LEAP_SECONDS
326 -- /NOENABLE_LEAP_SECONDS (D)
328 -- Enable leap seconds support in Ada.Calendar and its children.
330 S_Bind_Library
: aliased constant S
:= "/LIBRARY_SEARCH=*" &
332 -- /LIBRARY_SEARCH=(direc[,...])
334 -- When looking for library and object files look also in directories
337 S_Bind_Linker
: aliased constant S
:= "/LINKER_OPTION_LIST " &
339 -- /NOLINKER_OPTION_LIST (D)
340 -- /LINKER_OPTION_LIST
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.
346 S_Bind_Main
: aliased constant S
:= "/MAIN " &
350 -- The main program is in Ada.
354 -- The main program is not in Ada.
356 S_Bind_Alloc32
: aliased constant S
:= "/32_MALLOC " &
360 -- Use 32-bit allocations for `__gnat_malloc' (and thus for
363 S_Bind_Alloc64
: aliased constant S
:= "/64_MALLOC " &
367 -- Use 64-bit allocations for `__gnat_malloc' (and thus for
370 S_Bind_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
377 -- /MESSAGES_PROJECT_FILE[=messages-option]
379 -- Specifies the "verbosity" of the parsing of project files.
380 -- messages-option may be one of the following:
382 -- DEFAULT (D) No messages are output if there is no error or warning.
384 -- MEDIUM A small number of messages are output.
386 -- HIGH A great number of messages are output, most of them not
387 -- being useful for the user.
389 S_Bind_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
393 -- Do not look for sources the in the system default directory.
395 S_Bind_Nostlib
: aliased constant S
:= "/NOSTD_LIBRARIES " &
399 -- Do not look for library files in the system default directory.
401 S_Bind_No_Time
: aliased constant S
:= "/NO_TIME_STAMP_CHECK " &
403 -- NODOC (see /TIME_STAMP_CHECK)
405 S_Bind_Object
: aliased constant S
:= "/OBJECT_LIST " &
407 -- /NOOBJECT_LIST (D)
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
414 S_Bind_Order
: aliased constant S
:= "/ORDER_OF_ELABORATION " &
416 -- /NOORDER_OF_ELABORATION (D)
417 -- /ORDER_OF_ELABORATION
419 -- Output chosen elaboration order. The output is written to SYS$OUTPUT.
421 S_Bind_Output
: aliased constant S
:= "/OUTPUT=@" &
425 -- File name to use for the program containing the elaboration code.
427 S_Bind_OutputX
: aliased constant S
:= "/NOOUTPUT " &
431 -- Check only. Do not generate the binder output file.
433 -- In this mode the binder performs all error checks but does not generate
436 S_Bind_Pess
: aliased constant S
:= "/PESSIMISTIC_ELABORATION " &
438 -- /PESSIMISTIC_ELABORATION
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.
445 S_Bind_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
447 -- /PROJECT_FILE=filename
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.
455 S_Bind_Read
: aliased constant S
:= "/READ_SOURCES=" &
462 -- /READ_SOURCES[=(keyword[,...])]
465 -- The following keyword are accepted:
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.
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.
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.
485 -- This is the same as specifying /NOREAD_SOURCES.
487 -- AVAILABLE Check that object files are consistent with one
488 -- another and are consistent with any source files that
491 S_Bind_ReadX
: aliased constant S
:= "/NOREAD_SOURCES " &
493 -- NODOC (see /READ_SOURCES)
495 S_Bind_Rename
: aliased constant S
:= "/RENAME_MAIN=<" &
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
504 S_Bind_Report
: aliased constant S
:= "/REPORT_ERRORS=" &
511 -- /REPORT_ERRORS[=(keyword[,...])]
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
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
529 S_Bind_ReportX
: aliased constant S
:= "/NOREPORT_ERRORS " &
531 -- NODOC (see /REPORT_ERRORS)
533 S_Bind_Restr
: aliased constant S
:= "/RESTRICTION_LIST " &
535 -- /NORESTRICTION_LIST (D)
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.
542 S_Bind_Return
: aliased constant S
:= "/RETURN_CODES=" &
547 -- /RETURN_CODES=POSIX (D)
550 -- Specifies the style of default exit code returned. Must be used in
551 -- conjunction with and match the Link qualifier with same name.
553 -- POSIX (D) Return Posix success (0) by default.
555 -- VMS Return VMS success (1) by default.
557 S_Bind_RTS
: aliased constant S
:= "/RUNTIME_SYSTEM=|" &
559 -- /RUNTIME_SYSTEM=xxx
561 -- Binds against an alternate runtime system named xxx or RTS-xxx.
563 S_Bind_Search
: aliased constant S
:= "/SEARCH=*" &
565 -- /SEARCH=(directory[,...])
567 -- When looking for source or object files also look in directories
570 -- This is the same as specifying both /LIBRARY_SEARCH and /SOURCE_SEARCH
573 S_Bind_Shared
: aliased constant S
:= "/SHARED " &
578 -- Link against a shared GNAT run time when available.
580 S_Bind_Slice
: aliased constant S
:= "/TIME_SLICE=#" &
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.
588 S_Bind_Source
: aliased constant S
:= "/SOURCE_SEARCH=*" &
590 -- /SOURCE_SEARCH=(directory[,...])
592 -- When looking for source files also look in directories specified.
594 S_Bind_Static
: aliased constant S
:= "/STATIC " &
599 -- Link against a static GNAT run time.
601 S_Bind_Store
: aliased constant S
:= "/STORE_TRACEBACKS " &
603 -- /STORE_TRACEBACKS (D)
604 -- /NOSTORE_TRACEBACKS
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.
611 S_Bind_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
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.
619 S_Bind_Time
: aliased constant S
:= "/TIME_STAMP_CHECK " &
621 -- /TIME_STAMP_CHECK (D)
623 -- Time stamp errors will be treated as errors.
625 -- /NOTIME_STAMP_CHECK
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.
632 -- This means that /NOTIME_STAMP_CHECK should be used only in unusual
633 -- situations, with extreme care.
635 S_Bind_Verbose
: aliased constant S
:= "/VERBOSE " &
640 -- Equivalent to /REPORT_ERRORS=VERBOSE.
642 S_Bind_Warn
: aliased constant S
:= "/WARNINGS=" &
649 -- /WARNINGS[=(keyword[,...])]
652 -- The following keywords are supported:
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
658 S_Bind_WarnX
: aliased constant S
:= "/NOWARNINGS " &
660 -- NODOC (see /WARNINGS)
662 S_Bind_Wide
: aliased constant S
:= "/WIDE_CHARACTER_ENCODING=" &
675 -- /NOWIDE_CHARACTER_ENCODING (D)
676 -- /WIDE_CHARACTER_ENCODING[=encode-type]
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.
682 S_Bind_Zero
: aliased constant S
:= "/ZERO_MAIN " &
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.
692 Bind_Switches
: aliased constant Switches
:=
696 S_Bind_Build 'Access,
697 S_Bind_Current
'Access,
698 S_Bind_Debug 'Access,
699 S_Bind_DebugX
'Access,
701 S_Bind_Error
'Access,
703 S_Bind_Follow
'Access,
704 S_Bind_Force 'Access,
708 S_Bind_Library 'Access,
709 S_Bind_Linker
'Access,
711 S_Bind_Alloc32
'Access,
712 S_Bind_Alloc64 '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,
722 S_Bind_Project '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,
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,
739 S_Bind_Verbose
'Access,
741 S_Bind_WarnX
'Access,
743 S_Bind_Zero
'Access);
745 -----------------------------
746 -- Switches for GNAT CHECK --
747 -----------------------------
749 S_Check_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
751 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
753 -- Add directories to the project search path.
755 S_Check_All : aliased constant S := "/ALL " &
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.
764 S_Check_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
766 -- /EXTERNAL_REFERENCE="name=val"
768 -- Specifies an external reference to the project manager. Useful only if
769 -- /PROJECT_FILE is used.
772 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
774 S_Check_Files : aliased constant S := "/FILES=@" &
778 -- Take as arguments the files that are listed in the specified
781 S_Check_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
783 -- /NOFOLLOW_LINKS_FOR_FILES (D)
784 -- /FOLLOW_LINKS_FOR_FILES
786 -- Follow links when parsing project files
788 S_Check_Help : aliased constant S := "/HELP " &
793 -- Print information about currently implemented checks.
795 S_Check_Locs : aliased constant S := "/LOCS " &
800 -- Use full source locations references in the report file.
802 S_Diagnosis : aliased constant S := "/DIAGNOSTIC_LIMIT=#" &
804 -- /DIAGNOSTIC_LIMIT=500 (D)
805 -- /DIAGNOSTIC_LIMIT=nnn
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.
813 S_Check_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
820 -- /MESSAGES_PROJECT_FILE[=messages-option]
822 -- Specifies the "verbosity" of the parsing of project files.
823 -- messages-option may be one of the following:
825 -- DEFAULT (D) No messages are output if there is no error or warning.
827 -- MEDIUM A small number of messages are output.
829 -- HIGH A great number of messages are output, most of them not
830 -- being useful for the user.
832 S_Check_Project : aliased constant S := "/PROJECT_FILE=<" &
834 -- /PROJECT_FILE=filename
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.
841 S_Check_Quiet : aliased constant S := "/QUIET " &
846 -- Work quietly, only output warnings and errors.
848 S_Check_Time : aliased constant S := "/TIME " &
853 -- Print out execution time
855 S_Check_Log : aliased constant S := "/LOG " &
860 -- Duplicate all the output sent to Stderr into a log file.
862 S_Check_Short : aliased constant S := "/SHORT " &
867 -- Generate a short form of the report file.
869 S_Check_Include : aliased constant S := "/INCLUDE_FILE=@" &
872 -- /INCLUDE_FILE=filename
874 -- Add the content of the specified text file to the generated report
877 S_Check_Subdirs : aliased constant S := "/SUBDIRS=<" &
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.
885 S_Check_Template : aliased constant S := "/TEMPLATE=@" &
887 -- /TEMPLATE=filename
889 -- Generate the rule template into the specified file.
891 S_Check_Verb : aliased constant S := "/VERBOSE " &
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
900 S_Check_Out : aliased constant S := "/OUTPUT=@" &
904 -- Specify the name of the output file.
906 Check_Switches : aliased constant Switches :=
907 (S_Check_Add '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,
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);
927 ----------------------------
928 -- Switches for GNAT CHOP --
929 ----------------------------
931 S_Chop_Comp : aliased constant S := "/COMPILATION " &
933 -- /NOCOMPILATION (D)
936 -- Compilation mode, handle configuration pragmas strictly according to
939 S_Chop_File : aliased constant S := "/FILE_NAME_MAX_LENGTH=#" &
941 -- /FILE_NAME_MAX_LENGTH[=nnn]
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.
947 S_Chop_Help : aliased constant S := "/HELP " &
952 -- Print usage information.
954 S_Chop_Over : aliased constant S := "/OVERWRITE " &
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.
964 S_Chop_Pres : aliased constant S := "/PRESERVE " &
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.
974 S_Chop_Quiet : aliased constant S := "/QUIET " &
979 -- Work quietly, only output warnings and errors.
981 S_Chop_Ref : aliased constant S := "/REFERENCE " &
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
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
1000 S_Chop_Verb : aliased constant S := "/VERBOSE " &
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
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,
1017 S_Chop_Verb
'Access);
1019 -----------------------------
1020 -- Switches for GNAT CLEAN --
1021 -----------------------------
1023 S_Clean_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
1025 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
1027 -- Add directories to the project search path.
1029 S_Clean_Compil : aliased constant S := "/COMPILER_FILES_ONLY " &
1031 -- /NOCOMPILER_FILES_ONLY (D)
1032 -- /COMPILER_FILES_ONLY
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.
1039 S_Clean_Current : aliased constant S := "/CURRENT_DIRECTORY " &
1041 -- /CURRENT_DIRECTORY (D)
1043 -- Look for ALI or object files in the directory where GNAT CLEAN was
1046 -- /NOCURRENT_DIRECTORY
1048 -- Do not look for ALI or object files in the directory where GNAT CLEAN
1051 S_Clean_Delete : aliased constant S := "/DELETE " &
1055 -- Delete the files that are not read-only.
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.
1062 S_Clean_Dirobj : aliased constant S := "/DIRECTORY_OBJECTS=@" &
1064 -- /DIRECTORY_OBJECTS=<file>
1066 -- Find the object files and .ALI files in <file>.
1067 -- This qualifier is not compatible with /PROJECT_FILE.
1069 S_Clean_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
1071 -- /EXTERNAL_REFERENCE="name=val"
1073 -- Specifies an external reference to the project manager. Useful only if
1074 -- /PROJECT_FILE is used.
1077 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
1079 S_Clean_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
1081 -- /NOFOLLOW_LINKS_FOR_FILES (D)
1082 -- /FOLLOW_LINKS_FOR_FILES
1084 -- Follow links when parsing project files
1086 S_Clean_Full : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES " &
1088 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
1089 -- /FULL_PATH_IN_BRIEF_MESSAGES
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.
1096 S_Clean_Help : aliased constant S := "/HELP " &
1101 -- Output a message explaining the usage of gnatclean.
1103 S_Clean_Index : aliased constant S := "/SOURCE_INDEX=#" &
1105 -- /SOURCE_INDEX=nnn
1107 -- Specifies the index of the units in the source file
1108 -- By default, source files are mono-unit and there is no index
1110 S_Clean_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
1117 -- /MESSAGES_PROJECT_FILE[=messages-option]
1119 -- Specifies the "verbosity" of the parsing of project files.
1120 -- messages-option may be one of the following:
1122 -- DEFAULT (D) No messages are output if there is no error or warning.
1124 -- MEDIUM A small number of messages are output.
1126 -- HIGH A great number of messages are output, most of them not
1127 -- being useful for the user.
1129 S_Clean_Object : aliased constant S := "/OBJECT_SEARCH=*" &
1131 -- /OBJECT_SEARCH=(directory,...)
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
1137 S_Clean_Project : aliased constant S := "/PROJECT_FILE=<" &
1139 -- /PROJECT_FILE=filename
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.
1147 S_Clean_Quiet : aliased constant S := "/QUIET " &
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).
1156 S_Clean_Recurs : aliased constant S := "/RECURSIVE " &
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.
1166 S_Clean_Search : aliased constant S := "/SEARCH=*" &
1168 -- /SEARCH=(directory,...)
1170 -- Equivalent to /OBJECT_SEARCH=(directory,...).
1172 S_Clean_Subdirs : aliased constant S := "/SUBDIRS=<" &
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.
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
1185 -- Allow shared library projects to import static library projects
1187 S_Clean_Verbose : aliased constant S := "/VERBOSE " &
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);
1215 -------------------------------
1216 -- Switches for GNAT COMPILE --
1217 -------------------------------
1219 S_GCC_Ada_83
: aliased constant S
:= "/83 " &
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.
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
1242 S_GCC_Ada_95
: aliased constant S
:= "/95 " &
1246 -- Allows GNAT to recognize the full range of Ada 95 constructs.
1247 -- This is the normal default for GNAT Pro.
1249 S_GCC_Ada_05
: aliased constant S
:= "/05 " &
1253 -- Allows GNAT to recognize the full range of Ada 2005 constructs.
1255 S_GCC_Ada_2005
: aliased constant S
:= "/2005 " &
1259 -- Allows GNAT to recognize the full range of Ada 2005 constructs.
1260 -- Equivalent to /05 (/2005 is the preferred usage).
1262 S_GCC_Ada_12
: aliased constant S
:= "/12 " &
1266 -- Allows GNAT to recognize all implemented proposed Ada 2012
1267 -- extensions. See features file for list of implemented features.
1269 S_GCC_Ada_2012
: aliased constant S
:= "/2012 " &
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).
1277 S_GCC_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
1279 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
1281 -- Add directories to the project search path.
1283 S_GCC_Asm
: aliased constant S
:= "/ASM " &
1288 -- Use to cause the assembler source file to be generated, using S as the
1289 -- filetype, instead of the object file. This may be useful if you need
1290 -- to examine the generated assembly code.
1292 S_GCC_AValid
: aliased constant S
:= "/ASSUME_VALID " &
1294 -- /NO_ASSUME_VALID (D)
1297 -- Use to tell the compiler to assume that all objects have valid values
1298 -- except those occurring as prefixes to 'Valid attributes. In the default
1299 -- mode, the compiler assumes that values may be invalid unless it can
1300 -- be sure that they are valid, and code is generated to allow for this
1301 -- possibility. The use of /ASSUME_VALID will improve the code.
1303 S_GCC_CategW
: aliased constant S
:= "/CATEGORIZATION_WARNINGS " &
1305 -- /NO_CATEGORIZATION_WARNINGS (D)
1306 -- /CATEGORIZATION_WARNINGS
1308 -- Use to tell the compiler to disable categorization dependency errors.
1309 -- Ada requires that units that WITH one another have compatible
1310 -- categories, for example a Pure unit cannot WITH a Preelaborate unit.
1311 -- If this switch is used, these errors become warnings (which can be
1312 -- ignored, or suppressed in the usual manner). This can be useful in
1313 -- some specialized circumstances such as the temporary use of special
1316 S_GCC_Checks
: aliased constant S
:= "/CHECKS=" &
1318 "-gnato,!-gnatE,!-gnatp " &
1326 "!-gnato,!-gnatp " &
1334 -- /CHECKS[=(keyword[,...])]
1336 -- If you compile with the default options, GNAT will insert many runtime
1337 -- checks into the compiled code, including code that performs range
1338 -- checking against constraints, but not arithmetic overflow checking for
1339 -- integer operations (including division by zero) or checks for access
1340 -- before elaboration on subprogram calls. All other runtime checks, as
1341 -- required by the Ada 95 Reference Manual, are generated by default.
1343 -- You may specify one or more of the following keywords to the /CHECKS
1344 -- qualifier to modify this behavior:
1346 -- DEFAULT The behavior described above. This is the default
1347 -- if the /CHECKS qualifier is not present on the
1348 -- command line. Same as /NOCHECKS.
1350 -- OVERFLOW Enables overflow checking for integer operations and
1351 -- checks for access before elaboration on subprogram
1352 -- calls. This causes GNAT to generate slower and larger
1353 -- executable programs by adding code to check for both
1354 -- overflow and division by zero (resulting in raising
1355 -- "Constraint_Error" as required by Ada semantics).
1356 -- Similarly, GNAT does not generate elaboration check
1357 -- by default, and you must specify this keyword to
1360 -- Note that this keyword does not affect the code
1361 -- generated for any floating-point operations; it
1362 -- applies only to integer operations. For the case of
1363 -- floating-point, GNAT has the "Machine_Overflows"
1364 -- attribute set to "False" and the normal mode of
1365 -- operation is to generate IEEE NaN and infinite values
1366 -- on overflow or invalid operations (such as dividing
1369 -- ELABORATION Enables dynamic checks for access-before-elaboration
1370 -- on subprogram calls and generic instantiations.
1372 -- ASSERTIONS The pragmas "Assert" and "Debug" normally have no
1373 -- effect and are ignored. This keyword causes "Assert"
1374 -- and "Debug" pragmas to be activated, as well as
1375 -- "Check", "Precondition" and "Postcondition" pragmas.
1377 -- SUPPRESS_ALL Suppress all runtime checks as though you have
1378 -- "pragma Suppress (all_checks)" in your source. Use
1379 -- this switch to improve the performance of the code at
1380 -- the expense of safety in the presence of invalid data
1383 -- UNSUPPRESS_ALL Cancels effect of previous SUPPRESS_ALL.
1385 -- DEFAULT Suppress the effect of any option OVERFLOW or
1388 -- FULL (D) Similar to OVERFLOW, but suppress the effect of any
1389 -- option ELABORATION or SUPPRESS_ALL.
1391 -- These keywords only control the default setting of the checks. You
1392 -- may modify them using either "Suppress" (to remove checks) or
1393 -- "Unsuppress" (to add back suppressed checks) pragmas in your program
1396 S_GCC_ChecksX
: aliased constant S
:= "/NOCHECKS " &
1397 "-gnatp,!-gnato,!-gnatE";
1398 -- NODOC (see /CHECKS)
1400 S_GCC_Compres
: aliased constant S
:= "/COMPRESS_NAMES " &
1402 -- /NOCOMPRESS_NAMES (D)
1405 -- Compress debug information and external symbol name table entries.
1406 -- In the generated debugging information, and also in the case of long
1407 -- external names, the compiler uses a compression mechanism if the name
1408 -- is very long. This compression method uses a checksum, and avoids
1409 -- trouble on some operating systems which have difficulty with very long
1412 S_GCC_Config
: aliased constant S
:= "/CONFIGURATION_PRAGMAS_FILE=<" &
1414 -- /CONFIGURATION_PRAGMAS_FILE=file
1416 -- Specify a configuration pragmas file that need to be taken into account
1418 S_GCC_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
1420 -- /CURRENT_DIRECTORY (D)
1421 -- /NOCURRENT_DIRECTORY
1423 -- Look for source files in the default directory.
1425 S_GCC_Data
: aliased constant S
:= "/DATA_PREPROCESSING=<" &
1427 -- /DATA_PREPROCESSING=file_name
1429 -- This qualifier indicates to the compiler the file name (without
1430 -- directory information) of the preprocessor data file to use.
1431 -- The preprocessor data file should be found in the source directories.
1433 -- A preprocessing data file is a text file with significant lines
1434 -- indicating how should be preprocessed either a specific source or all
1435 -- sources not mentioned in other lines. A significant line is a non
1436 -- empty, non comment line. Comments are similar to Ada comments.
1438 -- Each significant line starts with either a literal string or the
1439 -- character '*'. A literal string is the file name (without directory
1440 -- information) of the source to preprocess. A character '*' indicates the
1441 -- preprocessing for all the sources that are not specified explicitly on
1442 -- other lines. It is an error to have two lines with the same file name
1443 -- or two lines starting with the character '*'.
1445 -- After the file name or the character '*', another optional literal
1446 -- string indicating the file name of the definition file to be used for
1447 -- preprocessing. (see 15.3 Form of Definitions File. The definition files
1448 -- are found by the compiler in one of the source directories. In some
1449 -- cases, when compiling a source in a directory other than the current
1450 -- directory, if the definition file is in the current directory, it may
1451 -- be necessary to add the current directory as a source directory through
1452 -- qualifier "/SEARCH=[]", otherwise the compiler would not find the
1455 -- Then, optionally, switches similar to those of gnatprep may be found.
1456 -- Those switches are:
1458 -- -b Causes both preprocessor lines and the lines deleted by
1459 -- preprocessing to be replaced by blank lines, preserving
1460 -- the line number. This switch is always implied;
1461 -- however, if specified after `-c' it cancels the effect
1464 -- -c Causes both preprocessor lines and the lines deleted by
1465 -- preprocessing to be retained as comments marked with
1466 -- the special string "--! ".
1468 -- -Dsymbol=value Define or redefine a symbol, associated with value.
1469 -- A symbol is an Ada identifier, or an Ada reserved word,
1470 -- with the exception of "if", "else", "elsif", "end",
1471 -- "and", "or" and "then". value is either a literal
1472 -- string, an Ada identifier or any Ada reserved word.
1473 -- A symbol declared with this switch replaces a symbol
1474 -- with the same name defined in a definition file.
1476 -- -s Causes a sorted list of symbol names and values to be
1477 -- listed on the standard output file.
1479 -- -u Causes undefined symbols to be treated as having the
1480 -- value FALSE in the context of a preprocessor test.
1481 -- In the absence of this option, an undefined symbol
1482 -- in a #if or #elsif test will be treated as an error.
1484 -- Examples of valid lines in a preprocessor data file:
1486 -- "toto.adb" "prep.def" -u
1487 -- -- preprocess "toto.adb", using definition file "prep.def",
1488 -- -- undefined symbol are False.
1490 -- * -c -DVERSION=V101
1491 -- -- preprocess all other sources without a definition file;
1492 -- -- suppressed lined are commented; symbol VERSION has the value
1495 -- "titi.adb" "prep2.def" -s
1496 -- -- preprocess "titi.adb", using definition file "prep2.def";
1497 -- -- list all symbols with their values.
1499 S_GCC_Debug
: aliased constant S
:= "/DEBUG=" &
1512 -- /DEBUG[=debug-level]
1515 -- Specifies how much debugging information is to be included in
1516 -- the resulting object fie.
1518 -- 'debug-level' is one of the following:
1520 -- SYMBOLS (D) Include both debugger symbol records and traceback
1521 -- in the object file.
1523 -- ALL Include debugger symbol records, traceback plus
1524 -- extra debug information in the object file.
1526 -- NONE Excludes both debugger symbol records and traceback
1527 -- from the object file. Same as /NODEBUG.
1529 -- TRACEBACK Includes only traceback records in the object
1530 -- file. This is the default when /DEBUG is not used.
1532 S_GCC_DebugX
: aliased constant S
:= "/NODEBUG " &
1534 -- NODOC (see /Debug)
1536 S_GCC_Dist
: aliased constant S
:= "/DISTRIBUTION_STUBS=" &
1541 -- /NODISTRIBUTION_STUBS (D)
1542 -- /DISTRIBUTION_STUBS[=dist-opt]
1544 -- 'dist-opt' is either RECEIVER (the default) or SENDER and indicates
1545 -- that stubs for use in distributed programs (see the Distributed
1546 -- Systems Annex of the Ada RM) should be generated.
1548 S_GCC_DistX
: aliased constant S
:= "/NODISTRIBUTION_STUBS " &
1549 "!-gnatzr,!-gnatzc";
1550 -- NODOC (see /DISTRIBUTION_STUBS)
1552 S_GCC_Error
: aliased constant S
:= "/ERROR_LIMIT=#" &
1554 -- /NOERROR_LIMIT (D)
1557 -- NNN is a decimal integer in the range of 1 to 999999 and limits the
1558 -- number of error messages to be generated to that number. Once that
1559 -- number has been reached, the compilation is abandoned.
1560 -- Specifying 999999 is equivalent to /NOERROR_LIMIT.
1562 S_GCC_ErrorX
: aliased constant S
:= "/NOERROR_LIMIT " &
1564 -- NODOC (see /ERROR_LIMIT)
1566 S_GCC_Except
: aliased constant S
:= "/EXTRA_EXCEPTION_INFORMATION " &
1568 -- /EXTRA_EXCEPTION_INFORMATION
1570 -- Generate extra information in exception messages, in particular
1571 -- display extra column information and the value and range associated
1572 -- with index and range check failures, and extra column information for
1575 S_GCC_Expand
: aliased constant S
:= "/EXPAND_SOURCE " &
1577 -- /NOEXPAND_SOURCE (D)
1580 -- Produces a listing of the expanded code in Ada source form. For
1581 -- example, all tasking constructs are reduced to appropriate run-time
1582 -- library calls. The maximum line length for the listing 72.
1584 S_GCC_Lexpand
: aliased constant S
:= "/LEXPAND_SOURCE=#" &
1586 -- /LEXPAND_SOURCE=nnn
1588 -- Produces a listing of the expanded code in Ada source form. For
1589 -- example, all tasking constructs are reduced to appropriate run-time
1590 -- library calls. The parameter is the maximum line length for the
1593 S_GCC_Extend
: aliased constant S
:= "/EXTENSIONS_ALLOWED " &
1595 -- /NOEXTENSIONS_ALLOWED (D)
1596 -- /EXTENSIONS_ALLOWED
1598 -- GNAT specific language extensions allowed.
1600 S_GCC_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
1602 -- /EXTERNAL_REFERENCE="name=val"
1604 -- Specifies an external reference to the project manager. Useful only if
1605 -- /PROJECT_FILE is used.
1608 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
1610 S_GCC_File
: aliased constant S
:= "/FILE_NAME_MAX_LENGTH=#" &
1612 -- /FILE_NAME_MAX_LENGTH=nnn
1614 -- Activates file name "krunching". NNN, a decimal integer in the range
1615 -- 1-999, indicates the maximum allowable length of a file name (not
1616 -- including the ADS or ADB filetype. The default is not to enable file
1619 S_GCC_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
1621 -- /NOFOLLOW_LINKS_FOR_FILES (D)
1622 -- /FOLLOW_LINKS_FOR_FILES
1624 -- Follow links when parsing project files
1626 S_GCC_Force
: aliased constant S
:= "/FORCE_ALI " &
1631 -- In normal operation mode, the .ALI file is not generated if any
1632 -- illegalities are detected in the program. The use of this qualifier
1633 -- forces generation of the .ALI file. This file is marked as being
1634 -- in error, so it cannot be used for binding purposes, but it does
1635 -- contain reasonably complete cross-reference information, and thus may
1636 -- be useful for use by tools (e.g. semantic browsing tools or integrated
1637 -- development environments) that are driven from the .ALI file.
1639 S_GCC_Full
: aliased constant S
:= "/FULL_PATH_IN_BRIEF_MESSAGES " &
1641 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
1642 -- /FULL_PATH_IN_BRIEF_MESSAGES
1644 -- When using project files, if some errors or warnings are detected
1645 -- during parsing and verbose mode is not in effect (no use of qualifier
1646 -- /VERBOSE), then error lines start with the full path name of the
1647 -- project file, rather than its simple file name.
1649 S_GCC_Generate
: aliased constant S
:= "/GENERATE_PROCESSED_SOURCE " &
1651 -- /NOGENERATE_PROCESSED_SOURCE (D)
1652 -- /GENERATE_PROCESSED_SOURCE
1654 -- Generate a file <source>_prep if the integrated preprocessing
1655 -- is modifying the source text.
1657 S_GCC_GNAT
: aliased constant S
:= "/GNAT_INTERNAL " &
1659 -- /NOGNAT_INTERNAL (D)
1662 -- Internal GNAT implementation mode. This should not be used for
1663 -- applications programs, it is intended only for use by the compiler
1664 -- and its run-time library. For documentation, see the GNAT sources.
1665 -- Note that it implies /WARNINGS=ALL,ERRORS and /STYLE_CHECKS=GNAT
1666 -- so that all standard warnings and all standard style options are
1667 -- turned on. All warnings and style error messages are treated as
1670 S_GCC_Help
: aliased constant S
:= "/HELP " &
1675 -- Output usage information.
1677 S_GCC_Ident
: aliased constant S
:= "/IDENTIFIER_CHARACTER_SET=" &
1700 -- /NOIDENTIFIER_CHARACTER_SET (D)
1701 -- /IDENTIFIER_CHARACTER_SET=char-set
1703 -- Normally GNAT recognizes the Latin-1 character set in source program
1704 -- identifiers, as described in the reference manual. This qualifier
1705 -- causes GNAT to recognize alternate character sets in identifiers.
1706 -- 'char-set' is one of the following strings indicating the character
1709 -- DEFAULT (D) Equivalent to 1, below. Also equivalent to
1710 -- /NOIDENTIFIER_CHARACTER_SET.
1712 -- 1 The basic character set is Latin-1. This character
1713 -- set is defined by ISO standard 8859, part 1. The lower
1714 -- half (character codes 16#00# ... 16#7F#) is identical
1715 -- to standard ASCII coding, but the upper half is used
1716 -- to represent additional characters. This includes
1717 -- extended letters used by European languages, such as
1718 -- the umlaut used in German.
1720 -- You may use any of these extended characters freely
1721 -- in character or string literals. In addition, the
1722 -- extended characters that represent letters can be
1723 -- used in identifiers.
1725 -- 2 Latin-2 letters allowed in identifiers, with uppercase
1726 -- and lowercase equivalence.
1728 -- 3 Latin-3 letters allowed in identifiers, with uppercase
1729 -- and lower case equivalence.
1731 -- 4 Latin-4 letters allowed in identifiers, with uppercase
1732 -- and lower case equivalence.
1734 -- PC IBM PC code page 437. This code page is the normal
1735 -- default for PCs in the U.S. It corresponds to the
1736 -- original IBM PC character set. This set has some, but
1737 -- not all, of the extended Latin-1 letters, but these
1738 -- letters do not have the same encoding as Latin-1. In
1739 -- this mode, these letters are allowed in identifiers
1740 -- with uppercase and lowercase equivalence.
1742 -- PC850 This code page (850) is a modification of 437 extended
1743 -- to include all the Latin-1 letters, but still not with
1744 -- the usual Latin-1 encoding. In this mode, all these
1745 -- letters are allowed in identifiers with uppercase and
1746 -- lower case equivalence.
1748 -- FULL_UPPER Any character in the range 80-FF allowed in
1749 -- identifiers, and all are considered distinct. In
1750 -- other words, there are no uppercase and lower case
1751 -- equivalences in this range.
1753 -- NO_UPPER No upper-half characters in the range 80-FF are
1754 -- allowed in identifiers. This gives Ada 95
1755 -- compatibility for identifier names.
1757 -- WIDE GNAT allows wide character codes to appear in
1758 -- character and string literals, and also optionally
1759 -- in identifiers. See the /WIDE_CHARACTER_ENCODING
1760 -- qualifier for information on encoding formats.
1762 S_GCC_IdentX
: aliased constant S
:= "/NOIDENTIFIER_CHARACTER_SET " &
1764 -- NODOC (see /IDENTIFIER_CHARACTER_SET)
1766 S_GCC_Ignore
: aliased constant S
:= "/IGNORE_REP_CLAUSES " &
1768 -- /IGNORE_REP_CLAUSES
1770 -- Causes all representation clauses to be ignored and treated as
1771 -- comments. Useful when compiling foreign code (for example when ASIS
1772 -- is used to analyze such code).
1774 S_GCC_Immed
: aliased constant S
:= "/IMMEDIATE_ERRORS " &
1776 -- /NOIMMEDIATE_ERRORS (D)
1777 -- /IMMEDIATE_ERRORS
1779 -- Causes errors to be displayed as soon as they are encountered, rather
1780 -- than after compilation is terminated. If GNAT terminates prematurely
1781 -- or goes into an infinite loop, the last error message displayed may
1782 -- help to pinpoint the culprit.
1784 -- Note that this qualifier is intended only for helping to diagnose
1785 -- illegal programs when the compiler fails. It disconnects many of the
1786 -- normal handling procedures for error messages, and may for example
1787 -- cause malfunction of pragma Warnings.
1789 S_GCC_Inline
: aliased constant S
:= "/INLINE=" &
1801 -- /INLINE[=keyword]
1803 -- Selects the level of inlining for your program. In the absence of this
1804 -- qualifier, GNAT does not attempt inlining across units and does not
1805 -- need to access the bodies of subprograms for which "pragma Inline" is
1806 -- specified if they are not in the current unit.
1808 -- The supported keywords are as follows:
1810 -- PRAGMA (D) Recognize and process "Inline" pragmas. However,
1811 -- for the inlining to actually occur, optimization
1812 -- must be enabled. This enables inlining across unit
1813 -- boundaries, that is, inlining a call in one unit of
1814 -- a subprogram declared in a with'ed unit. The compiler
1815 -- will access these bodies, creating an extra source
1816 -- dependency for the resulting object file, and where
1817 -- possible, the call will be inlined.
1819 -- This qualifier also turns on full optimization and
1820 -- requests GNAT to try to attempt automatic inlining
1821 -- of small subprograms within a unit.
1823 -- Specifying /OPTIMIZE=NONE will disable the main effect
1824 -- of this qualifier, but you may specify other
1825 -- optimization options, to get either lower
1826 -- (/OPTIMIZE=SOME) or higher (/OPTIMIZE=UNROLL_LOOPS)
1827 -- levels of optimization.
1830 -- Direct control of the level of "Inline" pragmas
1831 -- optimization with moderate inlining across modules.
1834 -- Direct control of the level of "Inline" pragmas
1835 -- optimization with full inlining across modules.
1837 -- FULL Front end inlining. The front end inlining activated
1838 -- by this switch is generally more extensive, and quite
1839 -- often more effective than the standard PRAGMA inlining
1840 -- mode. It will also generate additional dependencies.
1842 -- SUPPRESS Suppresses all inlining, even if other optimization
1843 -- or inlining switches are set.
1845 S_GCC_InlineX
: aliased constant S
:= "/NOINLINE " &
1847 -- NODOC (see /INLINE)
1849 S_GCC_Intsrc
: aliased constant S
:= "/INTERSPERSE_SOURCE " &
1852 -- /NO_INTERSPERSE_SOURCE (D)
1853 -- /INTERSPERSE_SOURCE
1855 -- Causes output from /XDEBUG or /EXPAND_SOURCE to be interspersed with
1856 -- lines from the original source file, output as comment lines with the
1857 -- associated line number.
1859 S_GCC_Just
: aliased constant S
:= "/JUSTIFY_MESSAGES=#" &
1862 -- /NO_JUSTIFY_MESSAGES (D)
1863 -- /JUSTIFY_MESSAGES=nnn
1865 -- Causes error messages to be reformatted so that a message and all its
1866 -- continuation lines count as one warning or error in the statistics on
1867 -- total errors, and the message is broken down into lines (justified) so
1868 -- that no line is longer than nnn characters. The default message
1869 -- behavior (each message counted separately and not reformatted to fit
1870 -- a particular line length) can be obtained using /NO_JUSTIFY_MESSAGES.
1872 S_GCC_JustX
: aliased constant S
:= "/NO_JUSTIFY_MESSAGES " &
1875 -- NODOC (see /JUSTIFY_MESSAGES)
1877 S_GCC_Length
: aliased constant S
:= "/MAX_LINE_LENGTH=#" &
1879 -- /MAX_LINE_LENGTH=nnn
1881 -- Set maximum line length.
1882 -- The length of lines must not exceed the given value nnn.
1884 S_GCC_List
: aliased constant S
:= "/LIST " &
1889 -- Cause a full listing of the file to be generated. In the case where
1890 -- a body is compiled, the corresponding spec is also listed, along
1891 -- with any subunits.
1893 S_GCC_Machine
: aliased constant S
:= "/MACHINE_CODE_LISTING " &
1895 -- /NOMACHINE_CODE_LISTING (D)
1896 -- /MACHINE_CODE_LISTING
1898 -- Cause a full machine code listing of the file to be generated to
1899 -- <filename>.lis. Interspersed source is included if the /DEBUG
1900 -- qualifier is also present.
1902 S_GCC_Mapping
: aliased constant S
:= "/MAPPING_FILE=<" &
1904 -- /MAPPING_FILE=file_name
1906 -- Use mapping file file_name
1908 -- A mapping file is a way to communicate to the compiler two mappings:
1909 -- from unit names to file names (without any directory information) and
1910 -- from file names to path names (with full directory information).
1911 -- These mappings are used by the compiler to short-circuit the path
1914 -- The use of mapping files is not required for correct operation of the
1915 -- compiler, but mapping files can improve efficiency, particularly when
1916 -- sources are read over a slow network connection. In normal operation,
1917 -- you need not be concerned with the format or use of mapping files,
1918 -- and /MAPPING_FILE is not a qualifier that you would use explicitly.
1919 -- It is intended only for use by automatic tools such as GNAT MAKE
1920 -- running under the project file facility. The description here of the
1921 -- format of mapping files is provided for completeness and for possible
1922 -- use by other tools.
1924 -- A mapping file is a sequence of sets of three lines. In each set, the
1925 -- first line is the unit name, in lower case, with "%s" appended for
1926 -- specifications and "%b" appended for bodies; the second line is the
1927 -- file name; and the third line is the path name.
1933 -- /gnat/project1/sources/main.2_ada
1935 -- When qualifier ?MAPPING_FILE is specified, the compiler will create in
1936 -- memory the two mappings from the specified file. If there is any
1937 -- problem (non existent file, truncated file or duplicate entries),
1938 -- no mapping will be created.
1940 -- Several /MAPPING_FILE qualifiers may be specified; however, only the
1941 -- last one on the command line will be taken into account.
1943 -- When using a project file, GNAT MAKE creates a temporary mapping file
1944 -- and communicates it to the compiler using this switch.
1946 S_GCC_MaxI
: aliased constant S
:= "/MAX_INSTANTIATIONS=#" &
1949 -- /MAX_INSTANTIATIONS=nnn
1951 -- Specify the maximum number of instantiations permitted. The default
1952 -- value is 8000, which is probably enough for all programs except those
1953 -- containing some kind of runaway unintended instantiation loop.
1955 S_GCC_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
1962 -- /MESSAGES_PROJECT_FILE[=messages-option]
1964 -- Specifies the "verbosity" of the parsing of project files.
1965 -- messages-option may be one of the following:
1967 -- DEFAULT (D) No messages are output if there is no error or warning.
1969 -- MEDIUM A small number of messages are output.
1971 -- HIGH A great number of messages are output, most of them not
1972 -- being useful for the user.
1974 S_GCC_Multi
: aliased constant S
:= "/MULTI_UNIT_INDEX=#" &
1976 -- /MULTI_UNIT_INDEX=nnn
1978 -- Specify the index of the unit to compile in a multi-unit source file.
1980 S_GCC_Nesting
: aliased constant S
:= "/MAX_NESTING=#" &
1984 -- Set maximum level of nesting of constructs (including subprograms,
1985 -- loops, blocks, packages, and conditionals).
1986 -- The level of nesting must not exceed the given value nnn.
1987 -- A value of zero disable this style check (not enabled by default).
1989 S_GCC_Noadc
: aliased constant S
:= "/NO_GNAT_ADC " &
1993 -- Cause the compiler to ignore any configuration pragmas file GNAT.ADC
1994 -- in the default directory. Implied by qualifier /PROJECT_FILE.
1995 -- Often used in conjunction with qualifier /CONFIGURATION_PRAGMAS_FILE.
1997 S_GCC_Noload
: aliased constant S
:= "/NOLOAD " &
2001 -- Cause the compiler to operate in semantic check mode with full
2002 -- checking for all illegalities specified in the reference manual, but
2003 -- without generation of any source code (no object or ALI file
2006 -- Since dependent files must be accessed, you must follow the GNAT
2007 -- semantic restrictions on file structuring to operate in this mode:
2009 -- o The needed source files must be accessible.
2010 -- o Each file must contain only one compilation unit.
2011 -- o The file name and unit name must match.
2013 -- The output consists of error messages as appropriate. No object file
2014 -- or ALI file is generated. The checking corresponds exactly to the
2015 -- notion of legality in the Ada reference manual.
2017 -- Any unit can be compiled in semantics-checking-only mode, including
2018 -- units that would not normally be compiled (generic library units,
2019 -- subunits, and specifications where a separate body is present).
2021 S_GCC_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
2025 -- Do not look in the default directory for source files of the runtime.
2027 S_GCC_Nostlib
: aliased constant S
:= "/NOSTD_LIBRARIES " &
2031 -- Do not look for library files in the system default directory.
2033 S_GCC_NoWarnP
: aliased constant S
:= "/NOWARNING_PRAGMAS " &
2035 -- /NOWARNING_PRAGMAS
2037 -- Causes all Warnings pragmas to be ignored. Useful to check if the
2038 -- program has obsolete warnings pragmas that are hiding problems.
2040 S_GCC_Opt
: aliased constant S
:= "/OPTIMIZE=" &
2042 "-O2,!-O0,!-O1,!-O3 " &
2044 "-O0,!-O1,!-O2,!-O3 " &
2046 "-O1,!-O0,!-O2,!-O3 " &
2048 "-Os,!-O0,!-O1,!-O2,!-O3 " &
2050 "-O1,!-O0,!-O2,!-O3 " &
2053 "NO_STRICT_ALIASING " &
2054 "-fno-strict-aliasing " &
2056 "-O3,!-O0,!-O1,!-O2";
2058 -- /OPTIMIZE[=(keyword[,...])]
2060 -- Selects the level of optimization for your program. The supported
2061 -- keywords are as follows:
2063 -- ALL (D) Perform most optimizations, including those that
2064 -- may be expensive.
2066 -- NONE Do not do any optimizations. Same as /NOOPTIMIZE.
2068 -- SOME Perform some optimizations, but omit ones that
2069 -- are costly in compilation time.
2071 -- SPACE Optimize space usage
2073 -- DEVELOPMENT Same as SOME.
2075 -- INLINING Full optimization, and also attempt automatic inlining
2076 -- of small subprograms within a unit
2078 -- UNROLL_LOOPS Try to unroll loops. This keyword may be specified
2079 -- with any keyword above other than NONE. Loop
2080 -- unrolling usually, but not always, improves the
2081 -- performance of programs.
2083 -- NO_STRICT_ALIASING
2084 -- Suppress aliasing analysis. When optimization is
2085 -- enabled (ALL or SOME above), the compiler assumes
2086 -- that pointers do in fact point to legitimate values
2087 -- of the pointer type (allocated from the proper pool).
2088 -- If this assumption is violated, e.g. by the use of
2089 -- unchecked conversion, then it may be necessary to
2090 -- suppress this assumption using this keyword (which
2091 -- may be specified only in conjunction with any
2092 -- keyword above, other than NONE).
2094 S_GCC_OptX
: aliased constant S
:= "/NOOPTIMIZE " &
2095 "-O0,!-O1,!-O2,!-O3";
2096 -- NODOC (see /OPTIMIZE)
2098 S_GCC_Output
: aliased constant S
:= "/OUTPUT_FILE=<" &
2100 -- /OUTPUT_FILE=fname
2102 -- This has the same effect as /LIST except that the output is written
2103 -- to a file instead of to standard output. If the given fname
2104 -- does not start with a period, then it is the full name of the file
2105 -- to be written. If fname starts with a period, the name of the file
2106 -- is the concatenation of to the name of the file being compiled with
2107 -- fname where the period is replace by an underline. For example, if
2108 -- file xyz.adb is compiled with -gnatl=.lst, then the output is written
2109 -- to file xyz.adb_lst.
2111 S_GCC_Pointer
: aliased constant S
:= "/POINTER_SIZE=" &
2120 -- /POINTER_SIZE=64 (D)
2121 -- /POINTER_SIZE[=(keyword[,...])]
2123 -- Change how pointers and descriptors are allocated. The following
2124 -- keywords are supported:
2126 -- 64 (D) Allocate heap pointers in 64bit space except as
2127 -- constrained by a 32bit size clause or by
2128 -- Convention_C and generate 64bit descriptors for
2129 -- Descriptor mechanisms for calling imported
2130 -- subprograms and accept both 64bit and 32bit
2131 -- descriptors for calls to exported subprograms.
2133 -- LONG Equivalent to option 64.
2135 -- 32 Allocate all heap pointers in 32bit space and
2136 -- generate 32bit descriptors for Descriptor
2137 -- mechanisms for calling imported subprograms.
2139 -- SHORT Equivalent to option 32.
2141 S_GCC_Polling
: aliased constant S
:= "/POLLING " &
2146 -- Enable polling. See the description of pragma Polling in the GNAT
2147 -- Reference Manual for full details.
2149 S_GCC_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
2151 -- /PROJECT_FILE=filename
2153 -- Specifies the main project file to be used. The project files rooted
2154 -- at the main project file will be parsed before the invocation of the
2155 -- compiler. The source and object directories to be searched will be
2156 -- communicated to the compiler through logical names
2157 -- ADA_PRJ_INCLUDE_FILE and ADA_PRJ_OBJECTS_FILE.
2159 S_GCC_Psta
: aliased constant S
:= "/PRINT_STANDARD " &
2163 -- cause the compiler to output a representation of package Standard
2164 -- in a form very close to standard Ada. It is not quite possible to
2165 -- do this and remain entirely Standard (since new numeric base types
2166 -- cannot be created in standard Ada), but the output is easily
2167 -- readable to any Ada programmer, and is useful to determine the
2168 -- characteristics of target dependent types in package Standard.
2170 S_GCC_Reswarn
: aliased constant S
:= "/TREAT_RESTRICTIONS_AS_WARNINGS " &
2173 -- /NO_TREAT_RESTRICTIONS_AS_WARNINGS (D)
2174 -- /TREAT_RESTRICTIONS_AS_WARNINGS
2176 -- Causes all restrictions to be treated as warnings (pragma Restriction
2177 -- treated as Restriction_Warnings, pragma Profile as Profile_Warnings,
2178 -- and pragma Ravenscar sets restriction warnings instead of restrictions)
2180 S_GCC_Report
: aliased constant S
:= "/REPORT_ERRORS=" &
2191 -- /NOREPORT_ERRORS (D)
2192 -- /REPORT_ERRORS[=(keyword[,...])]
2194 -- Change the way errors are reported. The following keywords are
2197 -- VERBOSE (D) Verbose mode. Full error output with source lines
2200 -- BRIEF Generate the brief format error messages to
2201 -- SYS$OUTPUT as well as the verbose format message or
2204 -- FULL Normally, the compiler suppresses error messages that
2205 -- are likely to be redundant. This keyword causes all
2206 -- error messages to be generated. One particular effect
2207 -- is for the case of references to undefined variables.
2208 -- If a given variable is referenced several times, the
2209 -- normal format of messages produces one error. With
2210 -- FULL, each undefined reference produces a separate
2213 -- IMMEDIATE Normally, the compiler saves up error messages and
2214 -- generates them at the end of compilation in proper
2215 -- sequence. This keyword causes error messages to be
2216 -- generated as soon as they are detected. The use of
2217 -- IMMEDIATE usually causes error messages to be
2218 -- generated out of sequence. Use it when the compiler
2219 -- blows up due to an internal error. In this case, the
2220 -- error messages may be lost. Sometimes blowups are
2221 -- the result of mishandled error messages, so you may
2222 -- want to run with this keyword to determine whether
2223 -- any error messages were generated.
2225 -- DEFAULT Turn off VERBOSE and BRIEF. Same as /NOREPORT_ERRORS.
2227 S_GCC_ReportX
: aliased constant S
:= "/NOREPORT_ERRORS " &
2229 -- NODOC (see /REPORT_ERRORS)
2231 S_GCC_Repinfo
: aliased constant S
:= "/REPRESENTATION_INFO=" &
2248 -- /NOREPRESENTATION_INFO (D)
2249 -- /REPRESENTATION_INFO[=(keyword[,...])]
2251 -- This qualifier controls output from the compiler of a listing showing
2252 -- representation information for declared types and objects.
2254 -- ARRAYS (D) Size and alignment information is listed for
2255 -- declared array and record types.
2257 -- ARRAYS_FILE Similar to ARRAYS, but the output is to a file
2258 -- with the name 'file_rep' where 'file' is the name
2259 -- of the corresponding source file.
2261 -- NONE no information is output (equivalent to omitting
2262 -- the /REPRESENTATION_INFO qualifiers).
2264 -- OBJECTS Size and alignment information is listed for all
2265 -- declared types and objects.
2267 -- OBJECTS_FILE Similar to OBJECTS, but the output is to a file
2268 -- with the name 'file_rep' where 'file' is the name
2269 -- of the corresponding source file.
2271 -- SYMBOLIC Symbolic expression information for values that
2272 -- are computed at run time for variant records.
2274 -- SYMBOLIC_FILE Similar to SYMBOLIC, but the output is to a file
2275 -- with the name 'file_rep' where 'file' is the name
2276 -- of the corresponding source file.
2278 -- DEFAULT Equivalent to ARRAYS.
2280 S_GCC_RepinfX
: aliased constant S
:= "/NOREPRESENTATION_INFO " &
2282 -- NODOC (see /REPRESENTATION_INFO)
2284 S_GCC_RTS
: aliased constant S
:= "/RUNTIME_SYSTEM=|" &
2286 -- /RUNTIME_SYSTEM=xxx
2288 -- Build against an alternate runtime system named xxx or RTS-xxx.
2290 S_GCC_SCO
: aliased constant S
:= "/SCO_OUTPUT " &
2292 -- /NOSCO_OUTPUT (D)
2295 -- Controls the output of SCO (Source Coverage Obligation) information
2296 -- in the generated ALI file. This information is used by advanced source
2297 -- coverage tools. For a full description of the SCO format, see unit
2298 -- SCOs in the compiler sources (sco.ads/sco.adb).
2300 S_GCC_Search
: aliased constant S
:= "/SEARCH=*" &
2302 -- /SEARCH=(directory[,...])
2304 -- When looking for source files also look in directories specified.
2306 S_GCC_Src_Info
: aliased constant S
:= "/SRC_INFO=<" &
2308 -- /SRC_INFO=source-info-file
2310 -- Specify a source info file to be read or written by the Project
2311 -- Manager when project files are used.
2313 S_GCC_Style
: aliased constant S
:= "/STYLE_CHECKS=" &
2342 "NOARRAY_INDEXES " &
2348 "BOOLEAN_OPERATORS " &
2350 "NOBOOLEAN_OPERATORS " &
2360 "DOS_LINE_ENDINGS " &
2362 "NODOS_LINE_ENDINGS " &
2400 "STANDARD_CASING " &
2402 "NOSTANDARD_CASING " &
2404 "ORDERED_SUBPROGRAMS " &
2406 "NOORDERED_SUBPROGRAMS " &
2408 "OVERRIDING_INDICATORS " &
2410 "NOOVERRIDING_INDICATORS " &
2424 "STATEMENTS_AFTER_THEN_ELSE " &
2426 "NOSTATEMENTS_AFTER_THEN_ELSE " &
2432 "UNNECESSARY_BLANK_LINES " &
2434 "NOUNNECESSARY_BLANK_LINES " &
2440 -- /NOSTYLE_CHECKS (D)
2441 -- /STYLE_CHECKS[=(keyword,[...])]
2443 -- Normally, GNAT permits any code layout consistent with the reference
2444 -- manual requirements. This qualifier imposes style checking on the
2445 -- input source code. The following keywords are supported:
2447 -- ALL_BUILTIN (D) Equivalent to the following list of options:
2448 -- 3, ATTRIBUTE, BLANKS, COMMENTS2, END, VTABS,
2449 -- HTABS, IF_THEN, KEYWORD, LAYOUT, LINE_LENGTH,
2450 -- PRAGMA, REFERENCES, SPECS, TOKEN.
2452 -- 1 .. 9 Specify indentation level from 1 to 9.
2453 -- The general style of required indentation is as
2454 -- specified by the examples in the Ada Reference
2455 -- Manual. Full line comments must be aligned with
2456 -- the -- starting on a column that is a multiple
2457 -- of the alignment level.
2459 -- ATTRIBUTE Check attribute casing.
2460 -- Attribute names, including the case of keywords
2461 -- such as digits used as attributes names,
2462 -- must be written in mixed case, that is,
2463 -- the initial letter and any letter following an
2464 -- underscore must be uppercase.
2465 -- All other letters must be lowercase.
2467 -- ARRAY_INDEXES Check indexes of array attributes.
2468 -- For array attributes First, Last, Range,
2469 -- or Length, the index number must be omitted
2470 -- for one-dimensional arrays and is required
2471 -- for multi-dimensional arrays.
2473 -- BLANKS Blanks not allowed at statement end.
2474 -- Trailing blanks are not allowed at the end of
2475 -- statements. The purpose of this rule, together
2476 -- with option HTABS (no horizontal tabs), is to
2477 -- enforce a canonical format for the use of
2478 -- blanks to separate source tokens.
2480 -- COMMENTS2 Check comments.
2481 -- COMMENTS Comments must meet the following set of rules:
2483 -- * The "--" that starts the column must either
2484 -- start in column one, or else at least one
2485 -- blank must precede this sequence.
2487 -- * Comments that follow other tokens on a line
2488 -- must have at least one blank following the
2489 -- "--" at the start of the comment.
2491 -- * Full line comments must have two blanks
2492 -- following the "--" that starts the comment,
2493 -- with the following exceptions.
2495 -- * A line consisting only of the "--"
2496 -- characters, possibly preceded by blanks is
2499 -- * A comment starting with "--x" where x is
2500 -- a special character is permitted. This
2501 -- allows proper processing of the output
2502 -- generated by specialized tools including
2503 -- gnatprep (where --! is used) and the SPARK
2504 -- annotation language (where --# is used).
2505 -- For the purposes of this rule, a special
2506 -- character is defined as being in one of the
2507 -- ASCII ranges 16#21#..16#2F# or
2510 -- * A line consisting entirely of minus signs,
2511 -- possibly preceded by blanks, is permitted.
2512 -- This allows the construction of box
2513 -- comments where lines of minus signs are
2514 -- used to form the top and bottom of the box.
2516 -- * If a comment starts and ends with "--" is
2517 -- permitted as long as at least one blank
2518 -- follows the initial "--". Together with
2519 -- the preceding rule, this allows the
2520 -- construction of box comments, as shown in
2521 -- the following example:
2523 -- ---------------------------
2524 -- -- This is a box comment --
2525 -- ---------------------------
2527 -- COMMENTS1 Check comments (single space).
2528 -- Like COMMENTS2, but the -- of a comment only
2529 -- requires one or more spaces following, instead
2530 -- of two or more spaces.
2532 -- DOS_LINE_ENDINGS Check that no DOS line terminators are present
2533 -- All lines must be terminated by a single
2534 -- ASCII.LF character. In particular the DOS line
2535 -- terminator sequence CR / LF is not allowed).
2537 -- END Check end/exit labels.
2538 -- Optional labels on end statements ending
2539 -- subprograms and on exit statements exiting
2540 -- named loops, are required to be present.
2542 -- GNAT Enforces a set of style conventions that
2543 -- match the style used in the GNAT source code.
2544 -- This maybe useful when developing code that
2545 -- is eventually intended to be incorporated into
2546 -- GNAT. For further details, see GNAT sources.
2548 -- HTABS No horizontal tabs.
2549 -- Horizontal tab characters are not permitted in
2550 -- the source text. Together with the BLANKS
2551 -- (no blanks at end of line) option, this
2552 -- enforces a canonical form for the use of blanks
2553 -- to separate source tokens.
2555 -- IF_THEN Check if-then layout.
2556 -- The keyword then must appear either on the
2557 -- same line as the corresponding if, or on a line
2558 -- on its own, lined up under the if with at least
2559 -- one non-blank line in between containing all or
2560 -- part of the condition to be tested.
2562 -- KEYWORD Check keyword casing.
2563 -- All keywords must be in lower case (with the
2564 -- exception of keywords such as digits used as
2565 -- attribute names to which this check does not
2568 -- LAYOUT Check layout.
2569 -- Layout of statement and declaration constructs
2570 -- must follow the recommendations in the Ada
2571 -- Reference Manual, as indicated by the form of
2572 -- the syntax rules. For example an else keyword
2573 -- must be lined up with the corresponding if
2576 -- There are two respects in which the style rule
2577 -- enforced by this check option are more liberal
2578 -- than those in the Ada Reference Manual.
2579 -- First in the case of record declarations,
2580 -- it is permissible to put the record keyword on
2581 -- the same line as the type keyword, and then
2582 -- the end in end record must line up under type.
2583 -- For example, either of the following two
2584 -- layouts is acceptable:
2597 -- Second, in the case of a block statement,
2598 -- a permitted alternative is to put the block
2599 -- label on the same line as the declare or begin
2600 -- keyword, and then line the end keyword up under
2601 -- the block label. For example both the following
2607 -- A : Integer := 3;
2614 -- A : Integer := 3;
2619 -- The same alternative format is allowed for
2620 -- loops. For example, both of the following are
2625 -- Clear : while J < 10 loop
2630 -- while J < 10 loop
2636 -- LINE_LENGTH Check maximum line length.
2637 -- The length of source lines must not exceed 79
2638 -- characters, including any trailing blanks
2639 -- The value of 79 allows convenient display on
2640 -- an 80 character wide device or window, allowing
2641 -- for possible special treatment of 80 character
2644 -- NONE Clear any previously set style checks.
2646 -- ORDERED_SUBPROGRAMS Check order of subprogram bodies.
2647 -- All subprogram bodies in a given scope (e.g.
2648 -- a package body) must be in alphabetical order.
2649 -- The ordering rule uses normal Ada rules for
2650 -- comparing strings, ignoring casing of letters,
2651 -- except that if there is a trailing numeric
2652 -- suffix, then the value of this suffix is used
2653 -- in the ordering (e.g. Junk2 comes before
2656 -- OVERRIDING_INDICATORS Check that overriding subprograms are
2657 -- explicitly marked as such. The declaration of
2658 -- a primitive operation of a type extension that
2659 -- overrides an inherited operation must carry
2660 -- an overriding indicator.
2662 -- PRAGMA Check pragma casing.
2663 -- Pragma names must be written in mixed case,
2664 -- that is, the initial letter and any letter
2665 -- following an underscore must be uppercase.
2666 -- All other letters must be lowercase.
2668 -- REFERENCES Check references.
2669 -- All identifier references must be cased in the
2670 -- same way as the corresponding declaration.
2671 -- No specific casing style is imposed on
2672 -- identifiers. The only requirement is for
2673 -- consistency of references with declarations.
2675 -- SPECS Check separate specs.
2676 -- Separate declarations ("specs") are required
2677 -- for subprograms (a body is not allowed to serve
2678 -- as its own declaration). The only exception is
2679 -- that parameterless library level procedures are
2680 -- not required to have a separate declaration.
2681 -- This exception covers the most frequent form of
2682 -- main program procedures.
2684 -- STANDARD_CASING Check casing of entities in Standard.
2685 -- Any identifier from Standard must be cased to
2686 -- match the presentation in the Ada Reference
2687 -- Manual (for example, Integer and ASCII.NUL).
2689 -- TOKEN Check token spacing.
2690 -- The following token spacing rules are enforced:
2692 -- * The keywords abs and not must be followed
2695 -- * The token => must be surrounded by spaces.
2697 -- * The token <> must be preceded by a space or
2698 -- a left parenthesis.
2700 -- * Binary operators other than ** must be
2701 -- surrounded by spaces. There is no
2702 -- restriction on the layout of the ** binary
2705 -- * Colon must be surrounded by spaces.
2707 -- * Colon-equal (assignment) must be surrounded
2710 -- * Comma must be the first non-blank character
2711 -- on the line, or be immediately preceded by
2712 -- a non-blank character, and must be followed
2715 -- * If the token preceding a left paren ends
2716 -- with a letter or digit, then a space must
2717 -- separate the two tokens.
2719 -- * A right parenthesis must either be the
2720 -- first non-blank character on a line, or it
2721 -- must be preceded by a non-blank character.
2723 -- * A semicolon must not be preceded by
2724 -- a space, and must not be followed by
2725 -- a non-blank character.
2727 -- * A unary plus or minus may not be followed
2730 -- * A vertical bar must be surrounded by
2733 -- In the above rules, appearing in column one is
2734 -- always permitted, that is, counts as meeting
2735 -- either a requirement for a required preceding
2736 -- space, or as meeting a requirement for no
2739 -- Appearing at the end of a line is also always
2740 -- permitted, that is, counts as meeting either
2741 -- a requirement for a following space,
2742 -- or as meeting a requirement for no following
2745 -- UNNECESSARY_BLANK_LINES
2746 -- Check for unnecessary blank lines.
2747 -- A blank line is considered unnecessary if it
2748 -- appears at the end of the file, or if more
2749 -- than one blank line occurs in sequence.
2751 -- VTABS No form feeds or vertical tabs.
2752 -- Form feeds or vertical tab characters are not
2753 -- permitted in the source text.
2755 -- XTRA_PARENS Check for the use of an unnecessary extra
2756 -- level of parentheses (C - style) around
2757 -- conditions in if statements, while statements
2758 -- and exit statements.
2760 S_GCC_StyleX
: aliased constant S
:= "/NOSTYLE_CHECKS " &
2762 -- NODOC (see /STYLE_CHECKS)
2764 S_GCC_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
2768 -- The actual directories (object, exec, library, ...) are subdirectories
2769 -- of the directory specified in the project file. If the subdirectory
2770 -- does not exist, it is created automatically.
2772 S_GCC_Symbol
: aliased constant S
:= "/SYMBOL_PREPROCESSING=" & '"' &
2774 -- /SYMBOL_PREPROCESSING="symbol=value"
2776 -- Define or redefine a preprocessing symbol, associated with value.
2777 -- If "=value" is not specified, then the value of the symbol is True.
2778 -- A symbol is an identifier, following normal Ada (case-insensitive)
2779 -- rules for its syntax, and value is any sequence (including an empty
2780 -- sequence) of characters from the set (letters, digits, period,
2781 -- underline). Ada reserved words may be used as symbols, with the
2782 -- exceptions of "if", "else", "elsif", "end", "and", "or" and "then".
2784 -- A symbol declared with this qualifier on the command line replaces
2785 -- a symbol with the same name either in a definition file or specified
2786 -- with a switch -D in the preprocessor data file.
2788 -- This qualifier is similar to qualifier /ASSOCIATE of
2789 -- GNAT PREPROCESSING.
2791 S_GCC_Syntax
: aliased constant S
:= "/SYNTAX_ONLY " &
2793 -- /NOSYNTAX_ONLY (D)
2796 -- Run GNAT in syntax checking only mode. You can check a series of
2797 -- files in a single command, and can use wild cards to specify such a
2800 -- You may use other qualifiers in conjunction with this qualifier. In
2801 -- particular, /LIST and /REPORT_ERRORS=VERBOSE are useful to control the
2802 -- format of any generated error messages.
2804 -- The output is simply the error messages, if any. No object file or ALI
2805 -- file is generated by a syntax-only compilation. Also, no units other
2806 -- than the one specified are accessed. For example, if a unit "X" with's
2807 -- a unit "Y", compiling unit "X" in syntax check only mode does not
2808 -- access the source file containing unit "Y".
2810 -- Normally, GNAT allows only a single unit in a source file. However,
2811 -- this restriction does not apply in syntax-check-only mode, and it is
2812 -- possible to check a file containing multiple compilation units
2813 -- concatenated together. This is primarily used by the GNAT CHOP
2816 S_GCC_Table
: aliased constant S
:= "/TABLE_MULTIPLIER=#" &
2818 -- /TABLE_MULTIPLIER=nnn
2820 -- All compiler tables start at nnn times usual starting size.
2822 S_GCC_Trace
: aliased constant S
:= "/TRACE_UNITS " &
2827 -- This switch that does for the frontend what /VERBOSE does for the
2828 -- backend. The system prints the name of each unit, either a compilation
2829 -- unit or nested unit, as it is being analyzed.
2831 S_GCC_Tree
: aliased constant S
:= "/TREE_OUTPUT " &
2836 -- Cause GNAT to write the internal tree for a unit to a file (with the
2837 -- filetype ATB for a body or ATS for a spec). This is not normally
2838 -- required, but is used by separate analysis tools. Typically these
2839 -- tools do the necessary compilations automatically, so you should never
2840 -- have to specify this switch in normal operation.
2842 S_GCC_Trys
: aliased constant S
:= "/TRY_SEMANTICS " &
2847 -- In normal operation mode the compiler first parses the program and
2848 -- determines if there are any syntax errors. If there are, appropriate
2849 -- error messages are generated and compilation is immediately
2850 -- terminated. This qualifier tells GNAT to continue with semantic
2851 -- analysis even if syntax errors have been found. This may enable the
2852 -- detection of more errors in a single run. On the other hand, the
2853 -- semantic analyzer is more likely to encounter some internal fatal
2854 -- error when given a syntactically invalid tree.
2856 S_GCC_USL
: aliased constant S
:= "/UNCHECKED_SHARED_LIB_IMPORTS " &
2857 "--unchecked-shared-lib-imports";
2858 -- /NOUNCHECKED_SHARED_LIB_IMPORTS (D)
2859 -- /UNCHECKED_SHARED_LIB_IMPORTS
2861 -- Allow shared library projects to import static library projects
2863 S_GCC_Units
: aliased constant S
:= "/UNITS_LIST " &
2865 -- /NOUNITS_LIST (D)
2868 -- Print a list of units required by this compilation on SYS$OUTPUT. The
2869 -- listing includes all units on which the unit being compiled depends
2870 -- either directly or indirectly.
2872 S_GCC_Unique
: aliased constant S
:= "/UNIQUE_ERROR_TAG " &
2874 -- /NOUNIQUE_ERROR_TAG (D)
2875 -- /UNIQUE_ERROR_TAG
2877 -- Tag compiler error messages with the string "error: ".
2879 S_GCC_Upcase
: aliased constant S
:= "/UPPERCASE_EXTERNALS " &
2881 -- /NOUPPERCASE_EXTERNALS (D)
2882 -- /UPPERCASE_EXTERNALS
2884 -- Fold default and explicit external names in pragmas Import and Export
2885 -- to uppercase for compatibility with the default behavior of DEC C.
2887 S_GCC_Valid
: aliased constant S
:= "/VALIDITY_CHECKING=" &
2936 -- /VALIDITY_CHECKING[=(keyword,[...])]
2938 -- Control level of validity checking.
2940 -- DEFAULT (D) In this mode checks are made to prevent
2941 -- erroneous behavior in accordance with the RM.
2942 -- Notably extra checks may be needed for case
2943 -- statements and subscripted array assignments.
2945 -- NONE No special checks for invalid values are
2946 -- performed. This means that references to
2947 -- uninitialized variables can cause erroneous
2948 -- behavior from constructs like case statements
2949 -- and subscripted array assignments. In this
2950 -- mode, invalid values can lead to erroneous
2953 -- FULL Every assignment is checked for validity, so
2954 -- that it is impossible to assign invalid values.
2955 -- The RM specifically allows such assignments,
2956 -- but in this mode, invalid values can never be
2957 -- assigned, and an attempt to perform such an
2958 -- assignment immediately raises Constraint_Error.
2959 -- This behavior is allowed (but not required) by
2960 -- the RM. This mode is intended as a debugging aid,
2961 -- and may be useful in helping to track down
2962 -- uninitialized variables. It may be useful to
2963 -- use this in conjunction with the Normalize_Scalars
2964 -- pragma which attempts to initialize with invalid
2965 -- values where possible.
2967 S_GCC_Verbose
: aliased constant S
:= "/VERBOSE " &
2972 -- Show commands generated by the GCC driver. Normally used only for
2973 -- debugging purposes or if you need to be sure what version of the
2974 -- compiler you are executing.
2976 S_GCC_Verb_Asm
: aliased constant S
:= "/VERBOSE_ASM " &
2977 "-S,-verbose_asm,!-c";
2981 -- Use to cause the assembler source file to be generated, using S as the
2982 -- filetype, instead of the object file. This may be useful if you need
2983 -- to examine the generated assembly code.
2985 S_GCC_Warn
: aliased constant S
:= "/WARNINGS=" &
2987 "!-gnatws,!-gnatwe " &
3000 "FAILING_ASSERTIONS " &
3002 "NO_FAILING_ASSERTIONS " &
3004 "BAD_FIXED_VALUES " &
3006 "NO_BAD_FIXED_VALUES " &
3008 "BIASED_REPRESENTATION " &
3010 "NO_BIASED_REPRESENTATION " &
3016 "MISSING_COMPONENT_CLAUSES " &
3018 "NOMISSING_COMPONENT_CLAUSES " &
3020 "IMPLICIT_DEREFERENCE " &
3022 "NO_IMPLICIT_DEREFERENCE " &
3026 "UNREFERENCED_FORMALS " &
3028 "NOUNREFERENCED_FORMALS " &
3030 "UNRECOGNIZED_PRAGMAS " &
3032 "NOUNRECOGNIZED_PRAGMAS " &
3044 "NOIMPLEMENTATION " &
3050 "CONSTANT_VARIABLES " &
3052 "NOCONSTANT_VARIABLES " &
3060 "NOMODIFIED_UNREF " &
3062 "SUSPICIOUS_MODULUS " &
3064 "NOSUSPICIOUS_MODULUS " &
3072 "OUT_PARAM_UNREF " &
3074 "NOOUT_PARAM_UNREF " &
3076 "INEFFECTIVE_INLINE " &
3078 "NOINEFFECTIVE_INLINE " &
3082 "PARAMETER_ORDER " &
3084 "NOPARAMETER_ORDER " &
3086 "NOMISSING_PARENS " &
3094 "NOOBJECT_RENAMES " &
3098 "OVERRIDING_SIZE " &
3100 "NOOVERRIDING_SIZE " &
3107 "-Wuninitialized " &
3112 "UNORDERED_ENUMERATIONS " &
3114 "NOUNORDERED_ENUMERATIONS " &
3116 "VARIABLES_UNINITIALIZED " &
3118 "NOVARIABLES_UNINITIALIZED " &
3120 "REVERSE_BIT_ORDER " &
3122 "NOREVERSE_BIT_ORDER " &
3124 "LOWBOUND_ASSUMED " &
3126 "NOLOWBOUND_ASSUMED " &
3128 "WARNINGS_OFF_PRAGMAS " &
3130 "NO_WARNINGS_OFF_PRAGMAS " &
3132 "IMPORT_EXPORT_PRAGMAS " &
3134 "NOIMPORT_EXPORT_PRAGMAS " &
3136 "LOCAL_RAISE_HANDLING " &
3138 "NOLOCAL_RAISE_HANDLING " &
3140 "ADA_2005_COMPATIBILITY " &
3142 "NOADA_2005_COMPATIBILITY " &
3144 "UNCHECKED_CONVERSIONS " &
3146 "NOUNCHECKED_CONVERSIONS " &
3150 -- Suppress the output of all warning messages from the GNAT front end.
3151 -- Note that it does not suppress warnings from the gcc back end.
3153 -- /WARNINGS[=(keyword[,...])]
3155 -- In addition to error messages, corresponding to illegalities as
3156 -- defined in the reference manual, the compiler detects two kinds of
3157 -- warning situations. First, the compiler considers some constructs
3158 -- suspicious and generates a warning message to alert you to a possible
3159 -- error. Second, if the compiler detects a situation that is sure to
3160 -- raise an exception at runtime, it generates a warning message.
3162 -- You may specify the following keywords to change this behavior:
3164 -- DEFAULT (D) The default behavior above.
3166 -- ALL Activate all optional warnings.
3167 -- Activates most optional warning messages,
3168 -- see remaining list in this section for
3169 -- details on optional warning messages that
3170 -- can be individually controlled.
3171 -- The warnings that are not turned on by
3172 -- this option are BIASED_ROUNDING,
3173 -- IMPLICIT_DEREFERENCE, HIDING and
3174 -- ELABORATION. All other optional Ada
3175 -- warnings are turned on.
3177 -- EVERY Activate every optional warning.
3178 -- Activates all optional warnings, including
3179 -- those listed above as exceptions for ALL.
3181 -- NOALL Suppress all optional errors.
3182 -- Suppresses all optional warning messages
3183 -- that can be activated by option ALL.
3185 -- ALL_GCC Request additional messages from the GCC
3186 -- backend. Most of these are not relevant
3189 -- CONDITIONALS Activate warnings for conditional
3190 -- Expressions used in tests that are known
3191 -- to be True or False at compile time. The
3192 -- default is that such warnings are not
3195 -- NOCONDITIONALS Suppress warnings for conditional
3196 -- expressions used in tests that are known
3197 -- to be True or False at compile time.
3199 -- IMPLICIT_DEREFERENCE Activate warnings on implicit dereferencing.
3200 -- The use of a prefix of an access type in an
3201 -- indexed component, slice, or selected component
3202 -- without an explicit .all will generate
3203 -- a warning. With this warning enabled, access
3204 -- checks occur only at points where an explicit
3205 -- .all appears in the source code (assuming no
3206 -- warnings are generated as a result of this
3207 -- option). The default is that such warnings are
3208 -- not generated. Note that /WARNINGS=ALL does not
3209 -- affect the setting of this warning option.
3211 -- NOIMPLICIT_DEREFERENCE Suppress warnings on implicit dereferencing.
3212 -- in indexed components, slices, and selected
3215 -- ELABORATION Activate warnings on missing pragma
3216 -- Elaborate_All statements. The default is
3217 -- that such warnings are not generated.
3219 -- NOELABORATION Suppress warnings on missing pragma
3220 -- Elaborate_All statements.
3222 -- ERRORS Warning messages are to be treated as errors.
3223 -- The warning string still appears, but the
3224 -- warning messages are counted as errors, and
3225 -- prevent the generation of an object file.
3227 -- HIDING Activate warnings on hiding declarations.
3228 -- A declaration is considered hiding if it is
3229 -- for a non-overloadable entity, and it declares
3230 -- an entity with the same name as some other
3231 -- entity that is directly or use-visible. The
3232 -- default is that such warnings are not
3235 -- NOHIDING Suppress warnings on hiding declarations.
3237 -- IMPLEMENTATION Activate warnings for a with of an internal
3238 -- GNAT implementation unit, defined as any unit
3239 -- from the Ada, Interfaces, GNAT, DEC or
3240 -- System hierarchies that is not documented in
3241 -- either the Ada Reference Manual or the GNAT
3242 -- Programmer's Reference Manual. Such units are
3243 -- intended only for internal implementation
3244 -- purposes and should not be with'ed by user
3245 -- programs. The default is that such warnings
3248 -- NOIMPLEMENTATION Disables warnings for a with of an internal
3249 -- GNAT implementation unit.
3251 -- INEFFECTIVE_INLINE Activate warnings on ineffective pragma Inlines
3252 -- Activates warnings for failure of front end
3253 -- inlining (activated by /INLINE=FULL) to inline
3254 -- a particular call. There are many reasons for
3255 -- not being able to inline a call, including most
3256 -- commonly that the call is too complex to
3257 -- inline. This warning can also be turned on
3258 -- using /INLINE=FULL.
3260 -- NOINEFFECTIVE_INLINE Suppress warnings on ineffective pragma Inlines
3261 -- Suppresses warnings on ineffective pragma
3262 -- Inlines. If the inlining mechanism cannot
3263 -- inline a call, it will simply ignore the
3264 -- request silently.
3266 -- MISSING_COMPONENT_CLAUSES
3267 -- Activate warnings for cases when there are
3268 -- component clauses for a record type, but not
3269 -- for every component of the record.
3271 -- NOMISSING_COMPONENT_CLAUSES
3272 -- Suppress warnings for cases when there are
3273 -- missing component clauses for a record type.
3276 -- Activate warnings for cases where parentheses
3277 -- are not used and the result is potential
3278 -- ambiguity from a reader's point of view.
3279 -- For example (not a > b) when a and b are
3280 -- modular means (not (a) > b) and very likely
3281 -- the programmer intended (not (a > b)).
3284 -- Suppress warnings for cases where parentheses
3285 -- are not used and the result is potential
3286 -- ambiguity from a reader's point of view.
3288 -- MODIFIED_UNREF Activates warnings for variables that are
3289 -- assigned (using an initialization value or with
3290 -- one or more assignment statements) but whose
3291 -- value is never read. The warning is suppressed
3292 -- for volatile variables and also for variables
3293 -- that are renamings of other variables or for
3294 -- which an address clause is given. This warning
3295 -- can also be turned on using /WARNINGS/OPTIONAL.
3297 -- NOMODIFIED_UNREF Disables warnings for variables that are
3298 -- assigned or initialized, but never read.
3300 -- NORMAL Sets normal warning mode, in which enabled
3301 -- warnings are issued and treated as warnings
3302 -- rather than errors. This is the default mode.
3303 -- It can be used to cancel the effect of an
3304 -- explicit /WARNINGS=SUPPRESS or
3305 -- /WARNINGS=ERRORS. It also cancels the effect
3306 -- of the implicit /WARNINGS=ERRORS that is
3307 -- activated by the use of /STYLE=GNAT.
3309 -- OBSOLESCENT Activates warnings for calls to subprograms
3310 -- marked with pragma Obsolescent and for use of
3311 -- features in Annex J of the Ada Reference
3312 -- Manual. In the case of Annex J, not all
3313 -- features are flagged. In particular use of the
3314 -- renamed packages (like Text_IO), use of package
3315 -- ASCII and use of the attribute 'Constrained are
3316 -- not flagged, since these are very common and
3317 -- would generate many annoying positive warnings.
3318 -- The default is that such warnings are not
3321 -- NOOBSOLESCENT Disables warnings on use of obsolescent
3324 -- OBJECT_RENAME Activate warnings for non limited objects
3325 -- renaming parameterless functions.
3327 -- NOOBJECT_RENAME Suppress warnings for non limited objects
3328 -- renaming parameterless functions.
3330 -- OPTIONAL Equivalent to ALL.
3332 -- NOOPTIONAL Equivalent to NOALL.
3334 -- OVERLAYS Activate warnings for possibly unintended
3335 -- initialization effects of defining address
3336 -- clauses that cause one variable to overlap
3337 -- another. The default is that such warnings
3340 -- NOOVERLAYS Suppress warnings on possibly unintended
3341 -- initialization effects of defining address
3342 -- clauses that cause one variable to overlap
3345 -- REDUNDANT Activate warnings for redundant constructs.
3346 -- In particular assignments of a variable to
3347 -- itself, and a type conversion that converts
3348 -- an object to its own type. The default
3349 -- is that such warnings are not generated.
3351 -- NOREDUNDANT Suppress warnings for redundant constructs.
3353 -- SUPPRESS Completely suppress the output of all warning
3354 -- messages. Same as /NOWARNINGS.
3356 -- UNCHECKED_CONVERSIONS Activates warnings on unchecked conversions.
3357 -- Causes warnings to be generated for
3358 -- unchecked conversions when the two types are
3359 -- known at compile time to have different sizes.
3360 -- The default is that such warnings are
3363 -- NOUNCHECKED_CONVERSIONS Suppress warnings for unchecked conversions.
3365 -- UNINITIALIZED Generate warnings for uninitialized variables.
3366 -- This is a GCC option, not an Ada option.
3367 -- You must also specify the /OPTIMIZE qualifier
3368 -- with a value other than NONE (in other words,
3369 -- this keyword works only if optimization is
3372 -- UNREFERENCED_FORMALS Activate warnings on unreferenced formals.
3373 -- Causes a warning to be generated if a formal
3374 -- parameter is not referenced in the body of
3375 -- the subprogram. This warning can also be turned
3376 -- on using option ALL or UNUSED.
3378 -- NOUNREFERENCED_FORMALS Suppress warnings on unreferenced formals.
3379 -- Suppresses warnings for unreferenced formal
3380 -- parameters. Note that the combination UNUSED
3381 -- followed by NOUNREFERENCED_FORMALS has the
3382 -- effect of warning on unreferenced entities
3383 -- other than subprogram formals.
3385 -- UNUSED Activates warnings to be generated for entities
3386 -- that are defined but not referenced, and for
3387 -- units that are with'ed and not referenced. In
3388 -- the case of packages, a warning is also
3389 -- generated if no entities in the package are
3390 -- referenced. This means that if the package
3391 -- is referenced but the only references are in
3392 -- use clauses or renames declarations, a warning
3393 -- is still generated. A warning is also generated
3394 -- for a generic package that is with'ed but never
3395 -- instantiated. In the case where a package or
3396 -- subprogram body is compiled, and there is a
3397 -- with on the corresponding spec that is only
3398 -- referenced in the body, a warning is also
3399 -- generated, noting that the with can be moved
3400 -- to the body. The default is that such warnings
3401 -- are not generated.
3403 -- NOUNUSED Suppress warnings for unused entities and
3406 -- VARIABLES_UNINITIALIZED Activates warnings on unassigned variables.
3407 -- Causes warnings to be generated when a variable
3408 -- is accessed which may not be properly
3410 -- The default is that such warnings are
3413 -- NOVARIABLES_UNINITIALIZED Suppress warnings for uninitialized
3416 S_GCC_WarnX
: aliased constant S
:= "/NOWARNINGS " &
3418 -- NODOC (see /WARNINGS)
3420 S_GCC_No_Back
: aliased constant S
:= "/NO_BACK_END_WARNINGS " &
3422 -- /NO_BACK_END_WARNINGS
3424 -- Inhibit all warning messages of the GCC back-end.
3426 S_GCC_Wide
: aliased constant S
:= "/WIDE_CHARACTER_ENCODING=" &
3439 -- /NOWIDE_CHARACTER_ENCODING (D)
3440 -- /WIDE_CHARACTER_ENCODING[=encode-type]
3442 -- Specifies the mechanism used to encode wide characters. 'encode-type'
3443 -- is one of the following:
3445 -- BRACKETS (D) A wide character is encoded as ["xxxx"] where XXXX
3446 -- are four hexadecimal digits representing the coding
3447 -- ('Pos value) of the character in type
3448 -- Wide_Character. The hexadecimal digits may use upper
3449 -- or lower case letters.
3451 -- This notation can also be used for upper half
3452 -- Character values using the format ["xx"] where XX is
3453 -- two hexadecimal digits representing the coding ('Pos
3454 -- value) of the character in type Character (or
3455 -- Wide_Character). The hexadecimal digits may use upper
3458 -- NONE No wide characters are allowed. Same
3459 -- as /NOWIDE_CHARACTER_ENCODING.
3461 -- HEX In this encoding, a wide character is represented by
3462 -- the following five character sequence: ESC a b c d
3463 -- Where 'a', 'b', 'c', and 'd' are the four hexadecimal
3464 -- characters (using uppercase letters) of the wide
3465 -- character code. For example, ESC A345 is used to
3466 -- represent the wide character with code 16#A345#. This
3467 -- scheme is compatible with use of the full
3468 -- Wide_Character set.
3470 -- UPPER The wide character with encoding 16#abcd# where the
3471 -- upper bit is on (in other words, "a" is in the range
3472 -- 8-F) is represented as two bytes, 16#ab# and 16#cd#.
3473 -- The second byte may never be a format control
3474 -- character, but is not required to be in the upper
3475 -- half. This method can be also used for shift-JIS or
3476 -- EUC, where the internal coding matches the external
3479 -- SHIFT_JIS A wide character is represented by a two-character
3480 -- sequence, 16#ab# and 16#cd#, with the restrictions
3481 -- described for upper-half encoding as described above.
3482 -- The internal character code is the corresponding JIS
3483 -- character according to the standard algorithm for
3484 -- Shift-JIS conversion. Only characters defined in the
3485 -- JIS code set table can be used with this encoding
3488 -- UTF8 A wide character is represented using
3489 -- UCS Transformation Format 8 (UTF-8) as defined in Annex
3490 -- R of ISO 10646-1/Am.2. Depending on the character
3491 -- value, the representation is a one, two, or three byte
3494 -- 16#0000#-16#007f#: 2#0xxxxxxx#
3495 -- 16#0080#-16#07ff#: 2#110xxxxx# 2#10xxxxxx#
3496 -- 16#0800#-16#ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx#
3498 -- where the xxx bits correspond to the left-padded bits
3499 -- of the 16-bit character value. Note that all lower
3500 -- half ASCII characters are represented as ASCII bytes
3501 -- and all upper half characters and other wide characters
3502 -- are represented as sequences of upper-half (The full
3503 -- UTF-8 scheme allows for encoding 31-bit characters as
3504 -- 6-byte sequences, but in this implementation, all UTF-8
3505 -- sequences of four or more bytes length will be treated
3508 -- EUC A wide character is represented by a two-character
3509 -- sequence 16#ab# and 16#cd#, with both characters being
3510 -- in the upper half. The internal character code is the
3511 -- corresponding JIS character according to the EUC
3512 -- encoding algorithm. Only characters defined in the JIS
3513 -- code set table can be used with this encoding method.
3515 S_GCC_WideX
: aliased constant S
:= "/NOWIDE_CHARACTER_ENCODING " &
3517 -- NODOC (see /WIDE_CHARACTER_ENCODING)
3519 S_GCC_Xdebug
: aliased constant S
:= "/XDEBUG " &
3524 -- Output expanded source files for source level debugging.
3525 -- The expanded source (see /EXPAND_SOURCE) is written to files
3526 -- with names formed by appending "_DG" to the input file name,
3527 -- The debugging information generated by the /DEBUG qualifier will then
3528 -- refer to the generated file. This allows source level debugging using
3529 -- the generated code which is sometimes useful for complex code, for
3530 -- example to find out exactly which part of a complex construction
3531 -- raised an exception. The maximum line length for the output is 72.
3533 S_GCC_Lxdebug
: aliased constant S
:= "/LXDEBUG=#" &
3537 -- Output expanded source files for source level debugging.
3538 -- The expanded source (see /EXPAND_SOURCE) is written to files
3539 -- with names formed by appending "_DG" to the input file name,
3540 -- The debugging information generated by the /DEBUG qualifier will then
3541 -- refer to the generated file. This allows source level debugging using
3542 -- the generated code which is sometimes useful for complex code, for
3543 -- example to find out exactly which part of a complex construction
3544 -- raised an exception. The parameter is the maximum line length for
3547 S_GCC_Xref
: aliased constant S
:= "/XREF=" &
3554 -- Normally the compiler generates full cross-referencing information in
3555 -- the .ALI file. This information is used by a number of tools,
3556 -- including GNAT FIND and GNAT XREF.
3558 -- GENERATE (D) Generate cross-referencing information.
3560 -- SUPPRESS Suppress cross-referencing information.
3561 -- This saves some space and may slightly
3562 -- speed up compilation, but means that some
3563 -- tools cannot be used.
3565 GCC_Switches
: aliased constant Switches
:=
3566 (S_GCC_Ada_83
'Access,
3567 S_GCC_Ada_95 'Access,
3568 S_GCC_Ada_05
'Access,
3569 S_GCC_Ada_2005'Access,
3570 S_GCC_Ada_12 'Access,
3571 S_GCC_Ada_2012
'Access,
3574 S_GCC_AValid
'Access,
3575 S_GCC_CategW 'Access,
3576 S_GCC_Checks
'Access,
3577 S_GCC_ChecksX 'Access,
3578 S_GCC_Compres
'Access,
3579 S_GCC_Config 'Access,
3580 S_GCC_Current
'Access,
3581 S_GCC_Debug 'Access,
3582 S_GCC_DebugX
'Access,
3585 S_GCC_DistX 'Access,
3586 S_GCC_Error
'Access,
3587 S_GCC_ErrorX 'Access,
3588 S_GCC_Expand
'Access,
3589 S_GCC_Lexpand 'Access,
3590 S_GCC_Except
'Access,
3591 S_GCC_Extend 'Access,
3594 S_GCC_Follow
'Access,
3595 S_GCC_Force 'Access,
3597 S_GCC_Generate'Access,
3600 S_GCC_Ident 'Access,
3601 S_GCC_IdentX
'Access,
3602 S_GCC_Ignore 'Access,
3603 S_GCC_Immed
'Access,
3604 S_GCC_Inline 'Access,
3605 S_GCC_InlineX
'Access,
3606 S_GCC_Intsrc 'Access,
3608 S_GCC_JustX 'Access,
3609 S_GCC_Length
'Access,
3611 S_GCC_Output
'Access,
3612 S_GCC_Machine 'Access,
3613 S_GCC_Mapping
'Access,
3615 S_GCC_Multi
'Access,
3617 S_GCC_Nesting
'Access,
3618 S_GCC_Noadc 'Access,
3619 S_GCC_Noload
'Access,
3620 S_GCC_Nostinc 'Access,
3621 S_GCC_Nostlib
'Access,
3622 S_GCC_NoWarnP 'Access,
3625 S_GCC_Pointer
'Access,
3626 S_GCC_Polling 'Access,
3627 S_GCC_Project
'Access,
3629 S_GCC_Report
'Access,
3630 S_GCC_ReportX 'Access,
3631 S_GCC_Repinfo
'Access,
3632 S_GCC_RepinfX 'Access,
3635 S_GCC_Search
'Access,
3636 S_GCC_Src_Info'Access,
3637 S_GCC_Style 'Access,
3638 S_GCC_StyleX
'Access,
3639 S_GCC_Subdirs 'Access,
3640 S_GCC_Symbol
'Access,
3641 S_GCC_Syntax 'Access,
3642 S_GCC_Table
'Access,
3643 S_GCC_Trace 'Access,
3647 S_GCC_Units 'Access,
3648 S_GCC_Unique
'Access,
3649 S_GCC_Upcase 'Access,
3650 S_GCC_Valid
'Access,
3651 S_GCC_Verbose 'Access,
3652 S_GCC_Verb_Asm
'Access,
3654 S_GCC_WarnX 'Access,
3656 S_GCC_WideX 'Access,
3657 S_GCC_No_Back
'Access,
3658 S_GCC_Xdebug 'Access,
3659 S_GCC_Lxdebug
'Access,
3660 S_GCC_Xref 'Access);
3662 ----------------------------
3663 -- Switches for GNAT ELIM --
3664 ----------------------------
3666 S_Elim_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
3668 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
3670 -- Add directories to the project search path.
3672 S_Elim_All
: aliased constant S
:= "/ALL " &
3677 -- Also look for subprograms from the GNAT run time that can be
3678 -- eliminated. Note that when 'gnat.adc' is produced using this switch,
3679 -- the entire program must be recompiled with qualifier /ALL_FILES of
3682 S_Elim_Bind
: aliased constant S
:= "/BIND_FILE=<" &
3684 -- /BIND_FILE=file_name
3686 -- Specifies file_name as the bind file to process. If this qualifier is
3687 -- not used, the name of the bind file is computed from the full expanded
3688 -- Ada name of a main subprogram.
3690 S_Elim_Comp
: aliased constant S
:= "/COMPILER=@" &
3692 -- /COMPILER=path_name
3694 -- Instructs GNAT ELIM to use a specific gcc compiler instead of one
3695 -- available on the path.
3697 S_Elim_Config
: aliased constant S
:= "/CONFIGURATION_PRAGMAS=<" &
3699 -- /CONFIGURATION_PRAGMAS=path_name
3701 -- Specifies a file that contains configuration pragmas.
3702 -- The file must be specified with absolute path.
3704 S_Elim_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
3706 -- /CURRENT_DIRECTORY (D)
3707 -- /NOCURRENT_DIRECTORY
3709 -- Look for source files in the default directory.
3711 S_Elim_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
3713 -- /EXTERNAL_REFERENCE="name=val"
3715 -- Specifies an external reference to the project manager. Useful only if
3716 -- /PROJECT_FILE is used.
3719 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3721 S_Elim_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
3723 -- /NOFOLLOW_LINKS_FOR_FILES (D)
3724 -- /FOLLOW_LINKS_FOR_FILES
3726 -- Follow links when parsing project files
3728 S_Elim_GNATMAKE
: aliased constant S
:= "/GNATMAKE=@" &
3730 -- /GNATMAKE=path_name
3732 -- Instructs GNAT MAKE to use a specific gnatmake instead of one available
3735 S_Elim_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
3742 -- /MESSAGES_PROJECT_FILE[=messages-option]
3744 -- Specifies the "verbosity" of the parsing of project files.
3745 -- messages-option may be one of the following:
3747 -- DEFAULT (D) No messages are output if there is no error or warning.
3749 -- MEDIUM A small number of messages are output.
3751 -- HIGH A great number of messages are output, most of them not
3752 -- being useful for the user.
3754 S_Elim_Nodisp
: aliased constant S
:= "/NO_DISPATCH " &
3755 "--no-elim-dispatch";
3756 -- /NONO_DISPATCH (D)
3759 -- Do not generate pragmas for dispatching operations.
3761 S_Elim_Ignore
: aliased constant S
:= "/IGNORE=@" &
3765 -- Do not generate pragmas for subprograms declared in the sources
3766 -- listed in a specified file
3768 S_Elim_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
3770 -- /PROJECT_FILE=filename
3772 -- Specifies the main project file to be used. The project files rooted
3773 -- at the main project file will be parsed before the invocation of the
3774 -- gnatelim. The source directories to be searched will be communicated
3775 -- to gnatelim through logical name ADA_PRJ_INCLUDE_FILE.
3777 S_Elim_Quiet
: aliased constant S
:= "/QUIET " &
3782 -- Quiet mode: by default GNAT ELIM outputs to the standard error stream
3783 -- the number of program units left to be processed. This option turns
3786 S_Elim_Files
: aliased constant S
:= "/FILES=@" &
3791 -- Take as arguments the files that are listed in the specified
3794 S_Elim_Log
: aliased constant S
:= "/LOG " &
3799 -- Duplicate all the output sent to Stderr into a default log file.
3801 S_Elim_Logfile
: aliased constant S
:= "/LOGFILE=@" &
3804 -- /LOGFILE=logfilename
3806 -- Duplicate all the output sent to Stderr into a specified log file.
3808 S_Elim_Main
: aliased constant S
:= "/MAIN=@" &
3813 -- Specify the main subprogram of the partition to analyse.
3815 S_Elim_Out
: aliased constant S
:= "/OUTPUT=@" &
3819 -- Specify the name of the output file.
3821 S_Elim_Time
: aliased constant S
:= "/TIME " &
3826 -- Print out execution time
3828 S_Elim_Search
: aliased constant S
:= "/SEARCH=*" &
3830 -- /SEARCH=(directory, ...)
3832 -- When looking for source files also look in the specified directories.
3834 S_Elim_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
3838 -- The actual directories (object, exec, library, ...) are subdirectories
3839 -- of the directory specified in the project file. If the subdirectory
3840 -- does not exist, it is created automatically.
3842 S_Elim_Verb
: aliased constant S
:= "/VERBOSE " &
3847 -- Verbose mode: GNAT ELIM version information is output as Ada comments
3848 -- to the standard output stream. Also, in addition to the number of
3849 -- program units left, GNAT ELIM will output the name of the current unit
3852 S_Elim_Warn
: aliased constant S
:= "/WARNINGS=" &
3858 -- /WARNINGS[=(keyword[,...])]
3860 -- The following keywords are supported:
3862 -- NORMAL (D) Print warning all the messages.
3863 -- QUIET Some warning messages are suppressed
3865 Elim_Switches
: aliased constant Switches
:=
3866 (S_Elim_Add
'Access,
3868 S_Elim_Bind
'Access,
3869 S_Elim_Comp 'Access,
3870 S_Elim_Config
'Access,
3871 S_Elim_Current 'Access,
3873 S_Elim_Files 'Access,
3874 S_Elim_Follow
'Access,
3875 S_Elim_GNATMAKE'Access,
3877 S_Elim_Logfile
'Access,
3878 S_Elim_Main 'Access,
3879 S_Elim_Mess
'Access,
3880 S_Elim_Nodisp 'Access,
3882 S_Elim_Project 'Access,
3883 S_Elim_Quiet
'Access,
3884 S_Elim_Search 'Access,
3885 S_Elim_Subdirs
'Access,
3886 S_Elim_Time 'Access,
3887 S_Elim_Verb
'Access,
3888 S_Elim_Warn 'Access);
3890 ----------------------------
3891 -- Switches for GNAT FIND --
3892 ----------------------------
3894 S_Find_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
3896 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
3898 -- Add directories to the project search path.
3900 S_Find_All
: aliased constant S
:= "/ALL_FILES " &
3905 -- If this switch is present, FIND and XREF will parse the read-only
3906 -- files found in the library search path. Otherwise, these files will
3907 -- be ignored. This option can be used to protect Gnat sources or your
3908 -- own libraries from being parsed, thus making FIND and XREF much
3909 -- faster, and their output much smaller.
3911 S_Find_Deriv
: aliased constant S
:= "/DERIVED_TYPE_INFORMATION " &
3913 -- /NODERIVED_TYPE_INFORMATION (D)
3914 -- /DERIVED_TYPE_INFORMATION
3916 -- Output the parent type reference for each matching derived types.
3918 S_Find_Expr
: aliased constant S
:= "/EXPRESSIONS " &
3920 -- /NOEXPRESSIONS (D)
3923 -- By default, FIND accepts the simple regular expression set for pattern.
3924 -- If this switch is set, then the pattern will be considered as a full
3925 -- Unix-style regular expression.
3927 S_Find_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
3929 -- /EXTERNAL_REFERENCE="name=val"
3931 -- Specifies an external reference to the project manager. Useful only if
3932 -- /PROJECT_FILE is used.
3935 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3937 S_Find_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
3939 -- /NOFOLLOW_LINKS_FOR_FILES (D)
3940 -- /FOLLOW_LINKS_FOR_FILES
3942 -- Follow links when parsing project files
3944 S_Find_Full
: aliased constant S
:= "/FULL_PATHNAME " &
3946 -- /NOFULL_PATHNAME (D)
3949 -- If this switch is set, the output file names will be preceded by their
3950 -- directory (if the file was found in the search path). If this switch
3951 -- is not set, the directory will not be printed.
3953 S_Find_Ignore
: aliased constant S
:= "/IGNORE_LOCALS " &
3955 -- /NOIGNORE_LOCALS (D)
3958 -- If this switch is set, information is output only for library-level
3959 -- entities, ignoring local entities. The use of this switch may
3960 -- accelerate FIND and XREF.
3962 S_Find_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
3969 -- /MESSAGES_PROJECT_FILE[=messages-option]
3971 -- Specifies the "verbosity" of the parsing of project files.
3972 -- messages-option may be one of the following:
3974 -- DEFAULT (D) No messages are output if there is no error or warning.
3976 -- MEDIUM A small number of messages are output.
3978 -- HIGH A great number of messages are output, most of them not
3979 -- being useful for the user.
3981 S_Find_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
3985 -- Do not look for sources in the system default directory.
3987 S_Find_Nostlib
: aliased constant S
:= "/NOSTD_LIBRARIES " &
3991 -- Do not look for library files in the system default directory.
3993 S_Find_Object
: aliased constant S
:= "/OBJECT_SEARCH=*" &
3995 -- /OBJECT_SEARCH=(directory,...)
3997 -- When searching for library and object files, look in the specified
3998 -- directories. The order in which library files are searched is the same
4001 S_Find_Print
: aliased constant S
:= "/PRINT_LINES " &
4003 -- /NOPRINT_LINES (D)
4006 -- Output the content of the Ada source file lines were the entity was
4009 S_Find_Project
: aliased constant S
:= "/PROJECT=@" &
4013 -- Specify a project file to use. By default, FIND and XREF will try to
4014 -- locate a project file in the current directory.
4016 -- If a project file is either specified or found by the tools, then the
4017 -- content of the source directory and object directory lines are added
4018 -- as if they had been specified respectively by /SOURCE_SEARCH and
4021 -- This qualifier is not compatible with /PROJECT_FILE
4023 S_Find_Prj
: aliased constant S
:= "/PROJECT_FILE=<" &
4025 -- /PROJECT_FILE=filename
4027 -- Specifies the main project file to be used. The project files rooted
4028 -- at the main project file will be parsed before looking for sources.
4029 -- The source and object directories to be searched will be communicated
4030 -- to gnatfind through logical names ADA_PRJ_INCLUDE_FILE and
4031 -- ADA_PRJ_OBJECTS_FILE.
4033 S_Find_Ref
: aliased constant S
:= "/REFERENCES " &
4035 -- /NOREFERENCES (D)
4038 -- By default, FIND will output only the information about the
4039 -- declaration, body or type completion of the entities. If this switch
4040 -- is set, the FIND will locate every reference to the entities in the
4041 -- files specified on the command line (or in every file in the search
4042 -- path if no file is given on the command line).
4044 S_Find_Search
: aliased constant S
:= "/SEARCH=*" &
4046 -- /SEARCH=(directory,...)
4049 -- /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
4051 S_Find_Source
: aliased constant S
:= "/SOURCE_SEARCH=*" &
4053 -- /SOURCE_SEARCH=(directory,...)
4055 -- When looking for source files also look in the specified directories.
4056 -- The order in which source file search is undertaken is the same as for
4059 S_Find_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
4063 -- The actual directories (object, exec, library, ...) are subdirectories
4064 -- of the directory specified in the project file. If the subdirectory
4065 -- does not exist, it is created automatically.
4067 S_Find_Types
: aliased constant S
:= "/TYPE_HIERARCHY " &
4069 -- /NOTYPE_HIERARCHY (D)
4072 -- Output the type hierarchy for the specified type. It acts like the
4073 -- /DERIVED_TYPE_INFORMATION qualifier, but recursively from parent type
4074 -- to parent type. When this qualifier is specified it is not possible to
4075 -- specify more than one file.
4077 Find_Switches
: aliased constant Switches
:=
4078 (S_Find_Add
'Access,
4080 S_Find_Deriv
'Access,
4081 S_Find_Expr 'Access,
4083 S_Find_Follow 'Access,
4084 S_Find_Full
'Access,
4085 S_Find_Ignore 'Access,
4086 S_Find_Mess
'Access,
4087 S_Find_Nostinc 'Access,
4088 S_Find_Nostlib
'Access,
4089 S_Find_Object 'Access,
4090 S_Find_Print
'Access,
4091 S_Find_Project 'Access,
4094 S_Find_Search
'Access,
4095 S_Find_Source 'Access,
4096 S_Find_Subdirs
'Access,
4097 S_Find_Types 'Access);
4099 ------------------------------
4100 -- Switches for GNAT KRUNCH --
4101 ------------------------------
4103 S_Krunch_Count
: aliased constant S
:= "/COUNT=#" &
4108 -- Limit file names to nnn characters (where nnn is a decimal
4109 -- integer). The maximum file name length is 39, but if you want to
4110 -- generate a set of files that would be usable if ported to a system
4111 -- with some different maximum file length, then a different value can
4114 Krunch_Switches
: aliased constant Switches
:=
4115 (1 .. 1 => S_Krunch_Count
'Access);
4117 ----------------------------
4118 -- Switches for GNAT LINK --
4119 ----------------------------
4121 S_Link_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
4123 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4125 -- Add directories to the project search path.
4127 S_Link_Bind : aliased constant S := "/BIND_FILE=" &
4132 -- /BIND_FILE=[bind-file-option]
4134 -- Specifies the language of the binder generated file.
4136 -- ADA (D) Binder file is Ada.
4138 -- C Binder file is 'C
'.
4140 S_Link_Debug : aliased constant S := "/DEBUG=" &
4150 -- /DEBUG[=debug-option]
4152 -- Specifies the amount of debugging information included. 'debug
-option
'
4153 -- is one of the following:
4155 -- ALL (D) Include full debugging information.
4157 -- NONE Provide no debugging information. Same as /NODEBUG.
4159 -- TRACEBACK Provide sufficient debug information for a traceback.
4161 -- NOTRACEBACK Same as NONE.
4163 S_Link_Nodebug : aliased constant S := "/NODEBUG " &
4165 -- NODOC (see /DEBUG)
4167 S_Link_Execut : aliased constant S := "/EXECUTABLE=@" &
4169 -- /EXECUTABLE=exec-name
4171 -- 'exec
-name
' specifies an alternative name for the generated executable
4172 -- program. If this qualifier switch is omitted, the executable is called
4173 -- the name of the main unit. So "$ GNAT LINK TRY.ALI" creates an
4174 -- executable called TRY.EXE.
4176 S_Link_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
4178 -- /EXTERNAL_REFERENCE="name=val"
4180 -- Specifies an external reference to the project manager. Useful only if
4181 -- /PROJECT_FILE is used.
4184 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4186 S_Link_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
4188 -- /NOFOLLOW_LINKS_FOR_FILES (D)
4189 -- /FOLLOW_LINKS_FOR_FILES
4191 -- Follow links when parsing project files
4193 S_Link_Forlink : aliased constant S := "/FOR_LINKER=" & '"' &
4194 "--for-linker=" & '"';
4195 -- /FOR_LINKER=<string>
4197 -- Transmit the option <string> to the underlying linker.
4199 S_Link_Force
: aliased constant S
:= "/FORCE_OBJECT_FILE_LIST " &
4201 -- /NOFORCE_OBJECT_FILE_LIST (D)
4202 -- /FORCE_OBJECT_FILE_LIST
4204 -- Forces the generation of a file that contains commands for the linker.
4205 -- This is useful in some cases to deal with special situations where the
4206 -- command line length is exceeded.
4208 S_Link_Ident
: aliased constant S
:= "/IDENTIFICATION=" & '"' &
4209 "--for-linker=IDENT=" &
4211 -- /IDENTIFICATION="<string>"
4213 -- "<string>" specifies the string to be stored in the image file ident-
4214 -- ification field in the image header. It overrides any pragma Ident
4215 -- specified string.
4217 S_Link_Libdir
: aliased constant S
:= "/LIBDIR=*" &
4219 -- /LIBDIR=(directory, ...)
4221 -- Look for libraries in the specified directories.
4223 S_Link_Library
: aliased constant S
:= "/LIBRARY=|" &
4227 -- Link with library named "xyz".
4229 S_Link_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
4236 -- /MESSAGES_PROJECT_FILE[=messages-option]
4238 -- Specifies the "verbosity" of the parsing of project files.
4239 -- messages-option may be one of the following:
4241 -- DEFAULT (D) No messages are output if there is no error or warning.
4243 -- MEDIUM A small number of messages are output.
4245 -- HIGH A great number of messages are output, most of them not
4246 -- being useful for the user.
4248 S_Link_Nocomp
: aliased constant S
:= "/NOCOMPILE " &
4252 -- Do not compile the file generated by the binder.
4253 -- This may be used when a link is rerun with different options,
4254 -- but there is no need to recompile the binder generated file.
4256 S_Link_Noinhib
: aliased constant S
:= "/NOINHIBIT-EXEC " &
4257 "--for-linker=--noinhibit-exec";
4260 -- Delete executable if there are errors or warnings.
4262 S_Link_Nofiles
: aliased constant S
:= "/NOSTART_FILES " &
4266 -- Link in default image initialization and startup functions.
4268 S_Link_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
4270 -- /PROJECT_FILE=filename
4272 -- Specifies the main project file to be used. The project files rooted
4273 -- at the main project file will be parsed before the invocation of the
4275 -- The source and object directories to be searched will be communicated
4276 -- to the linker through logical names ADA_PRJ_INCLUDE_FILE and
4277 -- ADA_PRJ_OBJECTS_FILE.
4279 S_Link_Return
: aliased constant S
:= "/RETURN_CODES=" &
4281 "!-mvms-return-codes " &
4283 "-mvms-return-codes";
4284 -- /RETURN_CODES=POSIX (D)
4285 -- /RETURN_CODES=VMS
4287 -- Specifies the style of codes returned by
4288 -- Ada.Command_Line.Set_Exit_Status. Must be used in conjunction with
4289 -- and match the Bind qualifier with the same name.
4291 -- POSIX (D) Return Posix compatible exit codes.
4293 -- VMS Return VMS compatible exit codes. The value returned
4294 -- is identically equal to the Set_Exit_Status parameter.
4296 S_Link_Static
: aliased constant S
:= "/STATIC " &
4297 "--for-linker=-static";
4301 -- Indicate to the linker that the link is static.
4303 S_Link_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
4307 -- The actual directories (object, exec, library, ...) are subdirectories
4308 -- of the directory specified in the project file. If the subdirectory
4309 -- does not exist, it is created automatically.
4311 S_Link_Verb
: aliased constant S
:= "/VERBOSE " &
4316 -- Causes additional information to be output, including a full list of
4317 -- the included object files. This switch option is most useful when you
4318 -- want to see what set of object files are being used in the link step.
4320 S_Link_ZZZZZ
: aliased constant S
:= "/<other> " &
4324 -- Any other switch that will be transmitted to the underlying linker.
4326 Link_Switches
: aliased constant Switches
:=
4327 (S_Link_Add
'Access,
4328 S_Link_Bind 'Access,
4329 S_Link_Debug
'Access,
4330 S_Link_Nodebug 'Access,
4331 S_Link_Execut
'Access,
4333 S_Link_Follow
'Access,
4334 S_Link_Forlink 'Access,
4335 S_Link_Force
'Access,
4336 S_Link_Ident 'Access,
4337 S_Link_Libdir
'Access,
4338 S_Link_Library 'Access,
4339 S_Link_Mess
'Access,
4340 S_Link_Nocomp 'Access,
4341 S_Link_Nofiles
'Access,
4342 S_Link_Noinhib 'Access,
4343 S_Link_Project
'Access,
4344 S_Link_Return 'Access,
4345 S_Link_Static
'Access,
4346 S_Link_Subdirs 'Access,
4347 S_Link_Verb
'Access,
4348 S_Link_ZZZZZ 'Access);
4350 ----------------------------
4351 -- Switches for GNAT LIST --
4352 ----------------------------
4354 S_List_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
4356 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4358 -- Add directories to the project search path.
4360 S_List_All
: aliased constant S
:= "/ALL_UNITS " &
4365 -- Consider all units, including those of the predefined Ada library.
4366 -- Especially useful with /DEPENDENCIES.
4368 S_List_Allproj
: aliased constant S
:= "/ALL_PROJECTS " &
4370 -- /NOALL_PROJECTS (D)
4373 -- When used with a project file and no file specified, indicate
4374 -- that gnatls should be called for all sources of all projects in
4375 -- the project tree.
4377 S_List_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
4379 -- /CURRENT_DIRECTORY (D)
4380 -- /NOCURRENT_DIRECTORY
4382 -- Look for source, library or object files in the default directory.
4384 S_List_Depend
: aliased constant S
:= "/DEPENDENCIES " &
4386 -- /NODEPENDENCIES (D)
4389 S_List_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
4391 -- /EXTERNAL_REFERENCE="name=val"
4393 -- Specifies an external reference to the project manager. Useful only if
4394 -- /PROJECT_FILE is used.
4397 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4399 S_List_Files
: aliased constant S
:= "/FILES=@" &
4403 -- Take as arguments the files that are listed in the specified
4406 S_List_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
4408 -- /NOFOLLOW_LINKS_FOR_FILES (D)
4409 -- /FOLLOW_LINKS_FOR_FILES
4411 -- Follow links when parsing project files
4413 S_List_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
4420 -- /MESSAGES_PROJECT_FILE[=messages-option]
4422 -- Specifies the "verbosity" of the parsing of project files.
4423 -- messages-option may be one of the following:
4425 -- DEFAULT (D) No messages are output if there is no error or warning.
4427 -- MEDIUM A small number of messages are output.
4429 -- HIGH A great number of messages are output, most of them not
4430 -- being useful for the user.
4432 S_List_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
4436 -- Do not look for sources of the run time in the standard directory.
4438 S_List_Object
: aliased constant S
:= "/OBJECT_SEARCH=*" &
4440 -- /OBJECT_SEARCH=(directory,...)
4442 -- When looking for library and object files look also in the specified
4445 S_List_Output
: aliased constant S
:= "/OUTPUT=" &
4458 -- /OUTPUT=(option,option,...)
4460 -- SOURCES (D) Only output information about source files.
4462 -- DEPEND List sources from which specified units depend on.
4464 -- OBJECTS Only output information about object files.
4466 -- UNITS Only output information about compilation units.
4468 -- OPTIONS Output the list of options.
4470 -- VERBOSE Output the complete source and object paths.
4471 -- Do not use the default column layout but instead
4472 -- use long format giving as much as information
4473 -- possible on each requested units, including
4474 -- special characteristics.
4476 S_List_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
4478 -- /PROJECT_FILE=filename
4480 -- Specifies the main project file to be used. The project files rooted
4481 -- at the main project file will be parsed before doing any listing.
4482 -- The source and object directories to be searched will be communicated
4483 -- to gnatlist through logical names ADA_PRJ_INCLUDE_FILE and
4484 -- ADA_PRJ_OBJECTS_FILE.
4486 S_List_Search
: aliased constant S
:= "/SEARCH=*" &
4488 -- /SEARCH=(directory,...)
4490 -- Search the specified directories for both source and object files.
4492 S_List_Source
: aliased constant S
:= "/SOURCE_SEARCH=*" &
4494 -- /SOURCE_SEARCH=(directory,...)
4496 -- When looking for source files also look in the specified directories.
4498 S_List_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
4502 -- The actual directories (object, exec, library, ...) are subdirectories
4503 -- of the directory specified in the project file. If the subdirectory
4504 -- does not exist, it is created automatically.
4506 List_Switches
: aliased constant Switches
:=
4507 (S_List_Add
'Access,
4509 S_List_Allproj
'Access,
4510 S_List_Current 'Access,
4511 S_List_Depend
'Access,
4513 S_List_Files
'Access,
4514 S_List_Follow 'Access,
4515 S_List_Mess
'Access,
4516 S_List_Nostinc 'Access,
4517 S_List_Object
'Access,
4518 S_List_Output 'Access,
4519 S_List_Project
'Access,
4520 S_List_Search 'Access,
4521 S_List_Source
'Access,
4522 S_List_Subdirs 'Access);
4524 ----------------------------
4525 -- Switches for GNAT MAKE --
4526 ----------------------------
4528 S_Make_Actions
: aliased constant S
:= "/ACTIONS=" &
4535 -- /ACTIONS=(keyword[,...])
4537 -- GNAT MAKE default behavior is to check if the sources are up to date,
4538 -- compile those sources that are not up to date, bind the main source,
4539 -- then link the executable.
4541 -- With the /ACTIONS qualifier, GNAT MAKE may be restricted to one or
4542 -- two of these three steps:
4549 -- You may specify one or more of the following keywords to the /ACTIONS
4552 -- BIND Bind only. Can be combined with /ACTIONS=COMPILE
4553 -- to do compilation and binding, but no linking.
4554 -- Can be combined with /ACTIONS=LINK to do binding and
4555 -- linking. When not combined with /ACTIONS=COMPILE,
4556 -- all the units in the closure of the main program must
4557 -- have been previously compiled and must be up to date.
4559 -- COMPILE Compile only. Do not perform binding, except when
4560 -- /ACTIONS=BIND is also specified. Do not perform
4561 -- linking, except if both /ACTIONS=BIND and /ACTIONS=LINK
4562 -- are also specified.
4564 -- LINK Link only. Can be combined with /ACTIONS=BIND to do
4565 -- binding and linking. Linking will not be performed
4566 -- if combined with /ACTIONS=COMPILE but not with
4567 -- /ACTIONS=BIND\. When not combined with /ACTIONS=BIND
4568 -- all the units in the closure of the main program must
4569 -- have been previously compiled and must be up to date,
4570 -- and the main program need to have been bound.
4572 S_Make_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
4574 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4576 -- Add directories to the project search path.
4578 S_Make_All
: aliased constant S
:= "/ALL_FILES " &
4583 -- Consider all files in the make process, even the GNAT internal system
4584 -- files (for example, the predefined Ada library files). By default,
4585 -- GNAT MAKE does not check these files (however, if there is an
4586 -- installation problem, it will be caught when GNAT MAKE binds your
4587 -- program). You may have to specify this qualifier if you are working on
4588 -- GNAT itself. The vast majority of GNAT MAKE users never need to
4589 -- specify this switch. All GNAT internal files with will be compiled
4590 -- with /STYLE_CHECK=GNAT.
4592 S_Make_Allproj
: aliased constant S
:= "/ALL_PROJECTS " &
4594 -- /NOALL_PROJECTS (D)
4598 -- When used without project files, it is equivalent to /UNIQUE.
4599 -- When used with a project file with no main (neither on the command
4600 -- line nor in the attribute Main) check every source of every project,
4601 -- recompile all sources that are not up to date and rebuild libraries
4604 S_Make_Bind
: aliased constant S
:= "/BINDER_QUALIFIERS=?" &
4606 -- /BINDER_QUALIFIERS
4608 -- Any qualifiers specified after this qualifier other than
4609 -- /COMPILER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
4610 -- passed to any GNAT BIND commands generated by GNAT MAKE.
4612 S_Make_Bindprj
: aliased constant S
:= "/BND_LNK_FULL_PROJECT " &
4614 -- /BND_LNK_FULL_PROJECT
4616 -- Bind and link all sources of a project, without any consideration
4617 -- to attribute Main, if there is one. This qualifier need to be
4618 -- used in conjunction with the /PROJECT_FILE= qualifier and cannot
4619 -- be used with a main subprogram on the command line or for
4620 -- a library project file. As the binder is invoked with the option
4621 -- meaning "No Ada main subprogram", the user must ensure that the
4622 -- proper options are specified to the linker. This qualifier is
4623 -- normally used when the main subprogram is in a foreign language
4626 S_Make_Comp
: aliased constant S
:= "/COMPILER_QUALIFIERS=?" &
4628 -- /COMPILER_QUALIFIERS
4630 -- Any qualifiers specified after this qualifier other than
4631 -- /BINDER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
4632 -- passed to any GNAT COMPILE commands generated by GNAT MAKE.
4634 S_Make_Cond
: aliased constant S
:= "/CONDITIONAL_SOURCE_SEARCH=*" &
4636 -- /CONDITIONAL_SOURCE_SEARCH=dir
4638 -- Equivalent to "/SOURCE_SEARCH=dir /SKIP_MISSING=dir".
4640 S_Make_Cont
: aliased constant S
:= "/CONTINUE_ON_ERROR " &
4642 -- /NOCONTINUE_ON_ERROR (D)
4643 -- /CONTINUE_ON_ERROR
4645 -- Keep going. Continue as much as possible after a compilation error.
4646 -- To ease the programmer's task in case of compilation errors, the list
4647 -- of sources for which the compile fails is given when GNAT MAKE
4650 S_Make_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
4652 -- /CURRENT_DIRECTORY (D)
4653 -- /NOCURRENT_DIRECTORY
4655 -- Look for source, library or object files in the default directory.
4657 S_Make_Dep
: aliased constant S
:= "/DEPENDENCIES_LIST " &
4659 -- /NODEPENDENCIES_LIST (D)
4660 -- /DEPENDENCIES_LIST
4662 -- Check if all objects are up to date. If they are, output the object
4663 -- dependences to SYS$OUTPUT in a form that can be directly exploited in
4664 -- a Unix-style Makefile. By default, each source file is prefixed with
4665 -- its (relative or absolute) directory name. This name is whatever you
4666 -- specified in the various /SOURCE_SEARCH and /SEARCH qualifiers. If
4667 -- you also specify the /QUIET qualifier, only the source file names,
4668 -- without relative paths, are output. If you just specify the
4669 -- /DEPENDENCY_LIST qualifier, dependencies of the GNAT internal system
4670 -- files are omitted. This is typically what you want. If you also
4671 -- specify the /ALL_FILES qualifier, dependencies of the GNAT internal
4672 -- files are also listed. Note that dependencies of the objects in
4673 -- external Ada libraries (see the /SKIP_MISSING qualifier) are never
4676 S_Make_Dirobj
: aliased constant S
:= "/DIRECTORY_OBJECTS=@" &
4678 -- /DIRECTORY_OBJECTS=<file>
4680 -- Put all object files and .ALI files in <file>.
4681 -- This qualifier is not compatible with /PROJECT_FILE.
4683 S_Make_Disprog
: aliased constant S
:= "/DISPLAY_PROGRESS " &
4685 -- /NOPLAY_PROGRESS (D)
4686 -- /DISPLAY_PROGRESS
4688 -- Display progress for each source, up to date or not, as a single line
4689 -- completed x out of y (zz%)
4690 -- If the file needs to be compiled this is displayed after the
4691 -- invocation of the compiler. These lines are displayed even in quiet
4692 -- output mode (/QUIET).
4694 S_Make_Doobj
: aliased constant S
:= "/DO_OBJECT_CHECK " &
4696 -- /NODO_OBJECT_CHECK (D)
4699 -- Don't compile, bind, or link. Output a single command that will
4700 -- recompile an out of date unit, if any. Repeated use of this option,
4701 -- followed by carrying out the indicated compilation, will eventually
4702 -- result in recompiling all required units.
4704 -- If any ALI is missing during the process, GNAT MAKE halts and
4705 -- displays an error message.
4707 S_Make_Execut
: aliased constant S
:= "/EXECUTABLE=@" &
4709 -- /EXECUTABLE=exec-name
4711 -- The name of the final executable program will be 'exec_name'. If this
4712 -- qualifier is omitted the default name for the executable will be the
4713 -- name of the input file with an EXE filetype. You may prefix
4714 -- 'exec_name' with a relative or absolute directory path.
4716 S_Make_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
4718 -- /EXTERNAL_REFERENCE="name=val"
4720 -- Specifies an external reference to the project manager. Useful only if
4721 -- /PROJECT_FILE is used.
4724 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4726 S_Make_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
4728 -- /NOFOLLOW_LINKS_FOR_FILES (D)
4729 -- /FOLLOW_LINKS_FOR_FILES
4731 -- Follow links when parsing project files
4733 S_Make_Force
: aliased constant S
:= "/FORCE_COMPILE " &
4735 -- /NOFORCE_COMPILE (D)
4738 -- Force recompilations. Recompile all sources, even though some object
4739 -- files may be up to date, but don't recompile predefined or GNAT
4740 -- internal files unless the /ALL_FILES qualifier is also specified.
4742 S_Make_Full
: aliased constant S
:= "/FULL_PATH_IN_BRIEF_MESSAGES " &
4744 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
4745 -- /FULL_PATH_IN_BRIEF_MESSAGES
4747 -- When using project files, if some errors or warnings are detected
4748 -- during parsing and verbose mode is not in effect (no use of qualifier
4749 -- /VERBOSE), then error lines start with the full path name of the
4750 -- project file, rather than its simple file name.
4752 S_Make_Hi_Verb
: aliased constant S
:= "/HIGH_VERBOSITY " &
4754 -- /NOHIGH_VERBOSITY (D)
4757 -- Displays the reason for all recompilations GNAT MAKE decides are
4758 -- necessary, in high verbosity. Equivalent to /VERBOSE.
4760 S_Make_Inplace
: aliased constant S
:= "/IN_PLACE " &
4765 -- In normal mode, GNAT MAKE compiles all object files and ALI files
4766 -- into the current directory. If the /IN_PLACE switch is used,
4767 -- then instead object files and ALI files that already exist are over-
4768 -- written in place. This means that once a large project is organized
4769 -- into separate directories in the desired manner, then GNAT MAKE will
4770 -- automatically maintain and update this organization. If no ALI files
4771 -- are found on the Ada object path, the new object and ALI files are
4772 -- created in the directory containing the source being compiled.
4774 S_Make_Index
: aliased constant S
:= "/SOURCE_INDEX=#" &
4776 -- /SOURCE_INDEX=nnn
4778 -- Specifies the index of the units in the source file
4779 -- By default, source files are mono-unit and there is no index
4780 -- When /SOURCE_INDEX=nnn is specified, only one main may be specified
4781 -- on the command line.
4783 S_Make_Library
: aliased constant S
:= "/LIBRARY_SEARCH=*" &
4785 -- /LIBRARY_SEARCH=(directory[,...])
4787 -- Add the specified directories to the list of directories in which the
4788 -- linker will search for libraries.
4790 S_Make_Link
: aliased constant S
:= "/LINKER_QUALIFIERS=?" &
4792 -- /LINKER_QUALIFIERS
4794 -- Any qualifiers specified after this qualifier other than
4795 -- /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /MAKE_QUALIFIERS will be
4796 -- passed to any GNAT LINK commands generated by GNAT LINK.
4798 S_Make_Low_Verb
: aliased constant S
:= "/LOW_VERBOSITY " &
4800 -- /NOLOW_VERBOSITY (D)
4803 -- Displays the reason for all recompilations GNAT MAKE decides are
4804 -- necessary, in low verbosity, that is with less output than
4805 -- /MEDIUM_VERBOSITY, /HIGH_VERBOSITY or /VERBOSE.
4807 S_Make_Make
: aliased constant S
:= "/MAKE_QUALIFIERS=?" &
4811 -- Any qualifiers specified after this qualifier other than
4812 -- /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /LINKER_QUALIFIERS
4813 -- are for the benefit of GNAT MAKE itself.
4815 S_Make_Mapping
: aliased constant S
:= "/MAPPING " &
4820 -- Use a mapping file. A mapping file is a way to communicate to the
4821 -- compiler two mappings: from unit names to file names (without any
4822 -- directory information) and from file names to path names (with full
4823 -- directory information). These mappings are used by the compiler to
4824 -- short-circuit the path search. When GNAT MAKE is invoked with this
4825 -- qualifier, it will create a mapping file, initially populated by the
4826 -- project manager, if /PROJECT_File= is used, otherwise initially empty.
4827 -- Each invocation of the compiler will add the newly accessed sources to
4828 -- the mapping file. This will improve the source search during the next
4829 -- invocations of the compiler
4831 S_Make_Med_Verb
: aliased constant S
:= "/MEDIUM_VERBOSITY " &
4833 -- /NOMEDIUM_VERBOSITY (D)
4834 -- /MEDIUM_VERBOSITY
4836 -- Displays the reason for all recompilations GNAT MAKE decides are
4837 -- necessary, in medium verbosity, that is with potentially less output
4838 -- than /HIGH_VERBOSITY or /VERBOSE.
4840 S_Make_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
4847 -- /MESSAGES_PROJECT_FILE[=messages-option]
4849 -- Specifies the "verbosity" of the parsing of project files.
4850 -- messages-option may be one of the following:
4852 -- DEFAULT (D) No messages are output if there is no error or warning.
4854 -- MEDIUM A small number of messages are output.
4856 -- HIGH A great number of messages are output, most of them not
4857 -- being useful for the user.
4859 S_Make_Minimal
: aliased constant S
:= "/MINIMAL_RECOMPILATION " &
4861 -- /NOMINIMAL_RECOMPILATION (D)
4862 -- /MINIMAL_RECOMPILATION
4864 -- Specifies that the minimum necessary amount of recompilation
4865 -- be performed. In this mode GNAT MAKE ignores time stamp differences
4866 -- when the only modifications to a source file consist in
4867 -- adding/removing comments, empty lines, spaces or tabs.
4869 S_Make_Missing
: aliased constant S
:= "/CREATE_MISSING_DIRS " &
4871 -- /NOCREATE_MISSING_DIRS (D)
4872 -- /CREATE_MISSING_DIRS
4874 -- When an object directory, a library directory or an exec directory
4875 -- in missing, attempt to create the directory.
4877 S_Make_Nolink
: aliased constant S
:= "/NOLINK " &
4881 -- Compile only. Do not perform binding and linking. If the root unit is
4882 -- not a main unit, this is the default. Otherwise GNAT MAKE will
4883 -- attempt binding and linking unless all objects are up to date and the
4884 -- executable is more recent than the objects.
4885 -- This is equivalent to /ACTIONS=COMPILE
4887 S_Make_Nomain
: aliased constant S
:= "/NOMAIN " &
4891 -- No main subprogram. Bind and link the program even if the unit name
4892 -- given on the command line is a package name. The resulting executable
4893 -- will execute the elaboration routines of the package and its closure,
4894 -- then the finalization routines.
4896 S_Make_Nonpro
: aliased constant S
:= "/NON_PROJECT_UNIT_COMPILATION " &
4898 -- /NON_PROJECT_UNIT_COMPILATION
4900 -- Normally, when using project files, a unit that is not part of any
4901 -- project file, cannot be compile. These units may be compile, when
4902 -- needed, if this qualifier is specified.
4904 S_Make_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
4908 -- Do not look for sources the in the system default directory.
4910 S_Make_Nostlib
: aliased constant S
:= "/NOSTD_LIBRARIES " &
4914 -- Do not look for library files in the system default directory.
4916 S_Make_Object
: aliased constant S
:= "/OBJECT_SEARCH=*" &
4918 -- /OBJECT_SEARCH=(directory[,...])
4920 -- When looking for library and object files look also in the specified
4923 S_Make_Proc
: aliased constant S
:= "/PROCESSES=#" &
4928 -- Use NNN processes to carry out the (re)compilations. If you have a
4929 -- multiprocessor machine, compilations will occur in parallel. In the
4930 -- event of compilation errors, messages from various compilations might
4931 -- get interspersed (but GNAT MAKE will give you the full ordered list of
4932 -- failing compiles at the end). This can at times be annoying. To get a
4933 -- clean list of error messages don't use this qualifier.
4935 S_Make_Nojobs
: aliased constant S
:= "/NOPROCESSES " &
4937 -- NODOC (see /PROCESS)
4939 S_Make_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
4941 -- /PROJECT_FILE=filename
4943 -- Specifies the main project file to be used. The project files rooted
4944 -- at the main project file will be parsed before any other processing to
4945 -- set the building environment.
4947 S_Make_Quiet
: aliased constant S
:= "/QUIET " &
4952 -- When this qualifiers is specified, the commands carried out by GNAT
4953 -- MAKE are not displayed.
4955 S_Make_Reason
: aliased constant S
:= "/REASONS " &
4960 -- Displays the reason for all recompilations GNAT MAKE decides are
4963 S_Make_RTS
: aliased constant S
:= "/RUNTIME_SYSTEM=|" &
4965 -- /RUNTIME_SYSTEM=xxx
4967 -- Build against an alternate runtime system named xxx or RTS-xxx.
4969 S_Make_Search
: aliased constant S
:= "/SEARCH=*" &
4971 -- /SEARCH=(directory[,...])
4973 -- Search the specified directories for both source and object files.
4975 S_Make_Single
: aliased constant S
:= "/SINGLE_COMPILE_PER_OBJ_DIR " &
4976 "--single-compile-per-obj-dir";
4977 -- /NOSINGLE_COMPILE_PER_OBJ_DIR (D)
4978 -- /SINGLE_COMPILE_PER_OBJ_DIR
4980 -- When project files are used, do not allow simultaneous compilations
4981 -- for the same object directory.
4983 S_Make_Skip
: aliased constant S
:= "/SKIP_MISSING=*" &
4985 -- /SKIP_MISSING=(directory[,...])
4987 -- Skip missing library sources if ALI in 'directory'.
4989 S_Make_Source
: aliased constant S
:= "/SOURCE_SEARCH=*" &
4991 -- /SOURCE_SEARCH=(directory[,...])
4993 -- When looking for source files also look in the specified directories.
4995 S_Make_Src_Info
: aliased constant S
:= "/SRC_INFO=<" &
4997 -- /SRC_INFO=source-info-file
4999 -- Specify a source info file to be read or written by the Project
5000 -- Manager when project files are used.
5002 S_Make_Stand
: aliased constant S
:= "/STANDARD_OUTPUT_FOR_COMMANDS " &
5004 -- /NOSTANDARD_OUTPUT_FOR_COMMANDS (D)
5005 -- /STANDARD_OUTPUT_FOR_COMMANDS
5007 -- Output the commands for the compiler, the binder and the linker
5008 -- on SYS$OUTPUT, instead of SYS$ERROR.
5010 S_Make_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
5014 -- The actual directories (object, exec, library, ...) are subdirectories
5015 -- of the directory specified in the project file. If the subdirectory
5016 -- does not exist, it is created automatically.
5018 S_Make_Switch
: aliased constant S
:= "/SWITCH_CHECK " &
5020 -- /NOSWITCH_CHECK (D)
5023 -- Recompile if compiler switches have changed since last compilation.
5024 -- All compiler switches but -I and -o are taken into account in the
5025 -- following way: orders between different "first letter" switches are
5026 -- ignored, but orders between same switches are taken into account.
5027 -- For example, -O -O2 is different than -O2 -O, but -g -O is equivalent
5030 S_Make_USL
: aliased constant S
:= "/UNCHECKED_SHARED_LIB_IMPORTS " &
5031 "--unchecked-shared-lib-imports";
5032 -- /NOUNCHECKED_SHARED_LIB_IMPORTS (D)
5033 -- /UNCHECKED_SHARED_LIB_IMPORTS
5035 -- Allow shared library projects to import static library projects
5037 S_Make_Unique
: aliased constant S
:= "/UNIQUE " &
5042 -- Recompile at most the main file. It implies /ACTIONS=COMPILE.
5043 -- Combined with /FORCE_COMPILE, it is equivalent to calling the compiler
5046 S_Make_Use_Map
: aliased constant S
:= "/USE_MAPPING_File=@" &
5048 -- /USE_MAPPING_FILE=file_name
5050 -- Use a specific mapping file. The file 'file_name', specified as a path
5051 -- name (absolute or relative) by this qualifier, should already exist,
5052 -- otherwise the qualifier is ineffective. The specified mapping file
5053 -- will be communicated to the compiler. This switch is not compatible
5054 -- with a project file (/PROJECT_FILE=) or with multiple compiling
5055 -- processes (/PROCESSES=nnn, when nnn is greater than 1).
5057 S_Make_Verbose
: aliased constant S
:= "/VERBOSE " &
5062 -- Displays the reason for all recompilations GNAT MAKE decides are
5065 Make_Switches
: aliased constant Switches
:=
5066 (S_Make_Add
'Access,
5067 S_Make_Actions 'Access,
5069 S_Make_Allproj 'Access,
5070 S_Make_Bind
'Access,
5071 S_Make_Comp 'Access,
5072 S_Make_Cond
'Access,
5073 S_Make_Cont 'Access,
5074 S_Make_Current
'Access,
5076 S_Make_Dirobj
'Access,
5077 S_Make_Disprog 'Access,
5078 S_Make_Doobj
'Access,
5079 S_Make_Execut 'Access,
5081 S_Make_Follow 'Access,
5082 S_Make_Force
'Access,
5083 S_Make_Full 'Access,
5084 S_Make_Hi_Verb
'Access,
5085 S_Make_Inplace 'Access,
5086 S_Make_Index
'Access,
5087 S_Make_Library 'Access,
5088 S_Make_Link
'Access,
5089 S_Make_Low_Verb'Access,
5090 S_Make_Make 'Access,
5091 S_Make_Mapping
'Access,
5092 S_Make_Med_Verb'Access,
5093 S_Make_Mess 'Access,
5094 S_Make_Minimal
'Access,
5095 S_Make_Missing 'Access,
5096 S_Make_Nolink
'Access,
5097 S_Make_Nomain 'Access,
5098 S_Make_Nonpro
'Access,
5099 S_Make_Nostinc 'Access,
5100 S_Make_Nostlib
'Access,
5101 S_Make_Object 'Access,
5102 S_Make_Proc
'Access,
5103 S_Make_Nojobs 'Access,
5104 S_Make_Project
'Access,
5105 S_Make_Quiet 'Access,
5106 S_Make_Reason
'Access,
5108 S_Make_Search
'Access,
5109 S_Make_Single 'Access,
5110 S_Make_Skip
'Access,
5111 S_Make_Source 'Access,
5112 S_Make_Src_Info
'Access,
5113 S_Make_Stand
'Access,
5114 S_Make_Subdirs 'Access,
5115 S_Make_Switch
'Access,
5117 S_Make_Unique
'Access,
5118 S_Make_Use_Map 'Access,
5119 S_Make_Verbose
'Access);
5121 ------------------------------
5122 -- Switches for GNAT METRIC --
5123 ------------------------------
5125 S_Metric_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
5127 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
5129 -- Add directories to the project search path.
5131 S_Metric_All_Prjs : aliased constant S := "/ALL_PROJECTS " &
5133 -- /NOALL_PROJECTS (D)
5135 -- When GNAT METRIC is used with a Project File and no source is
5136 -- specified, the underlying tool gnatmetric is called for all the
5137 -- sources of all the Project Files in the project tree.
5139 S_Metric_Debug : aliased constant S := "/DEBUG_OUTPUT " &
5143 -- Generate the debug information
5145 S_Metric_Direct : aliased constant S := "/DIRECTORY=@" &
5147 -- /DIRECTORY=pathname
5149 -- Put the files with detailed metric information into the specified
5152 S_Metric_Element : aliased constant S := "/ELEMENT_METRICS=" &
5154 "!-ed,!-es,!-enl,!-eps," &
5155 "!-eas,!-ept,!-eat,!-enu," &
5157 "DECLARATION_TOTAL " &
5159 "STATEMENT_TOTAL " &
5161 "LOOP_NESTING_MAX " &
5163 "INT_SUBPROGRAMS " &
5165 "SUBPROGRAMS_ALL " &
5171 "PROGRAM_NESTING_MAX " &
5173 "CONSTRUCT_NESTING_MAX " &
5175 -- NODOC (see /SYNTAX_METRICS)
5177 S_Metric_Syntax : aliased constant S := "/SYNTAX_METRICS=" &
5181 "--no-syntax-all " &
5185 "--no-declarations " &
5189 "--no-statements " &
5190 "PUBLIC_SUBPROGRAMS " &
5191 "--public-subprograms " &
5192 "NOPUBLIC_SUBPROGRAMS " &
5193 "--no-public-subprograms " &
5194 "ALL_SUBPROGRAMS " &
5195 "--all-subprograms " &
5196 "NOALL_SUBPROGRAMS " &
5197 "--no-all-subprograms " &
5201 "--no-public-types " &
5209 "--no-unit-nesting " &
5210 "CONSTRUCT_NESTING " &
5211 "--construct-nesting " &
5212 "NOCONSTRUCT_NESTING " &
5213 "--no-construct-nesting";
5214 -- /SYNTAX_METRICS(option, option ...)
5216 -- Specifies the syntax element metrics to be computed (if at least one
5217 -- positive syntax element metric, line metric, complexity or coupling
5218 -- metric is specified then only explicitly specified syntax element
5219 -- metrics are computed and reported)
5221 -- option may be one of the following:
5223 -- ALL (D) All the syntax element metrics are computed
5224 -- NONE None of syntax element metrics is computed
5225 -- DECLARATIONS Compute the total number of declarations
5226 -- NODECLARATIONS Do not compute the total number of declarations
5227 -- STATEMENTS Compute the total number of statements
5228 -- NOSTATEMENTS Do not compute the total number of statements
5229 -- PUBLIC_SUBPROGRAMS Compute the number of public subprograms
5230 -- NOPUBLIC_SUBPROGRAMS Do not compute the number of public subprograms
5231 -- ALL_SUBPROGRAMS Compute the number of all the subprograms
5232 -- NOALL_SUBPROGRAMS Do not compute the number of all the
5234 -- PUBLIC_TYPES Compute the number of public types
5235 -- NOPUBLIC_TYPES Do not compute the number of public types
5236 -- ALL_TYPES Compute the number of all the types
5237 -- NOALL_TYPES Do not compute the number of all the types
5238 -- UNIT_NESTING Compute the maximal program unit nesting
5240 -- NOUNIT_NESTING Do not compute the maximal program unit
5242 -- CONSTRUCT_NESTING Compute the maximal construct nesting level
5243 -- NOCONSTRUCT_NESTING Do not compute the maximal construct nesting
5246 -- All combinations of syntax element metrics options are allowed.
5248 S_Metric_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
5250 -- /EXTERNAL_REFERENCE="name=val"
5252 -- Specifies an external reference to the project manager. Useful only if
5253 -- /PROJECT_FILE is used.
5256 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
5258 S_Metric_Files : aliased constant S := "/FILES=@" &
5262 -- Take as arguments the files that are listed in the specified
5265 S_Metric_Format : aliased constant S := "/FORMAT_OUTPUT=" &
5274 "SHORT_SOURCE_FILE_NAME " &
5276 -- /FORMAT_OUTPUT=(option, option ...)
5278 -- Specifies the details of the tool output
5280 -- option may be one of the following:
5282 -- DEFAULT (D) Generate the text output only, use full
5283 -- argument source names in global information
5284 -- XML Generate the output in XML format
5285 -- XSD Generate the output in XML format, and
5286 -- generate an XML schema file that describes
5287 -- the structure of XML metrics report
5288 -- NO_TEXT Do not generate the text output (implies XML)
5289 -- SHORT_SOURCE_FILE_NAME Use short argument source names in output
5291 S_Metric_Globout : aliased constant S := "/GLOBAL_OUTPUT=@" &
5293 -- /GLOBAL_OUTPUT=filename
5295 -- Put the textual global metric information into the specified file
5297 S_Metric_Line : aliased constant S := "/LINE_METRICS=" &
5299 "!-la,!-lcode,!-lcomm," &
5307 "MIXED_CODE_COMMENTS " &
5309 "COMMENT_PERCENTAGE " &
5313 "AVERAGE_LINES_IN_BODIES " &
5315 -- NODOC (see /LINE_COUNT_METRICS)
5317 S_Metric_Lines : aliased constant S := "/LINE_COUNT_METRICS=" &
5329 "--no-lines-code " &
5331 "--lines-comment " &
5332 "NOCOMMENT_LINES " &
5333 "--no-lines-comment " &
5334 "CODE_COMMENT_LINES " &
5335 "--lines-eol-comment " &
5336 "NOCODE_COMMENT_LINES " &
5337 "--no-lines-eol-comment " &
5338 "COMMENT_PERCENTAGE " &
5340 "NOCOMMENT_PERCENTAGE " &
5341 "--no-lines-ratio " &
5345 "--no-lines-blank " &
5346 "AVERAGE_BODY_LINES " &
5347 "--lines-average " &
5348 "NOAVERAGE_BODY_LINES " &
5349 "--no-lines-average";
5350 -- /LINE_COUNT_METRICS=(option, option ...)
5352 -- Specifies the line metrics to be computed (if at least one positive
5353 -- syntax element metric, line metric, complexity or coupling metric is
5354 -- specified then only explicitly specified line metrics are computed
5357 -- option may be one of the following:
5359 -- ALL (D) All the line metrics are computed
5360 -- NONE None of line metrics is computed
5361 -- ALL_LINES All lines are computed
5362 -- NOALL_LINES All lines are not computed
5363 -- CODE_LINES Lines with Ada code are computed
5364 -- NOCODE_LINES Lines with Ada code are not computed
5365 -- COMMENT_LINES Comment lines are computed
5366 -- NOCOMMENT_LINES Comment lines are not computed
5367 -- CODE_COMMENT_LINES Lines containing both code and comment parts
5369 -- NOCODE_COMMENT_LINES Lines containing both code and comment parts
5371 -- COMMENT_PERCENTAGE Ratio between comment lines and all the lines
5372 -- containing comments and program code is
5374 -- NOCOMMENT_PERCENTAGE Ratio between comment lines and all the lines
5375 -- containing comments and program code is not
5377 -- BLANK_LINES Blank lines are computed
5378 -- NOBLANK_LINES Blank lines are not computed
5379 -- AVERAGE_BODY_LINES Average number of code lines in subprogram,
5380 -- task and entry bodies and statement sequences
5381 -- of package bodies is computed
5382 -- NOAVERAGE_BODY_LINES Average number of code lines in subprogram,
5383 -- task and entry bodies and statement sequences
5384 -- of package bodies is not computed
5386 -- All combinations of line metrics options are allowed.
5388 S_Metric_Complexity : aliased constant S := "/COMPLEXITY_METRICS=" &
5390 "--complexity-all " &
5392 "--no-complexity-all " &
5394 "--complexity-cyclomatic " &
5396 "--no-complexity-cyclomatic "&
5398 "--complexity-essential " &
5400 "--no-complexity-essential " &
5404 "--no-loop-nesting " &
5405 "AVERAGE_COMPLEXITY " &
5406 "--complexity-average " &
5407 "NOAVERAGE_COMPLEXITY " &
5408 "--no-complexity-average " &
5409 "EXTRA_EXIT_POINTS " &
5410 "--extra-exit-points " &
5411 "NOEXTRA_EXIT_POINTS " &
5412 "--no-extra-exit-points";
5413 -- /COMPLEXITY_METRICS=(option, option ...)
5415 -- Specifies the complexity metrics to be computed (if at least one
5416 -- positive syntax element metric, line metric, complexity or coupling
5417 -- metric is specified then only explicitly specified complexity metrics
5418 -- are computed and reported)
5420 -- option may be one of the following:
5422 -- ALL (D) All the complexity metrics are computed
5423 -- NONE None of complexity metrics is computed
5424 -- CYCLOMATIC Compute the McCabe Cyclomatic Complexity
5425 -- NOCYCLOMATIC Do not compute the McCabe Cyclomatic Complexity
5426 -- ESSENTIAL Compute the Essential Complexity
5427 -- NOESSENTIAL Do not compute the Essential Complexity
5428 -- LOOP_NESTING Compute the maximal loop nesting
5429 -- NOLOOP_NESTING Do not compute the maximal loop nesting
5430 -- AVERAGE_COMPLEXITY Compute the average complexity for executable
5432 -- NOAVERAGE_COMPLEXITY Do not compute the average complexity for
5433 -- executable bodies
5434 -- EXTRA_EXIT_POINTS Compute extra exit points metric
5435 -- NOEXTRA_EXIT_POINTS Do not compute extra exit points metric
5437 -- All combinations of line metrics options are allowed.
5439 S_Metric_Coupling : aliased constant S := "/COUPLING_METRICS=" &
5443 "--tagged-coupling-out " &
5445 "--tagged-coupling-in " &
5447 "--hierarchy-coupling-out " &
5449 "--hierarchy-coupling-in " &
5451 "--unit-coupling-out " &
5453 "--unit-coupling-in " &
5455 "--control-coupling-out " &
5457 "--control-coupling-in";
5459 -- /COUPLING_METRICS=(option, option ...)
5461 -- Specifies the coupling metrics to be computed.
5463 -- option may be one of the following:
5465 -- ALL All the coupling metrics are computed
5466 -- NOALL (D) None of coupling metrics is computed
5467 -- TAGGED_OUT Compute tagged (class) far-out coupling
5468 -- TAGGED_IN Compute tagged (class) far-in coupling
5469 -- HIERARCHY_OUT Compute hieraqrchy (category) far-out coupling
5470 -- HIERARCHY_IN Compute hieraqrchy (category) far-in coupling
5471 -- UNIT_OUT Compute unit far-out coupling
5472 -- UNIT_IN Compute unit far-in coupling
5473 -- CONTROL_OUT Compute control far-out coupling
5474 -- CONTROL_IN Compute control far-in coupling
5477 -- All combinations of coupling metrics options are allowed.
5479 S_Metric_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
5481 -- /NOFOLLOW_LINKS_FOR_FILES (D)
5482 -- /FOLLOW_LINKS_FOR_FILES
5484 -- Follow links when parsing project files
5486 S_Metric_No_Local : aliased constant S := "/NO_LOCAL_DETAILS " &
5488 -- /LOCAL_DETAILS (D)
5489 -- /NO_LOCAL_DETAILS
5491 -- Do not compute the detailed metrics for local program units.
5493 S_Metric_No_Exits_As_Gotos : aliased constant S := "/NO_EXITS_AS_GOTOS " &
5495 -- /EXITS_AS_GOTOS (D)
5496 -- /NO_EXITS_AS_GOTOS
5498 -- Do not count EXIT statements as GOTOs when computing the Essential
5501 S_Metric_No_Static_Loop : aliased constant S := "/NO_STATIC_LOOP " &
5506 -- Do not count static FOR loop statements when computing the Cyclomatic
5509 S_Metric_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
5516 -- /MESSAGES_PROJECT_FILE[=messages-option]
5518 -- Specifies the "verbosity" of the parsing of project files.
5519 -- messages-option may be one of the following:
5521 -- DEFAULT (D) No messages are output if there is no error or warning.
5523 -- MEDIUM A small number of messages are output.
5525 -- HIGH A great number of messages are output, most of them not
5526 -- being useful for the user.
5528 S_Metric_Project : aliased constant S := "/PROJECT_FILE=<" &
5530 -- /PROJECT_FILE=filename
5532 -- Specifies the main project file to be used. The project files rooted
5533 -- at the main project file will be parsed before the invocation of the
5536 S_Metric_Quiet : aliased constant S := "/QUIET " &
5541 -- Quiet mode: by default GNAT METRIC outputs to the standard error stream
5542 -- the number of program units left to be processed. This option turns
5545 S_Metric_Subdirs : aliased constant S := "/SUBDIRS=<" &
5549 -- The actual directories (object, exec, library, ...) are subdirectories
5550 -- of the directory specified in the project file. If the subdirectory
5551 -- does not exist, it is created automatically.
5553 S_Metric_Suffix : aliased constant S := "/SUFFIX_DETAILS=" & '"' &
5555 -- /SUFFIX_DETAILS=suffix
5557 -- Use the given suffix as the suffix for the name of the file to place
5558 -- the detailed metrics into.
5560 S_Metric_Suppress : aliased constant S := "/SUPPRESS=" &
5562 "!-nocc,!-noec,!-nonl," &
5564 "CYCLOMATIC_COMPLEXITY " &
5566 "ESSENTIAL_COMPLEXITY " &
5568 "MAXIMAL_LOOP_NESTING " &
5574 -- NODOC (see /COMPLEXITY_METRICS /NO_LOCAL_DETAILS /NO_EXITS_AS_GOTOS)
5576 S_Metric_Verbose : aliased constant S := "/VERBOSE " &
5583 S_Metric_XMLout : aliased constant S := "/XML_OUTPUT=@" &
5585 -- /XML_OUTPUT=filename
5587 -- Place the XML output into the specified file
5589 Metric_Switches : aliased constant Switches :=
5590 (S_Metric_Add 'Access,
5591 S_Metric_All_Prjs
'Access,
5592 S_Metric_Complexity 'Access,
5593 S_Metric_Coupling
'Access,
5594 S_Metric_Debug 'Access,
5595 S_Metric_Direct
'Access,
5596 S_Metric_Element 'Access,
5597 S_Metric_Ext
'Access,
5598 S_Metric_Files 'Access,
5599 S_Metric_Follow
'Access,
5600 S_Metric_Format 'Access,
5601 S_Metric_Globout
'Access,
5602 S_Metric_Line 'Access,
5603 S_Metric_Lines
'Access,
5604 S_Metric_Mess 'Access,
5605 S_Metric_No_Exits_As_Gotos
'Access,
5606 S_Metric_No_Local
'Access,
5607 S_Metric_No_Static_Loop 'Access,
5608 S_Metric_Project
'Access,
5609 S_Metric_Quiet 'Access,
5610 S_Metric_Suffix
'Access,
5611 S_Metric_Subdirs 'Access,
5612 S_Metric_Syntax
'Access,
5613 S_Metric_Suppress 'Access,
5614 S_Metric_Verbose
'Access,
5615 S_Metric_XMLout 'Access);
5617 ----------------------------
5618 -- Switches for GNAT NAME --
5619 ----------------------------
5621 S_Name_Conf
: aliased constant S
:= "/CONFIG_FILE=<" &
5623 -- /CONFIG_FILE=path_name
5625 -- Create a configuration pragmas file 'path_name' (instead of the default
5626 -- 'gnat.adc'). 'path_name' may include directory information. 'path_name'
5627 -- must be writable. There may be only one qualifier /CONFIG_FILE.
5628 -- This qualifier is not compatible with qualifier /PROJECT_FILE.
5630 S_Name_Dirs
: aliased constant S
:= "/SOURCE_DIRS=*" &
5632 -- /SOURCE_DIRS=(directory, ...)
5634 -- Look for source files in the specified directories. When this qualifier
5635 -- is specified, the current working directory will not be searched for
5636 -- source files, unless it is explicitly specified with a qualifier
5637 -- /SOURCE_DIRS or /DIRS_FILE. Several qualifiers /SOURCE_DIRS may be
5638 -- specified. If a directory is specified as a relative path, it is
5639 -- relative to the directory of the configuration pragmas file specified
5640 -- with qualifier /CONFIG_FILE, or to the directory of the project file
5641 -- specified with qualifier /PROJECT_FILE or, if neither qualifier
5642 -- /CONFIG_FILE nor qualifier /PROJECT_FILE are specified, it is relative
5643 -- to the current working directory. The directories specified with
5644 -- qualifiers /SOURCE_DIRS must exist and be readable.
5646 S_Name_Dfile
: aliased constant S
:= "/DIRS_FILE=<" &
5648 -- /DIRS_FILE=file_name
5650 -- Look for source files in all directories listed in text file
5651 -- 'file_name'. 'file_name' must be an existing, readable text file.
5652 -- Each non empty line in the specified file must be a directory.
5653 -- Specifying qualifier /DIRS_FILE is equivalent to specifying as many
5654 -- qualifiers /SOURCE_DIRS as there are non empty lines in the specified
5657 S_Name_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
5659 -- /NOFOLLOW_LINKS_FOR_FILES (D)
5660 -- /FOLLOW_LINKS_FOR_FILES
5662 -- Follow links when parsing project files
5664 S_Name_Frng
: aliased constant S
:= "/FOREIGN_PATTERN=" & '"' &
5666 -- /FOREIGN_PATTERN=<string>
5668 -- Specify a foreign pattern.
5669 -- Using this qualifier, it is possible to add sources of languages other
5670 -- than Ada to the list of sources of a project file. It is only useful
5671 -- if a qualifier /PROJECT_FILE is used. For example,
5673 -- GNAT NAME /PROJECT_FILE=PRJ /FOREIGN_PATTERN="*.C" "*.ADA"
5675 -- will look for Ada units in all files with the '.ADA' extension, and
5676 -- will add to the list of file for project PRJ.GPR the C files with
5679 S_Name_Help
: aliased constant S
:= "/HELP " &
5684 -- Output usage information to the standard output stream.
5686 S_Name_Proj
: aliased constant S
:= "/PROJECT_FILE=<" &
5688 -- /PROJECT_FILE=file_name
5690 -- Create or update a project file. 'file_name' may include directory
5691 -- information. The specified file must be writable. There may be only
5692 -- one qualifier /PROJECT_FILE. When a qualifier /PROJECT_FILE is
5693 -- specified, no qualifier /CONFIG_FILE may be specified.
5695 S_Name_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
5699 -- The actual directories (object, exec, library, ...) are subdirectories
5700 -- of the directory specified in the project file. If the subdirectory
5701 -- does not exist, it is created automatically.
5703 S_Name_Verbose
: aliased constant S
:= "/VERBOSE " &
5708 -- Verbose mode. Output detailed explanation of behavior to the standard
5709 -- output stream. This includes name of the file written, the name of the
5710 -- directories to search and, for each file in those directories whose
5711 -- name matches at least one of the Naming Patterns, an indication of
5712 -- whether the file contains a unit, and if so the name of the unit.
5714 S_Name_Excl
: aliased constant S
:= "/EXCLUDED_PATTERN=" & '"' &
5716 -- /EXCLUDED_PATTERN=<string>
5718 -- Specify an excluded pattern.
5719 -- Using this qualifier, it is possible to exclude some files that would
5720 -- match the Naming patterns. For example,
5722 -- GNAT NAME /EXCLUDED_PATTERN="*_NT.ADA" "*.ADA"
5724 -- will look for Ada units in all files with the '.ADA' extension, except
5725 -- those whose names end with '_NT.ADA'.
5727 Name_Switches
: aliased constant Switches
:=
5728 (S_Name_Conf
'Access,
5729 S_Name_Dirs 'Access,
5730 S_Name_Dfile
'Access,
5731 S_Name_Follow 'Access,
5732 S_Name_Frng
'Access,
5733 S_Name_Help 'Access,
5734 S_Name_Proj
'Access,
5735 S_Name_Subdirs 'Access,
5736 S_Name_Verbose
'Access,
5737 S_Name_Excl 'Access);
5739 ----------------------------------
5740 -- Switches for GNAT PREPROCESS --
5741 ----------------------------------
5743 S_Prep_Assoc
: aliased constant S
:= "/ASSOCIATE=" & '"' &
5745 -- /ASSOCIATE="name=val"
5747 -- Defines a new symbol, associated with value. If no value is given
5748 -- on the command line, then symbol is considered to be True.
5749 -- This qualifier can be used in place of a definition file.
5751 S_Prep_Blank
: aliased constant S
:= "/BLANK_LINES " &
5753 -- /NOBLANK_LINES (D)
5756 -- Causes both preprocessor lines and the lines deleted by preprocessing
5757 -- to be replaced by blank lines in the output source file, thus
5758 -- preserving line numbers in the output file.
5760 S_Prep_Com
: aliased constant S
:= "/COMMENTS " &
5765 -- /COMMENTS causes both preprocessor lines and the lines deleted
5766 -- by preprocessing to be retained in the output source as comments marked
5767 -- with the special string "--! ". This option will result in line numbers
5768 -- being preserved in the output file.
5770 -- /NOCOMMENTS causes both preprocessor lines and the lines deleted by
5771 -- preprocessing to be replaced by blank lines in the output source file,
5772 -- thus preserving line numbers in the output file.
5774 S_Prep_Ref
: aliased constant S
:= "/REFERENCE " &
5779 -- Causes a "Source_Reference" pragma to be generated that references the
5780 -- original input file, so that error messages will use the file name of
5781 -- this original file. Also implies /BLANK_LINES if /COMMENTS is not
5784 S_Prep_Remove
: aliased constant S
:= "/REMOVE " &
5789 -- Preprocessor lines and deleted lines are completely removed from the
5792 S_Prep_Replace
: aliased constant S
:= "/REPLACE_IN_COMMENTS " &
5794 -- /NOREPLACE_IN_COMMENTS (D)
5795 -- /REPLACE_IN_COMMENTS
5797 -- Causes preprocessor to scan comments and perform replacements on
5798 -- any $symbol occurrences within the comment text.
5800 S_Prep_Symbols
: aliased constant S
:= "/SYMBOLS " &
5805 -- Causes a sorted list of symbol names and values to be listed on
5808 S_Prep_Undef
: aliased constant S
:= "/UNDEFINED " &
5813 Prep_Switches
: aliased constant Switches
:=
5814 (S_Prep_Assoc
'Access,
5815 S_Prep_Blank 'Access,
5818 S_Prep_Remove
'Access,
5819 S_Prep_Replace 'Access,
5820 S_Prep_Symbols
'Access,
5821 S_Prep_Undef 'Access);
5823 ------------------------------
5824 -- Switches for GNAT PRETTY --
5825 ------------------------------
5827 S_Pretty_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
5829 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
5831 -- Add directories to the project search path.
5833 S_Pretty_Align
: aliased constant S
:= "/ALIGN=" &
5846 "COMPONENT_CLAUSES " &
5848 -- /ALIGN[=align-option, align-option, ...]
5850 -- Set alignments. By default, all alignments (colons in declarations,
5851 -- initialisations in declarations, assignments and arrow delimiters) are
5854 -- align-option may be one of the following:
5856 -- OFF (D) Set all alignments to OFF
5857 -- COLONS Set alignments of colons in declarations to ON
5858 -- DECLARATIONS Set alignments of initialisations in declarations
5860 -- STATEMENTS Set alignments of assignments statements to ON
5861 -- ARROWS Set alignments of arrow delimiters to ON.
5862 -- COMPONENT_CLAUSES Set alignments of AT keywords in component
5865 -- Specifying one of the ON options without first specifying the OFF
5866 -- option has no effect, because by default all alignments are set to ON.
5868 S_Pretty_All_Prjs
: aliased constant S
:= "/ALL_PROJECTS " &
5870 -- /NOALL_PROJECTS (D)
5872 -- When GNAT PRETTY is used with a Project File and no source is
5873 -- specified, the underlying tool gnatpp is called for all the
5874 -- sources of all the Project Files in the project tree.
5876 S_Pretty_Attrib
: aliased constant S
:= "/ATTRIBUTE_CASING=" &
5883 -- /ATTRIBUTE_CASING[=casing-option]
5885 -- Set the case of the attributes. By default the attributes are in mixed
5887 -- casing-option may be one of the following:
5893 S_Pretty_Comments
: aliased constant S
:= "/COMMENTS_LAYOUT=" &
5898 "STANDARD_INDENT " &
5906 -- /COMMENTS_LAYOUT[=layout-option, layout-option, ...]
5908 -- Set the comment layout. By default, comments use the GNAT style
5909 -- comment line indentation.
5911 -- layout-option may be one of the following:
5913 -- UNTOUCHED All the comments remain unchanged
5914 -- DEFAULT (D) GNAT style comment line indentation
5915 -- STANDARD_INDENT Standard comment line indentation
5916 -- GNAT_BEGINNING GNAT style comment beginning
5917 -- REFORMAT Reformat comment blocks
5918 -- KEEP_SPECIAL Keep unchanged special form comments
5920 -- All combinations of layout options are allowed, except for DEFAULT
5921 -- and STANDARD_INDENT which are mutually exclusive, and also if
5922 -- UNTOUCHED is specified, this must be the only option.
5924 -- The difference between "GNAT style comment line indentation" and
5925 -- "standard comment line indentation" is the following: for standard
5926 -- comment indentation, any comment line is indented as if it were
5927 -- a declaration or statement at the same place.
5928 -- For GNAT style comment indentation, comment lines which are
5929 -- immediately followed by if or case statement alternative, record
5930 -- variant or 'begin' keyword are indented as the keyword that follows
5933 -- Standard indentation:
5942 -- GNAT style indentation:
5951 -- Option "GNAT style comment beginning" means that for each comment
5952 -- which is not considered as non-formattable separator (that is, the
5953 -- comment line contains only dashes, or a comment line ends with two
5954 -- dashes), there will be at least two spaces between starting "--" and
5955 -- the first non-blank character of the comment.
5957 S_Pretty_Config
: aliased constant S
:= "/CONFIGURATION_PRAGMAS_FILE=<" &
5959 -- /CONFIGURATION_PRAGMAS_FILE=file
5961 -- Specify a configuration pragmas file that need to be passed to the
5964 S_Pretty_Constr
: aliased constant S
:= "/CONSTRUCT_LAYOUT=" &
5971 -- /CONSTRUCT_LAYOUT[=construct-option]
5973 -- Set construct layout. Default is GNAT style layout.
5974 -- construct-option may be one of the following:
5980 -- The difference between GNAT style and Compact layout on one hand
5981 -- and Uncompact layout on the other hand can be illustrated by the
5982 -- following examples:
5984 -- GNAT style and Uncompact layout
5987 -- type q is record type q is
5988 -- a : integer; record
5989 -- b : integer; a : integer;
5990 -- end record; b : integer;
5994 -- Block : declare Block :
5995 -- A : Integer := 3; declare
5996 -- begin A : Integer := 3;
5997 -- Proc (A, A); begin
5998 -- end Block; Proc (A, A);
6001 -- Clear : for J in 1 .. 10 loop Clear :
6002 -- A (J) := 0; for J in 1 .. 10 loop
6003 -- end loop Clear; A (J) := 0;
6007 -- A further difference between GNAT style layout and compact layout is
6008 -- that in GNAT style layout compound statements, return statements and
6009 -- bodies are always separated by empty lines.
6011 S_Pretty_Comind
: aliased constant S
:= "/CONTINUATION_INDENT=#" &
6013 -- /CONTINUATION_INDENT=nnn
6015 -- Indentation level for continuation lines, nnn from 1 .. 9.
6016 -- The default value is one less than the (normal) indentation level,
6017 -- unless the indentation is set to 1: in that case the default value for
6018 -- continuation line indentation is also 1.
6020 S_Pretty_Compact_Is
: aliased constant S
:= "/NO_SEPARATE_IS " &
6024 -- Do not place the IS keyword on a separate line in a subprogram body in
6025 -- case if the specification occupies more than one line.
6027 S_Pretty_Sep_Label
: aliased constant S
:= "/SEPARATE_LABEL " &
6031 -- Place statement label(s) and the statement itself on separate lines.
6033 S_Pretty_Sep_Loop_Then
: aliased constant S
:= "/SEPARATE_LOOP_THEN " &
6034 "--separate-loop-then";
6035 -- /SEPARATE_LOOP_THEN
6037 -- Place the THEN keyword in IF statement and the LOOP keyword in for-
6038 -- and while-loops on a separate line.
6040 S_Pretty_N_Sep_Loop_Then
: aliased constant S
:= "/NO_SEPARATE_LOOP_THEN " &
6041 "--no-separate-loop-then";
6042 -- /NO_SEPARATE_LOOP_THEN
6044 -- Do not place the THEN keyword in IF statement and the LOOP keyword in
6045 -- for- and while-loops on a separate line.
6047 S_Pretty_Use_On_New_Line
: aliased constant S
:= "/USE_ON_NEW_LINE " &
6048 "--use-on-new-line";
6051 -- Start any USE clause that is a part of a context clause from a
6054 S_Pretty_Stnm_On_Nw_Line
: aliased constant S
:= "/STMT_NAME_ON_NEW_LINE " &
6055 "--separate-stmt-name";
6056 -- /STMT_NAME_ON_NEW_LINE
6058 -- For named block and loop statements use a separate line for the
6059 -- statement name, but do not use an extra indentation level for the
6060 -- statement itself.
6062 S_Pretty_Eol
: aliased constant S
:= "/END_OF_LINE=" &
6071 -- /END_OF_LINE=[option]
6073 -- Specifies the form of the line terminators in the produced source.
6074 -- By default, the form of the line terminator depends on the platforms.
6075 -- On Unix and VMS, it is a Line Feed (LF) character. On Windows (DOS),
6076 -- It is a Carriage Return (CR) followed by a Line Feed.
6077 -- The Options DOS and CRLF are equivalent. The options UNIX and LF are
6080 S_Pretty_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
6082 -- /EXTERNAL_REFERENCE="name=val"
6084 -- Specifies an external reference to the project manager. Useful only if
6085 -- /PROJECT_FILE is used.
6088 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
6090 S_Pretty_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
6092 -- /CURRENT_DIRECTORY (D)
6094 -- Look for source files in the current working directory.
6096 -- /NOCURRENT_DIRECTORY
6097 -- Do not look for source files in the current working directory.
6099 S_Pretty_Dico
: aliased constant S
:= "/DICTIONARY=*" &
6101 -- /DICTIONARY=(file_name, ...)
6103 -- Use each specified file as a dictionary file that defines the casing
6104 -- for a set of specified names, thereby overriding the effect on these
6105 -- names by any explicit or implicit /NAME_CASING qualifier.
6107 -- GNAT PRETTY implicitly uses a default dictionary file to define the
6108 -- casing for the Ada predefined names and the names declared in the GNAT
6111 -- The structure of a dictionary file, and details on the conventions
6112 -- used in the default dictionary file, are defined in the GNAT User's
6115 S_Pretty_Encoding
: aliased constant S
:= "/RESULT_ENCODING=" &
6128 -- /RESULT_ENCODING[=encoding-type]
6130 -- Specify the wide character encoding method used when writing the
6131 -- reformatted code in the result file. 'encoding-type' is one of the
6134 -- BRACKETS (D) Brackets encoding.
6136 -- HEX Hex ESC encoding.
6138 -- UPPER Upper half encoding.
6140 -- SHIFT_JIS Shift-JIS encoding.
6142 -- EUC EUC Encoding.
6144 -- UTF8 UTF-8 encoding.
6146 -- See 'HELP GNAT COMPILE /WIDE_CHARACTER_ENCODING' for an explanation
6147 -- about the different character encoding methods.
6149 S_Pretty_Enums
: aliased constant S
:= "/ENUM_CASING=" &
6158 -- /ENUM_CASING=name-option
6160 -- Specify the casing of enumeration literals. If not specified, the
6161 -- casing of enumeration literals is defined by the NAME_CASING option.
6162 -- 'name-option' may be one of:
6164 -- AS_DECLARED Literals casing for defining occurrences are
6165 -- as they appear in the source file.
6167 -- LOWER_CASE Literals are in lower case.
6169 -- UPPER_CASE Literals are in upper case.
6171 -- MIXED_CASE Literals are in mixed case.
6173 S_Pretty_Files
: aliased constant S
:= "/FILES=@" &
6177 -- Take as arguments the files that are listed in the specified
6180 S_Pretty_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
6182 -- /NOFOLLOW_LINKS_FOR_FILES (D)
6183 -- /FOLLOW_LINKS_FOR_FILES
6185 -- Follow links when parsing project files
6187 S_Pretty_Forced
: aliased constant S
:= "/FORCED_OUTPUT=@" &
6189 -- /FORCED_OUTPUT=file
6191 -- Write the output into the specified file, overriding any possibly
6194 S_Pretty_Formfeed
: aliased constant S
:= "/FORM_FEED_AFTER_PRAGMA_PAGE " &
6196 -- /FORM_FEED_AFTER_PRAGMA_PAGE
6198 -- When there is a pragma Page in the source, insert a Form Feed
6199 -- character immediately after the semicolon that follows the pragma
6202 S_Pretty_Indent
: aliased constant S
:= "/INDENTATION_LEVEL=#" &
6204 -- /INDENTATION_LEVEL=nnn
6206 -- Specify the number of spaces to add for each indentation level.
6207 -- nnn must be between 1 and 9. The default is 3.
6209 S_Pretty_Keyword
: aliased constant S
:= "/KEYWORD_CASING=" &
6214 -- /KEYWORD_CASING[=keyword-option]
6216 -- Specify the case of Ada keywords. The default is keywords in lower
6219 -- keyword-option may be one of the following:
6224 S_Pretty_Maxlen
: aliased constant S
:= "/LINE_LENGTH_MAX=#" &
6226 -- /LINE_LENGTH_MAX=nnn
6228 -- Set the maximum line length, nnn from 32 ..256. The default is 79.
6230 S_Pretty_Maxact
: aliased constant S
:= "/MAX_ACT=#" &
6231 "--call_threshold=#";
6234 -- If the number of parameter associations is greater than nnn and if at
6235 -- least one association uses named notation, start each association from
6238 S_Pretty_Maxind
: aliased constant S
:= "/MAX_INDENT=#" &
6242 -- Do not use an additional indentation level for case alternatives
6243 -- and variants if their number is nnn or more. The default is 10.
6244 -- If nnn is zero, an additional indentation level is used for any
6245 -- number of case alternatives and variants.
6247 S_Pretty_Maxpar
: aliased constant S
:= "/MAX_PAR=#" &
6248 "--par_threshold=#";
6251 -- If the number of parameter specifications is greater than nnn (or equal
6252 -- to nnn in case of a function), start each specification from a new line.
6253 -- The default value is 3.
6255 S_Pretty_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
6262 -- /MESSAGES_PROJECT_FILE[=messages-option]
6264 -- Specifies the "verbosity" of the parsing of project files.
6265 -- messages-option may be one of the following:
6267 -- DEFAULT (D) No messages are output if there is no error or warning.
6269 -- MEDIUM A small number of messages are output.
6271 -- HIGH A great number of messages are output, most of them not
6272 -- being useful for the user.
6274 S_Pretty_Names
: aliased constant S
:= "/NAME_CASING=" &
6283 -- /NAME_CASING[=name-option]
6285 -- Specify the casing of names.
6286 -- 'name-option' may be one of:
6288 -- AS_DECLARED (D) Name casing for defining occurrences are as they
6289 -- appear in the source file.
6291 -- LOWER_CASE Names are in lower case.
6293 -- UPPER_CASE Names are in upper case.
6295 -- MIXED_CASE Names are in mixed case.
6297 S_Pretty_Replace_No_Backup
: aliased constant S
:= "/REPLACE_NO_BACKUP " &
6299 -- /REPLACE_NO_BACKUP
6301 -- Replace the argument source with the pretty-printed source without
6302 -- creating any backup copy of the argument source.
6304 S_Pretty_No_Labels
: aliased constant S
:= "/NO_MISSED_LABELS " &
6306 -- /NO_MISSED_LABELS
6308 -- Do not insert missing end/exit labels. The end label is the name of
6309 -- a construct that may optionally appear at the end of the construct.
6310 -- This includes the names of packages and subprograms.
6311 -- Similarly, the exit label is the name of a loop that may appear as the
6312 -- argument of an exit statement within the loop. By default, GNAT PRETTY
6313 -- inserts these end/exit labels when they are absent in the original
6314 -- source. This qualifier /NO_MISSED_LABELS suppresses this insertion,
6315 -- so that the formatted source reflects the original.
6317 S_Pretty_Notabs
: aliased constant S
:= "/NOTABS " &
6321 -- Replace all tabulations in comments with spaces.
6323 S_Pretty_Output
: aliased constant S
:= "/OUTPUT=@" &
6327 -- Write the output to the specified file. If the file already exists,
6328 -- an error is reported.
6330 S_Pretty_Override
: aliased constant S
:= "/OVERRIDING_REPLACE " &
6332 -- /NOOVERRIDING_REPLACE (D)
6333 -- /OVERRIDING_REPLACE
6335 -- Replace the argument source with the pretty-printed source and copy the
6336 -- argument source into filename.NPP, overriding any existing file if
6339 S_Pretty_Pragma
: aliased constant S
:= "/PRAGMA_CASING=" &
6346 -- /PRAGMA_CASING[=pragma-option]
6348 -- Set the case of pragma identifiers. The default is Mixed case.
6349 -- pragma-option may be one of the following:
6355 S_Pretty_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
6357 -- /PROJECT_FILE=filename
6359 -- Specifies the main project file to be used. The project files rooted
6360 -- at the main project file will be parsed before any other processing to
6361 -- set the building environment.
6363 S_Pretty_Replace
: aliased constant S
:= "/REPLACE " &
6368 -- Replace the argument source with the pretty-printed source and copy the
6369 -- argument source into filename.NPP. If filename.NPP already exists,
6370 -- report an error and exit.
6372 S_Pretty_RTS
: aliased constant S
:= "/RUNTIME_SYSTEM=|" &
6374 -- /RUNTIME_SYSTEM=xxx
6376 -- Compile against an alternate runtime system named xxx or RTS-xxx.
6378 S_Pretty_Search
: aliased constant S
:= "/SEARCH=*" &
6380 -- /SEARCH=(directory[,...])
6382 -- When looking for source files also look in directories specified.
6384 S_Pretty_Specific
: aliased constant S
:= "/SPECIFIC_CASING " &
6388 -- Do not use the default dictionary file; instead, use the casing
6389 -- defined by a qualifier /NAME_CASING and/or any explicit dictionary
6390 -- file specified by a qualifier /DICTIONARY.
6392 S_Pretty_Standard
: aliased constant S
:= "/STANDARD_OUTPUT " &
6394 -- /NOSTANDARD_OUTPUT (D)
6397 -- Redirect the output to the standard output.
6399 S_Pretty_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
6403 -- The actual directories (object, exec, library, ...) are subdirectories
6404 -- of the directory specified in the project file. If the subdirectory
6405 -- does not exist, it is created automatically.
6407 S_Pretty_Types
: aliased constant S
:= "/TYPE_CASING=" &
6416 -- /TYPE_CASING=name-option
6418 -- Specify the casing of subtype names (including first subtypes from
6419 -- type declarations). If not specified, the casing of these names is
6420 -- defined by the NAME_CASING option. 'name-option' is one of:
6422 -- AS_DECLARED Names are cased as they appear in the declaration
6423 -- in the source file.
6425 -- LOWER_CASE Names are in lower case.
6427 -- UPPER_CASE Names are in upper case.
6429 -- MIXED_CASE Names are in mixed case.
6431 S_Pretty_Verbose
: aliased constant S
:= "/VERBOSE " &
6436 -- Verbose mode; GNAT PRETTY generates version information and then a
6437 -- trace of the actions it takes to produce or obtain the ASIS tree.
6439 S_Pretty_Warnings
: aliased constant S
:= "/WARNINGS " &
6444 -- Issue a warning to the standard error stream if it is not possible
6445 -- to provide the required layout in the result source.
6446 -- By default such warnings are not activated.
6448 Pretty_Switches
: aliased constant Switches
:=
6449 (S_Pretty_Add
'Access,
6450 S_Pretty_Align 'Access,
6451 S_Pretty_All_Prjs
'Access,
6452 S_Pretty_Attrib 'Access,
6453 S_Pretty_Comments
'Access,
6454 S_Pretty_Compact_Is 'Access,
6455 S_Pretty_Config
'Access,
6456 S_Pretty_Constr 'Access,
6457 S_Pretty_Comind
'Access,
6458 S_Pretty_Current 'Access,
6459 S_Pretty_Dico
'Access,
6460 S_Pretty_Eol 'Access,
6461 S_Pretty_Ext
'Access,
6462 S_Pretty_Encoding 'Access,
6463 S_Pretty_Enums
'Access,
6464 S_Pretty_Files 'Access,
6465 S_Pretty_Follow
'Access,
6466 S_Pretty_Forced 'Access,
6467 S_Pretty_Formfeed
'Access,
6468 S_Pretty_Indent 'Access,
6469 S_Pretty_Keyword
'Access,
6470 S_Pretty_Maxlen 'Access,
6471 S_Pretty_Maxact
'Access,
6472 S_Pretty_Maxind 'Access,
6473 S_Pretty_Maxpar
'Access,
6474 S_Pretty_Mess 'Access,
6475 S_Pretty_Names
'Access,
6476 S_Pretty_No_Labels 'Access,
6477 S_Pretty_Notabs
'Access,
6478 S_Pretty_Output 'Access,
6479 S_Pretty_Override
'Access,
6480 S_Pretty_Pragma 'Access,
6481 S_Pretty_Replace
'Access,
6482 S_Pretty_Replace_No_Backup'Access,
6483 S_Pretty_Project 'Access,
6484 S_Pretty_RTS
'Access,
6485 S_Pretty_Search 'Access,
6486 S_Pretty_Sep_Label
'Access,
6487 S_Pretty_Sep_Loop_Then 'Access,
6488 S_Pretty_N_Sep_Loop_Then
'Access,
6489 S_Pretty_Subdirs 'Access,
6490 S_Pretty_Use_On_New_Line
'Access,
6491 S_Pretty_Stnm_On_Nw_Line 'Access,
6492 S_Pretty_Specific
'Access,
6493 S_Pretty_Standard 'Access,
6494 S_Pretty_Types
'Access,
6495 S_Pretty_Verbose 'Access,
6496 S_Pretty_Warnings
'Access);
6498 ------------------------------
6499 -- Switches for GNAT SHARED --
6500 ------------------------------
6502 S_Shared_Debug : aliased constant S := "/DEBUG=" &
6511 -- /DEBUG[=debug-option]
6514 -- Specifies the amount of debugging information included. 'debug
-option
'
6515 -- is one of the following:
6517 -- ALL (D) Include full debugging information.
6519 -- NONE Provide no debugging information. Same as /NODEBUG.
6521 -- TRACEBACK Provide sufficient debug information for a traceback.
6523 -- NOTRACEBACK Same as NONE.
6525 S_Shared_Image : aliased constant S := "/IMAGE=@" &
6527 -- /IMAGE=image-name
6529 -- 'image
-name
' specifies the name for the generated shared library.
6531 S_Shared_Ident : aliased constant S := "/IDENTIFICATION=" & '"' &
6532 "--for-linker=IDENT=" &
6534 -- /IDENTIFICATION="<string>"
6536 -- "<string>" specifies the string to be stored in the image file ident-
6537 -- ification field in the image header. It overrides any pragma Ident
6538 -- specified string.
6540 S_Shared_Nofiles
: aliased constant S
:= "/NOSTART_FILES " &
6544 -- Link in default image initialization and startup functions.
6546 S_Shared_Noinhib
: aliased constant S
:= "/NOINHIBIT-IMAGE " &
6547 "--for-linker=--noinhibit-exec";
6550 -- Delete image if there are errors or warnings.
6552 S_Shared_Verb
: aliased constant S
:= "/VERBOSE " &
6557 -- Causes additional information to be output, including a full list of
6558 -- the included object files. This switch option is most useful when you
6559 -- want to see what set of object files are being used in the link step.
6561 S_Shared_ZZZZZ
: aliased constant S
:= "/<other> " &
6565 -- Any other switch transmitted to the underlying linker.
6567 Shared_Switches
: aliased constant Switches
:=
6568 (S_Shared_Debug
'Access,
6569 S_Shared_Image 'Access,
6570 S_Shared_Ident
'Access,
6571 S_Shared_Nofiles 'Access,
6572 S_Shared_Noinhib
'Access,
6573 S_Shared_Verb 'Access,
6574 S_Shared_ZZZZZ
'Access);
6576 -----------------------------
6577 -- Switches for GNAT STACK --
6578 -----------------------------
6580 S_Stack_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
6582 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6584 -- Add directories to the project search path.
6586 S_Stack_All : aliased constant S := "/ALL_SUBPROGRAMS " &
6588 -- /NOALL_SUBPROGRAMS (D)
6591 -- Consider all subprograms as entry points.
6593 S_Stack_All_Cycles : aliased constant S := "/ALL_CYCLES " &
6595 -- /NOALL_CYCLES (D)
6598 -- Extract all possible cycles in the call graph.
6600 S_Stack_All_Prjs : aliased constant S := "/ALL_PROJECTS " &
6602 -- /NOALL_PROJECTS (D)
6605 -- When GNAT STACK is used with a Project File and no source is
6606 -- specified, the underlying tool gnatstack is called for all the
6607 -- units of all the Project Files in the project tree.
6609 S_Stack_Debug : aliased constant S := "/DEBUG " &
6614 -- Generate internal debug information.
6616 S_Stack_Directory : aliased constant S := "/DIRECTORY=*" &
6618 -- /DIRECTORY=(direc[,...])
6620 -- When looking for .ci files look also in directories specified.
6622 S_Stack_Entries : aliased constant S := "/ENTRIES=*" &
6625 -- /ENTRY=(entry_point[,...])
6627 -- Name of symbol to be used as entry point for the analysis.
6629 S_Stack_Files : aliased constant S := "/FILES=@" &
6633 -- Take as arguments the files that are listed in the specified
6636 S_Stack_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
6638 -- /NOFOLLOW_LINKS_FOR_FILES (D)
6639 -- /FOLLOW_LINKS_FOR_FILES
6641 -- Follow links when parsing project files
6643 S_Stack_Help : aliased constant S := "/HELP " &
6648 -- Output a message explaining the usage of gnatstack.
6650 S_Stack_List : aliased constant S := "/LIST=#" &
6654 -- Print the nnn subprograms requiring the biggest local stack usage. By
6655 -- default none will be displayed.
6657 S_Stack_Order : aliased constant S := "/ORDER=" &
6662 -- /ORDER[=order-option]
6664 -- Specifies the order for displaying the different call graphs.
6665 -- order-option may be one of the following:
6667 -- STACK (D) Select stack usage order
6669 -- ALPHABETICAL Select alphabetical order
6671 S_Stack_Path : aliased constant S := "/PATH " &
6676 -- Print all the subprograms that make up the worst-case path for every
6679 S_Stack_Project : aliased constant S := "/PROJECT_FILE=<" &
6681 -- /PROJECT_FILE=filename
6683 -- Specifies the main project file to be used. The project files rooted
6684 -- at the main project file will be parsed before the invocation of
6687 S_Stack_Output : aliased constant S := "/OUTPUT=@" &
6691 -- Name of the file containing the generated graph (VCG format).
6693 S_Stack_Regexp : aliased constant S := "/EXPRESSION=|" &
6696 -- /EXPRESSION=regular-expression
6698 -- Any symbol matching the regular expression will be considered as a
6699 -- potential entry point for the analysis.
6701 S_Stack_Subdirs : aliased constant S := "/SUBDIRS=<" &
6705 -- The actual directories (object, exec, library, ...) are subdirectories
6706 -- of the directory specified in the project file. If the subdirectory
6707 -- does not exist, it is created automatically.
6709 S_Stack_Unbounded : aliased constant S := "/UNBOUNDED=#" &
6713 -- Default stack size to be used for unbounded (dynamic) frames.
6715 S_Stack_Unknown : aliased constant S := "/UNKNOWN=#" &
6719 -- Default stack size to be used for unknown (external) calls.
6721 S_Stack_Verbose : aliased constant S := "/VERBOSE " &
6726 -- Specifies the amount of information to be displayed about the
6727 -- different subprograms. In verbose mode the full location of the
6728 -- subprogram will be part of the output, as well as detailed information
6729 -- about inaccurate data.
6731 S_Stack_Warnings : aliased constant S := "/WARNINGS=" &
6742 -- /WARNINGS[=(keyword[,...])]
6744 -- The following keywords are supported:
6746 -- ALL Turn on all optional warnings
6748 -- CYCLES Turn on warnings for cycles
6750 -- UNBOUNDED Turn on warnings for unbounded frames
6752 -- EXTERNAL Turn on warnings for external calls
6754 -- INDIRECT Turn on warnings for indirect calls
6756 Stack_Switches : aliased constant Switches :=
6757 (S_Stack_Add 'Access,
6758 S_Stack_All
'Access,
6759 S_Stack_All_Cycles 'Access,
6760 S_Stack_All_Prjs
'Access,
6761 S_Stack_Debug 'Access,
6762 S_Stack_Directory
'Access,
6763 S_Stack_Entries 'Access,
6764 S_Stack_Files
'Access,
6765 S_Stack_Follow 'Access,
6766 S_Stack_Help
'Access,
6767 S_Stack_List 'Access,
6768 S_Stack_Order
'Access,
6769 S_Stack_Path 'Access,
6770 S_Stack_Project
'Access,
6771 S_Stack_Output 'Access,
6772 S_Stack_Regexp
'Access,
6773 S_Stack_Subdirs 'Access,
6774 S_Stack_Unbounded
'Access,
6775 S_Stack_Unknown 'Access,
6776 S_Stack_Verbose
'Access,
6777 S_Stack_Warnings 'Access);
6779 ----------------------------
6780 -- Switches for GNAT STUB --
6781 ----------------------------
6783 S_Stub_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
6785 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6787 -- Add directories to the project search path.
6789 S_Stub_Config
: aliased constant S
:= "/CONFIGURATION_PRAGMAS_FILE=<" &
6791 -- /CONFIGURATION_PRAGMAS_FILE=filespec
6793 -- Specifies a configuration pragmas file that must be taken into account
6796 S_Stub_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
6798 -- /CURRENT_DIRECTORY (D)
6799 -- /NOCURRENT_DIRECTORY
6801 -- Look for source, library or object files in the default directory.
6803 S_Stub_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
6805 -- /EXTERNAL_REFERENCE="name=val"
6807 -- Specifies an external reference to the project manager. Useful only if
6808 -- /PROJECT_FILE is used.
6811 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
6813 S_Stub_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
6815 -- /NOFOLLOW_LINKS_FOR_FILES (D)
6816 -- /FOLLOW_LINKS_FOR_FILES
6818 -- Follow links when parsing project files
6820 S_Stub_Full
: aliased constant S
:= "/FULL " &
6825 -- If the destination directory already contains a file with the name of
6826 -- the body file for the argument file spec, replace it with the generated
6827 -- body stub. If /FULL is not used and there is already a body file, this
6828 -- existing body file is not replaced.
6830 S_Stub_Header
: aliased constant S
:= "/HEADER=" &
6835 -- /HEADER[=header-option]
6837 -- Specifies the form of the comment header above the generated body stub.
6838 -- If no /HEADER qualifier is specified, there is no comment header.
6839 -- header-option is one of the following:
6842 -- GENERAL (D) Put a sample comment header into the body stub.
6844 -- SPEC Put the comment header (i.e., all the comments
6845 -- preceding the compilation unit) from the source of the
6846 -- library unit declaration into the body stub.
6848 S_Stub_Header_File
: aliased constant S
:= "/FROM_HEADER_FILE=<" &
6851 -- /FROM_HEADER_FILE==filename
6853 -- Use the content of the file as the comment header for a generated body
6856 S_Stub_Indent
: aliased constant S
:= "/INDENTATION=#" &
6860 -- (nnn is a non-negative integer). Set the indentation level in the
6861 -- generated body stub to nnn. nnn=0 means "no indentation".
6862 -- Default indentation is 3.
6864 S_Stub_Keep
: aliased constant S
:= "/KEEP " &
6869 -- Do not delete the tree file (i.e., the snapshot of the compiler
6870 -- internal structures used by gnatstub) after creating the body stub.
6872 S_Stub_Length
: aliased constant S
:= "/LINE_LENGTH=#" &
6876 -- (n is a non-negative integer). Set the maximum line length in the body
6877 -- stub to nnn. Default is 78.
6879 S_Stub_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
6886 -- /MESSAGES_PROJECT_FILE[=messages-option]
6888 -- Specifies the "verbosity" of the parsing of project files.
6889 -- messages-option may be one of the following:
6891 -- DEFAULT (D) No messages are output if there is no error or warning.
6893 -- MEDIUM A small number of messages are output.
6895 -- HIGH A great number of messages are output, most of them not
6896 -- being useful for the user.
6898 S_Stub_No_Exc
: aliased constant S
:= "/NO_EXCEPTION " &
6900 -- /NONO_EXCEPTION (D)
6903 -- Avoid raising PROGRAM_ERROR in the generated program unit stubs.
6905 S_Stub_No_Head
: aliased constant S
:= "/NO_LOCAL_HEADER " &
6906 "--no-local-header";
6907 -- /NONO_LOCAL_HEADER (D)
6910 -- Do not put local comment header before body stub for local program unit.
6912 S_Stub_Output
: aliased constant S
:= "/OUTPUT=@" &
6916 -- Body file name. This should be set if the argument file name does not
6917 -- follow the GNAT file naming conventions. If this switch is omitted,
6918 -- the default name for the body will be obtained from the argument file
6919 -- name according to the GNAT file naming conventions.
6921 S_Stub_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
6923 -- /PROJECT_FILE=filename
6925 -- Specifies the main project file to be used. The project files rooted
6926 -- at the main project file will be parsed before any other processing.
6927 -- The source and object directories to be searched will be communicated
6928 -- to gnatstub through logical names ADA_PRJ_INCLUDE_FILE and
6929 -- ADA_PRJ_OBJECTS_FILE.
6931 S_Stub_Quiet
: aliased constant S
:= "/QUIET " &
6936 -- Quiet mode: do not generate a confirmation when a body is successfully
6937 -- created, and do not generate a message when a body is not required for
6938 -- an argument unit.
6940 S_Stub_Search
: aliased constant S
:= "/SEARCH=*" &
6942 -- /SEARCH=(directory[,...])
6944 -- When looking for source files also look in directories specified.
6946 S_Stub_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
6950 -- The actual directories (object, exec, library, ...) are subdirectories
6951 -- of the directory specified in the project file. If the subdirectory
6952 -- does not exist, it is created automatically.
6954 S_Stub_Tree
: aliased constant S
:= "/TREE_FILE=" &
6961 -- /TREE_FILE[=treefile-option]
6963 -- Specify what to do with the tree file.
6964 -- treefile-option is one of the following:
6966 -- OVERWRITE (D) Overwrite the existing tree file. If the current
6967 -- directory already contains the file which, according
6968 -- to the GNAT file naming rules should be considered
6969 -- as a tree file for the argument source file, gnatstub
6970 -- will refuse to create the tree file needed to create
6971 -- a sample body unless this option is chosen.
6973 -- SAVE Do not remove the tree file (i.e., the snapshot
6974 -- of the compiler internal structures used by gnatstub)
6975 -- after creating the body stub.
6977 -- REUSE Reuse the tree file (if it exists) instead of
6979 -- Instead of creating the tree file for the library
6980 -- unit declaration, gnatstub tries to find it in the
6981 -- current directory and use it for creating a body.
6982 -- If the tree file is not found, no body is created.
6983 -- This option also implies `SAVE', whether or not the
6984 -- latter is set explicitly.
6986 S_Stub_Verbose
: aliased constant S
:= "/VERBOSE " &
6991 -- Verbose mode: generate version information.
6993 Stub_Switches
: aliased constant Switches
:=
6994 (S_Stub_Add
'Access,
6995 S_Stub_Config 'Access,
6996 S_Stub_Current
'Access,
6998 S_Stub_Follow
'Access,
6999 S_Stub_Full 'Access,
7000 S_Stub_Header
'Access,
7001 S_Stub_Header_File'Access,
7002 S_Stub_Indent 'Access,
7003 S_Stub_Keep
'Access,
7004 S_Stub_Length 'Access,
7005 S_Stub_Mess
'Access,
7006 S_Stub_Output 'Access,
7007 S_Stub_Project
'Access,
7008 S_Stub_No_Exc 'Access,
7009 S_Stub_No_Head
'Access,
7010 S_Stub_Quiet 'Access,
7011 S_Stub_Search
'Access,
7012 S_Stub_Subdirs 'Access,
7013 S_Stub_Tree
'Access,
7014 S_Stub_Verbose 'Access);
7016 ----------------------------
7017 -- Switches for GNAT SYNC --
7018 ----------------------------
7020 S_Sync_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
7022 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
7024 -- Add directories to the project search path.
7026 S_Sync_All
: aliased constant S
:= "/ALL " &
7031 -- Also check the components of the GNAT run time and process the needed
7032 -- components of the GNAT RTL when building and analyzing the global
7033 -- structure for checking the global rules.
7035 S_Sync_Allproj
: aliased constant S
:= "/ALL_PROJECTS " &
7037 -- /NOALL_PROJECTS (D)
7040 -- When GNAT SYNC is used with a Project File and no source is
7041 -- specified, the underlying tool gnatsync is called for all the
7042 -- sources of all the Project Files in the project tree.
7044 S_Sync_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
7046 -- /EXTERNAL_REFERENCE="name=val"
7048 -- Specifies an external reference to the project manager. Useful only if
7049 -- /PROJECT_FILE is used.
7052 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
7054 S_Sync_Files
: aliased constant S
:= "/FILES=@" &
7058 -- Take as arguments the files that are listed in the specified
7061 S_Sync_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
7063 -- /NOFOLLOW_LINKS_FOR_FILES (D)
7064 -- /FOLLOW_LINKS_FOR_FILES
7066 -- Follow links when parsing project files
7068 S_Sync_Main
: aliased constant S
:= "/MAIN_SUBPROGRAM=@" &
7070 -- /MAIN_SUBPROGRAM=filename
7072 -- Specify the name of the file containing the main subprogram
7074 S_Sync_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
7081 -- /MESSAGES_PROJECT_FILE[=messages-option]
7083 -- Specifies the "verbosity" of the parsing of project files.
7084 -- messages-option may be one of the following:
7086 -- DEFAULT (D) No messages are output if there is no error or warning.
7088 -- MEDIUM A small number of messages are output.
7090 -- HIGH A great number of messages are output, most of them not
7091 -- being useful for the user.
7093 S_Sync_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
7095 -- /PROJECT_FILE=filename
7097 -- Specifies the main project file to be used. The project files rooted
7098 -- at the main project file will be parsed before the invocation of the
7099 -- gnatcheck. The source directories to be searched will be communicated
7100 -- to gnatcheck through logical name ADA_PRJ_INCLUDE_FILE.
7102 S_Sync_Quiet
: aliased constant S
:= "/QUIET " &
7107 -- Work quietly, only output warnings and errors.
7109 S_Sync_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
7113 -- The actual directories (object, exec, library, ...) are subdirectories
7114 -- of the directory specified in the project file. If the subdirectory
7115 -- does not exist, it is created automatically.
7117 S_Sync_Verb
: aliased constant S
:= "/VERBOSE " &
7122 -- The version number and copyright notice are output, as well as exact
7123 -- copies of the gnat1 commands spawned to obtain the chop control
7126 S_Sync_Exec
: aliased constant S
:= "/EXECUTION_TIME " &
7128 -- /NOEXECUTION_TIME (D)
7131 -- Output the execution time
7133 S_Sync_Details
: aliased constant S
:= "/DETAILS=" &
7140 -- /DETAILS[=options]
7142 -- Specifies the details of the output.
7143 -- Options may be one of the following:
7149 S_Sync_Warnoff
: aliased constant S
:= "/WARNINGS_OFF " &
7154 -- Turn warnings off
7156 S_Sync_Output
: aliased constant S
:= "/OUTPUT_FILE=<" &
7159 -- /OUTPUT_FILE=filename
7161 -- Redirect output to a text file
7163 Sync_Switches
: aliased constant Switches
:=
7164 (S_Sync_Add
'Access,
7166 S_Sync_Allproj
'Access,
7168 S_Sync_Follow
'Access,
7169 S_Sync_Files 'Access,
7170 S_Sync_Main
'Access,
7171 S_Sync_Mess 'Access,
7172 S_Sync_Project
'Access,
7173 S_Sync_Quiet 'Access,
7174 S_Sync_Subdirs
'Access,
7175 S_Sync_Verb 'Access,
7176 S_Sync_Exec
'Access,
7177 S_Sync_Details 'Access,
7178 S_Sync_Warnoff
'Access,
7179 S_Sync_Output 'Access);
7181 ----------------------------
7182 -- Switches for GNAT TEST --
7183 ----------------------------
7185 Test_Switches
: aliased constant Switches
:=
7188 ----------------------------
7189 -- Switches for GNAT XREF --
7190 ----------------------------
7192 S_Xref_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
7194 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
7196 -- Add directories to the project search path.
7198 S_Xref_All
: aliased constant S
:= "/ALL_FILES " &
7203 -- If this switch is present, FIND and XREF will parse the read-only
7204 -- files found in the library search path. Otherwise, these files will
7205 -- be ignored. This option can be used to protect Gnat sources or your
7206 -- own libraries from being parsed, thus making FIND and XREF much
7207 -- faster, and their output much smaller.
7209 S_Xref_Deriv
: aliased constant S
:= "/DERIVED_TYPES " &
7211 -- /NODERIVED_TYPES (D)
7214 -- Output the parent type reference for each matching derived types.
7216 S_Xref_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
7218 -- /EXTERNAL_REFERENCE="name=val"
7220 -- Specifies an external reference to the project manager. Useful only if
7221 -- /PROJECT_FILE is used.
7224 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
7226 S_Xref_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
7228 -- /NOFOLLOW_LINKS_FOR_FILES (D)
7229 -- /FOLLOW_LINKS_FOR_FILES
7231 -- Follow links when parsing project files
7233 S_Xref_Full
: aliased constant S
:= "/FULL_PATHNAME " &
7235 -- /NOFULL_PATHNAME (D)
7238 -- If this switch is set, the output file names will be preceded by their
7239 -- directory (if the file was found in the search path). If this switch
7240 -- is not set, the directory will not be printed.
7242 S_Xref_Global
: aliased constant S
:= "/IGNORE_LOCALS " &
7244 -- /NOIGNORE_LOCALS (D)
7247 -- If this switch is set, information is output only for library-level
7248 -- entities, ignoring local entities. The use of this switch may
7249 -- accelerate FIND and XREF.
7251 S_Xref_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
7258 -- /MESSAGES_PROJECT_FILE[=messages-option]
7260 -- Specifies the "verbosity" of the parsing of project files.
7261 -- messages-option may be one of the following:
7263 -- DEFAULT (D) No messages are output if there is no error or warning.
7265 -- MEDIUM A small number of messages are output.
7267 -- HIGH A great number of messages are output, most of them not
7268 -- being useful for the user.
7270 S_Xref_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
7274 -- Do not look for sources in the system default directory.
7276 S_Xref_Nostlib
: aliased constant S
:= "/NOSTD_LIBRARIES " &
7280 -- Do not look for library files in the system default directory.
7282 S_Xref_Object
: aliased constant S
:= "/OBJECT_SEARCH=*" &
7284 -- /OBJECT_SEARCH=(directory,...)
7286 -- When searching for library and object files, look in the specified
7287 -- directories. The order in which library files are searched is the same
7290 S_Xref_Project
: aliased constant S
:= "/PROJECT=@" &
7294 -- Specify a project file to use. By default, FIND and XREF will try to
7295 -- locate a project file in the current directory.
7297 -- If a project file is either specified or found by the tools, then the
7298 -- content of the source directory and object directory lines are added
7299 -- as if they had been specified respectively by /SOURCE_SEARCH and
7302 S_Xref_Prj
: aliased constant S
:= "/PROJECT_FILE=<" &
7304 -- /PROJECT_FILE=filename
7306 -- Specifies the main project file to be used. The project files rooted
7307 -- at the main project file will be parsed before doing any processing.
7308 -- The source and object directories to be searched will be communicated
7309 -- to gnatxref through logical names ADA_PRJ_INCLUDE_FILE and
7310 -- ADA_PRJ_OBJECTS_FILE.
7312 S_Xref_Search
: aliased constant S
:= "/SEARCH=*" &
7314 -- /SEARCH=(directory,...)
7317 -- /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
7319 S_Xref_Source
: aliased constant S
:= "/SOURCE_SEARCH=*" &
7321 -- /SOURCE_SEARCH=(directory,...)
7323 -- When looking for source files also look in the specified directories.
7324 -- The order in which source file search is undertaken is the same as for
7327 S_Xref_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
7331 -- The actual directories (object, exec, library, ...) are subdirectories
7332 -- of the directory specified in the project file. If the subdirectory
7333 -- does not exist, it is created automatically.
7335 S_Xref_Output
: aliased constant S
:= "/UNUSED " &
7337 -- /SOURCE_SEARCH=(directory,...)
7339 -- When looking for source files also look in the specified directories.
7340 -- The order in which source file search is undertaken is the same as for
7343 S_Xref_Tags
: aliased constant S
:= "/TAGS " &
7348 -- Print a 'tags' file for vi.
7350 Xref_Switches
: aliased constant Switches
:=
7351 (S_Xref_Add
'Access,
7353 S_Xref_Deriv
'Access,
7355 S_Xref_Follow
'Access,
7356 S_Xref_Full 'Access,
7357 S_Xref_Global
'Access,
7358 S_Xref_Mess 'Access,
7359 S_Xref_Nostinc
'Access,
7360 S_Xref_Nostlib 'Access,
7361 S_Xref_Object
'Access,
7362 S_Xref_Project 'Access,
7364 S_Xref_Search 'Access,
7365 S_Xref_Source
'Access,
7366 S_Xref_Subdirs 'Access,
7367 S_Xref_Output
'Access,
7368 S_Xref_Tags 'Access);