1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1996-2013, 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_AlCheck
: aliased constant S
:= "/ALIASING_CHECK " &
1285 -- /NOALIASING_CHECK (D)
1288 -- Check that there are no aliased parameters in subprogram calls.
1290 S_GCC_Asm
: aliased constant S
:= "/ASM " &
1295 -- Use to cause the assembler source file to be generated, using S as the
1296 -- filetype, instead of the object file. This may be useful if you need
1297 -- to examine the generated assembly code.
1299 S_GCC_AValid
: aliased constant S
:= "/ASSUME_VALID " &
1301 -- /NO_ASSUME_VALID (D)
1304 -- Use to tell the compiler to assume that all objects have valid values
1305 -- except those occurring as prefixes to 'Valid attributes. In the default
1306 -- mode, the compiler assumes that values may be invalid unless it can
1307 -- be sure that they are valid, and code is generated to allow for this
1308 -- possibility. The use of /ASSUME_VALID will improve the code.
1310 S_GCC_CategW
: aliased constant S
:= "/CATEGORIZATION_WARNINGS " &
1312 -- /NO_CATEGORIZATION_WARNINGS (D)
1313 -- /CATEGORIZATION_WARNINGS
1315 -- Use to tell the compiler to disable categorization dependency errors.
1316 -- Ada requires that units that WITH one another have compatible
1317 -- categories, for example a Pure unit cannot WITH a Preelaborate unit.
1318 -- If this switch is used, these errors become warnings (which can be
1319 -- ignored, or suppressed in the usual manner). This can be useful in
1320 -- some specialized circumstances such as the temporary use of special
1323 S_GCC_Checks
: aliased constant S
:= "/CHECKS=" &
1325 "-gnato,!-gnatE,!-gnatp " &
1333 "!-gnato,!-gnatp " &
1341 -- /CHECKS[=(keyword[,...])]
1343 -- If you compile with the default options, GNAT will insert many runtime
1344 -- checks into the compiled code, including code that performs range
1345 -- checking against constraints, but not arithmetic overflow checking for
1346 -- integer operations (including division by zero) or checks for access
1347 -- before elaboration on subprogram calls. All other runtime checks, as
1348 -- required by the Ada 95 Reference Manual, are generated by default.
1350 -- You may specify one or more of the following keywords to the /CHECKS
1351 -- qualifier to modify this behavior:
1353 -- DEFAULT The behavior described above. This is the default
1354 -- if the /CHECKS qualifier is not present on the
1355 -- command line. Same as /NOCHECKS.
1357 -- OVERFLOW Enables overflow checking in CHECKED mode for integer
1358 -- operations and checks for access before elaboration
1359 -- on subprogram calls. This causes GNAT to generate
1360 -- slower and larger executable programs by adding code
1361 -- to check for both overflow and division by zero
1362 -- (resulting in raising "Constraint_Error" as required
1363 -- by Ada semantics).
1364 -- Similarly, GNAT does not generate elaboration check
1365 -- by default, and you must specify this keyword to
1368 -- Note that this keyword does not affect the code
1369 -- generated for any floating-point operations; it
1370 -- applies only to integer operations. For the case of
1371 -- floating-point, GNAT has the "Machine_Overflows"
1372 -- attribute set to "False" and the normal mode of
1373 -- operation is to generate IEEE NaN and infinite values
1374 -- on overflow or invalid operations (such as dividing
1377 -- ELABORATION Enables dynamic checks for access-before-elaboration
1378 -- on subprogram calls and generic instantiations.
1380 -- ASSERTIONS The pragmas "Assert" and "Debug" normally have no
1381 -- effect and are ignored. This keyword causes "Assert"
1382 -- and "Debug" pragmas to be activated, as well as
1383 -- "Check", "Precondition" and "Postcondition" pragmas.
1385 -- SUPPRESS_ALL Suppress all runtime checks as though you have
1386 -- "pragma Suppress (all_checks)" in your source. Use
1387 -- this switch to improve the performance of the code at
1388 -- the expense of safety in the presence of invalid data
1391 -- UNSUPPRESS_ALL Cancels effect of previous SUPPRESS_ALL.
1393 -- DEFAULT Suppress the effect of any option OVERFLOW or
1396 -- FULL (D) Similar to OVERFLOW, but suppress the effect of any
1397 -- option ELABORATION or SUPPRESS_ALL.
1399 -- These keywords only control the default setting of the checks. You
1400 -- may modify them using either "Suppress" (to remove checks) or
1401 -- "Unsuppress" (to add back suppressed checks) pragmas in your program
1404 S_GCC_ChecksX
: aliased constant S
:= "/NOCHECKS " &
1405 "-gnatp,!-gnato,!-gnatE";
1406 -- NODOC (see /CHECKS)
1408 S_GCC_Chflov
: aliased constant S
:= "/FLOAT_OVERFLOW_CHECK " &
1410 -- /NOFLOAT_OVERFLOW_CHECK (D)
1411 -- /FLOAT_OVERFLOW_CHECK
1413 -- Set mode to check overflow for all floating-point operations including
1414 -- those using an unconstrained predefined type (i.e. no infinities).
1416 S_GCC_Compres
: aliased constant S
:= "/COMPRESS_NAMES " &
1418 -- /NOCOMPRESS_NAMES (D)
1421 -- Compress debug information and external symbol name table entries.
1422 -- In the generated debugging information, and also in the case of long
1423 -- external names, the compiler uses a compression mechanism if the name
1424 -- is very long. This compression method uses a checksum, and avoids
1425 -- trouble on some operating systems which have difficulty with very long
1428 S_GCC_Config
: aliased constant S
:= "/CONFIGURATION_PRAGMAS_FILE=<" &
1430 -- /CONFIGURATION_PRAGMAS_FILE=file
1432 -- Specify a configuration pragmas file that needs to be taken into
1435 S_GCC_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
1437 -- /CURRENT_DIRECTORY (D)
1438 -- /NOCURRENT_DIRECTORY
1440 -- Look for source files in the default directory.
1442 S_GCC_Data
: aliased constant S
:= "/DATA_PREPROCESSING=<" &
1444 -- /DATA_PREPROCESSING=file_name
1446 -- This qualifier indicates to the compiler the file name (without
1447 -- directory information) of the preprocessor data file to use.
1448 -- The preprocessor data file should be found in the source directories.
1450 -- A preprocessing data file is a text file with significant lines
1451 -- indicating how should be preprocessed either a specific source or all
1452 -- sources not mentioned in other lines. A significant line is a non
1453 -- empty, non comment line. Comments are similar to Ada comments.
1455 -- Each significant line starts with either a literal string or the
1456 -- character '*'. A literal string is the file name (without directory
1457 -- information) of the source to preprocess. A character '*' indicates the
1458 -- preprocessing for all the sources that are not specified explicitly on
1459 -- other lines. It is an error to have two lines with the same file name
1460 -- or two lines starting with the character '*'.
1462 -- After the file name or the character '*', another optional literal
1463 -- string indicating the file name of the definition file to be used for
1464 -- preprocessing. (see 15.3 Form of Definitions File. The definition files
1465 -- are found by the compiler in one of the source directories. In some
1466 -- cases, when compiling a source in a directory other than the current
1467 -- directory, if the definition file is in the current directory, it may
1468 -- be necessary to add the current directory as a source directory through
1469 -- qualifier "/SEARCH=[]", otherwise the compiler would not find the
1472 -- Then, optionally, switches similar to those of gnatprep may be found.
1473 -- Those switches are:
1475 -- -b Causes both preprocessor lines and the lines deleted by
1476 -- preprocessing to be replaced by blank lines, preserving
1477 -- the line number. This switch is always implied;
1478 -- however, if specified after `-c' it cancels the effect
1481 -- -c Causes both preprocessor lines and the lines deleted by
1482 -- preprocessing to be retained as comments marked with
1483 -- the special string "--! ".
1485 -- -Dsymbol=value Define or redefine a symbol, associated with value.
1486 -- A symbol is an Ada identifier, or an Ada reserved word,
1487 -- with the exception of "if", "else", "elsif", "end",
1488 -- "and", "or" and "then". value is either a literal
1489 -- string, an Ada identifier or any Ada reserved word.
1490 -- A symbol declared with this switch replaces a symbol
1491 -- with the same name defined in a definition file.
1493 -- -s Causes a sorted list of symbol names and values to be
1494 -- listed on the standard output file.
1496 -- -u Causes undefined symbols to be treated as having the
1497 -- value FALSE in the context of a preprocessor test.
1498 -- In the absence of this option, an undefined symbol
1499 -- in a #if or #elsif test will be treated as an error.
1501 -- Examples of valid lines in a preprocessor data file:
1503 -- "toto.adb" "prep.def" -u
1504 -- -- preprocess "toto.adb", using definition file "prep.def",
1505 -- -- undefined symbol are False.
1507 -- * -c -DVERSION=V101
1508 -- -- preprocess all other sources without a definition file;
1509 -- -- suppressed lined are commented; symbol VERSION has the value
1512 -- "titi.adb" "prep2.def" -s
1513 -- -- preprocess "titi.adb", using definition file "prep2.def";
1514 -- -- list all symbols with their values.
1516 S_GCC_Debug
: aliased constant S
:= "/DEBUG=" &
1529 -- /DEBUG[=debug-level]
1532 -- Specifies how much debugging information is to be included in
1533 -- the resulting object fie.
1535 -- 'debug-level' is one of the following:
1537 -- SYMBOLS (D) Include both debugger symbol records and traceback
1538 -- in the object file.
1540 -- ALL Include debugger symbol records, traceback plus
1541 -- extra debug information in the object file.
1543 -- NONE Excludes both debugger symbol records and traceback
1544 -- from the object file. Same as /NODEBUG.
1546 -- TRACEBACK Includes only traceback records in the object
1547 -- file. This is the default when /DEBUG is not used.
1549 S_GCC_DebugX
: aliased constant S
:= "/NODEBUG " &
1551 -- NODOC (see /Debug)
1553 S_GCC_DisAtom
: aliased constant S
:= "/DISABLE_ATOMIC_SYNCHRONIZATION " &
1555 -- /NODISABLE_ATOMIC_SYNCHRONIZATION (D)
1556 -- /DISABLE_ATOMIC_SYNCHRONIZATION
1557 -- Disable synchronization of atomic variables.
1559 S_GCC_Dist
: aliased constant S
:= "/DISTRIBUTION_STUBS=" &
1564 -- /NODISTRIBUTION_STUBS (D)
1565 -- /DISTRIBUTION_STUBS[=dist-opt]
1567 -- 'dist-opt' is either RECEIVER (the default) or SENDER and indicates
1568 -- that stubs for use in distributed programs (see the Distributed
1569 -- Systems Annex of the Ada RM) should be generated.
1571 S_GCC_DistX
: aliased constant S
:= "/NODISTRIBUTION_STUBS " &
1572 "!-gnatzr,!-gnatzc";
1573 -- NODOC (see /DISTRIBUTION_STUBS)
1575 S_GCC_Error
: aliased constant S
:= "/ERROR_LIMIT=#" &
1577 -- /NOERROR_LIMIT (D)
1580 -- NNN is a decimal integer in the range of 1 to 999999 and limits the
1581 -- number of error messages to be generated to that number. Once that
1582 -- number has been reached, the compilation is abandoned.
1583 -- Specifying 999999 is equivalent to /NOERROR_LIMIT.
1585 S_GCC_ErrorX
: aliased constant S
:= "/NOERROR_LIMIT " &
1587 -- NODOC (see /ERROR_LIMIT)
1589 S_GCC_Except
: aliased constant S
:= "/EXTRA_EXCEPTION_INFORMATION " &
1591 -- /EXTRA_EXCEPTION_INFORMATION
1593 -- Generate extra information in exception messages, in particular
1594 -- display extra column information and the value and range associated
1595 -- with index and range check failures, and extra column information for
1598 S_GCC_Expand
: aliased constant S
:= "/EXPAND_SOURCE " &
1600 -- /NOEXPAND_SOURCE (D)
1603 -- Produces a listing of the expanded code in Ada source form. For
1604 -- example, all tasking constructs are reduced to appropriate run-time
1605 -- library calls. The maximum line length for the listing 72.
1607 S_GCC_Lexpand
: aliased constant S
:= "/LEXPAND_SOURCE=#" &
1609 -- /LEXPAND_SOURCE=nnn
1611 -- Produces a listing of the expanded code in Ada source form. For
1612 -- example, all tasking constructs are reduced to appropriate run-time
1613 -- library calls. The parameter is the maximum line length for the
1616 S_GCC_Extend
: aliased constant S
:= "/EXTENSIONS_ALLOWED " &
1618 -- /NOEXTENSIONS_ALLOWED (D)
1619 -- /EXTENSIONS_ALLOWED
1621 -- GNAT specific language extensions allowed.
1623 S_GCC_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
1625 -- /EXTERNAL_REFERENCE="name=val"
1627 -- Specifies an external reference to the project manager. Useful only if
1628 -- /PROJECT_FILE is used.
1631 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
1633 S_GCC_File
: aliased constant S
:= "/FILE_NAME_MAX_LENGTH=#" &
1635 -- /FILE_NAME_MAX_LENGTH=nnn
1637 -- Activates file name "krunching". NNN, a decimal integer in the range
1638 -- 1-999, indicates the maximum allowable length of a file name (not
1639 -- including the ADS or ADB filetype. The default is not to enable file
1642 S_GCC_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
1644 -- /NOFOLLOW_LINKS_FOR_FILES (D)
1645 -- /FOLLOW_LINKS_FOR_FILES
1647 -- Follow links when parsing project files
1649 S_GCC_Force
: aliased constant S
:= "/FORCE_ALI " &
1654 -- In normal operation mode, the .ALI file is not generated if any
1655 -- illegalities are detected in the program. The use of this qualifier
1656 -- forces generation of the .ALI file. This file is marked as being
1657 -- in error, so it cannot be used for binding purposes, but it does
1658 -- contain reasonably complete cross-reference information, and thus may
1659 -- be useful for use by tools (e.g. semantic browsing tools or integrated
1660 -- development environments) that are driven from the .ALI file.
1662 S_GCC_Full
: aliased constant S
:= "/FULL_PATH_IN_BRIEF_MESSAGES " &
1664 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
1665 -- /FULL_PATH_IN_BRIEF_MESSAGES
1667 -- When using project files, if some errors or warnings are detected
1668 -- during parsing and verbose mode is not in effect (no use of qualifier
1669 -- /VERBOSE), then error lines start with the full path name of the
1670 -- project file, rather than its simple file name.
1672 S_GCC_Generate
: aliased constant S
:= "/GENERATE_PROCESSED_SOURCE " &
1674 -- /NOGENERATE_PROCESSED_SOURCE (D)
1675 -- /GENERATE_PROCESSED_SOURCE
1677 -- Generate a file <source>_prep if the integrated preprocessing
1678 -- is modifying the source text.
1680 S_GCC_GNAT
: aliased constant S
:= "/GNAT_INTERNAL " &
1682 -- /NOGNAT_INTERNAL (D)
1685 -- Internal GNAT implementation mode. This should not be used for
1686 -- applications programs, it is intended only for use by the compiler
1687 -- and its run-time library. For documentation, see the GNAT sources.
1688 -- Note that it implies /WARNINGS=ALL,ERRORS and /STYLE_CHECKS=GNAT
1689 -- so that all standard warnings and all standard style options are
1690 -- turned on. All warnings and style error messages are treated as
1693 S_GCC_Help
: aliased constant S
:= "/HELP " &
1698 -- Output usage information.
1700 S_GCC_Ident
: aliased constant S
:= "/IDENTIFIER_CHARACTER_SET=" &
1723 -- /NOIDENTIFIER_CHARACTER_SET (D)
1724 -- /IDENTIFIER_CHARACTER_SET=char-set
1726 -- Normally GNAT recognizes the Latin-1 character set in source program
1727 -- identifiers, as described in the reference manual. This qualifier
1728 -- causes GNAT to recognize alternate character sets in identifiers.
1729 -- 'char-set' is one of the following strings indicating the character
1732 -- DEFAULT (D) Equivalent to 1, below. Also equivalent to
1733 -- /NOIDENTIFIER_CHARACTER_SET.
1735 -- 1 The basic character set is Latin-1. This character
1736 -- set is defined by ISO standard 8859, part 1. The lower
1737 -- half (character codes 16#00# ... 16#7F#) is identical
1738 -- to standard ASCII coding, but the upper half is used
1739 -- to represent additional characters. This includes
1740 -- extended letters used by European languages, such as
1741 -- the umlaut used in German.
1743 -- You may use any of these extended characters freely
1744 -- in character or string literals. In addition, the
1745 -- extended characters that represent letters can be
1746 -- used in identifiers.
1748 -- 2 Latin-2 letters allowed in identifiers, with uppercase
1749 -- and lowercase equivalence.
1751 -- 3 Latin-3 letters allowed in identifiers, with uppercase
1752 -- and lower case equivalence.
1754 -- 4 Latin-4 letters allowed in identifiers, with uppercase
1755 -- and lower case equivalence.
1757 -- PC IBM PC code page 437. This code page is the normal
1758 -- default for PCs in the U.S. It corresponds to the
1759 -- original IBM PC character set. This set has some, but
1760 -- not all, of the extended Latin-1 letters, but these
1761 -- letters do not have the same encoding as Latin-1. In
1762 -- this mode, these letters are allowed in identifiers
1763 -- with uppercase and lowercase equivalence.
1765 -- PC850 This code page (850) is a modification of 437 extended
1766 -- to include all the Latin-1 letters, but still not with
1767 -- the usual Latin-1 encoding. In this mode, all these
1768 -- letters are allowed in identifiers with uppercase and
1769 -- lower case equivalence.
1771 -- FULL_UPPER Any character in the range 80-FF allowed in
1772 -- identifiers, and all are considered distinct. In
1773 -- other words, there are no uppercase and lower case
1774 -- equivalences in this range.
1776 -- NO_UPPER No upper-half characters in the range 80-FF are
1777 -- allowed in identifiers. This gives Ada 95
1778 -- compatibility for identifier names.
1780 -- WIDE GNAT allows wide character codes to appear in
1781 -- character and string literals, and also optionally
1782 -- in identifiers. See the /WIDE_CHARACTER_ENCODING
1783 -- qualifier for information on encoding formats.
1785 S_GCC_IdentX
: aliased constant S
:= "/NOIDENTIFIER_CHARACTER_SET " &
1787 -- NODOC (see /IDENTIFIER_CHARACTER_SET)
1789 S_GCC_IgnoreR
: aliased constant S
:= "/IGNORE_REP_CLAUSES " &
1791 -- /IGNORE_REP_CLAUSES
1793 -- Causes all representation clauses to be ignored and treated as
1794 -- comments. Useful when compiling foreign code (for example when ASIS
1795 -- is used to analyze such code).
1797 S_GCC_IgnoreS
: aliased constant S
:= "/IGNORE_STYLE_CHECKS_PRAGMAS " &
1799 -- /IGNORE_STYLE_CHECKS_PRAGMAS
1801 -- Causes all Style_Checks pragmas to be checked for legality, but
1802 -- otherwise ignored. Allows style checks to be fully controlled by
1803 -- command line qualifiers.
1805 S_GCC_Immed
: aliased constant S
:= "/IMMEDIATE_ERRORS " &
1807 -- /NOIMMEDIATE_ERRORS (D)
1808 -- /IMMEDIATE_ERRORS
1810 -- Causes errors to be displayed as soon as they are encountered, rather
1811 -- than after compilation is terminated. If GNAT terminates prematurely
1812 -- or goes into an infinite loop, the last error message displayed may
1813 -- help to pinpoint the culprit.
1815 -- Note that this qualifier is intended only for helping to diagnose
1816 -- illegal programs when the compiler fails. It disconnects many of the
1817 -- normal handling procedures for error messages, and may for example
1818 -- cause malfunction of pragma Warnings.
1820 S_GCC_Inline
: aliased constant S
:= "/INLINE=" &
1832 -- /INLINE[=keyword]
1834 -- Selects the level of inlining for your program. In the absence of this
1835 -- qualifier, GNAT does not attempt inlining across units and does not
1836 -- need to access the bodies of subprograms for which "pragma Inline" is
1837 -- specified if they are not in the current unit.
1839 -- The supported keywords are as follows:
1841 -- PRAGMA (D) Recognize and process "Inline" pragmas. However,
1842 -- for the inlining to actually occur, optimization
1843 -- must be enabled. This enables inlining across unit
1844 -- boundaries, that is, inlining a call in one unit of
1845 -- a subprogram declared in a with'ed unit. The compiler
1846 -- will access these bodies, creating an extra source
1847 -- dependency for the resulting object file, and where
1848 -- possible, the call will be inlined.
1850 -- This qualifier also turns on full optimization and
1851 -- requests GNAT to try to attempt automatic inlining
1852 -- of small subprograms within a unit.
1854 -- Specifying /OPTIMIZE=NONE will disable the main effect
1855 -- of this qualifier, but you may specify other
1856 -- optimization options, to get either lower
1857 -- (/OPTIMIZE=SOME) or higher (/OPTIMIZE=UNROLL_LOOPS)
1858 -- levels of optimization.
1861 -- Direct control of the level of "Inline" pragmas
1862 -- optimization with moderate inlining across modules.
1865 -- Direct control of the level of "Inline" pragmas
1866 -- optimization with full inlining across modules.
1868 -- FULL Front end inlining. The front end inlining activated
1869 -- by this switch is generally more extensive, and quite
1870 -- often more effective than the standard PRAGMA inlining
1871 -- mode. It will also generate additional dependencies.
1873 -- SUPPRESS Suppresses all inlining, even if other optimization
1874 -- or inlining switches are set.
1876 S_GCC_InlineX
: aliased constant S
:= "/NOINLINE " &
1878 -- NODOC (see /INLINE)
1880 S_GCC_Intsrc
: aliased constant S
:= "/INTERSPERSE_SOURCE " &
1883 -- /NO_INTERSPERSE_SOURCE (D)
1884 -- /INTERSPERSE_SOURCE
1886 -- Causes output from /XDEBUG or /EXPAND_SOURCE to be interspersed with
1887 -- lines from the original source file, output as comment lines with the
1888 -- associated line number.
1890 S_GCC_Just
: aliased constant S
:= "/JUSTIFY_MESSAGES=#" &
1893 -- /NO_JUSTIFY_MESSAGES (D)
1894 -- /JUSTIFY_MESSAGES=nnn
1896 -- Causes error messages to be reformatted so that a message and all its
1897 -- continuation lines count as one warning or error in the statistics on
1898 -- total errors, and the message is broken down into lines (justified) so
1899 -- that no line is longer than nnn characters. The default message
1900 -- behavior (each message counted separately and not reformatted to fit
1901 -- a particular line length) can be obtained using /NO_JUSTIFY_MESSAGES.
1903 S_GCC_JustX
: aliased constant S
:= "/NO_JUSTIFY_MESSAGES " &
1906 -- NODOC (see /JUSTIFY_MESSAGES)
1908 S_GCC_Length
: aliased constant S
:= "/MAX_LINE_LENGTH=#" &
1910 -- /MAX_LINE_LENGTH=nnn
1912 -- Set maximum line length.
1913 -- The length of lines must not exceed the given value nnn.
1915 S_GCC_List
: aliased constant S
:= "/LIST " &
1920 -- Cause a full listing of the file to be generated. In the case where
1921 -- a body is compiled, the corresponding spec is also listed, along
1922 -- with any subunits.
1924 S_GCC_Machine
: aliased constant S
:= "/MACHINE_CODE_LISTING " &
1926 -- /NOMACHINE_CODE_LISTING (D)
1927 -- /MACHINE_CODE_LISTING
1929 -- Cause a full machine code listing of the file to be generated to
1930 -- <filename>.lis. Interspersed source is included if the /DEBUG
1931 -- qualifier is also present.
1933 S_GCC_Mapping
: aliased constant S
:= "/MAPPING_FILE=<" &
1935 -- /MAPPING_FILE=file_name
1937 -- Use mapping file file_name
1939 -- A mapping file is a way to communicate to the compiler two mappings:
1940 -- from unit names to file names (without any directory information) and
1941 -- from file names to path names (with full directory information).
1942 -- These mappings are used by the compiler to short-circuit the path
1945 -- The use of mapping files is not required for correct operation of the
1946 -- compiler, but mapping files can improve efficiency, particularly when
1947 -- sources are read over a slow network connection. In normal operation,
1948 -- you need not be concerned with the format or use of mapping files,
1949 -- and /MAPPING_FILE is not a qualifier that you would use explicitly.
1950 -- It is intended only for use by automatic tools such as GNAT MAKE
1951 -- running under the project file facility. The description here of the
1952 -- format of mapping files is provided for completeness and for possible
1953 -- use by other tools.
1955 -- A mapping file is a sequence of sets of three lines. In each set, the
1956 -- first line is the unit name, in lower case, with "%s" appended for
1957 -- specifications and "%b" appended for bodies; the second line is the
1958 -- file name; and the third line is the path name.
1964 -- /gnat/project1/sources/main.2_ada
1966 -- When qualifier ?MAPPING_FILE is specified, the compiler will create in
1967 -- memory the two mappings from the specified file. If there is any
1968 -- problem (non existent file, truncated file or duplicate entries),
1969 -- no mapping will be created.
1971 -- Several /MAPPING_FILE qualifiers may be specified; however, only the
1972 -- last one on the command line will be taken into account.
1974 -- When using a project file, GNAT MAKE creates a temporary mapping file
1975 -- and communicates it to the compiler using this switch.
1977 S_GCC_MaxI
: aliased constant S
:= "/MAX_INSTANTIATIONS=#" &
1980 -- /MAX_INSTANTIATIONS=nnn
1982 -- Specify the maximum number of instantiations permitted. The default
1983 -- value is 8000, which is probably enough for all programs except those
1984 -- containing some kind of runaway unintended instantiation loop.
1986 S_GCC_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
1993 -- /MESSAGES_PROJECT_FILE[=messages-option]
1995 -- Specifies the "verbosity" of the parsing of project files.
1996 -- messages-option may be one of the following:
1998 -- DEFAULT (D) No messages are output if there is no error or warning.
2000 -- MEDIUM A small number of messages are output.
2002 -- HIGH A great number of messages are output, most of them not
2003 -- being useful for the user.
2005 S_GCC_Multi
: aliased constant S
:= "/MULTI_UNIT_INDEX=#" &
2007 -- /MULTI_UNIT_INDEX=nnn
2009 -- Specify the index of the unit to compile in a multi-unit source file.
2011 S_GCC_Nesting
: aliased constant S
:= "/MAX_NESTING=#" &
2015 -- Set maximum level of nesting of constructs (including subprograms,
2016 -- loops, blocks, packages, and conditionals).
2017 -- The level of nesting must not exceed the given value nnn.
2018 -- A value of zero disable this style check (not enabled by default).
2020 S_GCC_Noadc
: aliased constant S
:= "/NO_GNAT_ADC " &
2024 -- Cause the compiler to ignore any configuration pragmas file GNAT.ADC
2025 -- in the default directory. Implied by qualifier /PROJECT_FILE.
2026 -- Often used in conjunction with qualifier /CONFIGURATION_PRAGMAS_FILE.
2028 S_GCC_Noload
: aliased constant S
:= "/NOLOAD " &
2032 -- Cause the compiler to operate in semantic check mode with full
2033 -- checking for all illegalities specified in the reference manual, but
2034 -- without generation of any source code (no object or ALI file
2037 -- Since dependent files must be accessed, you must follow the GNAT
2038 -- semantic restrictions on file structuring to operate in this mode:
2040 -- o The needed source files must be accessible.
2041 -- o Each file must contain only one compilation unit.
2042 -- o The file name and unit name must match.
2044 -- The output consists of error messages as appropriate. No object file
2045 -- or ALI file is generated. The checking corresponds exactly to the
2046 -- notion of legality in the Ada reference manual.
2048 -- Any unit can be compiled in semantics-checking-only mode, including
2049 -- units that would not normally be compiled (generic library units,
2050 -- subunits, and specifications where a separate body is present).
2052 S_GCC_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
2056 -- Do not look in the default directory for source files of the runtime.
2058 S_GCC_Nostlib
: aliased constant S
:= "/NOSTD_LIBRARIES " &
2062 -- Do not look for library files in the system default directory.
2064 S_GCC_NoWarnP
: aliased constant S
:= "/NOWARNING_PRAGMAS " &
2066 -- /NOWARNING_PRAGMAS
2068 -- Causes all Warnings pragmas to be ignored. Useful to check if the
2069 -- program has obsolete warnings pragmas that are hiding problems.
2071 S_GCC_Opt
: aliased constant S
:= "/OPTIMIZE=" &
2073 "-O2,!-O0,!-O1,!-O3 " &
2075 "-O0,!-O1,!-O2,!-O3 " &
2077 "-O1,!-O0,!-O2,!-O3 " &
2079 "-Os,!-O0,!-O1,!-O2,!-O3 " &
2081 "-O1,!-O0,!-O2,!-O3 " &
2084 "NO_STRICT_ALIASING " &
2085 "-fno-strict-aliasing " &
2087 "-O3,!-O0,!-O1,!-O2";
2089 -- /OPTIMIZE[=(keyword[,...])]
2091 -- Selects the level of optimization for your program. The supported
2092 -- keywords are as follows:
2094 -- ALL (D) Perform most optimizations, including those that
2095 -- may be expensive.
2097 -- NONE Do not do any optimizations. Same as /NOOPTIMIZE.
2099 -- SOME Perform some optimizations, but omit ones that
2100 -- are costly in compilation time.
2102 -- SPACE Optimize space usage
2104 -- DEVELOPMENT Same as SOME.
2106 -- INLINING Full optimization, and also attempt automatic inlining
2107 -- of small subprograms within a unit
2109 -- UNROLL_LOOPS Try to unroll loops. This keyword may be specified
2110 -- with any keyword above other than NONE. Loop
2111 -- unrolling usually, but not always, improves the
2112 -- performance of programs.
2114 -- NO_STRICT_ALIASING
2115 -- Suppress aliasing analysis. When optimization is
2116 -- enabled (ALL or SOME above), the compiler assumes
2117 -- that pointers do in fact point to legitimate values
2118 -- of the pointer type (allocated from the proper pool).
2119 -- If this assumption is violated, e.g. by the use of
2120 -- unchecked conversion, then it may be necessary to
2121 -- suppress this assumption using this keyword (which
2122 -- may be specified only in conjunction with any
2123 -- keyword above, other than NONE).
2125 S_GCC_OptX
: aliased constant S
:= "/NOOPTIMIZE " &
2126 "-O0,!-O1,!-O2,!-O3";
2127 -- NODOC (see /OPTIMIZE)
2129 S_GCC_Output
: aliased constant S
:= "/OUTPUT_FILE=<" &
2131 -- /OUTPUT_FILE=fname
2133 -- This has the same effect as /LIST except that the output is written
2134 -- to a file instead of to standard output. If the given fname
2135 -- does not start with a period, then it is the full name of the file
2136 -- to be written. If fname starts with a period, the name of the file
2137 -- is the concatenation of to the name of the file being compiled with
2138 -- fname where the period is replace by an underline. For example, if
2139 -- file xyz.adb is compiled with -gnatl=.lst, then the output is written
2140 -- to file xyz.adb_lst.
2142 S_GCC_Overflo
: aliased constant S
:= "/OVERFLOW_CHECKS=#" &
2144 -- /OVERFLOW_CHECKS=nn
2146 -- Set default overflow cheecking mode. If nn is a single digit, in the
2147 -- range 0-3, it sets the overflow checking mode for all expressions,
2148 -- including those outside and within assertions. The meaning of nnn is:
2150 -- 1 all intermediate computations done using base type (STRICT)
2151 -- 2 minimize intermediate overflows (MINIMIZED)
2152 -- 3 eliminate intermediate overflows (ELIMINATED)
2154 -- Otherwise nn can be two digits, both 1-3, and in this case the first
2155 -- digit sets the mode (using the above code) for expressions outside an
2156 -- assertion, and the second digit sets the mode for expressions within
2159 S_GCC_PValid
: aliased constant S
:= "/PARAMETER_VALIDITY_CHECK " &
2161 -- /NOPARAMETER_VALIDITY_CHECK (D)
2162 -- /PARAMETER_VALIDITY_CHECK
2164 -- Check validity of subprogram parameters.
2166 S_GCC_Pointer
: aliased constant S
:= "/POINTER_SIZE=" &
2175 -- /POINTER_SIZE=64 (D)
2176 -- /POINTER_SIZE[=(keyword[,...])]
2178 -- Change how pointers and descriptors are allocated. The following
2179 -- keywords are supported:
2181 -- 64 (D) Allocate heap pointers in 64bit space except as
2182 -- constrained by a 32bit size clause or by
2183 -- Convention_C and generate 64bit descriptors for
2184 -- Descriptor mechanisms for calling imported
2185 -- subprograms and accept both 64bit and 32bit
2186 -- descriptors for calls to exported subprograms.
2188 -- LONG Equivalent to option 64.
2190 -- 32 Allocate all heap pointers in 32bit space and
2191 -- generate 32bit descriptors for Descriptor
2192 -- mechanisms for calling imported subprograms.
2194 -- SHORT Equivalent to option 32.
2196 S_GCC_Polling
: aliased constant S
:= "/POLLING " &
2201 -- Enable polling. See the description of pragma Polling in the GNAT
2202 -- Reference Manual for full details.
2204 S_GCC_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
2206 -- /PROJECT_FILE=filename
2208 -- Specifies the main project file to be used. The project files rooted
2209 -- at the main project file will be parsed before the invocation of the
2210 -- compiler. The source and object directories to be searched will be
2211 -- communicated to the compiler through logical names
2212 -- ADA_PRJ_INCLUDE_FILE and ADA_PRJ_OBJECTS_FILE.
2214 S_GCC_Psta
: aliased constant S
:= "/PRINT_STANDARD " &
2218 -- cause the compiler to output a representation of package Standard
2219 -- in a form very close to standard Ada. It is not quite possible to
2220 -- do this and remain entirely Standard (since new numeric base types
2221 -- cannot be created in standard Ada), but the output is easily
2222 -- readable to any Ada programmer, and is useful to determine the
2223 -- characteristics of target dependent types in package Standard.
2225 S_GCC_Reswarn
: aliased constant S
:= "/TREAT_RESTRICTIONS_AS_WARNINGS " &
2228 -- /NO_TREAT_RESTRICTIONS_AS_WARNINGS (D)
2229 -- /TREAT_RESTRICTIONS_AS_WARNINGS
2231 -- Causes all restrictions to be treated as warnings (pragma Restriction
2232 -- treated as Restriction_Warnings, pragma Profile as Profile_Warnings,
2233 -- and pragma Ravenscar sets restriction warnings instead of restrictions)
2235 S_GCC_Report
: aliased constant S
:= "/REPORT_ERRORS=" &
2246 -- /NOREPORT_ERRORS (D)
2247 -- /REPORT_ERRORS[=(keyword[,...])]
2249 -- Change the way errors are reported. The following keywords are
2252 -- VERBOSE (D) Verbose mode. Full error output with source lines
2255 -- BRIEF Generate the brief format error messages to
2256 -- SYS$OUTPUT as well as the verbose format message or
2259 -- FULL Normally, the compiler suppresses error messages that
2260 -- are likely to be redundant. This keyword causes all
2261 -- error messages to be generated. One particular effect
2262 -- is for the case of references to undefined variables.
2263 -- If a given variable is referenced several times, the
2264 -- normal format of messages produces one error. With
2265 -- FULL, each undefined reference produces a separate
2268 -- IMMEDIATE Normally, the compiler saves up error messages and
2269 -- generates them at the end of compilation in proper
2270 -- sequence. This keyword causes error messages to be
2271 -- generated as soon as they are detected. The use of
2272 -- IMMEDIATE usually causes error messages to be
2273 -- generated out of sequence. Use it when the compiler
2274 -- blows up due to an internal error. In this case, the
2275 -- error messages may be lost. Sometimes blowups are
2276 -- the result of mishandled error messages, so you may
2277 -- want to run with this keyword to determine whether
2278 -- any error messages were generated.
2280 -- DEFAULT Turn off VERBOSE and BRIEF. Same as /NOREPORT_ERRORS.
2282 S_GCC_ReportX
: aliased constant S
:= "/NOREPORT_ERRORS " &
2284 -- NODOC (see /REPORT_ERRORS)
2286 S_GCC_Repinfo
: aliased constant S
:= "/REPRESENTATION_INFO=" &
2303 -- /NOREPRESENTATION_INFO (D)
2304 -- /REPRESENTATION_INFO[=(keyword[,...])]
2306 -- This qualifier controls output from the compiler of a listing showing
2307 -- representation information for declared types and objects.
2309 -- ARRAYS (D) Size and alignment information is listed for
2310 -- declared array and record types.
2312 -- ARRAYS_FILE Similar to ARRAYS, but the output is to a file
2313 -- with the name 'file_rep' where 'file' is the name
2314 -- of the corresponding source file.
2316 -- NONE no information is output (equivalent to omitting
2317 -- the /REPRESENTATION_INFO qualifiers).
2319 -- OBJECTS Size and alignment information is listed for all
2320 -- declared types and objects.
2322 -- OBJECTS_FILE Similar to OBJECTS, but the output is to a file
2323 -- with the name 'file_rep' where 'file' is the name
2324 -- of the corresponding source file.
2326 -- SYMBOLIC Symbolic expression information for values that
2327 -- are computed at run time for variant records.
2329 -- SYMBOLIC_FILE Similar to SYMBOLIC, but the output is to a file
2330 -- with the name 'file_rep' where 'file' is the name
2331 -- of the corresponding source file.
2333 -- DEFAULT Equivalent to ARRAYS.
2335 S_GCC_RepinfX
: aliased constant S
:= "/NOREPRESENTATION_INFO " &
2337 -- NODOC (see /REPRESENTATION_INFO)
2339 S_GCC_RTS
: aliased constant S
:= "/RUNTIME_SYSTEM=|" &
2341 -- /RUNTIME_SYSTEM=xxx
2343 -- Build against an alternate runtime system named xxx or RTS-xxx.
2345 S_GCC_SCO
: aliased constant S
:= "/SCO_OUTPUT " &
2347 -- /NOSCO_OUTPUT (D)
2350 -- Controls the output of SCO (Source Coverage Obligation) information
2351 -- in the generated ALI file. This information is used by advanced source
2352 -- coverage tools. For a full description of the SCO format, see unit
2353 -- SCOs in the compiler sources (sco.ads/sco.adb).
2355 S_GCC_Search
: aliased constant S
:= "/SEARCH=*" &
2357 -- /SEARCH=(directory[,...])
2359 -- When looking for source files also look in directories specified.
2361 S_GCC_Src_Info
: aliased constant S
:= "/SRC_INFO=<" &
2363 -- /SRC_INFO=source-info-file
2365 -- Specify a source info file to be read or written by the Project
2366 -- Manager when project files are used.
2368 S_GCC_Style
: aliased constant S
:= "/STYLE_CHECKS=" &
2397 "NOARRAY_INDEXES " &
2403 "BOOLEAN_OPERATORS " &
2405 "NOBOOLEAN_OPERATORS " &
2415 "DOS_LINE_ENDINGS " &
2417 "NODOS_LINE_ENDINGS " &
2455 "STANDARD_CASING " &
2457 "NOSTANDARD_CASING " &
2459 "ORDERED_SUBPROGRAMS " &
2461 "NOORDERED_SUBPROGRAMS " &
2463 "OVERRIDING_INDICATORS " &
2465 "NOOVERRIDING_INDICATORS " &
2479 "STATEMENTS_AFTER_THEN_ELSE " &
2481 "NOSTATEMENTS_AFTER_THEN_ELSE " &
2487 "UNNECESSARY_BLANK_LINES " &
2489 "NOUNNECESSARY_BLANK_LINES " &
2495 -- /NOSTYLE_CHECKS (D)
2496 -- /STYLE_CHECKS[=(keyword,[...])]
2498 -- Normally, GNAT permits any code layout consistent with the reference
2499 -- manual requirements. This qualifier imposes style checking on the
2500 -- input source code. The following keywords are supported:
2502 -- ALL_BUILTIN (D) Equivalent to the following list of options:
2503 -- 3, ATTRIBUTE, BLANKS, COMMENTS2, END, VTABS,
2504 -- HTABS, IF_THEN, KEYWORD, LAYOUT, LINE_LENGTH,
2505 -- PRAGMA, REFERENCES, SPECS, TOKEN.
2507 -- 1 .. 9 Specify indentation level from 1 to 9.
2508 -- The general style of required indentation is as
2509 -- specified by the examples in the Ada Reference
2510 -- Manual. Full line comments must be aligned with
2511 -- the -- starting on a column that is a multiple
2512 -- of the alignment level.
2514 -- ATTRIBUTE Check attribute casing.
2515 -- Attribute names, including the case of keywords
2516 -- such as digits used as attributes names,
2517 -- must be written in mixed case, that is,
2518 -- the initial letter and any letter following an
2519 -- underscore must be uppercase.
2520 -- All other letters must be lowercase.
2522 -- ARRAY_INDEXES Check indexes of array attributes.
2523 -- For array attributes First, Last, Range,
2524 -- or Length, the index number must be omitted
2525 -- for one-dimensional arrays and is required
2526 -- for multi-dimensional arrays.
2528 -- BLANKS Blanks not allowed at statement end.
2529 -- Trailing blanks are not allowed at the end of
2530 -- statements. The purpose of this rule, together
2531 -- with option HTABS (no horizontal tabs), is to
2532 -- enforce a canonical format for the use of
2533 -- blanks to separate source tokens.
2535 -- COMMENTS2 Check comments.
2536 -- COMMENTS Comments must meet the following set of rules:
2538 -- * The "--" that starts the column must either
2539 -- start in column one, or else at least one
2540 -- blank must precede this sequence.
2542 -- * Comments that follow other tokens on a line
2543 -- must have at least one blank following the
2544 -- "--" at the start of the comment.
2546 -- * Full line comments must have two blanks
2547 -- following the "--" that starts the comment,
2548 -- with the following exceptions.
2550 -- * A line consisting only of the "--"
2551 -- characters, possibly preceded by blanks is
2554 -- * A comment starting with "--x" where x is
2555 -- a special character is permitted. This
2556 -- allows proper processing of the output
2557 -- generated by specialized tools including
2558 -- gnatprep (where --! is used) and the SPARK
2559 -- annotation language (where --# is used).
2560 -- For the purposes of this rule, a special
2561 -- character is defined as being in one of the
2562 -- ASCII ranges 16#21#..16#2F# or
2565 -- * A line consisting entirely of minus signs,
2566 -- possibly preceded by blanks, is permitted.
2567 -- This allows the construction of box
2568 -- comments where lines of minus signs are
2569 -- used to form the top and bottom of the box.
2571 -- * If a comment starts and ends with "--" is
2572 -- permitted as long as at least one blank
2573 -- follows the initial "--". Together with
2574 -- the preceding rule, this allows the
2575 -- construction of box comments, as shown in
2576 -- the following example:
2578 -- ---------------------------
2579 -- -- This is a box comment --
2580 -- ---------------------------
2582 -- COMMENTS1 Check comments (single space).
2583 -- Like COMMENTS2, but the -- of a comment only
2584 -- requires one or more spaces following, instead
2585 -- of two or more spaces.
2587 -- DOS_LINE_ENDINGS Check that no DOS line terminators are present
2588 -- All lines must be terminated by a single
2589 -- ASCII.LF character. In particular the DOS line
2590 -- terminator sequence CR / LF is not allowed).
2592 -- END Check end/exit labels.
2593 -- Optional labels on end statements ending
2594 -- subprograms and on exit statements exiting
2595 -- named loops, are required to be present.
2597 -- GNAT Enforces a set of style conventions that
2598 -- match the style used in the GNAT source code.
2599 -- This maybe useful when developing code that
2600 -- is eventually intended to be incorporated into
2601 -- GNAT. For further details, see GNAT sources.
2603 -- HTABS No horizontal tabs.
2604 -- Horizontal tab characters are not permitted in
2605 -- the source text. Together with the BLANKS
2606 -- (no blanks at end of line) option, this
2607 -- enforces a canonical form for the use of blanks
2608 -- to separate source tokens.
2610 -- IF_THEN Check if-then layout.
2611 -- The keyword then must appear either on the
2612 -- same line as the corresponding if, or on a line
2613 -- on its own, lined up under the if with at least
2614 -- one non-blank line in between containing all or
2615 -- part of the condition to be tested.
2617 -- KEYWORD Check keyword casing.
2618 -- All keywords must be in lower case (with the
2619 -- exception of keywords such as digits used as
2620 -- attribute names to which this check does not
2623 -- LAYOUT Check layout.
2624 -- Layout of statement and declaration constructs
2625 -- must follow the recommendations in the Ada
2626 -- Reference Manual, as indicated by the form of
2627 -- the syntax rules. For example an else keyword
2628 -- must be lined up with the corresponding if
2631 -- There are two respects in which the style rule
2632 -- enforced by this check option are more liberal
2633 -- than those in the Ada Reference Manual.
2634 -- First in the case of record declarations,
2635 -- it is permissible to put the record keyword on
2636 -- the same line as the type keyword, and then
2637 -- the end in end record must line up under type.
2638 -- For example, either of the following two
2639 -- layouts is acceptable:
2652 -- Second, in the case of a block statement,
2653 -- a permitted alternative is to put the block
2654 -- label on the same line as the declare or begin
2655 -- keyword, and then line the end keyword up under
2656 -- the block label. For example both the following
2662 -- A : Integer := 3;
2669 -- A : Integer := 3;
2674 -- The same alternative format is allowed for
2675 -- loops. For example, both of the following are
2680 -- Clear : while J < 10 loop
2685 -- while J < 10 loop
2691 -- LINE_LENGTH Check maximum line length.
2692 -- The length of source lines must not exceed 79
2693 -- characters, including any trailing blanks
2694 -- The value of 79 allows convenient display on
2695 -- an 80 character wide device or window, allowing
2696 -- for possible special treatment of 80 character
2699 -- NONE Clear any previously set style checks.
2701 -- ORDERED_SUBPROGRAMS Check order of subprogram bodies.
2702 -- All subprogram bodies in a given scope (e.g.
2703 -- a package body) must be in alphabetical order.
2704 -- The ordering rule uses normal Ada rules for
2705 -- comparing strings, ignoring casing of letters,
2706 -- except that if there is a trailing numeric
2707 -- suffix, then the value of this suffix is used
2708 -- in the ordering (e.g. Junk2 comes before
2711 -- OVERRIDING_INDICATORS Check that overriding subprograms are
2712 -- explicitly marked as such. The declaration of
2713 -- a primitive operation of a type extension that
2714 -- overrides an inherited operation must carry
2715 -- an overriding indicator.
2717 -- PRAGMA Check pragma casing.
2718 -- Pragma names must be written in mixed case,
2719 -- that is, the initial letter and any letter
2720 -- following an underscore must be uppercase.
2721 -- All other letters must be lowercase.
2723 -- REFERENCES Check references.
2724 -- All identifier references must be cased in the
2725 -- same way as the corresponding declaration.
2726 -- No specific casing style is imposed on
2727 -- identifiers. The only requirement is for
2728 -- consistency of references with declarations.
2730 -- SPECS Check separate specs.
2731 -- Separate declarations ("specs") are required
2732 -- for subprograms (a body is not allowed to serve
2733 -- as its own declaration). The only exception is
2734 -- that parameterless library level procedures are
2735 -- not required to have a separate declaration.
2736 -- This exception covers the most frequent form of
2737 -- main program procedures.
2739 -- STANDARD_CASING Check casing of entities in Standard.
2740 -- Any identifier from Standard must be cased to
2741 -- match the presentation in the Ada Reference
2742 -- Manual (for example, Integer and ASCII.NUL).
2744 -- TOKEN Check token spacing.
2745 -- The following token spacing rules are enforced:
2747 -- * The keywords abs and not must be followed
2750 -- * The token => must be surrounded by spaces.
2752 -- * The token <> must be preceded by a space or
2753 -- a left parenthesis.
2755 -- * Binary operators other than ** must be
2756 -- surrounded by spaces. There is no
2757 -- restriction on the layout of the ** binary
2760 -- * Colon must be surrounded by spaces.
2762 -- * Colon-equal (assignment) must be surrounded
2765 -- * Comma must be the first non-blank character
2766 -- on the line, or be immediately preceded by
2767 -- a non-blank character, and must be followed
2770 -- * If the token preceding a left paren ends
2771 -- with a letter or digit, then a space must
2772 -- separate the two tokens.
2774 -- * A right parenthesis must either be the
2775 -- first non-blank character on a line, or it
2776 -- must be preceded by a non-blank character.
2778 -- * A semicolon must not be preceded by
2779 -- a space, and must not be followed by
2780 -- a non-blank character.
2782 -- * A unary plus or minus may not be followed
2785 -- * A vertical bar must be surrounded by
2788 -- In the above rules, appearing in column one is
2789 -- always permitted, that is, counts as meeting
2790 -- either a requirement for a required preceding
2791 -- space, or as meeting a requirement for no
2794 -- Appearing at the end of a line is also always
2795 -- permitted, that is, counts as meeting either
2796 -- a requirement for a following space,
2797 -- or as meeting a requirement for no following
2800 -- UNNECESSARY_BLANK_LINES
2801 -- Check for unnecessary blank lines.
2802 -- A blank line is considered unnecessary if it
2803 -- appears at the end of the file, or if more
2804 -- than one blank line occurs in sequence.
2806 -- VTABS No form feeds or vertical tabs.
2807 -- Form feeds or vertical tab characters are not
2808 -- permitted in the source text.
2810 -- XTRA_PARENS Check for the use of an unnecessary extra
2811 -- level of parentheses (C - style) around
2812 -- conditions in if statements, while statements
2813 -- and exit statements.
2815 S_GCC_StyleX
: aliased constant S
:= "/NOSTYLE_CHECKS " &
2817 -- NODOC (see /STYLE_CHECKS)
2819 S_GCC_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
2823 -- The actual directories (object, exec, library, ...) are subdirectories
2824 -- of the directory specified in the project file. If the subdirectory
2825 -- does not exist, it is created automatically.
2827 S_GCC_Symbol
: aliased constant S
:= "/SYMBOL_PREPROCESSING=" & '"' &
2829 -- /SYMBOL_PREPROCESSING="symbol=value"
2831 -- Define or redefine a preprocessing symbol, associated with value.
2832 -- If "=value" is not specified, then the value of the symbol is True.
2833 -- A symbol is an identifier, following normal Ada (case-insensitive)
2834 -- rules for its syntax, and value is any sequence (including an empty
2835 -- sequence) of characters from the set (letters, digits, period,
2836 -- underline). Ada reserved words may be used as symbols, with the
2837 -- exceptions of "if", "else", "elsif", "end", "and", "or" and "then".
2839 -- A symbol declared with this qualifier on the command line replaces
2840 -- a symbol with the same name either in a definition file or specified
2841 -- with a switch -D in the preprocessor data file.
2843 -- This qualifier is similar to qualifier /ASSOCIATE of
2844 -- GNAT PREPROCESSING.
2846 S_GCC_Syntax
: aliased constant S
:= "/SYNTAX_ONLY " &
2848 -- /NOSYNTAX_ONLY (D)
2851 -- Run GNAT in syntax checking only mode. You can check a series of
2852 -- files in a single command, and can use wild cards to specify such a
2855 -- You may use other qualifiers in conjunction with this qualifier. In
2856 -- particular, /LIST and /REPORT_ERRORS=VERBOSE are useful to control the
2857 -- format of any generated error messages.
2859 -- The output is simply the error messages, if any. No object file or ALI
2860 -- file is generated by a syntax-only compilation. Also, no units other
2861 -- than the one specified are accessed. For example, if a unit "X" with's
2862 -- a unit "Y", compiling unit "X" in syntax check only mode does not
2863 -- access the source file containing unit "Y".
2865 -- Normally, GNAT allows only a single unit in a source file. However,
2866 -- this restriction does not apply in syntax-check-only mode, and it is
2867 -- possible to check a file containing multiple compilation units
2868 -- concatenated together. This is primarily used by the GNAT CHOP
2871 S_GCC_Table
: aliased constant S
:= "/TABLE_MULTIPLIER=#" &
2873 -- /TABLE_MULTIPLIER=nnn
2875 -- All compiler tables start at nnn times usual starting size.
2877 S_GCC_Target
: aliased constant S
:= "/TARGET_DEPENDENT_INFO " &
2879 -- /NOTARGET_DEPENDENT_INFO (D)
2880 -- /TARGET_DEPENDENT_INFO
2882 -- Generate target dependent information.
2884 S_GCC_Trace
: aliased constant S
:= "/TRACE_UNITS " &
2889 -- This switch that does for the frontend what /VERBOSE does for the
2890 -- backend. The system prints the name of each unit, either a compilation
2891 -- unit or nested unit, as it is being analyzed.
2893 S_GCC_Tree
: aliased constant S
:= "/TREE_OUTPUT " &
2898 -- Cause GNAT to write the internal tree for a unit to a file (with the
2899 -- filetype ATB for a body or ATS for a spec). This is not normally
2900 -- required, but is used by separate analysis tools. Typically these
2901 -- tools do the necessary compilations automatically, so you should never
2902 -- have to specify this switch in normal operation.
2904 S_GCC_Trys
: aliased constant S
:= "/TRY_SEMANTICS " &
2909 -- In normal operation mode the compiler first parses the program and
2910 -- determines if there are any syntax errors. If there are, appropriate
2911 -- error messages are generated and compilation is immediately
2912 -- terminated. This qualifier tells GNAT to continue with semantic
2913 -- analysis even if syntax errors have been found. This may enable the
2914 -- detection of more errors in a single run. On the other hand, the
2915 -- semantic analyzer is more likely to encounter some internal fatal
2916 -- error when given a syntactically invalid tree.
2918 S_GCC_USL
: aliased constant S
:= "/UNCHECKED_SHARED_LIB_IMPORTS " &
2919 "--unchecked-shared-lib-imports";
2920 -- /NOUNCHECKED_SHARED_LIB_IMPORTS (D)
2921 -- /UNCHECKED_SHARED_LIB_IMPORTS
2923 -- Allow shared library projects to import static library projects
2925 S_GCC_Units
: aliased constant S
:= "/UNITS_LIST " &
2927 -- /NOUNITS_LIST (D)
2930 -- Print a list of units required by this compilation on SYS$OUTPUT. The
2931 -- listing includes all units on which the unit being compiled depends
2932 -- either directly or indirectly.
2934 S_GCC_Unique
: aliased constant S
:= "/UNIQUE_ERROR_TAG " &
2936 -- /NOUNIQUE_ERROR_TAG (D)
2937 -- /UNIQUE_ERROR_TAG
2939 -- Tag compiler error messages with the string "error: ".
2941 S_GCC_Upcase
: aliased constant S
:= "/UPPERCASE_EXTERNALS " &
2943 -- /NOUPPERCASE_EXTERNALS (D)
2944 -- /UPPERCASE_EXTERNALS
2946 -- Fold default and explicit external names in pragmas Import and Export
2947 -- to uppercase for compatibility with the default behavior of DEC C.
2949 S_GCC_Valid
: aliased constant S
:= "/VALIDITY_CHECKING=" &
2998 -- /VALIDITY_CHECKING[=(keyword,[...])]
3000 -- Control level of validity checking.
3002 -- DEFAULT (D) In this mode checks are made to prevent
3003 -- erroneous behavior in accordance with the RM.
3004 -- Notably extra checks may be needed for case
3005 -- statements and subscripted array assignments.
3007 -- NONE No special checks for invalid values are
3008 -- performed. This means that references to
3009 -- uninitialized variables can cause erroneous
3010 -- behavior from constructs like case statements
3011 -- and subscripted array assignments. In this
3012 -- mode, invalid values can lead to erroneous
3015 -- FULL Every assignment is checked for validity, so
3016 -- that it is impossible to assign invalid values.
3017 -- The RM specifically allows such assignments,
3018 -- but in this mode, invalid values can never be
3019 -- assigned, and an attempt to perform such an
3020 -- assignment immediately raises Constraint_Error.
3021 -- This behavior is allowed (but not required) by
3022 -- the RM. This mode is intended as a debugging aid,
3023 -- and may be useful in helping to track down
3024 -- uninitialized variables. It may be useful to
3025 -- use this in conjunction with the Normalize_Scalars
3026 -- pragma which attempts to initialize with invalid
3027 -- values where possible.
3029 S_GCC_Verbose
: aliased constant S
:= "/VERBOSE " &
3034 -- Show commands generated by the GCC driver. Normally used only for
3035 -- debugging purposes or if you need to be sure what version of the
3036 -- compiler you are executing.
3038 S_GCC_Verb_Asm
: aliased constant S
:= "/VERBOSE_ASM " &
3039 "-S,-verbose_asm,!-c";
3043 -- Use to cause the assembler source file to be generated, using S as the
3044 -- filetype, instead of the object file. This may be useful if you need
3045 -- to examine the generated assembly code.
3047 S_GCC_Warn
: aliased constant S
:= "/WARNINGS=" &
3049 "!-gnatws,!-gnatwe " &
3062 "FAILING_ASSERTIONS " &
3064 "NO_FAILING_ASSERTIONS " &
3066 "BAD_FIXED_VALUES " &
3068 "NO_BAD_FIXED_VALUES " &
3070 "BIASED_REPRESENTATION " &
3072 "NO_BIASED_REPRESENTATION " &
3078 "MISSING_COMPONENT_CLAUSES " &
3080 "NOMISSING_COMPONENT_CLAUSES " &
3082 "IMPLICIT_DEREFERENCE " &
3084 "NO_IMPLICIT_DEREFERENCE " &
3088 "UNREFERENCED_FORMALS " &
3090 "NOUNREFERENCED_FORMALS " &
3092 "UNRECOGNIZED_PRAGMAS " &
3094 "NOUNRECOGNIZED_PRAGMAS " &
3106 "NOIMPLEMENTATION " &
3112 "CONSTANT_VARIABLES " &
3114 "NOCONSTANT_VARIABLES " &
3116 "STANDARD_REDEFINITION " &
3118 "NOSTANDARD_REDEFINITION " &
3126 "NOMODIFIED_UNREF " &
3128 "SUSPICIOUS_MODULUS " &
3130 "NOSUSPICIOUS_MODULUS " &
3138 "OUT_PARAM_UNREF " &
3140 "NOOUT_PARAM_UNREF " &
3142 "INEFFECTIVE_INLINE " &
3144 "NOINEFFECTIVE_INLINE " &
3148 "PARAMETER_ORDER " &
3150 "NOPARAMETER_ORDER " &
3152 "NOMISSING_PARENS " &
3160 "NOOBJECT_RENAMES " &
3164 "OVERRIDING_SIZE " &
3166 "NOOVERRIDING_SIZE " &
3173 "-Wuninitialized " &
3178 "UNORDERED_ENUMERATIONS " &
3180 "NOUNORDERED_ENUMERATIONS " &
3182 "VARIABLES_UNINITIALIZED " &
3184 "NOVARIABLES_UNINITIALIZED " &
3186 "REVERSE_BIT_ORDER " &
3188 "NOREVERSE_BIT_ORDER " &
3190 "LOWBOUND_ASSUMED " &
3192 "NOLOWBOUND_ASSUMED " &
3194 "WARNINGS_OFF_PRAGMAS " &
3196 "NO_WARNINGS_OFF_PRAGMAS " &
3198 "IMPORT_EXPORT_PRAGMAS " &
3200 "NOIMPORT_EXPORT_PRAGMAS " &
3202 "LOCAL_RAISE_HANDLING " &
3204 "NOLOCAL_RAISE_HANDLING " &
3206 "ADA_2005_COMPATIBILITY " &
3208 "NOADA_2005_COMPATIBILITY " &
3210 "UNCHECKED_CONVERSIONS " &
3212 "NOUNCHECKED_CONVERSIONS " &
3216 -- Suppress the output of all warning messages from the GNAT front end.
3217 -- Note that it does not suppress warnings from the gcc back end.
3219 -- /WARNINGS[=(keyword[,...])]
3221 -- In addition to error messages, corresponding to illegalities as
3222 -- defined in the reference manual, the compiler detects two kinds of
3223 -- warning situations. First, the compiler considers some constructs
3224 -- suspicious and generates a warning message to alert you to a possible
3225 -- error. Second, if the compiler detects a situation that is sure to
3226 -- raise an exception at runtime, it generates a warning message.
3228 -- You may specify the following keywords to change this behavior:
3230 -- DEFAULT (D) The default behavior above.
3232 -- ALL Activate all optional warnings.
3233 -- Activates most optional warning messages,
3234 -- see remaining list in this section for
3235 -- details on optional warning messages that
3236 -- can be individually controlled.
3237 -- The warnings that are not turned on by
3238 -- this option are BIASED_ROUNDING,
3239 -- IMPLICIT_DEREFERENCE, HIDING and
3240 -- ELABORATION. All other optional Ada
3241 -- warnings are turned on.
3243 -- EVERY Activate every optional warning.
3244 -- Activates all optional warnings, including
3245 -- those listed above as exceptions for ALL.
3247 -- NOALL Suppress all optional errors.
3248 -- Suppresses all optional warning messages
3249 -- that can be activated by option ALL.
3251 -- ALL_GCC Request additional messages from the GCC
3252 -- backend. Most of these are not relevant
3255 -- CONDITIONALS Activate warnings for conditional
3256 -- Expressions used in tests that are known
3257 -- to be True or False at compile time. The
3258 -- default is that such warnings are not
3261 -- NOCONDITIONALS Suppress warnings for conditional
3262 -- expressions used in tests that are known
3263 -- to be True or False at compile time.
3265 -- IMPLICIT_DEREFERENCE Activate warnings on implicit dereferencing.
3266 -- The use of a prefix of an access type in an
3267 -- indexed component, slice, or selected component
3268 -- without an explicit .all will generate
3269 -- a warning. With this warning enabled, access
3270 -- checks occur only at points where an explicit
3271 -- .all appears in the source code (assuming no
3272 -- warnings are generated as a result of this
3273 -- option). The default is that such warnings are
3274 -- not generated. Note that /WARNINGS=ALL does not
3275 -- affect the setting of this warning option.
3277 -- NOIMPLICIT_DEREFERENCE Suppress warnings on implicit dereferencing.
3278 -- in indexed components, slices, and selected
3281 -- ELABORATION Activate warnings on missing pragma
3282 -- Elaborate_All statements. The default is
3283 -- that such warnings are not generated.
3285 -- NOELABORATION Suppress warnings on missing pragma
3286 -- Elaborate_All statements.
3288 -- ERRORS Warning messages are to be treated as errors.
3289 -- The warning string still appears, but the
3290 -- warning messages are counted as errors, and
3291 -- prevent the generation of an object file.
3293 -- HIDING Activate warnings on hiding declarations.
3294 -- A declaration is considered hiding if it is
3295 -- for a non-overloadable entity, and it declares
3296 -- an entity with the same name as some other
3297 -- entity that is directly or use-visible. The
3298 -- default is that such warnings are not
3301 -- NOHIDING Suppress warnings on hiding declarations.
3303 -- IMPLEMENTATION Activate warnings for a with of an internal
3304 -- GNAT implementation unit, defined as any unit
3305 -- from the Ada, Interfaces, GNAT, DEC or
3306 -- System hierarchies that is not documented in
3307 -- either the Ada Reference Manual or the GNAT
3308 -- Programmer's Reference Manual. Such units are
3309 -- intended only for internal implementation
3310 -- purposes and should not be with'ed by user
3311 -- programs. The default is that such warnings
3314 -- NOIMPLEMENTATION Disables warnings for a with of an internal
3315 -- GNAT implementation unit.
3317 -- INEFFECTIVE_INLINE Activate warnings on ineffective pragma Inlines
3318 -- Activates warnings for failure of front end
3319 -- inlining (activated by /INLINE=FULL) to inline
3320 -- a particular call. There are many reasons for
3321 -- not being able to inline a call, including most
3322 -- commonly that the call is too complex to
3323 -- inline. This warning can also be turned on
3324 -- using /INLINE=FULL.
3326 -- NOINEFFECTIVE_INLINE Suppress warnings on ineffective pragma Inlines
3327 -- Suppresses warnings on ineffective pragma
3328 -- Inlines. If the inlining mechanism cannot
3329 -- inline a call, it will simply ignore the
3330 -- request silently.
3332 -- MISSING_COMPONENT_CLAUSES
3333 -- Activate warnings for cases when there are
3334 -- component clauses for a record type, but not
3335 -- for every component of the record.
3337 -- NOMISSING_COMPONENT_CLAUSES
3338 -- Suppress warnings for cases when there are
3339 -- missing component clauses for a record type.
3342 -- Activate warnings for cases where parentheses
3343 -- are not used and the result is potential
3344 -- ambiguity from a reader's point of view.
3345 -- For example (not a > b) when a and b are
3346 -- modular means (not (a) > b) and very likely
3347 -- the programmer intended (not (a > b)).
3350 -- Suppress warnings for cases where parentheses
3351 -- are not used and the result is potential
3352 -- ambiguity from a reader's point of view.
3354 -- MODIFIED_UNREF Activates warnings for variables that are
3355 -- assigned (using an initialization value or with
3356 -- one or more assignment statements) but whose
3357 -- value is never read. The warning is suppressed
3358 -- for volatile variables and also for variables
3359 -- that are renamings of other variables or for
3360 -- which an address clause is given. This warning
3361 -- can also be turned on using /WARNINGS/OPTIONAL.
3363 -- NOMODIFIED_UNREF Disables warnings for variables that are
3364 -- assigned or initialized, but never read.
3366 -- NORMAL Sets normal warning mode, in which enabled
3367 -- warnings are issued and treated as warnings
3368 -- rather than errors. This is the default mode.
3369 -- It can be used to cancel the effect of an
3370 -- explicit /WARNINGS=SUPPRESS or
3371 -- /WARNINGS=ERRORS. It also cancels the effect
3372 -- of the implicit /WARNINGS=ERRORS that is
3373 -- activated by the use of /STYLE=GNAT.
3375 -- OBSOLESCENT Activates warnings for calls to subprograms
3376 -- marked with pragma Obsolescent and for use of
3377 -- features in Annex J of the Ada Reference
3378 -- Manual. In the case of Annex J, not all
3379 -- features are flagged. In particular use of the
3380 -- renamed packages (like Text_IO), use of package
3381 -- ASCII and use of the attribute 'Constrained are
3382 -- not flagged, since these are very common and
3383 -- would generate many annoying positive warnings.
3384 -- The default is that such warnings are not
3387 -- NOOBSOLESCENT Disables warnings on use of obsolescent
3390 -- OBJECT_RENAME Activate warnings for non limited objects
3391 -- renaming parameterless functions.
3393 -- NOOBJECT_RENAME Suppress warnings for non limited objects
3394 -- renaming parameterless functions.
3396 -- OPTIONAL Equivalent to ALL.
3398 -- NOOPTIONAL Equivalent to NOALL.
3400 -- OVERLAYS Activate warnings for possibly unintended
3401 -- initialization effects of defining address
3402 -- clauses that cause one variable to overlap
3403 -- another. The default is that such warnings
3406 -- NOOVERLAYS Suppress warnings on possibly unintended
3407 -- initialization effects of defining address
3408 -- clauses that cause one variable to overlap
3411 -- REDUNDANT Activate warnings for redundant constructs.
3412 -- In particular assignments of a variable to
3413 -- itself, and a type conversion that converts
3414 -- an object to its own type. The default
3415 -- is that such warnings are not generated.
3417 -- NOREDUNDANT Suppress warnings for redundant constructs.
3419 -- SUPPRESS Completely suppress the output of all warning
3420 -- messages. Same as /NOWARNINGS.
3422 -- UNCHECKED_CONVERSIONS Activates warnings on unchecked conversions.
3423 -- Causes warnings to be generated for
3424 -- unchecked conversions when the two types are
3425 -- known at compile time to have different sizes.
3426 -- The default is that such warnings are
3429 -- NOUNCHECKED_CONVERSIONS Suppress warnings for unchecked conversions.
3431 -- UNINITIALIZED Generate warnings for uninitialized variables.
3432 -- This is a GCC option, not an Ada option.
3433 -- You must also specify the /OPTIMIZE qualifier
3434 -- with a value other than NONE (in other words,
3435 -- this keyword works only if optimization is
3438 -- UNREFERENCED_FORMALS Activate warnings on unreferenced formals.
3439 -- Causes a warning to be generated if a formal
3440 -- parameter is not referenced in the body of
3441 -- the subprogram. This warning can also be turned
3442 -- on using option ALL or UNUSED.
3444 -- NOUNREFERENCED_FORMALS Suppress warnings on unreferenced formals.
3445 -- Suppresses warnings for unreferenced formal
3446 -- parameters. Note that the combination UNUSED
3447 -- followed by NOUNREFERENCED_FORMALS has the
3448 -- effect of warning on unreferenced entities
3449 -- other than subprogram formals.
3451 -- UNUSED Activates warnings to be generated for entities
3452 -- that are defined but not referenced, and for
3453 -- units that are with'ed and not referenced. In
3454 -- the case of packages, a warning is also
3455 -- generated if no entities in the package are
3456 -- referenced. This means that if the package
3457 -- is referenced but the only references are in
3458 -- use clauses or renames declarations, a warning
3459 -- is still generated. A warning is also generated
3460 -- for a generic package that is with'ed but never
3461 -- instantiated. In the case where a package or
3462 -- subprogram body is compiled, and there is a
3463 -- with on the corresponding spec that is only
3464 -- referenced in the body, a warning is also
3465 -- generated, noting that the with can be moved
3466 -- to the body. The default is that such warnings
3467 -- are not generated.
3469 -- NOUNUSED Suppress warnings for unused entities and
3472 -- VARIABLES_UNINITIALIZED Activates warnings on unassigned variables.
3473 -- Causes warnings to be generated when a variable
3474 -- is accessed which may not be properly
3476 -- The default is that such warnings are
3479 -- NOVARIABLES_UNINITIALIZED Suppress warnings for uninitialized
3482 S_GCC_WarnX
: aliased constant S
:= "/NOWARNINGS " &
3484 -- NODOC (see /WARNINGS)
3486 S_GCC_No_Back
: aliased constant S
:= "/NO_BACK_END_WARNINGS " &
3488 -- /NO_BACK_END_WARNINGS
3490 -- Inhibit all warning messages of the GCC back-end.
3492 S_GCC_Wide
: aliased constant S
:= "/WIDE_CHARACTER_ENCODING=" &
3505 -- /NOWIDE_CHARACTER_ENCODING (D)
3506 -- /WIDE_CHARACTER_ENCODING[=encode-type]
3508 -- Specifies the mechanism used to encode wide characters. 'encode-type'
3509 -- is one of the following:
3511 -- BRACKETS (D) A wide character is encoded as ["xxxx"] where XXXX
3512 -- are four hexadecimal digits representing the coding
3513 -- ('Pos value) of the character in type
3514 -- Wide_Character. The hexadecimal digits may use upper
3515 -- or lower case letters.
3517 -- This notation can also be used for upper half
3518 -- Character values using the format ["xx"] where XX is
3519 -- two hexadecimal digits representing the coding ('Pos
3520 -- value) of the character in type Character (or
3521 -- Wide_Character). The hexadecimal digits may use upper
3524 -- NONE No wide characters are allowed. Same
3525 -- as /NOWIDE_CHARACTER_ENCODING.
3527 -- HEX In this encoding, a wide character is represented by
3528 -- the following five character sequence: ESC a b c d
3529 -- Where 'a', 'b', 'c', and 'd' are the four hexadecimal
3530 -- characters (using uppercase letters) of the wide
3531 -- character code. For example, ESC A345 is used to
3532 -- represent the wide character with code 16#A345#. This
3533 -- scheme is compatible with use of the full
3534 -- Wide_Character set.
3536 -- UPPER The wide character with encoding 16#abcd# where the
3537 -- upper bit is on (in other words, "a" is in the range
3538 -- 8-F) is represented as two bytes, 16#ab# and 16#cd#.
3539 -- The second byte may never be a format control
3540 -- character, but is not required to be in the upper
3541 -- half. This method can be also used for shift-JIS or
3542 -- EUC, where the internal coding matches the external
3545 -- SHIFT_JIS A wide character is represented by a two-character
3546 -- sequence, 16#ab# and 16#cd#, with the restrictions
3547 -- described for upper-half encoding as described above.
3548 -- The internal character code is the corresponding JIS
3549 -- character according to the standard algorithm for
3550 -- Shift-JIS conversion. Only characters defined in the
3551 -- JIS code set table can be used with this encoding
3554 -- UTF8 A wide character is represented using
3555 -- UCS Transformation Format 8 (UTF-8) as defined in Annex
3556 -- R of ISO 10646-1/Am.2. Depending on the character
3557 -- value, the representation is a one, two, or three byte
3560 -- 16#0000#-16#007f#: 2#0xxxxxxx#
3561 -- 16#0080#-16#07ff#: 2#110xxxxx# 2#10xxxxxx#
3562 -- 16#0800#-16#ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx#
3564 -- where the xxx bits correspond to the left-padded bits
3565 -- of the 16-bit character value. Note that all lower
3566 -- half ASCII characters are represented as ASCII bytes
3567 -- and all upper half characters and other wide characters
3568 -- are represented as sequences of upper-half (The full
3569 -- UTF-8 scheme allows for encoding 31-bit characters as
3570 -- 6-byte sequences, but in this implementation, all UTF-8
3571 -- sequences of four or more bytes length will be treated
3574 -- EUC A wide character is represented by a two-character
3575 -- sequence 16#ab# and 16#cd#, with both characters being
3576 -- in the upper half. The internal character code is the
3577 -- corresponding JIS character according to the EUC
3578 -- encoding algorithm. Only characters defined in the JIS
3579 -- code set table can be used with this encoding method.
3581 S_GCC_WideX
: aliased constant S
:= "/NOWIDE_CHARACTER_ENCODING " &
3583 -- NODOC (see /WIDE_CHARACTER_ENCODING)
3585 S_GCC_Xdebug
: aliased constant S
:= "/XDEBUG " &
3590 -- Output expanded source files for source level debugging.
3591 -- The expanded source (see /EXPAND_SOURCE) is written to files
3592 -- with names formed by appending "_DG" to the input file name,
3593 -- The debugging information generated by the /DEBUG qualifier will then
3594 -- refer to the generated file. This allows source level debugging using
3595 -- the generated code which is sometimes useful for complex code, for
3596 -- example to find out exactly which part of a complex construction
3597 -- raised an exception. The maximum line length for the output is 72.
3599 S_GCC_Lxdebug
: aliased constant S
:= "/LXDEBUG=#" &
3603 -- Output expanded source files for source level debugging.
3604 -- The expanded source (see /EXPAND_SOURCE) is written to files
3605 -- with names formed by appending "_DG" to the input file name,
3606 -- The debugging information generated by the /DEBUG qualifier will then
3607 -- refer to the generated file. This allows source level debugging using
3608 -- the generated code which is sometimes useful for complex code, for
3609 -- example to find out exactly which part of a complex construction
3610 -- raised an exception. The parameter is the maximum line length for
3613 S_GCC_Xref
: aliased constant S
:= "/XREF=" &
3620 -- Normally the compiler generates full cross-referencing information in
3621 -- the .ALI file. This information is used by a number of tools,
3622 -- including GNAT FIND and GNAT XREF.
3624 -- GENERATE (D) Generate cross-referencing information.
3626 -- SUPPRESS Suppress cross-referencing information.
3627 -- This saves some space and may slightly
3628 -- speed up compilation, but means that some
3629 -- tools cannot be used.
3631 GCC_Switches
: aliased constant Switches
:=
3632 (S_GCC_Ada_83
'Access,
3633 S_GCC_Ada_95 'Access,
3634 S_GCC_Ada_05
'Access,
3635 S_GCC_Ada_2005'Access,
3636 S_GCC_Ada_12 'Access,
3637 S_GCC_Ada_2012
'Access,
3639 S_GCC_AlCheck 'Access,
3641 S_GCC_AValid 'Access,
3642 S_GCC_CategW
'Access,
3643 S_GCC_Checks 'Access,
3644 S_GCC_Chflov
'Access,
3645 S_GCC_ChecksX 'Access,
3646 S_GCC_Compres
'Access,
3647 S_GCC_Config 'Access,
3648 S_GCC_Current
'Access,
3649 S_GCC_Debug 'Access,
3650 S_GCC_DebugX
'Access,
3652 S_GCC_DisAtom
'Access,
3654 S_GCC_DistX
'Access,
3655 S_GCC_Error 'Access,
3656 S_GCC_ErrorX
'Access,
3657 S_GCC_Expand 'Access,
3658 S_GCC_Lexpand
'Access,
3659 S_GCC_Except 'Access,
3660 S_GCC_Extend
'Access,
3663 S_GCC_Follow 'Access,
3664 S_GCC_Force
'Access,
3666 S_GCC_Generate
'Access,
3669 S_GCC_Ident
'Access,
3670 S_GCC_IdentX 'Access,
3671 S_GCC_IgnoreR
'Access,
3672 S_GCC_IgnoreS 'Access,
3673 S_GCC_Immed
'Access,
3674 S_GCC_Inline 'Access,
3675 S_GCC_InlineX
'Access,
3676 S_GCC_Intsrc 'Access,
3678 S_GCC_JustX 'Access,
3679 S_GCC_Length
'Access,
3681 S_GCC_Output
'Access,
3682 S_GCC_Machine 'Access,
3683 S_GCC_Mapping
'Access,
3685 S_GCC_Multi
'Access,
3687 S_GCC_Nesting
'Access,
3688 S_GCC_Noadc 'Access,
3689 S_GCC_Noload
'Access,
3690 S_GCC_Nostinc 'Access,
3691 S_GCC_Nostlib
'Access,
3692 S_GCC_NoWarnP 'Access,
3695 S_GCC_Overflo
'Access,
3696 S_GCC_PValid 'Access,
3697 S_GCC_Pointer
'Access,
3698 S_GCC_Polling 'Access,
3699 S_GCC_Project
'Access,
3701 S_GCC_Report
'Access,
3702 S_GCC_ReportX 'Access,
3703 S_GCC_Repinfo
'Access,
3704 S_GCC_RepinfX 'Access,
3707 S_GCC_Search
'Access,
3708 S_GCC_Src_Info'Access,
3709 S_GCC_Style 'Access,
3710 S_GCC_StyleX
'Access,
3711 S_GCC_Subdirs 'Access,
3712 S_GCC_Symbol
'Access,
3713 S_GCC_Syntax 'Access,
3714 S_GCC_Table
'Access,
3715 S_GCC_Target 'Access,
3716 S_GCC_Trace
'Access,
3720 S_GCC_Units
'Access,
3721 S_GCC_Unique 'Access,
3722 S_GCC_Upcase
'Access,
3723 S_GCC_Valid 'Access,
3724 S_GCC_Verbose
'Access,
3725 S_GCC_Verb_Asm'Access,
3727 S_GCC_WarnX
'Access,
3729 S_GCC_WideX
'Access,
3730 S_GCC_No_Back 'Access,
3731 S_GCC_Xdebug
'Access,
3732 S_GCC_Lxdebug 'Access,
3733 S_GCC_Xref
'Access);
3735 ----------------------------
3736 -- Switches for GNAT ELIM --
3737 ----------------------------
3739 S_Elim_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
3741 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
3743 -- Add directories to the project search path.
3745 S_Elim_All : aliased constant S := "/ALL " &
3750 -- Also look for subprograms from the GNAT run time that can be
3751 -- eliminated. Note that when 'gnat
.adc
' is produced using this switch,
3752 -- the entire program must be recompiled with qualifier /ALL_FILES of
3755 S_Elim_Bind : aliased constant S := "/BIND_FILE=<" &
3757 -- /BIND_FILE=file_name
3759 -- Specifies file_name as the bind file to process. If this qualifier is
3760 -- not used, the name of the bind file is computed from the full expanded
3761 -- Ada name of a main subprogram.
3763 S_Elim_Comp : aliased constant S := "/COMPILER=@" &
3765 -- /COMPILER=path_name
3767 -- Instructs GNAT ELIM to use a specific gcc compiler instead of one
3768 -- available on the path.
3770 S_Elim_Config : aliased constant S := "/CONFIGURATION_PRAGMAS=<" &
3772 -- /CONFIGURATION_PRAGMAS=path_name
3774 -- Specifies a file that contains configuration pragmas.
3775 -- The file must be specified with absolute path.
3777 S_Elim_Current : aliased constant S := "/CURRENT_DIRECTORY " &
3779 -- /CURRENT_DIRECTORY (D)
3780 -- /NOCURRENT_DIRECTORY
3782 -- Look for source files in the default directory.
3784 S_Elim_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
3786 -- /EXTERNAL_REFERENCE="name=val"
3788 -- Specifies an external reference to the project manager. Useful only if
3789 -- /PROJECT_FILE is used.
3792 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3794 S_Elim_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
3796 -- /NOFOLLOW_LINKS_FOR_FILES (D)
3797 -- /FOLLOW_LINKS_FOR_FILES
3799 -- Follow links when parsing project files
3801 S_Elim_GNATMAKE : aliased constant S := "/GNATMAKE=@" &
3803 -- /GNATMAKE=path_name
3805 -- Instructs GNAT MAKE to use a specific gnatmake instead of one available
3808 S_Elim_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
3815 -- /MESSAGES_PROJECT_FILE[=messages-option]
3817 -- Specifies the "verbosity" of the parsing of project files.
3818 -- messages-option may be one of the following:
3820 -- DEFAULT (D) No messages are output if there is no error or warning.
3822 -- MEDIUM A small number of messages are output.
3824 -- HIGH A great number of messages are output, most of them not
3825 -- being useful for the user.
3827 S_Elim_Nodisp : aliased constant S := "/NO_DISPATCH " &
3828 "--no-elim-dispatch";
3829 -- /NONO_DISPATCH (D)
3832 -- Do not generate pragmas for dispatching operations.
3834 S_Elim_Ignore : aliased constant S := "/IGNORE=@" &
3838 -- Do not generate pragmas for subprograms declared in the sources
3839 -- listed in a specified file
3841 S_Elim_Project : aliased constant S := "/PROJECT_FILE=<" &
3843 -- /PROJECT_FILE=filename
3845 -- Specifies the main project file to be used. The project files rooted
3846 -- at the main project file will be parsed before the invocation of the
3847 -- gnatelim. The source directories to be searched will be communicated
3848 -- to gnatelim through logical name ADA_PRJ_INCLUDE_FILE.
3850 S_Elim_Quiet : aliased constant S := "/QUIET " &
3855 -- Quiet mode: by default GNAT ELIM outputs to the standard error stream
3856 -- the number of program units left to be processed. This option turns
3859 S_Elim_Files : aliased constant S := "/FILES=@" &
3864 -- Take as arguments the files that are listed in the specified
3867 S_Elim_Log : aliased constant S := "/LOG " &
3872 -- Duplicate all the output sent to Stderr into a default log file.
3874 S_Elim_Logfile : aliased constant S := "/LOGFILE=@" &
3877 -- /LOGFILE=logfilename
3879 -- Duplicate all the output sent to Stderr into a specified log file.
3881 S_Elim_Main : aliased constant S := "/MAIN=@" &
3886 -- Specify the main subprogram of the partition to analyse.
3888 S_Elim_Out : aliased constant S := "/OUTPUT=@" &
3892 -- Specify the name of the output file.
3894 S_Elim_Time : aliased constant S := "/TIME " &
3899 -- Print out execution time
3901 S_Elim_Search : aliased constant S := "/SEARCH=*" &
3903 -- /SEARCH=(directory, ...)
3905 -- When looking for source files also look in the specified directories.
3907 S_Elim_Subdirs : aliased constant S := "/SUBDIRS=<" &
3911 -- The actual directories (object, exec, library, ...) are subdirectories
3912 -- of the directory specified in the project file. If the subdirectory
3913 -- does not exist, it is created automatically.
3915 S_Elim_Verb : aliased constant S := "/VERBOSE " &
3920 -- Verbose mode: GNAT ELIM version information is output as Ada comments
3921 -- to the standard output stream. Also, in addition to the number of
3922 -- program units left, GNAT ELIM will output the name of the current unit
3925 S_Elim_Warn : aliased constant S := "/WARNINGS=" &
3931 -- /WARNINGS[=(keyword[,...])]
3933 -- The following keywords are supported:
3935 -- NORMAL (D) Print warning all the messages.
3936 -- QUIET Some warning messages are suppressed
3938 Elim_Switches : aliased constant Switches :=
3939 (S_Elim_Add 'Access,
3941 S_Elim_Bind 'Access,
3942 S_Elim_Comp
'Access,
3943 S_Elim_Config 'Access,
3944 S_Elim_Current
'Access,
3946 S_Elim_Files
'Access,
3947 S_Elim_Follow 'Access,
3948 S_Elim_GNATMAKE
'Access,
3950 S_Elim_Logfile 'Access,
3951 S_Elim_Main
'Access,
3952 S_Elim_Mess 'Access,
3953 S_Elim_Nodisp
'Access,
3955 S_Elim_Project
'Access,
3956 S_Elim_Quiet 'Access,
3957 S_Elim_Search
'Access,
3958 S_Elim_Subdirs 'Access,
3959 S_Elim_Time
'Access,
3960 S_Elim_Verb 'Access,
3961 S_Elim_Warn
'Access);
3963 ----------------------------
3964 -- Switches for GNAT FIND --
3965 ----------------------------
3967 S_Find_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
3969 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
3971 -- Add directories to the project search path.
3973 S_Find_All : aliased constant S := "/ALL_FILES " &
3978 -- If this switch is present, FIND and XREF will parse the read-only
3979 -- files found in the library search path. Otherwise, these files will
3980 -- be ignored. This option can be used to protect Gnat sources or your
3981 -- own libraries from being parsed, thus making FIND and XREF much
3982 -- faster, and their output much smaller.
3984 S_Find_Deriv : aliased constant S := "/DERIVED_TYPE_INFORMATION " &
3986 -- /NODERIVED_TYPE_INFORMATION (D)
3987 -- /DERIVED_TYPE_INFORMATION
3989 -- Output the parent type reference for each matching derived types.
3991 S_Find_Expr : aliased constant S := "/EXPRESSIONS " &
3993 -- /NOEXPRESSIONS (D)
3996 -- By default, FIND accepts the simple regular expression set for pattern.
3997 -- If this switch is set, then the pattern will be considered as a full
3998 -- Unix-style regular expression.
4000 S_Find_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
4002 -- /EXTERNAL_REFERENCE="name=val"
4004 -- Specifies an external reference to the project manager. Useful only if
4005 -- /PROJECT_FILE is used.
4008 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4010 S_Find_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
4012 -- /NOFOLLOW_LINKS_FOR_FILES (D)
4013 -- /FOLLOW_LINKS_FOR_FILES
4015 -- Follow links when parsing project files
4017 S_Find_Full : aliased constant S := "/FULL_PATHNAME " &
4019 -- /NOFULL_PATHNAME (D)
4022 -- If this switch is set, the output file names will be preceded by their
4023 -- directory (if the file was found in the search path). If this switch
4024 -- is not set, the directory will not be printed.
4026 S_Find_Ignore : aliased constant S := "/IGNORE_LOCALS " &
4028 -- /NOIGNORE_LOCALS (D)
4031 -- If this switch is set, information is output only for library-level
4032 -- entities, ignoring local entities. The use of this switch may
4033 -- accelerate FIND and XREF.
4035 S_Find_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
4042 -- /MESSAGES_PROJECT_FILE[=messages-option]
4044 -- Specifies the "verbosity" of the parsing of project files.
4045 -- messages-option may be one of the following:
4047 -- DEFAULT (D) No messages are output if there is no error or warning.
4049 -- MEDIUM A small number of messages are output.
4051 -- HIGH A great number of messages are output, most of them not
4052 -- being useful for the user.
4054 S_Find_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
4058 -- Do not look for sources in the system default directory.
4060 S_Find_Nostlib : aliased constant S := "/NOSTD_LIBRARIES " &
4064 -- Do not look for library files in the system default directory.
4066 S_Find_Object : aliased constant S := "/OBJECT_SEARCH=*" &
4068 -- /OBJECT_SEARCH=(directory,...)
4070 -- When searching for library and object files, look in the specified
4071 -- directories. The order in which library files are searched is the same
4074 S_Find_Print : aliased constant S := "/PRINT_LINES " &
4076 -- /NOPRINT_LINES (D)
4079 -- Output the content of the Ada source file lines were the entity was
4082 S_Find_Project : aliased constant S := "/PROJECT=@" &
4086 -- Specify a project file to use. By default, FIND and XREF will try to
4087 -- locate a project file in the current directory.
4089 -- If a project file is either specified or found by the tools, then the
4090 -- content of the source directory and object directory lines are added
4091 -- as if they had been specified respectively by /SOURCE_SEARCH and
4094 -- This qualifier is not compatible with /PROJECT_FILE
4096 S_Find_Prj : aliased constant S := "/PROJECT_FILE=<" &
4098 -- /PROJECT_FILE=filename
4100 -- Specifies the main project file to be used. The project files rooted
4101 -- at the main project file will be parsed before looking for sources.
4102 -- The source and object directories to be searched will be communicated
4103 -- to gnatfind through logical names ADA_PRJ_INCLUDE_FILE and
4104 -- ADA_PRJ_OBJECTS_FILE.
4106 S_Find_Ref : aliased constant S := "/REFERENCES " &
4108 -- /NOREFERENCES (D)
4111 -- By default, FIND will output only the information about the
4112 -- declaration, body or type completion of the entities. If this switch
4113 -- is set, the FIND will locate every reference to the entities in the
4114 -- files specified on the command line (or in every file in the search
4115 -- path if no file is given on the command line).
4117 S_Find_Search : aliased constant S := "/SEARCH=*" &
4119 -- /SEARCH=(directory,...)
4122 -- /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
4124 S_Find_Source : aliased constant S := "/SOURCE_SEARCH=*" &
4126 -- /SOURCE_SEARCH=(directory,...)
4128 -- When looking for source files also look in the specified directories.
4129 -- The order in which source file search is undertaken is the same as for
4132 S_Find_Subdirs : aliased constant S := "/SUBDIRS=<" &
4136 -- The actual directories (object, exec, library, ...) are subdirectories
4137 -- of the directory specified in the project file. If the subdirectory
4138 -- does not exist, it is created automatically.
4140 S_Find_Types : aliased constant S := "/TYPE_HIERARCHY " &
4142 -- /NOTYPE_HIERARCHY (D)
4145 -- Output the type hierarchy for the specified type. It acts like the
4146 -- /DERIVED_TYPE_INFORMATION qualifier, but recursively from parent type
4147 -- to parent type. When this qualifier is specified it is not possible to
4148 -- specify more than one file.
4150 Find_Switches : aliased constant Switches :=
4151 (S_Find_Add 'Access,
4153 S_Find_Deriv 'Access,
4154 S_Find_Expr
'Access,
4156 S_Find_Follow
'Access,
4157 S_Find_Full 'Access,
4158 S_Find_Ignore
'Access,
4159 S_Find_Mess 'Access,
4160 S_Find_Nostinc
'Access,
4161 S_Find_Nostlib 'Access,
4162 S_Find_Object
'Access,
4163 S_Find_Print 'Access,
4164 S_Find_Project
'Access,
4167 S_Find_Search 'Access,
4168 S_Find_Source
'Access,
4169 S_Find_Subdirs 'Access,
4170 S_Find_Types
'Access);
4172 ------------------------------
4173 -- Switches for GNAT KRUNCH --
4174 ------------------------------
4176 S_Krunch_Count : aliased constant S := "/COUNT=#" &
4181 -- Limit file names to nnn characters (where nnn is a decimal
4182 -- integer). The maximum file name length is 39, but if you want to
4183 -- generate a set of files that would be usable if ported to a system
4184 -- with some different maximum file length, then a different value can
4187 Krunch_Switches : aliased constant Switches :=
4188 (1 .. 1 => S_Krunch_Count 'Access);
4190 ----------------------------
4191 -- Switches for GNAT LINK --
4192 ----------------------------
4194 S_Link_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
4196 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4198 -- Add directories to the project search path.
4200 S_Link_Bind
: aliased constant S
:= "/BIND_FILE=" &
4205 -- /BIND_FILE=[bind-file-option]
4207 -- Specifies the language of the binder generated file.
4209 -- ADA (D) Binder file is Ada.
4211 -- C Binder file is 'C'.
4213 S_Link_Debug
: aliased constant S
:= "/DEBUG=" &
4223 -- /DEBUG[=debug-option]
4225 -- Specifies the amount of debugging information included. 'debug-option'
4226 -- is one of the following:
4228 -- ALL (D) Include full debugging information.
4230 -- NONE Provide no debugging information. Same as /NODEBUG.
4232 -- TRACEBACK Provide sufficient debug information for a traceback.
4234 -- NOTRACEBACK Same as NONE.
4236 S_Link_Nodebug
: aliased constant S
:= "/NODEBUG " &
4238 -- NODOC (see /DEBUG)
4240 S_Link_Execut
: aliased constant S
:= "/EXECUTABLE=@" &
4242 -- /EXECUTABLE=exec-name
4244 -- 'exec-name' specifies an alternative name for the generated executable
4245 -- program. If this qualifier switch is omitted, the executable is called
4246 -- the name of the main unit. So "$ GNAT LINK TRY.ALI" creates an
4247 -- executable called TRY.EXE.
4249 S_Link_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
4251 -- /EXTERNAL_REFERENCE="name=val"
4253 -- Specifies an external reference to the project manager. Useful only if
4254 -- /PROJECT_FILE is used.
4257 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4259 S_Link_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
4261 -- /NOFOLLOW_LINKS_FOR_FILES (D)
4262 -- /FOLLOW_LINKS_FOR_FILES
4264 -- Follow links when parsing project files
4266 S_Link_Forlink
: aliased constant S
:= "/FOR_LINKER=" & '"' &
4267 "--for-linker=" & '"';
4268 -- /FOR_LINKER=<string>
4270 -- Transmit the option <string> to the underlying linker.
4272 S_Link_Force
: aliased constant S
:= "/FORCE_OBJECT_FILE_LIST " &
4274 -- /NOFORCE_OBJECT_FILE_LIST (D)
4275 -- /FORCE_OBJECT_FILE_LIST
4277 -- Forces the generation of a file that contains commands for the linker.
4278 -- This is useful in some cases to deal with special situations where the
4279 -- command line length is exceeded.
4281 S_Link_Ident
: aliased constant S
:= "/IDENTIFICATION=" & '"' &
4282 "--for-linker=IDENT=" &
4284 -- /IDENTIFICATION="<string>"
4286 -- "<string>" specifies the string to be stored in the image file ident-
4287 -- ification field in the image header. It overrides any pragma Ident
4288 -- specified string.
4290 S_Link_NoInhib
: aliased constant S
:= "/NOINHIBIT-EXEC " &
4291 "--for-linker=--noinhibit-exec";
4292 -- /NOINHIBIT-EXEC (D)
4294 -- Preserve executable if there are warnings. This is the default.
4296 S_Link_Inhib
: aliased constant S
:= "/INHIBIT-EXEC " &
4297 "--for-linker=--inhibit-exec";
4300 -- Remove executable if there are warnings.
4302 S_Link_Libdir
: aliased constant S
:= "/LIBDIR=*" &
4304 -- /LIBDIR=(directory, ...)
4306 -- Look for libraries in the specified directories.
4308 S_Link_Library
: aliased constant S
:= "/LIBRARY=|" &
4312 -- Link with library named "xyz".
4314 S_Link_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
4321 -- /MESSAGES_PROJECT_FILE[=messages-option]
4323 -- Specifies the "verbosity" of the parsing of project files.
4324 -- messages-option may be one of the following:
4326 -- DEFAULT (D) No messages are output if there is no error or warning.
4328 -- MEDIUM A small number of messages are output.
4330 -- HIGH A great number of messages are output, most of them not
4331 -- being useful for the user.
4333 S_Link_Nocomp
: aliased constant S
:= "/NOCOMPILE " &
4337 -- Do not compile the file generated by the binder.
4338 -- This may be used when a link is rerun with different options,
4339 -- but there is no need to recompile the binder generated file.
4341 S_Link_Nofiles
: aliased constant S
:= "/NOSTART_FILES " &
4345 -- Link in default image initialization and startup functions.
4347 S_Link_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
4349 -- /PROJECT_FILE=filename
4351 -- Specifies the main project file to be used. The project files rooted
4352 -- at the main project file will be parsed before the invocation of the
4354 -- The source and object directories to be searched will be communicated
4355 -- to the linker through logical names ADA_PRJ_INCLUDE_FILE and
4356 -- ADA_PRJ_OBJECTS_FILE.
4358 S_Link_Return
: aliased constant S
:= "/RETURN_CODES=" &
4360 "!-mvms-return-codes " &
4362 "-mvms-return-codes";
4363 -- /RETURN_CODES=POSIX (D)
4364 -- /RETURN_CODES=VMS
4366 -- Specifies the style of codes returned by
4367 -- Ada.Command_Line.Set_Exit_Status. Must be used in conjunction with
4368 -- and match the Bind qualifier with the same name.
4370 -- POSIX (D) Return Posix compatible exit codes.
4372 -- VMS Return VMS compatible exit codes. The value returned
4373 -- is identically equal to the Set_Exit_Status parameter.
4375 S_Link_Static
: aliased constant S
:= "/STATIC " &
4376 "--for-linker=-static";
4380 -- Indicate to the linker that the link is static.
4382 S_Link_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
4386 -- The actual directories (object, exec, library, ...) are subdirectories
4387 -- of the directory specified in the project file. If the subdirectory
4388 -- does not exist, it is created automatically.
4390 S_Link_Verb
: aliased constant S
:= "/VERBOSE " &
4395 -- Causes additional information to be output, including a full list of
4396 -- the included object files. This switch option is most useful when you
4397 -- want to see what set of object files are being used in the link step.
4399 S_Link_ZZZZZ
: aliased constant S
:= "/<other> " &
4403 -- Any other switch that will be transmitted to the underlying linker.
4405 Link_Switches
: aliased constant Switches
:=
4406 (S_Link_Add
'Access,
4407 S_Link_Bind 'Access,
4408 S_Link_Debug
'Access,
4409 S_Link_Nodebug 'Access,
4410 S_Link_Execut
'Access,
4412 S_Link_Follow
'Access,
4413 S_Link_Forlink 'Access,
4414 S_Link_Force
'Access,
4415 S_Link_Ident 'Access,
4416 S_Link_NoInhib
'Access,
4417 S_Link_Inhib 'Access,
4418 S_Link_Libdir
'Access,
4419 S_Link_Library 'Access,
4420 S_Link_Mess
'Access,
4421 S_Link_Nocomp 'Access,
4422 S_Link_Nofiles
'Access,
4423 S_Link_Project 'Access,
4424 S_Link_Return
'Access,
4425 S_Link_Static 'Access,
4426 S_Link_Subdirs
'Access,
4427 S_Link_Verb 'Access,
4428 S_Link_ZZZZZ
'Access);
4430 ----------------------------
4431 -- Switches for GNAT LIST --
4432 ----------------------------
4434 S_List_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
4436 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4438 -- Add directories to the project search path.
4440 S_List_All : aliased constant S := "/ALL_UNITS " &
4445 -- Consider all units, including those of the predefined Ada library.
4446 -- Especially useful with /DEPENDENCIES.
4448 S_List_Allproj : aliased constant S := "/ALL_PROJECTS " &
4450 -- /NOALL_PROJECTS (D)
4453 -- When used with a project file and no file specified, indicate
4454 -- that gnatls should be called for all sources of all projects in
4455 -- the project tree.
4457 S_List_Current : aliased constant S := "/CURRENT_DIRECTORY " &
4459 -- /CURRENT_DIRECTORY (D)
4460 -- /NOCURRENT_DIRECTORY
4462 -- Look for source, library or object files in the default directory.
4464 S_List_Depend : aliased constant S := "/DEPENDENCIES " &
4466 -- /NODEPENDENCIES (D)
4469 S_List_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
4471 -- /EXTERNAL_REFERENCE="name=val"
4473 -- Specifies an external reference to the project manager. Useful only if
4474 -- /PROJECT_FILE is used.
4477 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4479 S_List_Files : aliased constant S := "/FILES=@" &
4483 -- Take as arguments the files that are listed in the specified
4486 S_List_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
4488 -- /NOFOLLOW_LINKS_FOR_FILES (D)
4489 -- /FOLLOW_LINKS_FOR_FILES
4491 -- Follow links when parsing project files
4493 S_List_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
4500 -- /MESSAGES_PROJECT_FILE[=messages-option]
4502 -- Specifies the "verbosity" of the parsing of project files.
4503 -- messages-option may be one of the following:
4505 -- DEFAULT (D) No messages are output if there is no error or warning.
4507 -- MEDIUM A small number of messages are output.
4509 -- HIGH A great number of messages are output, most of them not
4510 -- being useful for the user.
4512 S_List_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
4516 -- Do not look for sources of the run time in the standard directory.
4518 S_List_Object : aliased constant S := "/OBJECT_SEARCH=*" &
4520 -- /OBJECT_SEARCH=(directory,...)
4522 -- When looking for library and object files look also in the specified
4525 S_List_Output : aliased constant S := "/OUTPUT=" &
4538 -- /OUTPUT=(option,option,...)
4540 -- SOURCES (D) Only output information about source files.
4542 -- DEPEND List sources from which specified units depend on.
4544 -- OBJECTS Only output information about object files.
4546 -- UNITS Only output information about compilation units.
4548 -- OPTIONS Output the list of options.
4550 -- VERBOSE Output the complete source and object paths.
4551 -- Do not use the default column layout but instead
4552 -- use long format giving as much as information
4553 -- possible on each requested units, including
4554 -- special characteristics.
4556 S_List_Project : aliased constant S := "/PROJECT_FILE=<" &
4558 -- /PROJECT_FILE=filename
4560 -- Specifies the main project file to be used. The project files rooted
4561 -- at the main project file will be parsed before doing any listing.
4562 -- The source and object directories to be searched will be communicated
4563 -- to gnatlist through logical names ADA_PRJ_INCLUDE_FILE and
4564 -- ADA_PRJ_OBJECTS_FILE.
4566 S_List_Search : aliased constant S := "/SEARCH=*" &
4568 -- /SEARCH=(directory,...)
4570 -- Search the specified directories for both source and object files.
4572 S_List_Source : aliased constant S := "/SOURCE_SEARCH=*" &
4574 -- /SOURCE_SEARCH=(directory,...)
4576 -- When looking for source files also look in the specified directories.
4578 S_List_Subdirs : aliased constant S := "/SUBDIRS=<" &
4582 -- The actual directories (object, exec, library, ...) are subdirectories
4583 -- of the directory specified in the project file. If the subdirectory
4584 -- does not exist, it is created automatically.
4586 List_Switches : aliased constant Switches :=
4587 (S_List_Add 'Access,
4589 S_List_Allproj 'Access,
4590 S_List_Current
'Access,
4591 S_List_Depend 'Access,
4593 S_List_Files 'Access,
4594 S_List_Follow
'Access,
4595 S_List_Mess 'Access,
4596 S_List_Nostinc
'Access,
4597 S_List_Object 'Access,
4598 S_List_Output
'Access,
4599 S_List_Project 'Access,
4600 S_List_Search
'Access,
4601 S_List_Source 'Access,
4602 S_List_Subdirs
'Access);
4604 ----------------------------
4605 -- Switches for GNAT MAKE --
4606 ----------------------------
4608 S_Make_Actions : aliased constant S := "/ACTIONS=" &
4615 -- /ACTIONS=(keyword[,...])
4617 -- GNAT MAKE default behavior is to check if the sources are up to date,
4618 -- compile those sources that are not up to date, bind the main source,
4619 -- then link the executable.
4621 -- With the /ACTIONS qualifier, GNAT MAKE may be restricted to one or
4622 -- two of these three steps:
4629 -- You may specify one or more of the following keywords to the /ACTIONS
4632 -- BIND Bind only. Can be combined with /ACTIONS=COMPILE
4633 -- to do compilation and binding, but no linking.
4634 -- Can be combined with /ACTIONS=LINK to do binding and
4635 -- linking. When not combined with /ACTIONS=COMPILE,
4636 -- all the units in the closure of the main program must
4637 -- have been previously compiled and must be up to date.
4639 -- COMPILE Compile only. Do not perform binding, except when
4640 -- /ACTIONS=BIND is also specified. Do not perform
4641 -- linking, except if both /ACTIONS=BIND and /ACTIONS=LINK
4642 -- are also specified.
4644 -- LINK Link only. Can be combined with /ACTIONS=BIND to do
4645 -- binding and linking. Linking will not be performed
4646 -- if combined with /ACTIONS=COMPILE but not with
4647 -- /ACTIONS=BIND\. When not combined with /ACTIONS=BIND
4648 -- all the units in the closure of the main program must
4649 -- have been previously compiled and must be up to date,
4650 -- and the main program need to have been bound.
4652 S_Make_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
4654 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
4656 -- Add directories to the project search path.
4658 S_Make_All : aliased constant S := "/ALL_FILES " &
4663 -- Consider all files in the make process, even the GNAT internal system
4664 -- files (for example, the predefined Ada library files). By default,
4665 -- GNAT MAKE does not check these files (however, if there is an
4666 -- installation problem, it will be caught when GNAT MAKE binds your
4667 -- program). You may have to specify this qualifier if you are working on
4668 -- GNAT itself. The vast majority of GNAT MAKE users never need to
4669 -- specify this switch. All GNAT internal files with will be compiled
4670 -- with /STYLE_CHECK=GNAT.
4672 S_Make_Allproj : aliased constant S := "/ALL_PROJECTS " &
4674 -- /NOALL_PROJECTS (D)
4678 -- When used without project files, it is equivalent to /UNIQUE.
4679 -- When used with a project file with no main (neither on the command
4680 -- line nor in the attribute Main) check every source of every project,
4681 -- recompile all sources that are not up to date and rebuild libraries
4684 S_Make_Bind : aliased constant S := "/BINDER_QUALIFIERS=?" &
4686 -- /BINDER_QUALIFIERS
4688 -- Any qualifiers specified after this qualifier other than
4689 -- /COMPILER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
4690 -- passed to any GNAT BIND commands generated by GNAT MAKE.
4692 S_Make_Bindprj : aliased constant S := "/BND_LNK_FULL_PROJECT " &
4694 -- /BND_LNK_FULL_PROJECT
4696 -- Bind and link all sources of a project, without any consideration
4697 -- to attribute Main, if there is one. This qualifier need to be
4698 -- used in conjunction with the /PROJECT_FILE= qualifier and cannot
4699 -- be used with a main subprogram on the command line or for
4700 -- a library project file. As the binder is invoked with the option
4701 -- meaning "No Ada main subprogram", the user must ensure that the
4702 -- proper options are specified to the linker. This qualifier is
4703 -- normally used when the main subprogram is in a foreign language
4706 S_Make_Comp : aliased constant S := "/COMPILER_QUALIFIERS=?" &
4708 -- /COMPILER_QUALIFIERS
4710 -- Any qualifiers specified after this qualifier other than
4711 -- /BINDER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
4712 -- passed to any GNAT COMPILE commands generated by GNAT MAKE.
4714 S_Make_Cond : aliased constant S := "/CONDITIONAL_SOURCE_SEARCH=*" &
4716 -- /CONDITIONAL_SOURCE_SEARCH=dir
4718 -- Equivalent to "/SOURCE_SEARCH=dir /SKIP_MISSING=dir".
4720 S_Make_Cont : aliased constant S := "/CONTINUE_ON_ERROR " &
4722 -- /NOCONTINUE_ON_ERROR (D)
4723 -- /CONTINUE_ON_ERROR
4725 -- Keep going. Continue as much as possible after a compilation error.
4726 -- To ease the programmer's task in case of compilation errors, the list
4727 -- of sources for which the compile fails is given when GNAT MAKE
4730 S_Make_Current : aliased constant S := "/CURRENT_DIRECTORY " &
4732 -- /CURRENT_DIRECTORY (D)
4733 -- /NOCURRENT_DIRECTORY
4735 -- Look for source, library or object files in the default directory.
4737 S_Make_Dep : aliased constant S := "/DEPENDENCIES_LIST " &
4739 -- /NODEPENDENCIES_LIST (D)
4740 -- /DEPENDENCIES_LIST
4742 -- Check if all objects are up to date. If they are, output the object
4743 -- dependences to SYS$OUTPUT in a form that can be directly exploited in
4744 -- a Unix-style Makefile. By default, each source file is prefixed with
4745 -- its (relative or absolute) directory name. This name is whatever you
4746 -- specified in the various /SOURCE_SEARCH and /SEARCH qualifiers. If
4747 -- you also specify the /QUIET qualifier, only the source file names,
4748 -- without relative paths, are output. If you just specify the
4749 -- /DEPENDENCY_LIST qualifier, dependencies of the GNAT internal system
4750 -- files are omitted. This is typically what you want. If you also
4751 -- specify the /ALL_FILES qualifier, dependencies of the GNAT internal
4752 -- files are also listed. Note that dependencies of the objects in
4753 -- external Ada libraries (see the /SKIP_MISSING qualifier) are never
4756 S_Make_Dirobj : aliased constant S := "/DIRECTORY_OBJECTS=@" &
4758 -- /DIRECTORY_OBJECTS=<file>
4760 -- Put all object files and .ALI files in <file>.
4761 -- This qualifier is not compatible with /PROJECT_FILE.
4763 S_Make_Disprog : aliased constant S := "/DISPLAY_PROGRESS " &
4765 -- /NOPLAY_PROGRESS (D)
4766 -- /DISPLAY_PROGRESS
4768 -- Display progress for each source, up to date or not, as a single line
4769 -- completed x out of y (zz%)
4770 -- If the file needs to be compiled this is displayed after the
4771 -- invocation of the compiler. These lines are displayed even in quiet
4772 -- output mode (/QUIET).
4774 S_Make_Doobj : aliased constant S := "/DO_OBJECT_CHECK " &
4776 -- /NODO_OBJECT_CHECK (D)
4779 -- Don't compile, bind, or link. Output a single command that will
4780 -- recompile an out of date unit, if any. Repeated use of this option,
4781 -- followed by carrying out the indicated compilation, will eventually
4782 -- result in recompiling all required units.
4784 -- If any ALI is missing during the process, GNAT MAKE halts and
4785 -- displays an error message.
4787 S_Make_Execut : aliased constant S := "/EXECUTABLE=@" &
4789 -- /EXECUTABLE=exec-name
4791 -- The name of the final executable program will be 'exec_name
'. If this
4792 -- qualifier is omitted the default name for the executable will be the
4793 -- name of the input file with an EXE filetype. You may prefix
4794 -- 'exec_name
' with a relative or absolute directory path.
4796 S_Make_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
4798 -- /EXTERNAL_REFERENCE="name=val"
4800 -- Specifies an external reference to the project manager. Useful only if
4801 -- /PROJECT_FILE is used.
4804 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4806 S_Make_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
4808 -- /NOFOLLOW_LINKS_FOR_FILES (D)
4809 -- /FOLLOW_LINKS_FOR_FILES
4811 -- Follow links when parsing project files
4813 S_Make_Force : aliased constant S := "/FORCE_COMPILE " &
4815 -- /NOFORCE_COMPILE (D)
4818 -- Force recompilations. Recompile all sources, even though some object
4819 -- files may be up to date, but don't recompile predefined or GNAT
4820 -- internal files unless the /ALL_FILES qualifier is also specified.
4822 S_Make_Full : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES " &
4824 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
4825 -- /FULL_PATH_IN_BRIEF_MESSAGES
4827 -- When using project files, if some errors or warnings are detected
4828 -- during parsing and verbose mode is not in effect (no use of qualifier
4829 -- /VERBOSE), then error lines start with the full path name of the
4830 -- project file, rather than its simple file name.
4832 S_Make_Hi_Verb : aliased constant S := "/HIGH_VERBOSITY " &
4834 -- /NOHIGH_VERBOSITY (D)
4837 -- Displays the reason for all recompilations GNAT MAKE decides are
4838 -- necessary, in high verbosity. Equivalent to /VERBOSE.
4840 S_Make_Inplace : aliased constant S := "/IN_PLACE " &
4845 -- In normal mode, GNAT MAKE compiles all object files and ALI files
4846 -- into the current directory. If the /IN_PLACE switch is used,
4847 -- then instead object files and ALI files that already exist are over-
4848 -- written in place. This means that once a large project is organized
4849 -- into separate directories in the desired manner, then GNAT MAKE will
4850 -- automatically maintain and update this organization. If no ALI files
4851 -- are found on the Ada object path, the new object and ALI files are
4852 -- created in the directory containing the source being compiled.
4854 S_Make_Index : aliased constant S := "/SOURCE_INDEX=#" &
4856 -- /SOURCE_INDEX=nnn
4858 -- Specifies the index of the units in the source file
4859 -- By default, source files are mono-unit and there is no index
4860 -- When /SOURCE_INDEX=nnn is specified, only one main may be specified
4861 -- on the command line.
4863 S_Make_Library : aliased constant S := "/LIBRARY_SEARCH=*" &
4865 -- /LIBRARY_SEARCH=(directory[,...])
4867 -- Add the specified directories to the list of directories in which the
4868 -- linker will search for libraries.
4870 S_Make_Link : aliased constant S := "/LINKER_QUALIFIERS=?" &
4872 -- /LINKER_QUALIFIERS
4874 -- Any qualifiers specified after this qualifier other than
4875 -- /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /MAKE_QUALIFIERS will be
4876 -- passed to any GNAT LINK commands generated by GNAT LINK.
4878 S_Make_Low_Verb : aliased constant S := "/LOW_VERBOSITY " &
4880 -- /NOLOW_VERBOSITY (D)
4883 -- Displays the reason for all recompilations GNAT MAKE decides are
4884 -- necessary, in low verbosity, that is with less output than
4885 -- /MEDIUM_VERBOSITY, /HIGH_VERBOSITY or /VERBOSE.
4887 S_Make_Make : aliased constant S := "/MAKE_QUALIFIERS=?" &
4891 -- Any qualifiers specified after this qualifier other than
4892 -- /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /LINKER_QUALIFIERS
4893 -- are for the benefit of GNAT MAKE itself.
4895 S_Make_Mapping : aliased constant S := "/MAPPING " &
4900 -- Use a mapping file. A mapping file is a way to communicate to the
4901 -- compiler two mappings: from unit names to file names (without any
4902 -- directory information) and from file names to path names (with full
4903 -- directory information). These mappings are used by the compiler to
4904 -- short-circuit the path search. When GNAT MAKE is invoked with this
4905 -- qualifier, it will create a mapping file, initially populated by the
4906 -- project manager, if /PROJECT_File= is used, otherwise initially empty.
4907 -- Each invocation of the compiler will add the newly accessed sources to
4908 -- the mapping file. This will improve the source search during the next
4909 -- invocations of the compiler
4911 S_Make_Med_Verb : aliased constant S := "/MEDIUM_VERBOSITY " &
4913 -- /NOMEDIUM_VERBOSITY (D)
4914 -- /MEDIUM_VERBOSITY
4916 -- Displays the reason for all recompilations GNAT MAKE decides are
4917 -- necessary, in medium verbosity, that is with potentially less output
4918 -- than /HIGH_VERBOSITY or /VERBOSE.
4920 S_Make_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
4927 -- /MESSAGES_PROJECT_FILE[=messages-option]
4929 -- Specifies the "verbosity" of the parsing of project files.
4930 -- messages-option may be one of the following:
4932 -- DEFAULT (D) No messages are output if there is no error or warning.
4934 -- MEDIUM A small number of messages are output.
4936 -- HIGH A great number of messages are output, most of them not
4937 -- being useful for the user.
4939 S_Make_Minimal : aliased constant S := "/MINIMAL_RECOMPILATION " &
4941 -- /NOMINIMAL_RECOMPILATION (D)
4942 -- /MINIMAL_RECOMPILATION
4944 -- Specifies that the minimum necessary amount of recompilation
4945 -- be performed. In this mode GNAT MAKE ignores time stamp differences
4946 -- when the only modifications to a source file consist in
4947 -- adding/removing comments, empty lines, spaces or tabs.
4949 S_Make_Missing : aliased constant S := "/CREATE_MISSING_DIRS " &
4951 -- /NOCREATE_MISSING_DIRS (D)
4952 -- /CREATE_MISSING_DIRS
4954 -- When an object directory, a library directory or an exec directory
4955 -- in missing, attempt to create the directory.
4957 S_Make_Nolink : aliased constant S := "/NOLINK " &
4961 -- Compile only. Do not perform binding and linking. If the root unit is
4962 -- not a main unit, this is the default. Otherwise GNAT MAKE will
4963 -- attempt binding and linking unless all objects are up to date and the
4964 -- executable is more recent than the objects.
4965 -- This is equivalent to /ACTIONS=COMPILE
4967 S_Make_Nomain : aliased constant S := "/NOMAIN " &
4971 -- No main subprogram. Bind and link the program even if the unit name
4972 -- given on the command line is a package name. The resulting executable
4973 -- will execute the elaboration routines of the package and its closure,
4974 -- then the finalization routines.
4976 S_Make_Nonpro : aliased constant S := "/NON_PROJECT_UNIT_COMPILATION " &
4978 -- /NON_PROJECT_UNIT_COMPILATION
4980 -- Normally, when using project files, a unit that is not part of any
4981 -- project file, cannot be compile. These units may be compile, when
4982 -- needed, if this qualifier is specified.
4984 S_Make_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
4988 -- Do not look for sources the in the system default directory.
4990 S_Make_Nostlib : aliased constant S := "/NOSTD_LIBRARIES " &
4994 -- Do not look for library files in the system default directory.
4996 S_Make_Object : aliased constant S := "/OBJECT_SEARCH=*" &
4998 -- /OBJECT_SEARCH=(directory[,...])
5000 -- When looking for library and object files look also in the specified
5003 S_Make_Proc : aliased constant S := "/PROCESSES=#" &
5008 -- Use NNN processes to carry out the (re)compilations. If you have a
5009 -- multiprocessor machine, compilations will occur in parallel. In the
5010 -- event of compilation errors, messages from various compilations might
5011 -- get interspersed (but GNAT MAKE will give you the full ordered list of
5012 -- failing compiles at the end). This can at times be annoying. To get a
5013 -- clean list of error messages don't use this qualifier.
5015 S_Make_Nojobs : aliased constant S := "/NOPROCESSES " &
5017 -- NODOC (see /PROCESS)
5019 S_Make_Project : aliased constant S := "/PROJECT_FILE=<" &
5021 -- /PROJECT_FILE=filename
5023 -- Specifies the main project file to be used. The project files rooted
5024 -- at the main project file will be parsed before any other processing to
5025 -- set the building environment.
5027 S_Make_Quiet : aliased constant S := "/QUIET " &
5032 -- When this qualifiers is specified, the commands carried out by GNAT
5033 -- MAKE are not displayed.
5035 S_Make_Reason : aliased constant S := "/REASONS " &
5040 -- Displays the reason for all recompilations GNAT MAKE decides are
5043 S_Make_RTS : aliased constant S := "/RUNTIME_SYSTEM=|" &
5045 -- /RUNTIME_SYSTEM=xxx
5047 -- Build against an alternate runtime system named xxx or RTS-xxx.
5049 S_Make_Search : aliased constant S := "/SEARCH=*" &
5051 -- /SEARCH=(directory[,...])
5053 -- Search the specified directories for both source and object files.
5055 S_Make_Single : aliased constant S := "/SINGLE_COMPILE_PER_OBJ_DIR " &
5056 "--single-compile-per-obj-dir";
5057 -- /NOSINGLE_COMPILE_PER_OBJ_DIR (D)
5058 -- /SINGLE_COMPILE_PER_OBJ_DIR
5060 -- When project files are used, do not allow simultaneous compilations
5061 -- for the same object directory.
5063 S_Make_Skip : aliased constant S := "/SKIP_MISSING=*" &
5065 -- /SKIP_MISSING=(directory[,...])
5067 -- Skip missing library sources if ALI in 'directory
'.
5069 S_Make_Source : aliased constant S := "/SOURCE_SEARCH=*" &
5071 -- /SOURCE_SEARCH=(directory[,...])
5073 -- When looking for source files also look in the specified directories.
5075 S_Make_Src_Info : aliased constant S := "/SRC_INFO=<" &
5077 -- /SRC_INFO=source-info-file
5079 -- Specify a source info file to be read or written by the Project
5080 -- Manager when project files are used.
5082 S_Make_Stand : aliased constant S := "/STANDARD_OUTPUT_FOR_COMMANDS " &
5084 -- /NOSTANDARD_OUTPUT_FOR_COMMANDS (D)
5085 -- /STANDARD_OUTPUT_FOR_COMMANDS
5087 -- Output the commands for the compiler, the binder and the linker
5088 -- on SYS$OUTPUT, instead of SYS$ERROR.
5090 S_Make_Subdirs : aliased constant S := "/SUBDIRS=<" &
5094 -- The actual directories (object, exec, library, ...) are subdirectories
5095 -- of the directory specified in the project file. If the subdirectory
5096 -- does not exist, it is created automatically.
5098 S_Make_Switch : aliased constant S := "/SWITCH_CHECK " &
5100 -- /NOSWITCH_CHECK (D)
5103 -- Recompile if compiler switches have changed since last compilation.
5104 -- All compiler switches but -I and -o are taken into account in the
5105 -- following way: orders between different "first letter" switches are
5106 -- ignored, but orders between same switches are taken into account.
5107 -- For example, -O -O2 is different than -O2 -O, but -g -O is equivalent
5110 S_Make_USL : aliased constant S := "/UNCHECKED_SHARED_LIB_IMPORTS " &
5111 "--unchecked-shared-lib-imports";
5112 -- /NOUNCHECKED_SHARED_LIB_IMPORTS (D)
5113 -- /UNCHECKED_SHARED_LIB_IMPORTS
5115 -- Allow shared library projects to import static library projects
5117 S_Make_Unique : aliased constant S := "/UNIQUE " &
5122 -- Recompile at most the main file. It implies /ACTIONS=COMPILE.
5123 -- Combined with /FORCE_COMPILE, it is equivalent to calling the compiler
5126 S_Make_Use_Map : aliased constant S := "/USE_MAPPING_File=@" &
5128 -- /USE_MAPPING_FILE=file_name
5130 -- Use a specific mapping file. The file 'file_name
', specified as a path
5131 -- name (absolute or relative) by this qualifier, should already exist,
5132 -- otherwise the qualifier is ineffective. The specified mapping file
5133 -- will be communicated to the compiler. This switch is not compatible
5134 -- with a project file (/PROJECT_FILE=) or with multiple compiling
5135 -- processes (/PROCESSES=nnn, when nnn is greater than 1).
5137 S_Make_Verbose : aliased constant S := "/VERBOSE " &
5142 -- Displays the reason for all recompilations GNAT MAKE decides are
5145 Make_Switches : aliased constant Switches :=
5146 (S_Make_Add 'Access,
5147 S_Make_Actions
'Access,
5149 S_Make_Allproj
'Access,
5150 S_Make_Bind 'Access,
5151 S_Make_Comp
'Access,
5152 S_Make_Cond 'Access,
5153 S_Make_Cont
'Access,
5154 S_Make_Current 'Access,
5156 S_Make_Dirobj 'Access,
5157 S_Make_Disprog
'Access,
5158 S_Make_Doobj 'Access,
5159 S_Make_Execut
'Access,
5161 S_Make_Follow
'Access,
5162 S_Make_Force 'Access,
5163 S_Make_Full
'Access,
5164 S_Make_Hi_Verb 'Access,
5165 S_Make_Inplace
'Access,
5166 S_Make_Index 'Access,
5167 S_Make_Library
'Access,
5168 S_Make_Link 'Access,
5169 S_Make_Low_Verb
'Access,
5170 S_Make_Make
'Access,
5171 S_Make_Mapping 'Access,
5172 S_Make_Med_Verb
'Access,
5173 S_Make_Mess
'Access,
5174 S_Make_Minimal 'Access,
5175 S_Make_Missing
'Access,
5176 S_Make_Nolink 'Access,
5177 S_Make_Nomain
'Access,
5178 S_Make_Nonpro 'Access,
5179 S_Make_Nostinc
'Access,
5180 S_Make_Nostlib 'Access,
5181 S_Make_Object
'Access,
5182 S_Make_Proc 'Access,
5183 S_Make_Nojobs
'Access,
5184 S_Make_Project 'Access,
5185 S_Make_Quiet
'Access,
5186 S_Make_Reason 'Access,
5188 S_Make_Search 'Access,
5189 S_Make_Single
'Access,
5190 S_Make_Skip 'Access,
5191 S_Make_Source
'Access,
5192 S_Make_Src_Info'Access,
5193 S_Make_Stand 'Access,
5194 S_Make_Subdirs
'Access,
5195 S_Make_Switch 'Access,
5197 S_Make_Unique 'Access,
5198 S_Make_Use_Map
'Access,
5199 S_Make_Verbose 'Access);
5201 ------------------------------
5202 -- Switches for GNAT METRIC --
5203 ------------------------------
5205 S_Metric_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
5207 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
5209 -- Add directories to the project search path.
5211 S_Metric_All_Prjs
: aliased constant S
:= "/ALL_PROJECTS " &
5213 -- /NOALL_PROJECTS (D)
5215 -- When GNAT METRIC is used with a Project File and no source is
5216 -- specified, the underlying tool gnatmetric is called for all the
5217 -- sources of all the Project Files in the project tree.
5219 S_Metric_Debug
: aliased constant S
:= "/DEBUG_OUTPUT " &
5223 -- Generate the debug information
5225 S_Metric_Direct
: aliased constant S
:= "/DIRECTORY=@" &
5227 -- /DIRECTORY=pathname
5229 -- Put the files with detailed metric information into the specified
5232 S_Metric_Element
: aliased constant S
:= "/ELEMENT_METRICS=" &
5234 "!-ed,!-es,!-enl,!-eps," &
5235 "!-eas,!-ept,!-eat,!-enu," &
5237 "DECLARATION_TOTAL " &
5239 "STATEMENT_TOTAL " &
5241 "LOOP_NESTING_MAX " &
5243 "INT_SUBPROGRAMS " &
5245 "SUBPROGRAMS_ALL " &
5251 "PROGRAM_NESTING_MAX " &
5253 "CONSTRUCT_NESTING_MAX " &
5255 -- NODOC (see /SYNTAX_METRICS)
5257 S_Metric_Syntax
: aliased constant S
:= "/SYNTAX_METRICS=" &
5261 "--no-syntax-all " &
5265 "--no-declarations " &
5269 "--no-statements " &
5270 "PUBLIC_SUBPROGRAMS " &
5271 "--public-subprograms " &
5272 "NOPUBLIC_SUBPROGRAMS " &
5273 "--no-public-subprograms " &
5274 "ALL_SUBPROGRAMS " &
5275 "--all-subprograms " &
5276 "NOALL_SUBPROGRAMS " &
5277 "--no-all-subprograms " &
5281 "--no-public-types " &
5289 "--no-unit-nesting " &
5290 "CONSTRUCT_NESTING " &
5291 "--construct-nesting " &
5292 "NOCONSTRUCT_NESTING " &
5293 "--no-construct-nesting";
5294 -- /SYNTAX_METRICS(option, option ...)
5296 -- Specifies the syntax element metrics to be computed (if at least one
5297 -- positive syntax element metric, line metric, complexity or coupling
5298 -- metric is specified then only explicitly specified syntax element
5299 -- metrics are computed and reported)
5301 -- option may be one of the following:
5303 -- ALL (D) All the syntax element metrics are computed
5304 -- NONE None of syntax element metrics is computed
5305 -- DECLARATIONS Compute the total number of declarations
5306 -- NODECLARATIONS Do not compute the total number of declarations
5307 -- STATEMENTS Compute the total number of statements
5308 -- NOSTATEMENTS Do not compute the total number of statements
5309 -- PUBLIC_SUBPROGRAMS Compute the number of public subprograms
5310 -- NOPUBLIC_SUBPROGRAMS Do not compute the number of public subprograms
5311 -- ALL_SUBPROGRAMS Compute the number of all the subprograms
5312 -- NOALL_SUBPROGRAMS Do not compute the number of all the
5314 -- PUBLIC_TYPES Compute the number of public types
5315 -- NOPUBLIC_TYPES Do not compute the number of public types
5316 -- ALL_TYPES Compute the number of all the types
5317 -- NOALL_TYPES Do not compute the number of all the types
5318 -- UNIT_NESTING Compute the maximal program unit nesting
5320 -- NOUNIT_NESTING Do not compute the maximal program unit
5322 -- CONSTRUCT_NESTING Compute the maximal construct nesting level
5323 -- NOCONSTRUCT_NESTING Do not compute the maximal construct nesting
5326 -- All combinations of syntax element metrics options are allowed.
5328 S_Metric_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
5330 -- /EXTERNAL_REFERENCE="name=val"
5332 -- Specifies an external reference to the project manager. Useful only if
5333 -- /PROJECT_FILE is used.
5336 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
5338 S_Metric_Files
: aliased constant S
:= "/FILES=@" &
5342 -- Take as arguments the files that are listed in the specified
5345 S_Metric_Format
: aliased constant S
:= "/FORMAT_OUTPUT=" &
5354 "SHORT_SOURCE_FILE_NAME " &
5356 -- /FORMAT_OUTPUT=(option, option ...)
5358 -- Specifies the details of the tool output
5360 -- option may be one of the following:
5362 -- DEFAULT (D) Generate the text output only, use full
5363 -- argument source names in global information
5364 -- XML Generate the output in XML format
5365 -- XSD Generate the output in XML format, and
5366 -- generate an XML schema file that describes
5367 -- the structure of XML metrics report
5368 -- NO_TEXT Do not generate the text output (implies XML)
5369 -- SHORT_SOURCE_FILE_NAME Use short argument source names in output
5371 S_Metric_Globout
: aliased constant S
:= "/GLOBAL_OUTPUT=@" &
5373 -- /GLOBAL_OUTPUT=filename
5375 -- Put the textual global metric information into the specified file
5377 S_Metric_Line
: aliased constant S
:= "/LINE_METRICS=" &
5379 "!-la,!-lcode,!-lcomm," &
5387 "MIXED_CODE_COMMENTS " &
5389 "COMMENT_PERCENTAGE " &
5393 "AVERAGE_LINES_IN_BODIES " &
5395 -- NODOC (see /LINE_COUNT_METRICS)
5397 S_Metric_Lines
: aliased constant S
:= "/LINE_COUNT_METRICS=" &
5409 "--no-lines-code " &
5411 "--lines-comment " &
5412 "NOCOMMENT_LINES " &
5413 "--no-lines-comment " &
5414 "CODE_COMMENT_LINES " &
5415 "--lines-eol-comment " &
5416 "NOCODE_COMMENT_LINES " &
5417 "--no-lines-eol-comment " &
5418 "COMMENT_PERCENTAGE " &
5420 "NOCOMMENT_PERCENTAGE " &
5421 "--no-lines-ratio " &
5425 "--no-lines-blank " &
5426 "AVERAGE_BODY_LINES " &
5427 "--lines-average " &
5428 "NOAVERAGE_BODY_LINES " &
5429 "--no-lines-average";
5430 -- /LINE_COUNT_METRICS=(option, option ...)
5432 -- Specifies the line metrics to be computed (if at least one positive
5433 -- syntax element metric, line metric, complexity or coupling metric is
5434 -- specified then only explicitly specified line metrics are computed
5437 -- option may be one of the following:
5439 -- ALL (D) All the line metrics are computed
5440 -- NONE None of line metrics is computed
5441 -- ALL_LINES All lines are computed
5442 -- NOALL_LINES All lines are not computed
5443 -- CODE_LINES Lines with Ada code are computed
5444 -- NOCODE_LINES Lines with Ada code are not computed
5445 -- COMMENT_LINES Comment lines are computed
5446 -- NOCOMMENT_LINES Comment lines are not computed
5447 -- CODE_COMMENT_LINES Lines containing both code and comment parts
5449 -- NOCODE_COMMENT_LINES Lines containing both code and comment parts
5451 -- COMMENT_PERCENTAGE Ratio between comment lines and all the lines
5452 -- containing comments and program code is
5454 -- NOCOMMENT_PERCENTAGE Ratio between comment lines and all the lines
5455 -- containing comments and program code is not
5457 -- BLANK_LINES Blank lines are computed
5458 -- NOBLANK_LINES Blank lines are not computed
5459 -- AVERAGE_BODY_LINES Average number of code lines in subprogram,
5460 -- task and entry bodies and statement sequences
5461 -- of package bodies is computed
5462 -- NOAVERAGE_BODY_LINES Average number of code lines in subprogram,
5463 -- task and entry bodies and statement sequences
5464 -- of package bodies is not computed
5466 -- All combinations of line metrics options are allowed.
5468 S_Metric_Complexity
: aliased constant S
:= "/COMPLEXITY_METRICS=" &
5470 "--complexity-all " &
5472 "--no-complexity-all " &
5474 "--complexity-cyclomatic " &
5476 "--no-complexity-cyclomatic "&
5478 "--complexity-essential " &
5480 "--no-complexity-essential " &
5484 "--no-loop-nesting " &
5485 "AVERAGE_COMPLEXITY " &
5486 "--complexity-average " &
5487 "NOAVERAGE_COMPLEXITY " &
5488 "--no-complexity-average " &
5489 "EXTRA_EXIT_POINTS " &
5490 "--extra-exit-points " &
5491 "NOEXTRA_EXIT_POINTS " &
5492 "--no-extra-exit-points";
5493 -- /COMPLEXITY_METRICS=(option, option ...)
5495 -- Specifies the complexity metrics to be computed (if at least one
5496 -- positive syntax element metric, line metric, complexity or coupling
5497 -- metric is specified then only explicitly specified complexity metrics
5498 -- are computed and reported)
5500 -- option may be one of the following:
5502 -- ALL (D) All the complexity metrics are computed
5503 -- NONE None of complexity metrics is computed
5504 -- CYCLOMATIC Compute the McCabe Cyclomatic Complexity
5505 -- NOCYCLOMATIC Do not compute the McCabe Cyclomatic Complexity
5506 -- ESSENTIAL Compute the Essential Complexity
5507 -- NOESSENTIAL Do not compute the Essential Complexity
5508 -- LOOP_NESTING Compute the maximal loop nesting
5509 -- NOLOOP_NESTING Do not compute the maximal loop nesting
5510 -- AVERAGE_COMPLEXITY Compute the average complexity for executable
5512 -- NOAVERAGE_COMPLEXITY Do not compute the average complexity for
5513 -- executable bodies
5514 -- EXTRA_EXIT_POINTS Compute extra exit points metric
5515 -- NOEXTRA_EXIT_POINTS Do not compute extra exit points metric
5517 -- All combinations of line metrics options are allowed.
5519 S_Metric_Coupling
: aliased constant S
:= "/COUPLING_METRICS=" &
5523 "--tagged-coupling-out " &
5525 "--tagged-coupling-in " &
5527 "--hierarchy-coupling-out " &
5529 "--hierarchy-coupling-in " &
5531 "--unit-coupling-out " &
5533 "--unit-coupling-in " &
5535 "--control-coupling-out " &
5537 "--control-coupling-in";
5539 -- /COUPLING_METRICS=(option, option ...)
5541 -- Specifies the coupling metrics to be computed.
5543 -- option may be one of the following:
5545 -- ALL All the coupling metrics are computed
5546 -- NOALL (D) None of coupling metrics is computed
5547 -- TAGGED_OUT Compute tagged (class) far-out coupling
5548 -- TAGGED_IN Compute tagged (class) far-in coupling
5549 -- HIERARCHY_OUT Compute hieraqrchy (category) far-out coupling
5550 -- HIERARCHY_IN Compute hieraqrchy (category) far-in coupling
5551 -- UNIT_OUT Compute unit far-out coupling
5552 -- UNIT_IN Compute unit far-in coupling
5553 -- CONTROL_OUT Compute control far-out coupling
5554 -- CONTROL_IN Compute control far-in coupling
5557 -- All combinations of coupling metrics options are allowed.
5559 S_Metric_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
5561 -- /NOFOLLOW_LINKS_FOR_FILES (D)
5562 -- /FOLLOW_LINKS_FOR_FILES
5564 -- Follow links when parsing project files
5566 S_Metric_No_Local
: aliased constant S
:= "/NO_LOCAL_DETAILS " &
5568 -- /LOCAL_DETAILS (D)
5569 -- /NO_LOCAL_DETAILS
5571 -- Do not compute the detailed metrics for local program units.
5573 S_Metric_No_Exits_As_Gotos
: aliased constant S
:= "/NO_EXITS_AS_GOTOS " &
5575 -- /EXITS_AS_GOTOS (D)
5576 -- /NO_EXITS_AS_GOTOS
5578 -- Do not count EXIT statements as GOTOs when computing the Essential
5581 S_Metric_No_Static_Loop
: aliased constant S
:= "/NO_STATIC_LOOP " &
5586 -- Do not count static FOR loop statements when computing the Cyclomatic
5589 S_Metric_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
5596 -- /MESSAGES_PROJECT_FILE[=messages-option]
5598 -- Specifies the "verbosity" of the parsing of project files.
5599 -- messages-option may be one of the following:
5601 -- DEFAULT (D) No messages are output if there is no error or warning.
5603 -- MEDIUM A small number of messages are output.
5605 -- HIGH A great number of messages are output, most of them not
5606 -- being useful for the user.
5608 S_Metric_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
5610 -- /PROJECT_FILE=filename
5612 -- Specifies the main project file to be used. The project files rooted
5613 -- at the main project file will be parsed before the invocation of the
5616 S_Metric_Quiet
: aliased constant S
:= "/QUIET " &
5621 -- Quiet mode: by default GNAT METRIC outputs to the standard error stream
5622 -- the number of program units left to be processed. This option turns
5625 S_Metric_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
5629 -- The actual directories (object, exec, library, ...) are subdirectories
5630 -- of the directory specified in the project file. If the subdirectory
5631 -- does not exist, it is created automatically.
5633 S_Metric_Suffix
: aliased constant S
:= "/SUFFIX_DETAILS=" & '"' &
5635 -- /SUFFIX_DETAILS=suffix
5637 -- Use the given suffix as the suffix for the name of the file to place
5638 -- the detailed metrics into.
5640 S_Metric_Suppress
: aliased constant S
:= "/SUPPRESS=" &
5642 "!-nocc,!-noec,!-nonl," &
5644 "CYCLOMATIC_COMPLEXITY " &
5646 "ESSENTIAL_COMPLEXITY " &
5648 "MAXIMAL_LOOP_NESTING " &
5654 -- NODOC (see /COMPLEXITY_METRICS /NO_LOCAL_DETAILS /NO_EXITS_AS_GOTOS)
5656 S_Metric_Verbose
: aliased constant S
:= "/VERBOSE " &
5663 S_Metric_XMLout
: aliased constant S
:= "/XML_OUTPUT=@" &
5665 -- /XML_OUTPUT=filename
5667 -- Place the XML output into the specified file
5669 Metric_Switches
: aliased constant Switches
:=
5670 (S_Metric_Add
'Access,
5671 S_Metric_All_Prjs 'Access,
5672 S_Metric_Complexity
'Access,
5673 S_Metric_Coupling 'Access,
5674 S_Metric_Debug
'Access,
5675 S_Metric_Direct 'Access,
5676 S_Metric_Element
'Access,
5677 S_Metric_Ext 'Access,
5678 S_Metric_Files
'Access,
5679 S_Metric_Follow 'Access,
5680 S_Metric_Format
'Access,
5681 S_Metric_Globout 'Access,
5682 S_Metric_Line
'Access,
5683 S_Metric_Lines 'Access,
5684 S_Metric_Mess
'Access,
5685 S_Metric_No_Exits_As_Gotos'Access,
5686 S_Metric_No_Local 'Access,
5687 S_Metric_No_Static_Loop
'Access,
5688 S_Metric_Project 'Access,
5689 S_Metric_Quiet
'Access,
5690 S_Metric_Suffix 'Access,
5691 S_Metric_Subdirs
'Access,
5692 S_Metric_Syntax 'Access,
5693 S_Metric_Suppress
'Access,
5694 S_Metric_Verbose 'Access,
5695 S_Metric_XMLout
'Access);
5697 ----------------------------
5698 -- Switches for GNAT NAME --
5699 ----------------------------
5701 S_Name_Conf : aliased constant S := "/CONFIG_FILE=<" &
5703 -- /CONFIG_FILE=path_name
5705 -- Create a configuration pragmas file 'path_name
' (instead of the default
5706 -- 'gnat
.adc
'). 'path_name
' may include directory information. 'path_name
'
5707 -- must be writable. There may be only one qualifier /CONFIG_FILE.
5708 -- This qualifier is not compatible with qualifier /PROJECT_FILE.
5710 S_Name_Dirs : aliased constant S := "/SOURCE_DIRS=*" &
5712 -- /SOURCE_DIRS=(directory, ...)
5714 -- Look for source files in the specified directories. When this qualifier
5715 -- is specified, the current working directory will not be searched for
5716 -- source files, unless it is explicitly specified with a qualifier
5717 -- /SOURCE_DIRS or /DIRS_FILE. Several qualifiers /SOURCE_DIRS may be
5718 -- specified. If a directory is specified as a relative path, it is
5719 -- relative to the directory of the configuration pragmas file specified
5720 -- with qualifier /CONFIG_FILE, or to the directory of the project file
5721 -- specified with qualifier /PROJECT_FILE or, if neither qualifier
5722 -- /CONFIG_FILE nor qualifier /PROJECT_FILE are specified, it is relative
5723 -- to the current working directory. The directories specified with
5724 -- qualifiers /SOURCE_DIRS must exist and be readable.
5726 S_Name_Dfile : aliased constant S := "/DIRS_FILE=<" &
5728 -- /DIRS_FILE=file_name
5730 -- Look for source files in all directories listed in text file
5731 -- 'file_name
'. 'file_name
' must be an existing, readable text file.
5732 -- Each non empty line in the specified file must be a directory.
5733 -- Specifying qualifier /DIRS_FILE is equivalent to specifying as many
5734 -- qualifiers /SOURCE_DIRS as there are non empty lines in the specified
5737 S_Name_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
5739 -- /NOFOLLOW_LINKS_FOR_FILES (D)
5740 -- /FOLLOW_LINKS_FOR_FILES
5742 -- Follow links when parsing project files
5744 S_Name_Frng : aliased constant S := "/FOREIGN_PATTERN=" & '"' &
5746 -- /FOREIGN_PATTERN=<string>
5748 -- Specify a foreign pattern.
5749 -- Using this qualifier, it is possible to add sources of languages other
5750 -- than Ada to the list of sources of a project file. It is only useful
5751 -- if a qualifier /PROJECT_FILE is used. For example,
5753 -- GNAT NAME /PROJECT_FILE=PRJ /FOREIGN_PATTERN="*.C" "*.ADA"
5755 -- will look for Ada units in all files with the '.ADA
' extension, and
5756 -- will add to the list of file for project PRJ.GPR the C files with
5759 S_Name_Help : aliased constant S := "/HELP " &
5764 -- Output usage information to the standard output stream.
5766 S_Name_Proj : aliased constant S := "/PROJECT_FILE=<" &
5768 -- /PROJECT_FILE=file_name
5770 -- Create or update a project file. 'file_name
' may include directory
5771 -- information. The specified file must be writable. There may be only
5772 -- one qualifier /PROJECT_FILE. When a qualifier /PROJECT_FILE is
5773 -- specified, no qualifier /CONFIG_FILE may be specified.
5775 S_Name_Subdirs : aliased constant S := "/SUBDIRS=<" &
5779 -- The actual directories (object, exec, library, ...) are subdirectories
5780 -- of the directory specified in the project file. If the subdirectory
5781 -- does not exist, it is created automatically.
5783 S_Name_Verbose : aliased constant S := "/VERBOSE " &
5788 -- Verbose mode. Output detailed explanation of behavior to the standard
5789 -- output stream. This includes name of the file written, the name of the
5790 -- directories to search and, for each file in those directories whose
5791 -- name matches at least one of the Naming Patterns, an indication of
5792 -- whether the file contains a unit, and if so the name of the unit.
5794 S_Name_Excl : aliased constant S := "/EXCLUDED_PATTERN=" & '"' &
5796 -- /EXCLUDED_PATTERN=<string>
5798 -- Specify an excluded pattern.
5799 -- Using this qualifier, it is possible to exclude some files that would
5800 -- match the Naming patterns. For example,
5802 -- GNAT NAME /EXCLUDED_PATTERN="*_NT.ADA" "*.ADA"
5804 -- will look for Ada units in all files with the '.ADA
' extension, except
5805 -- those whose names end with '_NT
.ADA
'.
5807 Name_Switches : aliased constant Switches :=
5808 (S_Name_Conf 'Access,
5809 S_Name_Dirs
'Access,
5810 S_Name_Dfile 'Access,
5811 S_Name_Follow
'Access,
5812 S_Name_Frng 'Access,
5813 S_Name_Help
'Access,
5814 S_Name_Proj 'Access,
5815 S_Name_Subdirs
'Access,
5816 S_Name_Verbose 'Access,
5817 S_Name_Excl
'Access);
5819 ----------------------------------
5820 -- Switches for GNAT PREPROCESS --
5821 ----------------------------------
5823 S_Prep_Assoc : aliased constant S := "/ASSOCIATE=" & '"' &
5825 -- /ASSOCIATE="name=val"
5827 -- Defines a new symbol, associated with value. If no value is given
5828 -- on the command line, then symbol is considered to be True.
5829 -- This qualifier can be used in place of a definition file.
5831 S_Prep_Blank : aliased constant S := "/BLANK_LINES " &
5833 -- /NOBLANK_LINES (D)
5836 -- Causes both preprocessor lines and the lines deleted by preprocessing
5837 -- to be replaced by blank lines in the output source file, thus
5838 -- preserving line numbers in the output file.
5840 S_Prep_Com : aliased constant S := "/COMMENTS " &
5845 -- /COMMENTS causes both preprocessor lines and the lines deleted
5846 -- by preprocessing to be retained in the output source as comments marked
5847 -- with the special string "--! ". This option will result in line numbers
5848 -- being preserved in the output file.
5850 -- /NOCOMMENTS causes both preprocessor lines and the lines deleted by
5851 -- preprocessing to be replaced by blank lines in the output source file,
5852 -- thus preserving line numbers in the output file.
5854 S_Prep_Ref : aliased constant S := "/REFERENCE " &
5859 -- Causes a "Source_Reference" pragma to be generated that references the
5860 -- original input file, so that error messages will use the file name of
5861 -- this original file. Also implies /BLANK_LINES if /COMMENTS is not
5864 S_Prep_Remove : aliased constant S := "/REMOVE " &
5869 -- Preprocessor lines and deleted lines are completely removed from the
5872 S_Prep_Replace : aliased constant S := "/REPLACE_IN_COMMENTS " &
5874 -- /NOREPLACE_IN_COMMENTS (D)
5875 -- /REPLACE_IN_COMMENTS
5877 -- Causes preprocessor to scan comments and perform replacements on
5878 -- any $symbol occurrences within the comment text.
5880 S_Prep_Symbols : aliased constant S := "/SYMBOLS " &
5885 -- Causes a sorted list of symbol names and values to be listed on
5888 S_Prep_Undef : aliased constant S := "/UNDEFINED " &
5893 Prep_Switches : aliased constant Switches :=
5894 (S_Prep_Assoc 'Access,
5895 S_Prep_Blank
'Access,
5898 S_Prep_Remove 'Access,
5899 S_Prep_Replace
'Access,
5900 S_Prep_Symbols 'Access,
5901 S_Prep_Undef
'Access);
5903 ------------------------------
5904 -- Switches for GNAT PRETTY --
5905 ------------------------------
5907 S_Pretty_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
5909 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
5911 -- Add directories to the project search path.
5913 S_Pretty_Align : aliased constant S := "/ALIGN=" &
5926 "COMPONENT_CLAUSES " &
5928 -- /ALIGN[=align-option, align-option, ...]
5930 -- Set alignments. By default, all alignments (colons in declarations,
5931 -- initialisations in declarations, assignments and arrow delimiters) are
5934 -- align-option may be one of the following:
5936 -- OFF (D) Set all alignments to OFF
5937 -- COLONS Set alignments of colons in declarations to ON
5938 -- DECLARATIONS Set alignments of initialisations in declarations
5940 -- STATEMENTS Set alignments of assignments statements to ON
5941 -- ARROWS Set alignments of arrow delimiters to ON.
5942 -- COMPONENT_CLAUSES Set alignments of AT keywords in component
5945 -- Specifying one of the ON options without first specifying the OFF
5946 -- option has no effect, because by default all alignments are set to ON.
5948 S_Pretty_All_Prjs : aliased constant S := "/ALL_PROJECTS " &
5950 -- /NOALL_PROJECTS (D)
5952 -- When GNAT PRETTY is used with a Project File and no source is
5953 -- specified, the underlying tool gnatpp is called for all the
5954 -- sources of all the Project Files in the project tree.
5956 S_Pretty_Attrib : aliased constant S := "/ATTRIBUTE_CASING=" &
5963 -- /ATTRIBUTE_CASING[=casing-option]
5965 -- Set the case of the attributes. By default the attributes are in mixed
5967 -- casing-option may be one of the following:
5973 S_Pretty_Comments : aliased constant S := "/COMMENTS_LAYOUT=" &
5978 "STANDARD_INDENT " &
5986 -- /COMMENTS_LAYOUT[=layout-option, layout-option, ...]
5988 -- Set the comment layout. By default, comments use the GNAT style
5989 -- comment line indentation.
5991 -- layout-option may be one of the following:
5993 -- UNTOUCHED All the comments remain unchanged
5994 -- DEFAULT (D) GNAT style comment line indentation
5995 -- STANDARD_INDENT Standard comment line indentation
5996 -- GNAT_BEGINNING GNAT style comment beginning
5997 -- REFORMAT Reformat comment blocks
5998 -- KEEP_SPECIAL Keep unchanged special form comments
6000 -- All combinations of layout options are allowed, except for DEFAULT
6001 -- and STANDARD_INDENT which are mutually exclusive, and also if
6002 -- UNTOUCHED is specified, this must be the only option.
6004 -- The difference between "GNAT style comment line indentation" and
6005 -- "standard comment line indentation" is the following: for standard
6006 -- comment indentation, any comment line is indented as if it were
6007 -- a declaration or statement at the same place.
6008 -- For GNAT style comment indentation, comment lines which are
6009 -- immediately followed by if or case statement alternative, record
6010 -- variant or 'begin' keyword are indented as the keyword that follows
6013 -- Standard indentation:
6022 -- GNAT style indentation:
6031 -- Option "GNAT style comment beginning" means that for each comment
6032 -- which is not considered as non-formattable separator (that is, the
6033 -- comment line contains only dashes, or a comment line ends with two
6034 -- dashes), there will be at least two spaces between starting "--" and
6035 -- the first non-blank character of the comment.
6037 S_Pretty_Config : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
6039 -- /CONFIGURATION_PRAGMAS_FILE=file
6041 -- Specify a configuration pragmas file that need to be passed to the
6044 S_Pretty_Constr : aliased constant S := "/CONSTRUCT_LAYOUT=" &
6051 -- /CONSTRUCT_LAYOUT[=construct-option]
6053 -- Set construct layout. Default is GNAT style layout.
6054 -- construct-option may be one of the following:
6060 -- The difference between GNAT style and Compact layout on one hand
6061 -- and Uncompact layout on the other hand can be illustrated by the
6062 -- following examples:
6064 -- GNAT style and Uncompact layout
6067 -- type q is record type q is
6068 -- a : integer; record
6069 -- b : integer; a : integer;
6070 -- end record; b : integer;
6074 -- Block : declare Block :
6075 -- A : Integer := 3; declare
6076 -- begin A : Integer := 3;
6077 -- Proc (A, A); begin
6078 -- end Block; Proc (A, A);
6081 -- Clear : for J in 1 .. 10 loop Clear :
6082 -- A (J) := 0; for J in 1 .. 10 loop
6083 -- end loop Clear; A (J) := 0;
6087 -- A further difference between GNAT style layout and compact layout is
6088 -- that in GNAT style layout compound statements, return statements and
6089 -- bodies are always separated by empty lines.
6091 S_Pretty_Comind : aliased constant S := "/CONTINUATION_INDENT=#" &
6093 -- /CONTINUATION_INDENT=nnn
6095 -- Indentation level for continuation lines, nnn from 1 .. 9.
6096 -- The default value is one less than the (normal) indentation level,
6097 -- unless the indentation is set to 1: in that case the default value for
6098 -- continuation line indentation is also 1.
6100 S_Pretty_Compact_Is : aliased constant S := "/NO_SEPARATE_IS " &
6104 -- Do not place the IS keyword on a separate line in a subprogram body in
6105 -- case if the specification occupies more than one line.
6107 S_Pretty_Sep_Label : aliased constant S := "/SEPARATE_LABEL " &
6111 -- Place statement label(s) and the statement itself on separate lines.
6113 S_Pretty_Sep_Loop_Then : aliased constant S := "/SEPARATE_LOOP_THEN " &
6114 "--separate-loop-then";
6115 -- /SEPARATE_LOOP_THEN
6117 -- Place the THEN keyword in IF statement and the LOOP keyword in for-
6118 -- and while-loops on a separate line.
6120 S_Pretty_N_Sep_Loop_Then : aliased constant S := "/NO_SEPARATE_LOOP_THEN " &
6121 "--no-separate-loop-then";
6122 -- /NO_SEPARATE_LOOP_THEN
6124 -- Do not place the THEN keyword in IF statement and the LOOP keyword in
6125 -- for- and while-loops on a separate line.
6127 S_Pretty_Use_On_New_Line : aliased constant S := "/USE_ON_NEW_LINE " &
6128 "--use-on-new-line";
6131 -- Start any USE clause that is a part of a context clause from a
6134 S_Pretty_Stnm_On_Nw_Line : aliased constant S := "/STMT_NAME_ON_NEW_LINE " &
6135 "--separate-stmt-name";
6136 -- /STMT_NAME_ON_NEW_LINE
6138 -- For named block and loop statements use a separate line for the
6139 -- statement name, but do not use an extra indentation level for the
6140 -- statement itself.
6142 S_Pretty_Eol : aliased constant S := "/END_OF_LINE=" &
6151 -- /END_OF_LINE=[option]
6153 -- Specifies the form of the line terminators in the produced source.
6154 -- By default, the form of the line terminator depends on the platforms.
6155 -- On Unix and VMS, it is a Line Feed (LF) character. On Windows (DOS),
6156 -- It is a Carriage Return (CR) followed by a Line Feed.
6158 -- The Options DOS and CRLF are equivalent. The options UNIX and LF are
6161 S_Pretty_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
6163 -- /EXTERNAL_REFERENCE="name=val"
6165 -- Specifies an external reference to the project manager. Useful only if
6166 -- /PROJECT_FILE is used.
6169 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
6171 S_Pretty_Current : aliased constant S := "/CURRENT_DIRECTORY " &
6173 -- /CURRENT_DIRECTORY (D)
6175 -- Look for source files in the current working directory.
6177 -- /NOCURRENT_DIRECTORY
6178 -- Do not look for source files in the current working directory.
6180 S_Pretty_Dico : aliased constant S := "/DICTIONARY=*" &
6182 -- /DICTIONARY=(file_name, ...)
6184 -- Use each specified file as a dictionary file that defines the casing
6185 -- for a set of specified names, thereby overriding the effect on these
6186 -- names by any explicit or implicit /NAME_CASING qualifier.
6188 -- GNAT PRETTY implicitly uses a default dictionary file to define the
6189 -- casing for the Ada predefined names and the names declared in the GNAT
6192 -- The structure of a dictionary file, and details on the conventions
6193 -- used in the default dictionary file, are defined in the GNAT User's
6196 S_Pretty_Encoding : aliased constant S := "/RESULT_ENCODING=" &
6209 -- /RESULT_ENCODING[=encoding-type]
6211 -- Specify the wide character encoding method used when writing the
6212 -- reformatted code in the result file. 'encoding
-type' is one of the
6215 -- BRACKETS (D) Brackets encoding.
6217 -- HEX Hex ESC encoding.
6219 -- UPPER Upper half encoding.
6221 -- SHIFT_JIS Shift-JIS encoding.
6223 -- EUC EUC Encoding.
6225 -- UTF8 UTF-8 encoding.
6227 -- See 'HELP GNAT COMPILE
/WIDE_CHARACTER_ENCODING
' for an explanation
6228 -- about the different character encoding methods.
6230 S_Pretty_Enums : aliased constant S := "/ENUM_CASING=" &
6239 -- /ENUM_CASING=name-option
6241 -- Specify the casing of enumeration literals. If not specified, the
6242 -- casing of enumeration literals is defined by the NAME_CASING option.
6243 -- 'name
-option
' may be one of:
6245 -- AS_DECLARED Literals casing for defining occurrences are
6246 -- as they appear in the source file.
6248 -- LOWER_CASE Literals are in lower case.
6250 -- UPPER_CASE Literals are in upper case.
6252 -- MIXED_CASE Literals are in mixed case.
6254 S_Pretty_Files : aliased constant S := "/FILES=@" &
6258 -- Take as arguments the files that are listed in the specified
6261 S_Pretty_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
6263 -- /NOFOLLOW_LINKS_FOR_FILES (D)
6264 -- /FOLLOW_LINKS_FOR_FILES
6266 -- Follow links when parsing project files
6268 S_Pretty_Forced : aliased constant S := "/FORCED_OUTPUT=@" &
6270 -- /FORCED_OUTPUT=file
6272 -- Write the output into the specified file, overriding any possibly
6275 S_Pretty_Formfeed : aliased constant S := "/FORM_FEED_AFTER_PRAGMA_PAGE " &
6277 -- /FORM_FEED_AFTER_PRAGMA_PAGE
6279 -- When there is a pragma Page in the source, insert a Form Feed
6280 -- character immediately after the semicolon that follows the pragma
6283 S_Pretty_Indent : aliased constant S := "/INDENTATION_LEVEL=#" &
6285 -- /INDENTATION_LEVEL=nnn
6287 -- Specify the number of spaces to add for each indentation level.
6288 -- nnn must be between 1 and 9. The default is 3.
6290 S_Pretty_Keyword : aliased constant S := "/KEYWORD_CASING=" &
6295 -- /KEYWORD_CASING[=keyword-option]
6297 -- Specify the case of Ada keywords. The default is keywords in lower
6300 -- keyword-option may be one of the following:
6305 S_Pretty_Maxlen : aliased constant S := "/LINE_LENGTH_MAX=#" &
6307 -- /LINE_LENGTH_MAX=nnn
6309 -- Set the maximum line length, nnn from 32 ..256. The default is 79.
6311 S_Pretty_Maxact : aliased constant S := "/MAX_ACT=#" &
6312 "--call_threshold=#";
6315 -- If the number of parameter associations is greater than nnn and if at
6316 -- least one association uses named notation, start each association from
6319 S_Pretty_Maxind : aliased constant S := "/MAX_INDENT=#" &
6323 -- Do not use an additional indentation level for case alternatives
6324 -- and variants if their number is nnn or more. The default is 10.
6325 -- If nnn is zero, an additional indentation level is used for any
6326 -- number of case alternatives and variants.
6328 S_Pretty_Maxpar : aliased constant S := "/MAX_PAR=#" &
6329 "--par_threshold=#";
6332 -- If the number of parameter specifications is greater than nnn (or equal
6333 -- to nnn in case of a function), start each specification from a new line.
6334 -- The default value is 3.
6336 S_Pretty_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
6343 -- /MESSAGES_PROJECT_FILE[=messages-option]
6345 -- Specifies the "verbosity" of the parsing of project files.
6346 -- messages-option may be one of the following:
6348 -- DEFAULT (D) No messages are output if there is no error or warning.
6350 -- MEDIUM A small number of messages are output.
6352 -- HIGH A great number of messages are output, most of them not
6353 -- being useful for the user.
6355 S_Pretty_Names : aliased constant S := "/NAME_CASING=" &
6364 -- /NAME_CASING[=name-option]
6366 -- Specify the casing of names.
6367 -- 'name
-option
' may be one of:
6369 -- AS_DECLARED (D) Name casing for defining occurrences are as they
6370 -- appear in the source file.
6372 -- LOWER_CASE Names are in lower case.
6374 -- UPPER_CASE Names are in upper case.
6376 -- MIXED_CASE Names are in mixed case.
6378 S_Pretty_Replace_No_Backup : aliased constant S := "/REPLACE_NO_BACKUP " &
6380 -- /REPLACE_NO_BACKUP
6382 -- Replace the argument source with the pretty-printed source without
6383 -- creating any backup copy of the argument source.
6385 S_Pretty_No_Labels : aliased constant S := "/NO_MISSED_LABELS " &
6387 -- /NO_MISSED_LABELS
6389 -- Do not insert missing end/exit labels. The end label is the name of
6390 -- a construct that may optionally appear at the end of the construct.
6391 -- This includes the names of packages and subprograms.
6392 -- Similarly, the exit label is the name of a loop that may appear as the
6393 -- argument of an exit statement within the loop. By default, GNAT PRETTY
6394 -- inserts these end/exit labels when they are absent in the original
6395 -- source. This qualifier /NO_MISSED_LABELS suppresses this insertion,
6396 -- so that the formatted source reflects the original.
6398 S_Pretty_Notabs : aliased constant S := "/NOTABS " &
6402 -- Replace all tabulations in comments with spaces.
6404 S_Pretty_Numbers : aliased constant S := "/NUMBER_CASING=" &
6413 -- /NUMBER_CASING=name-option
6415 -- Specify the casing of named number names. If not specified, the casing
6416 -- of these names is defined by the NAME_CASING option. 'name
-option
'
6419 -- AS_DECLARED Names are cased as they appear in the declaration
6420 -- in the source file.
6422 -- LOWER_CASE Names are in lower case.
6424 -- UPPER_CASE Names are in upper case.
6426 -- MIXED_CASE Names are in mixed case.
6428 S_Pretty_Output : aliased constant S := "/OUTPUT=@" &
6432 -- Write the output to the specified file. If the file already exists,
6433 -- an error is reported.
6435 S_Pretty_Override : aliased constant S := "/OVERRIDING_REPLACE " &
6437 -- /NOOVERRIDING_REPLACE (D)
6438 -- /OVERRIDING_REPLACE
6440 -- Replace the argument source with the pretty-printed source and copy the
6441 -- argument source into filename.NPP, overriding any existing file if
6444 S_Pretty_Pragma : aliased constant S := "/PRAGMA_CASING=" &
6451 -- /PRAGMA_CASING[=pragma-option]
6453 -- Set the case of pragma identifiers. The default is Mixed case.
6454 -- pragma-option may be one of the following:
6460 S_Pretty_Project : aliased constant S := "/PROJECT_FILE=<" &
6462 -- /PROJECT_FILE=filename
6464 -- Specifies the main project file to be used. The project files rooted
6465 -- at the main project file will be parsed before any other processing to
6466 -- set the building environment.
6468 S_Pretty_Replace : aliased constant S := "/REPLACE " &
6473 -- Replace the argument source with the pretty-printed source and copy the
6474 -- argument source into filename.NPP. If filename.NPP already exists,
6475 -- report an error and exit.
6477 S_Pretty_RTS : aliased constant S := "/RUNTIME_SYSTEM=|" &
6479 -- /RUNTIME_SYSTEM=xxx
6481 -- Compile against an alternate runtime system named xxx or RTS-xxx.
6483 S_Pretty_Search : aliased constant S := "/SEARCH=*" &
6485 -- /SEARCH=(directory[,...])
6487 -- When looking for source files also look in directories specified.
6489 S_Pretty_Specific : aliased constant S := "/SPECIFIC_CASING " &
6493 -- Do not use the default dictionary file; instead, use the casing
6494 -- defined by a qualifier /NAME_CASING and/or any explicit dictionary
6495 -- file specified by a qualifier /DICTIONARY.
6497 S_Pretty_Standard : aliased constant S := "/STANDARD_OUTPUT " &
6499 -- /NOSTANDARD_OUTPUT (D)
6502 -- Redirect the output to the standard output.
6504 S_Pretty_Subdirs : aliased constant S := "/SUBDIRS=<" &
6508 -- The actual directories (object, exec, library, ...) are subdirectories
6509 -- of the directory specified in the project file. If the subdirectory
6510 -- does not exist, it is created automatically.
6512 S_Pretty_Types : aliased constant S := "/TYPE_CASING=" &
6521 -- /TYPE_CASING=name-option
6523 -- Specify the casing of subtype names (including first subtypes from
6524 -- type declarations). If not specified, the casing of these names is
6525 -- defined by the NAME_CASING option. 'name
-option
' is one of:
6527 -- AS_DECLARED Names are cased as they appear in the declaration
6528 -- in the source file.
6530 -- LOWER_CASE Names are in lower case.
6532 -- UPPER_CASE Names are in upper case.
6534 -- MIXED_CASE Names are in mixed case.
6536 S_Pretty_Verbose : aliased constant S := "/VERBOSE " &
6541 -- Verbose mode; GNAT PRETTY generates version information and then a
6542 -- trace of the actions it takes to produce or obtain the ASIS tree.
6544 S_Pretty_Warnings : aliased constant S := "/WARNINGS " &
6549 -- Issue a warning to the standard error stream if it is not possible
6550 -- to provide the required layout in the result source.
6551 -- By default such warnings are not activated.
6553 Pretty_Switches : aliased constant Switches :=
6554 (S_Pretty_Add 'Access,
6555 S_Pretty_Align
'Access,
6556 S_Pretty_All_Prjs 'Access,
6557 S_Pretty_Attrib
'Access,
6558 S_Pretty_Comments 'Access,
6559 S_Pretty_Compact_Is
'Access,
6560 S_Pretty_Config 'Access,
6561 S_Pretty_Constr
'Access,
6562 S_Pretty_Comind 'Access,
6563 S_Pretty_Current
'Access,
6564 S_Pretty_Dico 'Access,
6565 S_Pretty_Eol
'Access,
6566 S_Pretty_Ext 'Access,
6567 S_Pretty_Encoding
'Access,
6568 S_Pretty_Enums 'Access,
6569 S_Pretty_Files
'Access,
6570 S_Pretty_Follow 'Access,
6571 S_Pretty_Forced
'Access,
6572 S_Pretty_Formfeed 'Access,
6573 S_Pretty_Indent
'Access,
6574 S_Pretty_Keyword 'Access,
6575 S_Pretty_Maxlen
'Access,
6576 S_Pretty_Maxact 'Access,
6577 S_Pretty_Maxind
'Access,
6578 S_Pretty_Maxpar 'Access,
6579 S_Pretty_Mess
'Access,
6580 S_Pretty_Names 'Access,
6581 S_Pretty_No_Labels
'Access,
6582 S_Pretty_Notabs 'Access,
6583 S_Pretty_Numbers
'Access,
6584 S_Pretty_Output 'Access,
6585 S_Pretty_Override
'Access,
6586 S_Pretty_Pragma 'Access,
6587 S_Pretty_Replace
'Access,
6588 S_Pretty_Replace_No_Backup'Access,
6589 S_Pretty_Project 'Access,
6590 S_Pretty_RTS
'Access,
6591 S_Pretty_Search 'Access,
6592 S_Pretty_Sep_Label
'Access,
6593 S_Pretty_Sep_Loop_Then 'Access,
6594 S_Pretty_N_Sep_Loop_Then
'Access,
6595 S_Pretty_Subdirs 'Access,
6596 S_Pretty_Use_On_New_Line
'Access,
6597 S_Pretty_Stnm_On_Nw_Line 'Access,
6598 S_Pretty_Specific
'Access,
6599 S_Pretty_Standard 'Access,
6600 S_Pretty_Types
'Access,
6601 S_Pretty_Verbose 'Access,
6602 S_Pretty_Warnings
'Access);
6604 ------------------------------
6605 -- Switches for GNAT SHARED --
6606 ------------------------------
6608 S_Shared_Debug : aliased constant S := "/DEBUG=" &
6617 -- /DEBUG[=debug-option]
6620 -- Specifies the amount of debugging information included. 'debug
-option
'
6621 -- is one of the following:
6623 -- ALL (D) Include full debugging information.
6625 -- NONE Provide no debugging information. Same as /NODEBUG.
6627 -- TRACEBACK Provide sufficient debug information for a traceback.
6629 -- NOTRACEBACK Same as NONE.
6631 S_Shared_Image : aliased constant S := "/IMAGE=@" &
6633 -- /IMAGE=image-name
6635 -- 'image
-name
' specifies the name for the generated shared library.
6637 S_Shared_Ident : aliased constant S := "/IDENTIFICATION=" & '"' &
6638 "--for-linker=IDENT=" &
6640 -- /IDENTIFICATION="<string>"
6642 -- "<string>" specifies the string to be stored in the image file ident-
6643 -- ification field in the image header. It overrides any pragma Ident
6644 -- specified string.
6646 S_Shared_NoInhib
: aliased constant S
:= "/NOINHIBIT-IMAGE " &
6647 "--for-linker=--noinhibit-exec";
6648 -- /NOINHIBIT-EXEC (D)
6650 -- Preserve image if there are warnings. This is the default.
6652 S_Shared_Inhib
: aliased constant S
:= "/INHIBIT-IMAGE " &
6653 "--for-linker=--inhibit-exec";
6656 -- Remove image if there are warnings.
6658 S_Shared_Nofiles
: aliased constant S
:= "/NOSTART_FILES " &
6662 -- Link in default image initialization and startup functions.
6664 S_Shared_Verb
: aliased constant S
:= "/VERBOSE " &
6669 -- Causes additional information to be output, including a full list of
6670 -- the included object files. This switch option is most useful when you
6671 -- want to see what set of object files are being used in the link step.
6673 S_Shared_ZZZZZ
: aliased constant S
:= "/<other> " &
6677 -- Any other switch transmitted to the underlying linker.
6679 Shared_Switches
: aliased constant Switches
:=
6680 (S_Shared_Debug
'Access,
6681 S_Shared_Image 'Access,
6682 S_Shared_Ident
'Access,
6683 S_Shared_NoInhib 'Access,
6684 S_Shared_Inhib
'Access,
6685 S_Shared_Nofiles 'Access,
6686 S_Shared_Verb
'Access,
6687 S_Shared_ZZZZZ 'Access);
6689 -----------------------------
6690 -- Switches for GNAT STACK --
6691 -----------------------------
6693 S_Stack_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
6695 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6697 -- Add directories to the project search path.
6699 S_Stack_All
: aliased constant S
:= "/ALL_SUBPROGRAMS " &
6701 -- /NOALL_SUBPROGRAMS (D)
6704 -- Consider all subprograms as entry points.
6706 S_Stack_All_Cycles
: aliased constant S
:= "/ALL_CYCLES " &
6708 -- /NOALL_CYCLES (D)
6711 -- Extract all possible cycles in the call graph.
6713 S_Stack_All_Prjs
: aliased constant S
:= "/ALL_PROJECTS " &
6715 -- /NOALL_PROJECTS (D)
6718 -- When GNAT STACK is used with a Project File and no source is
6719 -- specified, the underlying tool gnatstack is called for all the
6720 -- units of all the Project Files in the project tree.
6722 S_Stack_Debug
: aliased constant S
:= "/DEBUG " &
6727 -- Generate internal debug information.
6729 S_Stack_Directory
: aliased constant S
:= "/DIRECTORY=*" &
6731 -- /DIRECTORY=(direc[,...])
6733 -- When looking for .ci files look also in directories specified.
6735 S_Stack_Entries
: aliased constant S
:= "/ENTRIES=*" &
6738 -- /ENTRY=(entry_point[,...])
6740 -- Name of symbol to be used as entry point for the analysis.
6742 S_Stack_Files
: aliased constant S
:= "/FILES=@" &
6746 -- Take as arguments the files that are listed in the specified
6749 S_Stack_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
6751 -- /NOFOLLOW_LINKS_FOR_FILES (D)
6752 -- /FOLLOW_LINKS_FOR_FILES
6754 -- Follow links when parsing project files
6756 S_Stack_Help
: aliased constant S
:= "/HELP " &
6761 -- Output a message explaining the usage of gnatstack.
6763 S_Stack_List
: aliased constant S
:= "/LIST=#" &
6767 -- Print the nnn subprograms requiring the biggest local stack usage. By
6768 -- default none will be displayed.
6770 S_Stack_Order
: aliased constant S
:= "/ORDER=" &
6775 -- /ORDER[=order-option]
6777 -- Specifies the order for displaying the different call graphs.
6778 -- order-option may be one of the following:
6780 -- STACK (D) Select stack usage order
6782 -- ALPHABETICAL Select alphabetical order
6784 S_Stack_Path
: aliased constant S
:= "/PATH " &
6789 -- Print all the subprograms that make up the worst-case path for every
6792 S_Stack_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
6794 -- /PROJECT_FILE=filename
6796 -- Specifies the main project file to be used. The project files rooted
6797 -- at the main project file will be parsed before the invocation of
6800 S_Stack_Output
: aliased constant S
:= "/OUTPUT=@" &
6804 -- Name of the file containing the generated graph (VCG format).
6806 S_Stack_Regexp
: aliased constant S
:= "/EXPRESSION=|" &
6809 -- /EXPRESSION=regular-expression
6811 -- Any symbol matching the regular expression will be considered as a
6812 -- potential entry point for the analysis.
6814 S_Stack_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
6818 -- The actual directories (object, exec, library, ...) are subdirectories
6819 -- of the directory specified in the project file. If the subdirectory
6820 -- does not exist, it is created automatically.
6822 S_Stack_Unbounded
: aliased constant S
:= "/UNBOUNDED=#" &
6826 -- Default stack size to be used for unbounded (dynamic) frames.
6828 S_Stack_Unknown
: aliased constant S
:= "/UNKNOWN=#" &
6832 -- Default stack size to be used for unknown (external) calls.
6834 S_Stack_Verbose
: aliased constant S
:= "/VERBOSE " &
6839 -- Specifies the amount of information to be displayed about the
6840 -- different subprograms. In verbose mode the full location of the
6841 -- subprogram will be part of the output, as well as detailed information
6842 -- about inaccurate data.
6844 S_Stack_Warnings
: aliased constant S
:= "/WARNINGS=" &
6855 -- /WARNINGS[=(keyword[,...])]
6857 -- The following keywords are supported:
6859 -- ALL Turn on all optional warnings
6861 -- CYCLES Turn on warnings for cycles
6863 -- UNBOUNDED Turn on warnings for unbounded frames
6865 -- EXTERNAL Turn on warnings for external calls
6867 -- INDIRECT Turn on warnings for indirect calls
6869 Stack_Switches
: aliased constant Switches
:=
6870 (S_Stack_Add
'Access,
6871 S_Stack_All 'Access,
6872 S_Stack_All_Cycles
'Access,
6873 S_Stack_All_Prjs 'Access,
6874 S_Stack_Debug
'Access,
6875 S_Stack_Directory 'Access,
6876 S_Stack_Entries
'Access,
6877 S_Stack_Files 'Access,
6878 S_Stack_Follow
'Access,
6879 S_Stack_Help 'Access,
6880 S_Stack_List
'Access,
6881 S_Stack_Order 'Access,
6882 S_Stack_Path
'Access,
6883 S_Stack_Project 'Access,
6884 S_Stack_Output
'Access,
6885 S_Stack_Regexp 'Access,
6886 S_Stack_Subdirs
'Access,
6887 S_Stack_Unbounded 'Access,
6888 S_Stack_Unknown
'Access,
6889 S_Stack_Verbose 'Access,
6890 S_Stack_Warnings
'Access);
6892 ----------------------------
6893 -- Switches for GNAT STUB --
6894 ----------------------------
6896 S_Stub_Add : aliased constant S := "/ADD_PROJECT_SEARCH_DIR=*" &
6898 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
6900 -- Add directories to the project search path.
6902 S_Stub_Config : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
6904 -- /CONFIGURATION_PRAGMAS_FILE=filespec
6906 -- Specifies a configuration pragmas file that must be taken into account
6909 S_Stub_Current : aliased constant S := "/CURRENT_DIRECTORY " &
6911 -- /CURRENT_DIRECTORY (D)
6912 -- /NOCURRENT_DIRECTORY
6914 -- Look for source, library or object files in the default directory.
6916 S_Stub_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
6918 -- /EXTERNAL_REFERENCE="name=val"
6920 -- Specifies an external reference to the project manager. Useful only if
6921 -- /PROJECT_FILE is used.
6924 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
6926 S_Stub_Follow : aliased constant S := "/FOLLOW_LINKS_FOR_FILES " &
6928 -- /NOFOLLOW_LINKS_FOR_FILES (D)
6929 -- /FOLLOW_LINKS_FOR_FILES
6931 -- Follow links when parsing project files
6933 S_Stub_Full : aliased constant S := "/FULL " &
6938 -- If the destination directory already contains a file with the name of
6939 -- the body file for the argument file spec, replace it with the generated
6940 -- body stub. If /FULL is not used and there is already a body file, this
6941 -- existing body file is not replaced.
6943 S_Stub_Header : aliased constant S := "/HEADER=" &
6948 -- /HEADER[=header-option]
6950 -- Specifies the form of the comment header above the generated body stub.
6951 -- If no /HEADER qualifier is specified, there is no comment header.
6952 -- header-option is one of the following:
6955 -- GENERAL (D) Put a sample comment header into the body stub.
6957 -- SPEC Put the comment header (i.e., all the comments
6958 -- preceding the compilation unit) from the source of the
6959 -- library unit declaration into the body stub.
6961 S_Stub_Header_File : aliased constant S := "/FROM_HEADER_FILE=<" &
6964 -- /FROM_HEADER_FILE==filename
6966 -- Use the content of the file as the comment header for a generated body
6969 S_Stub_Indent : aliased constant S := "/INDENTATION=#" &
6973 -- (nnn is a non-negative integer). Set the indentation level in the
6974 -- generated body stub to nnn. nnn=0 means "no indentation".
6975 -- Default indentation is 3.
6977 S_Stub_Keep : aliased constant S := "/KEEP " &
6982 -- Do not delete the tree file (i.e., the snapshot of the compiler
6983 -- internal structures used by gnatstub) after creating the body stub.
6985 S_Stub_Length : aliased constant S := "/LINE_LENGTH=#" &
6989 -- (n is a non-negative integer). Set the maximum line length in the body
6990 -- stub to nnn. Default is 78.
6992 S_Stub_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
6999 -- /MESSAGES_PROJECT_FILE[=messages-option]
7001 -- Specifies the "verbosity" of the parsing of project files.
7002 -- messages-option may be one of the following:
7004 -- DEFAULT (D) No messages are output if there is no error or warning.
7006 -- MEDIUM A small number of messages are output.
7008 -- HIGH A great number of messages are output, most of them not
7009 -- being useful for the user.
7011 S_Stub_No_Exc : aliased constant S := "/NO_EXCEPTION " &
7013 -- /NONO_EXCEPTION (D)
7016 -- Avoid raising PROGRAM_ERROR in the generated program unit stubs.
7018 S_Stub_No_Head : aliased constant S := "/NO_LOCAL_HEADER " &
7019 "--no-local-header";
7020 -- /NONO_LOCAL_HEADER (D)
7023 -- Do not put local comment header before body stub for local program unit.
7025 S_Stub_Output : aliased constant S := "/OUTPUT=@" &
7029 -- Body file name. This should be set if the argument file name does not
7030 -- follow the GNAT file naming conventions. If this switch is omitted,
7031 -- the default name for the body will be obtained from the argument file
7032 -- name according to the GNAT file naming conventions.
7034 S_Stub_Project : aliased constant S := "/PROJECT_FILE=<" &
7036 -- /PROJECT_FILE=filename
7038 -- Specifies the main project file to be used. The project files rooted
7039 -- at the main project file will be parsed before any other processing.
7040 -- The source and object directories to be searched will be communicated
7041 -- to gnatstub through logical names ADA_PRJ_INCLUDE_FILE and
7042 -- ADA_PRJ_OBJECTS_FILE.
7044 S_Stub_Quiet : aliased constant S := "/QUIET " &
7049 -- Quiet mode: do not generate a confirmation when a body is successfully
7050 -- created, and do not generate a message when a body is not required for
7051 -- an argument unit.
7053 S_Stub_Search : aliased constant S := "/SEARCH=*" &
7055 -- /SEARCH=(directory[,...])
7057 -- When looking for source files also look in directories specified.
7059 S_Stub_Subdirs : aliased constant S := "/SUBDIRS=<" &
7063 -- The actual directories (object, exec, library, ...) are subdirectories
7064 -- of the directory specified in the project file. If the subdirectory
7065 -- does not exist, it is created automatically.
7067 S_Stub_Tree : aliased constant S := "/TREE_FILE=" &
7074 -- /TREE_FILE[=treefile-option]
7076 -- Specify what to do with the tree file.
7077 -- treefile-option is one of the following:
7079 -- OVERWRITE (D) Overwrite the existing tree file. If the current
7080 -- directory already contains the file which, according
7081 -- to the GNAT file naming rules should be considered
7082 -- as a tree file for the argument source file, gnatstub
7083 -- will refuse to create the tree file needed to create
7084 -- a sample body unless this option is chosen.
7086 -- SAVE Do not remove the tree file (i.e., the snapshot
7087 -- of the compiler internal structures used by gnatstub)
7088 -- after creating the body stub.
7090 -- REUSE Reuse the tree file (if it exists) instead of
7092 -- Instead of creating the tree file for the library
7093 -- unit declaration, gnatstub tries to find it in the
7094 -- current directory and use it for creating a body.
7095 -- If the tree file is not found, no body is created.
7096 -- This option also implies `SAVE', whether
or not the
7097 -- latter is set explicitly.
7099 S_Stub_Verbose
: aliased constant S
:= "/VERBOSE " &
7104 -- Verbose mode: generate version information.
7106 Stub_Switches
: aliased constant Switches
:=
7107 (S_Stub_Add
'Access,
7108 S_Stub_Config 'Access,
7109 S_Stub_Current
'Access,
7111 S_Stub_Follow
'Access,
7112 S_Stub_Full 'Access,
7113 S_Stub_Header
'Access,
7114 S_Stub_Header_File'Access,
7115 S_Stub_Indent 'Access,
7116 S_Stub_Keep
'Access,
7117 S_Stub_Length 'Access,
7118 S_Stub_Mess
'Access,
7119 S_Stub_Output 'Access,
7120 S_Stub_Project
'Access,
7121 S_Stub_No_Exc 'Access,
7122 S_Stub_No_Head
'Access,
7123 S_Stub_Quiet 'Access,
7124 S_Stub_Search
'Access,
7125 S_Stub_Subdirs 'Access,
7126 S_Stub_Tree
'Access,
7127 S_Stub_Verbose 'Access);
7129 ----------------------------
7130 -- Switches for GNAT SYNC --
7131 ----------------------------
7133 S_Sync_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
7135 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
7137 -- Add directories to the project search path.
7139 S_Sync_All
: aliased constant S
:= "/ALL " &
7144 -- Also check the components of the GNAT run time and process the needed
7145 -- components of the GNAT RTL when building and analyzing the global
7146 -- structure for checking the global rules.
7148 S_Sync_Allproj
: aliased constant S
:= "/ALL_PROJECTS " &
7150 -- /NOALL_PROJECTS (D)
7153 -- When GNAT SYNC is used with a Project File and no source is
7154 -- specified, the underlying tool gnatsync is called for all the
7155 -- sources of all the Project Files in the project tree.
7157 S_Sync_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
7159 -- /EXTERNAL_REFERENCE="name=val"
7161 -- Specifies an external reference to the project manager. Useful only if
7162 -- /PROJECT_FILE is used.
7165 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
7167 S_Sync_Files
: aliased constant S
:= "/FILES=@" &
7171 -- Take as arguments the files that are listed in the specified
7174 S_Sync_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
7176 -- /NOFOLLOW_LINKS_FOR_FILES (D)
7177 -- /FOLLOW_LINKS_FOR_FILES
7179 -- Follow links when parsing project files
7181 S_Sync_Main
: aliased constant S
:= "/MAIN_SUBPROGRAM=@" &
7183 -- /MAIN_SUBPROGRAM=filename
7185 -- Specify the name of the file containing the main subprogram
7187 S_Sync_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
7194 -- /MESSAGES_PROJECT_FILE[=messages-option]
7196 -- Specifies the "verbosity" of the parsing of project files.
7197 -- messages-option may be one of the following:
7199 -- DEFAULT (D) No messages are output if there is no error or warning.
7201 -- MEDIUM A small number of messages are output.
7203 -- HIGH A great number of messages are output, most of them not
7204 -- being useful for the user.
7206 S_Sync_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
7208 -- /PROJECT_FILE=filename
7210 -- Specifies the main project file to be used. The project files rooted
7211 -- at the main project file will be parsed before the invocation of the
7212 -- gnatcheck. The source directories to be searched will be communicated
7213 -- to gnatcheck through logical name ADA_PRJ_INCLUDE_FILE.
7215 S_Sync_Quiet
: aliased constant S
:= "/QUIET " &
7220 -- Work quietly, only output warnings and errors.
7222 S_Sync_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
7226 -- The actual directories (object, exec, library, ...) are subdirectories
7227 -- of the directory specified in the project file. If the subdirectory
7228 -- does not exist, it is created automatically.
7230 S_Sync_Verb
: aliased constant S
:= "/VERBOSE " &
7235 -- The version number and copyright notice are output, as well as exact
7236 -- copies of the gnat1 commands spawned to obtain the chop control
7239 S_Sync_Exec
: aliased constant S
:= "/EXECUTION_TIME " &
7241 -- /NOEXECUTION_TIME (D)
7244 -- Output the execution time
7246 S_Sync_Details
: aliased constant S
:= "/DETAILS=" &
7253 -- /DETAILS[=options]
7255 -- Specifies the details of the output.
7256 -- Options may be one of the following:
7262 S_Sync_Warnoff
: aliased constant S
:= "/WARNINGS_OFF " &
7267 -- Turn warnings off
7269 S_Sync_Output
: aliased constant S
:= "/OUTPUT_FILE=<" &
7272 -- /OUTPUT_FILE=filename
7274 -- Redirect output to a text file
7276 Sync_Switches
: aliased constant Switches
:=
7277 (S_Sync_Add
'Access,
7279 S_Sync_Allproj
'Access,
7281 S_Sync_Follow
'Access,
7282 S_Sync_Files 'Access,
7283 S_Sync_Main
'Access,
7284 S_Sync_Mess 'Access,
7285 S_Sync_Project
'Access,
7286 S_Sync_Quiet 'Access,
7287 S_Sync_Subdirs
'Access,
7288 S_Sync_Verb 'Access,
7289 S_Sync_Exec
'Access,
7290 S_Sync_Details 'Access,
7291 S_Sync_Warnoff
'Access,
7292 S_Sync_Output 'Access);
7294 ----------------------------
7295 -- Switches for GNAT TEST --
7296 ----------------------------
7298 Test_Switches
: aliased constant Switches
:=
7301 ----------------------------
7302 -- Switches for GNAT XREF --
7303 ----------------------------
7305 S_Xref_Add
: aliased constant S
:= "/ADD_PROJECT_SEARCH_DIR=*" &
7307 -- /ADD_PROJECT_SEARCH_PATH=(directory[,...])
7309 -- Add directories to the project search path.
7311 S_Xref_All
: aliased constant S
:= "/ALL_FILES " &
7316 -- If this switch is present, FIND and XREF will parse the read-only
7317 -- files found in the library search path. Otherwise, these files will
7318 -- be ignored. This option can be used to protect Gnat sources or your
7319 -- own libraries from being parsed, thus making FIND and XREF much
7320 -- faster, and their output much smaller.
7322 S_Xref_Deriv
: aliased constant S
:= "/DERIVED_TYPES " &
7324 -- /NODERIVED_TYPES (D)
7327 -- Output the parent type reference for each matching derived types.
7329 S_Xref_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
7331 -- /EXTERNAL_REFERENCE="name=val"
7333 -- Specifies an external reference to the project manager. Useful only if
7334 -- /PROJECT_FILE is used.
7337 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
7339 S_Xref_Follow
: aliased constant S
:= "/FOLLOW_LINKS_FOR_FILES " &
7341 -- /NOFOLLOW_LINKS_FOR_FILES (D)
7342 -- /FOLLOW_LINKS_FOR_FILES
7344 -- Follow links when parsing project files
7346 S_Xref_Full
: aliased constant S
:= "/FULL_PATHNAME " &
7348 -- /NOFULL_PATHNAME (D)
7351 -- If this switch is set, the output file names will be preceded by their
7352 -- directory (if the file was found in the search path). If this switch
7353 -- is not set, the directory will not be printed.
7355 S_Xref_Global
: aliased constant S
:= "/IGNORE_LOCALS " &
7357 -- /NOIGNORE_LOCALS (D)
7360 -- If this switch is set, information is output only for library-level
7361 -- entities, ignoring local entities. The use of this switch may
7362 -- accelerate FIND and XREF.
7364 S_Xref_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
7371 -- /MESSAGES_PROJECT_FILE[=messages-option]
7373 -- Specifies the "verbosity" of the parsing of project files.
7374 -- messages-option may be one of the following:
7376 -- DEFAULT (D) No messages are output if there is no error or warning.
7378 -- MEDIUM A small number of messages are output.
7380 -- HIGH A great number of messages are output, most of them not
7381 -- being useful for the user.
7383 S_Xref_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
7387 -- Do not look for sources in the system default directory.
7389 S_Xref_Nostlib
: aliased constant S
:= "/NOSTD_LIBRARIES " &
7393 -- Do not look for library files in the system default directory.
7395 S_Xref_Object
: aliased constant S
:= "/OBJECT_SEARCH=*" &
7397 -- /OBJECT_SEARCH=(directory,...)
7399 -- When searching for library and object files, look in the specified
7400 -- directories. The order in which library files are searched is the same
7403 S_Xref_Project
: aliased constant S
:= "/PROJECT=@" &
7407 -- Specify a project file to use. By default, FIND and XREF will try to
7408 -- locate a project file in the current directory.
7410 -- If a project file is either specified or found by the tools, then the
7411 -- content of the source directory and object directory lines are added
7412 -- as if they had been specified respectively by /SOURCE_SEARCH and
7415 S_Xref_Prj
: aliased constant S
:= "/PROJECT_FILE=<" &
7417 -- /PROJECT_FILE=filename
7419 -- Specifies the main project file to be used. The project files rooted
7420 -- at the main project file will be parsed before doing any processing.
7421 -- The source and object directories to be searched will be communicated
7422 -- to gnatxref through logical names ADA_PRJ_INCLUDE_FILE and
7423 -- ADA_PRJ_OBJECTS_FILE.
7425 S_Xref_Search
: aliased constant S
:= "/SEARCH=*" &
7427 -- /SEARCH=(directory,...)
7430 -- /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
7432 S_Xref_Source
: aliased constant S
:= "/SOURCE_SEARCH=*" &
7434 -- /SOURCE_SEARCH=(directory,...)
7436 -- When looking for source files also look in the specified directories.
7437 -- The order in which source file search is undertaken is the same as for
7440 S_Xref_Subdirs
: aliased constant S
:= "/SUBDIRS=<" &
7444 -- The actual directories (object, exec, library, ...) are subdirectories
7445 -- of the directory specified in the project file. If the subdirectory
7446 -- does not exist, it is created automatically.
7448 S_Xref_Output
: aliased constant S
:= "/UNUSED " &
7450 -- /SOURCE_SEARCH=(directory,...)
7452 -- When looking for source files also look in the specified directories.
7453 -- The order in which source file search is undertaken is the same as for
7456 S_Xref_Tags
: aliased constant S
:= "/TAGS " &
7461 -- Print a 'tags' file for vi.
7463 Xref_Switches
: aliased constant Switches
:=
7464 (S_Xref_Add
'Access,
7466 S_Xref_Deriv
'Access,
7468 S_Xref_Follow
'Access,
7469 S_Xref_Full 'Access,
7470 S_Xref_Global
'Access,
7471 S_Xref_Mess 'Access,
7472 S_Xref_Nostinc
'Access,
7473 S_Xref_Nostlib 'Access,
7474 S_Xref_Object
'Access,
7475 S_Xref_Project 'Access,
7477 S_Xref_Search 'Access,
7478 S_Xref_Source
'Access,
7479 S_Xref_Subdirs 'Access,
7480 S_Xref_Output
'Access,
7481 S_Xref_Tags 'Access);