1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1996-2004 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 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
25 ------------------------------------------------------------------------------
27 -- This package contains, for each of the command of the GNAT driver, one
28 -- constant array; each component of this array is a string that defines,
29 -- in coded form as explained below, the conversion of a VMS qualifier of the
30 -- command to the corresponding switch of the GNAT tool corresponding to the
33 -- This package is used by the GNAT driver to invokes the GNAT tools with the
34 -- switches corresponding to the VMS qualifier and by the Project Manager to
35 -- convert VMS qualifiers in project files to their corresponding switch
38 -- This package is also an input to the tool that generates the VMS GNAT
39 -- help information automatically.
41 -- NOTE: the format of this package must follow the following rules, so that
42 -- the VMS GNAT help tool works properly:
44 -- - Each command zone (where the eventual qualifiers are declared must
45 -- begin with a boxed comment of the form:
47 -- ---------------------------------
48 -- -- Switches for GNAT <COMMAND> --
49 -- ---------------------------------
51 -- where <COMMAND> is the name of a GNAT command in capital letters, for
52 -- example BIND, COMPILE, XREF, ...
54 -- - each qualifier declaration must be followed either by
55 -- - a comment starting with "-- NODOC", to indicate that there is
56 -- no documentation for this qualifier, or
57 -- - a contiguous sequence of comments that constitute the
58 -- documentation of the qualifier.
60 -- - each command zone ends with the declaration of the contant array
61 -- for the command, of the form:
63 -- <Command>__Switches : aliased constant Switches :=
71 -- The syntax of a qualifier delaration is as follows:
73 -- SWITCH_STRING ::= "/ command-qualifier-name TRANSLATION"
77 -- | DIRECTORIES_TRANSLATION
79 -- | NO_SPACE_FILE_TRANSL
80 -- | NUMERIC_TRANSLATION
81 -- | STRING_TRANSLATION
82 -- | OPTIONS_TRANSLATION
83 -- | COMMANDS_TRANSLATION
84 -- | ALPHANUMPLUS_TRANSLATION
85 -- | OTHER_TRANSLATION
87 -- DIRECT_TRANSLATION ::= space UNIX_SWITCHES
88 -- DIRECTORIES_TRANSLATION ::= =* UNIX_SWITCH *
89 -- DIRECTORY_TRANSLATION ::= =% UNIX_SWITCH %
90 -- FILE_TRANSLATION ::= =@ UNIX_SWITCH @
91 -- NO_SPACE_FILE_TRANSL ::= =< UNIX_SWITCH >
92 -- NUMERIC_TRANSLATION ::= =# UNIX_SWITCH # | # number #
93 -- STRING_TRANSLATION ::= =" UNIX_SWITCH "
94 -- OPTIONS_TRANSLATION ::= =OPTION {space OPTION}
95 -- COMMANDS_TRANSLATION ::= =? ARGS space command-name
96 -- ALPHANUMPLUS_TRANSLATION ::= =| UNIX_SWITCH |
98 -- UNIX_SWITCHES ::= UNIX_SWITCH {, UNIX_SWITCH}
100 -- UNIX_SWITCH ::= unix-switch-string | !unix-switch-string | `string'
102 -- OPTION ::= option-name space UNIX_SWITCHES
104 -- ARGS ::= -cargs | -bargs | -largs
106 -- Here command-qual is the name of the switch recognized by the GNATCmd.
107 -- This is always given in upper case in the templates, although in the
108 -- actual commands, either upper or lower case is allowed.
110 -- The unix-switch-string always starts with a minus, and has no commas
111 -- or spaces in it. Case is significant in the unix switch string. If a
112 -- unix switch string is preceded by the not sign (!) it means that the
113 -- effect of the corresponding command qualifer is to remove any previous
114 -- occurrence of the given switch in the command line.
116 -- The DIRECTORIES_TRANSLATION format is used where a list of directories
117 -- is given. This possible corresponding formats recognized by GNATCmd are
118 -- as shown by the following example for the case of PATH
121 -- PATH=(direc,direc,direc,direc)
123 -- When more than one directory is present for the DIRECTORIES case, then
124 -- multiple instances of the corresponding unix switch are generated,
125 -- with the file name being substituted for the occurrence of *.
127 -- The FILE_TRANSLATION format is similar except that only a single
128 -- file is allowed, not a list of files, and only one unix switch is
129 -- generated as a result.
131 -- the NO_SPACE_FILE_TRANSL is similar to FILE_TRANSLATION, except that
132 -- no space is inserted between the switch and the file name.
134 -- The NUMERIC_TRANSLATION format is similar to the FILE_TRANSLATION case
135 -- except that the parameter is a decimal integer in the range 0 to 999.
137 -- For the OPTIONS_TRANSLATION case, GNATCmd similarly permits one or
138 -- more options to appear (although only in some cases does the use of
139 -- multiple options make logical sense). For example, taking the
140 -- case of ERRORS for GCC, the following are all allowed:
143 -- /ERRORS=(FULL,VERBOSE)
144 -- /ERRORS=(BRIEF IMMEDIATE)
146 -- If no option is provided (e.g. just /ERRORS is written), then the
147 -- first option in the list is the default option. For /ERRORS this
148 -- is NORMAL, so /ERRORS with no option is equivalent to /ERRORS=NORMAL.
150 -- The COMMANDS_TRANSLATION case is only used for gnatmake, to correspond
151 -- to the use of -cargs, -bargs and -largs (the ARGS string as indicated
152 -- is one of these three possibilities). The name given by COMMAND is the
153 -- corresponding command name to be used to interprete the switches to be
154 -- passed on. Switches of this type set modes, e.g. /COMPILER_QUALIFIERS
155 -- sets the mode so that all subsequent switches, up to another switch
156 -- with COMMANDS_TRANSLATION apply to the corresponding commands issued
157 -- by the make utility. For example
159 -- /COMPILER_QUALIFIERS /LIST /BINDER_QUALIFIERS /MAIN
160 -- /COMPILER_QUALIFIERS /NOLIST /COMPILE_CHECKS=SYNTAX
162 -- Clearly these switches must come at the end of the list of switches
163 -- since all subsequent switches apply to an issued command.
165 -- For the DIRECT_TRANSLATION case, an implicit additional qualifier
166 -- declaration is created by prepending NO to the name of the qualifer,
167 -- and then inverting the sense of the UNIX_SWITCHES string. For example,
168 -- given the qualifier definition:
172 -- An implicit qualifier definition is created:
176 -- In the case where, a ! is already present, inverting the sense of the
177 -- switch means removing it.
180 -- A synonym to shorten the table
182 type String_Ptr
is access constant String;
183 -- String pointer type used throughout
185 type Switches
is array (Natural range <>) of String_Ptr
;
186 -- Type used for array of swtiches
188 type Switches_Ptr
is access constant Switches
;
190 ----------------------------
191 -- Switches for GNAT BIND --
192 ----------------------------
194 S_Bind_Bind
: aliased constant S
:= "/BIND_FILE=" &
199 -- /BIND_FILE[=bind-file-option]
201 -- Specifies the language of the binder generated file.
203 -- ADA (D) Binder file is Ada.
205 -- C Binder file is 'C'.
207 S_Bind_Build
: aliased constant S
:= "/BUILD_LIBRARY=|" &
209 -- /BUILD_LIBRARY=xxx
211 -- Binds the units for library building. In this case the adainit and
212 -- adafinal procedures are rename to xxxinit and xxxfinal. Implies
215 S_Bind_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
217 -- /CURRENT_DIRECTORY (D)
218 -- /NOCURRENT_DIRECTORY
220 -- Look for source, library or object files in the default directory.
222 S_Bind_Debug
: aliased constant S
:= "/DEBUG=" &
237 -- /DEBUG[=debug-level]
240 -- Specify level of debugging information generated for the elaboration
241 -- routine. See corresponding qualifier for GNAT COMPILE.
243 S_Bind_DebugX
: aliased constant S
:= "/NODEBUG " &
245 -- NODOC (see /DEBUG)
247 S_Bind_Elab
: aliased constant S
:= "/ELABORATION_DEPENDENCIES " &
249 -- /ELABORATION_DEPENDENCIES
250 -- /NOELABORATION_DEPENDENCIES (D)
252 -- Output complete list of elaboration-order dependencies, showing the
253 -- reason for each dependency. This output can be rather extensive but may
254 -- be useful in diagnosing problems with elaboration order. The output is
255 -- written to SYS$OUTPUT.
257 S_Bind_Error
: aliased constant S
:= "/ERROR_LIMIT=#" &
261 -- Limit number of detected errors to nnn (1-999999).
263 S_Bind_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
265 -- /EXTERNAL_REFERENCE="name=val"
267 -- Specifies an external reference to the project manager. Useful only if
268 -- /PROJECT_FILE is used.
271 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
273 S_Bind_Force
: aliased constant S
:= "/FORCE_ELAB_FLAGS " &
275 -- /NOFORCE_ELAB_FLAGS (D)
278 -- Force checking of elaboration Flags
280 S_Bind_Help
: aliased constant S
:= "/HELP " &
284 -- Output usage information.
286 S_Bind_Init
: aliased constant S
:= "/INITIALIZE_SCALARS=" &
293 -- /INITIALIZE_SCALARS[=scalar-option]
295 -- Indicate how uninitialized scalar values for which a pragma
296 -- Initialize_Scalars applies should be initialized.
297 -- scalar-option may be one of the following:
299 -- INVALID (D) Initialize with an invalid value.
300 -- LOW Initialize with the lowest valid value of the subtype.
301 -- HIGH Initialize with the highest valid value of the subtype.
303 S_Bind_Library
: aliased constant S
:= "/LIBRARY_SEARCH=*" &
305 -- /LIBRARY_SEARCH=(direc[,...])
307 -- When looking for library and object files look also in directories
310 S_Bind_Linker
: aliased constant S
:= "/LINKER_OPTION_LIST " &
312 -- /NOLINKER_OPTION_LIST (D)
313 -- /LINKER_OPTION_LIST
315 -- Output linker options to SYS$OUTPUT. Includes library search
316 -- paths, contents of pragmas Ident and Linker_Options, and
317 -- libraries added by GNAT BIND.
319 S_Bind_Main
: aliased constant S
:= "/MAIN " &
323 -- The main program is in Ada.
327 -- The main program is not in Ada.
329 S_Bind_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
336 -- /MESSAGES_PROJECT_FILE[=messages-option]
338 -- Specifies the "verbosity" of the parsing of project files.
339 -- messages-option may be one of the following:
341 -- DEFAULT (D) No messages are output if there is no error or warning.
343 -- MEDIUM A small number of messages are output.
345 -- HIGH A great number of messages are output, most of them not
346 -- being useful for the user.
348 S_Bind_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
352 -- Do not look for sources the in the system default directory.
354 S_Bind_Nostlib
: aliased constant S
:= "/NOSTD_LIBRARIES " &
358 -- Do not look for library files in the system default directory.
360 S_Bind_No_Time
: aliased constant S
:= "/NO_TIME_STAMP_CHECK " &
362 -- NODOC (see /TIME_STAMP_CHECK)
364 S_Bind_Object
: aliased constant S
:= "/OBJECT_LIST " &
366 -- /NOOBJECT_LIST (D)
369 -- Output full names of all the object files that must be linker to
370 -- provide the Ada component of the program. The output is written to
373 S_Bind_Order
: aliased constant S
:= "/ORDER_OF_ELABORATION " &
375 -- /NOORDER_OF_ELABORATION (D)
376 -- /ORDER_OF_ELABORATION
378 -- Output chosen elaboration order. The output is written to SYS$OUTPUT.
380 S_Bind_Output
: aliased constant S
:= "/OUTPUT=@" &
384 -- File name to use for the program containing the elaboration code.
386 S_Bind_OutputX
: aliased constant S
:= "/NOOUTPUT " &
390 -- Check only. Do not generate the binder output file.
392 -- In this mode the binder performs all error checks but does not generate
395 S_Bind_Pess
: aliased constant S
:= "/PESSIMISTIC_ELABORATION " &
397 -- /PESSIMISTIC_ELABORATION
399 -- Causes the binder to choose a "pessimistic" elaboration order, i.e. one
400 -- which is most likely to cause elaboration order problems. This can be
401 -- useful in testing portable code to make sure that there are no missing
402 -- elaborate pragmas.
404 S_Bind_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
406 -- /PROJECT_FILE=filename
408 -- Specifies the main project file to be used. The project files rooted
409 -- at the main project file will be parsed before the invocation of the
410 -- binder. The source and object directories to be searched will be
411 -- communicated to the binder through logical names ADA_PRJ_INCLUDE_FILE
412 -- and ADA_PRJ_OBJECTS_FILE.
414 S_Bind_Read
: aliased constant S
:= "/READ_SOURCES=" &
421 -- /READ_SOURCES[=(keyword[,...])]
424 -- The following keyword are accepted:
426 -- ALL (D) Require source files to be present. In this mode, the
427 -- binder insists on being able to locate all source files
428 -- that are referenced and checks their consistency. In
429 -- normal mode, if a source file cannot be located it is
430 -- simply ignored. If you specify the ALL keyword, a
431 -- missing source file is an error.
433 -- NONE Exclude source files. In this mode, the binder only
434 -- checks that ALI files are consistent with one another.
435 -- source files are not accessed. The binder runs faster
436 -- in this mode, and there is still a guarantee that the
437 -- resulting program is self-consistent.
439 -- If a source file has been edited since it was last
440 -- compiled and you specify the NONE keyword, the binder
441 -- will not detect that the object file is out of date
442 -- with the source file.
444 -- This is the same as specifying /NOREAD_SOURCES.
446 -- AVAILABLE Check that object files are consistent with one
447 -- another and are consistent with any source files that
450 S_Bind_ReadX
: aliased constant S
:= "/NOREAD_SOURCES " &
452 -- NODOC (see /READ_SOURCES)
454 S_Bind_Rename
: aliased constant S
:= "/RENAME_MAIN=<" &
458 -- Renames the generated main program from main to xxx.
459 -- This is useful in the case of some cross-building environments, where
460 -- the actual main program is separate from the one generated
463 S_Bind_Report
: aliased constant S
:= "/REPORT_ERRORS=" &
470 -- /REPORT_ERRORS[=(keyword[,...])]
476 -- With the DEFAULT keyword (which is not the default when the binder is
477 -- run from GNAT BIND) or the /NOREPORT_ERRORS qualifier, brief error
478 -- messages are generated to SYS$ERROR. If the VERBOSE keyword is
479 -- present, a header is written to SYS$OUTPUT and any error messages are
480 -- directed to SYS$OUTPUT All that is written to SYS$ERROR is a brief
483 -- If the BRIEF keyword is specified, the binder will generate brief error
484 -- messages to SYS$ERROR even if verbose mode is specified. This is
485 -- relevant only when used together with the VERBOSE keyword or /VERBOSE
488 S_Bind_ReportX
: aliased constant S
:= "/NOREPORT_ERRORS " &
490 -- NODOC (see /REPORT_ERRORS)
492 S_Bind_Restr
: aliased constant S
:= "/RESTRICTION_LIST " &
494 -- /NORESTRICTION_LIST (D)
497 -- Generate list of pragma Rerstrictions that could be applied to the
498 -- current unit. This is useful for code audit purposes, and also may be
499 -- used to improve code generation in some cases.
501 S_Bind_RTS
: aliased constant S
:= "/RUNTIME_SYSTEM=|" &
503 -- /RUNTIME_SYSTEM=xxx
505 -- Binds against an alternate runtime system named xxx or RTS-xxx.
507 S_Bind_Search
: aliased constant S
:= "/SEARCH=*" &
509 -- /SEARCH=(directory[,...])
511 -- When looking for source or object files also look in directories
514 -- This is the same as specifying both /LIBRARY_SEARCH and /SOURCE_SEARCH
517 S_Bind_Shared
: aliased constant S
:= "/SHARED " &
522 -- Link against a shared GNAT run time when available.
524 S_Bind_Slice
: aliased constant S
:= "/TIME_SLICE=#" &
528 -- Set the time slice value to nnn milliseconds. A value of zero means no
529 -- time slicing and also indicates to the tasking run time to match as
530 -- close as possible to the annex D requirements of the RM.
532 S_Bind_Source
: aliased constant S
:= "/SOURCE_SEARCH=*" &
534 -- /SOURCE_SEARCH=(directory[,...])
536 -- When looking for source files also look in directories specified.
538 S_Bind_Static
: aliased constant S
:= "/STATIC " &
543 -- Link against a static GNAT run time.
545 S_Bind_Store
: aliased constant S
:= "/STORE_TRACEBACKS " &
547 -- /STORE_TRACEBACKS (D)
548 -- /NOSTORE_TRACEBACKS
550 -- Store tracebacks in exception occurrences.
551 -- This is the default on VMS, with the zero-cost exception mechanism.
552 -- This qualifier has no impact, except when using the setjmp/longjmp
553 -- exception mechanism, with the GNAT COMPILE qualifier /LONGJMP_SETJMP.
555 S_Bind_Time
: aliased constant S
:= "/TIME_STAMP_CHECK " &
557 -- /TIME_STAMP_CHECK (D)
559 -- Time stamp errors will be treated as errors.
561 -- /NOTIME_STAMP_CHECK
563 -- Ignore time stamp errors. Any time stamp error messages are treated as
564 -- warning messages. This switch essentially disconnects the normal
565 -- consistency checking, and the resulting program may have undefined
566 -- semantics if inconsistent units are present.
568 -- This means that /NOTIME_STAMP_CHECK should be used only in unusual
569 -- situations, with extreme care.
571 S_Bind_Verbose
: aliased constant S
:= "/VERBOSE " &
576 -- Equivalent to /REPORT_ERRORS=VERBOSE.
578 S_Bind_Warn
: aliased constant S
:= "/WARNINGS=" &
585 -- /WARNINGS[=(keyword[,...])]
588 -- The following keywords are supported:
590 -- NORMAL (D) Print warning messages and treat them as warning.
591 -- SUPPRESS Suppress all warning messages (same as /NOWARNINGS).
592 -- ERROR Treat any warning messages as fatal errors
594 S_Bind_WarnX
: aliased constant S
:= "/NOWARNINGS " &
596 -- NODOC (see /WARNINGS)
598 S_Bind_Zero
: aliased constant S
:= "/ZERO_MAIN " &
603 -- Normally the binder checks that the unit name given on the command line
604 -- corresponds to a suitable main subprogram. When /ZERO_MAIN is used,
605 -- a list of ALI files can be given, and the execution of the program
606 -- consists of elaboration of these units in an appropriate order.
608 Bind_Switches
: aliased constant Switches
:=
609 (S_Bind_Bind
'Access,
610 S_Bind_Build 'Access,
611 S_Bind_Current
'Access,
612 S_Bind_Debug 'Access,
613 S_Bind_DebugX
'Access,
615 S_Bind_Error
'Access,
617 S_Bind_Force
'Access,
620 S_Bind_Library 'Access,
621 S_Bind_Linker
'Access,
624 S_Bind_Nostinc 'Access,
625 S_Bind_Nostlib
'Access,
626 S_Bind_No_Time 'Access,
627 S_Bind_Object
'Access,
628 S_Bind_Order 'Access,
629 S_Bind_Output
'Access,
630 S_Bind_OutputX 'Access,
632 S_Bind_Project 'Access,
634 S_Bind_ReadX 'Access,
635 S_Bind_Rename
'Access,
636 S_Bind_Report 'Access,
637 S_Bind_ReportX
'Access,
638 S_Bind_Restr 'Access,
640 S_Bind_Search 'Access,
641 S_Bind_Shared
'Access,
642 S_Bind_Slice 'Access,
643 S_Bind_Source
'Access,
644 S_Bind_Static 'Access,
645 S_Bind_Store
'Access,
647 S_Bind_Verbose
'Access,
649 S_Bind_WarnX
'Access,
650 S_Bind_Zero 'Access);
652 ----------------------------
653 -- Switches for GNAT CHOP --
654 ----------------------------
656 S_Chop_Comp
: aliased constant S
:= "/COMPILATION " &
658 -- /NOCOMPILATION (D)
661 -- Compilation mode, handle configuration pragmas strictly according to
664 S_Chop_File
: aliased constant S
:= "/FILE_NAME_MAX_LENGTH=#" &
666 -- /FILE_NAME_MAX_LENGTH[=nnn]
668 -- Limit generated file names to NNN (default of 8) characters. This is
669 -- useful if the resulting set of files is required to be interoperable
670 -- with systems like MS-DOS which limit the length of file names.
672 S_Chop_Help
: aliased constant S
:= "/HELP " &
677 -- Print usage information.
679 S_Chop_Over
: aliased constant S
:= "/OVERWRITE " &
684 -- Overwrite existing file names. Normally GNAT CHOP regards it as a
685 -- fatal error situation if there is already a file with the same name as
686 -- a file it would otherwise output. The /OVERWRITE qualifier bypasses
687 -- this check, and any such existing files will be silently overwritten.
689 S_Chop_Pres
: aliased constant S
:= "/PRESERVE " &
694 -- Causes the file modification time stamp of the input file to be
695 -- preserved and used for the time stamp of the output file(s). This may
696 -- be useful for preserving coherency of time stamps in an enviroment
697 -- where gnatchop is used as part of a standard build process.
699 S_Chop_Quiet
: aliased constant S
:= "/QUIET " &
704 -- Work quietly, only output warnings and errors.
706 S_Chop_Ref
: aliased constant S
:= "/REFERENCE " &
711 -- Generate "Source_Reference" pragmas. Use this qualifier if the output
712 -- files are regarded as temporary and development is to be done in terms
713 -- of the original unchopped file. The /REFERENCE qualifier causes
714 -- "Source_Reference" pragmas to be inserted into each of the generated
715 -- files to refers back to the original file name and line number. The
716 -- result is that all error messages refer back to the original unchopped
719 -- In addition, the debugging information placed into the object file
720 -- (when the /DEBUG qualifier of GNAT COMPILE or GNAT MAKE is specified)
721 -- also refers back to this original file so that tools like profilers
722 -- and debuggers will give information in terms of the original unchopped
725 S_Chop_Verb
: aliased constant S
:= "/VERBOSE " &
730 -- The version number and copyright notice are output, as well as exact
731 -- copies of the gnat1 commands spawned to obtain the chop control
734 Chop_Switches
: aliased constant Switches
:=
735 (S_Chop_Comp
'Access,
740 S_Chop_Quiet 'Access,
742 S_Chop_Verb 'Access);
744 -----------------------------
745 -- Switches for GNAT CLEAN --
746 -----------------------------
748 S_Clean_Compil
: aliased constant S
:= "/COMPILER_FILES_ONLY " &
750 -- /NOCOMPILER_FILES_ONLY (D)
751 -- /COMPILER_FILES_ONLY
753 -- Only attempt to delete the files produced by the compiler, not those
754 -- produced by the binder or the linker. The files that are not to be
755 -- deleted are library files, interface copy files, binder generated files
756 -- and executable files.
758 S_Clean_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
760 -- /CURRENT_DIRECTORY (D)
762 -- Look for ALI or object files in the directory where GNAT CLEAN was
765 -- /NOCURRENT_DIRECTORY
767 -- Do not look for ALI or object files in the directory where GNAT CLEAN
770 S_Clean_Delete
: aliased constant S
:= "/DELETE " &
774 -- Delete the files that are not read-only.
778 -- Informative-only mode. Do not delete any files. Output the list of the
779 -- files that would have been deleted if this switch was not specified.
781 S_Clean_Dirobj
: aliased constant S
:= "/DIRECTORY_OBJECTS=@" &
783 -- /DIRECTORY_OBJECTS=<file>
785 -- Find the object files and .ALI files in <file>.
786 -- This qualifier is not compatible with /PROJECT_FILE.
788 S_Clean_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
790 -- /EXTERNAL_REFERENCE="name=val"
792 -- Specifies an external reference to the project manager. Useful only if
793 -- /PROJECT_FILE is used.
796 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
798 S_Clean_Full
: aliased constant S
:= "/FULL_PATH_IN_BRIEF_MESSAGES " &
800 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
801 -- /FULL_PATH_IN_BRIEF_MESSAGES
803 -- When using project files, if some errors or warnings are detected
804 -- during parsing and verbose mode is not in effect (no use of qualifier
805 -- /VERBOSE), then error lines start with the full path name of the
806 -- project file, rather than its simple file name.
808 S_Clean_Help
: aliased constant S
:= "/HELP " &
813 -- Output a message explaining the usage of gnatclean.
815 S_Clean_Index
: aliased constant S
:= "/SOURCE_INDEX=#" &
819 -- Specifies the index of the units in the source file
820 -- By default, source files are mono-unit and there is no index
822 S_Clean_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
829 -- /MESSAGES_PROJECT_FILE[=messages-option]
831 -- Specifies the "verbosity" of the parsing of project files.
832 -- messages-option may be one of the following:
834 -- DEFAULT (D) No messages are output if there is no error or warning.
836 -- MEDIUM A small number of messages are output.
838 -- HIGH A great number of messages are output, most of them not
839 -- being useful for the user.
841 S_Clean_Object
: aliased constant S
:= "/OBJECT_SEARCH=*" &
843 -- /OBJECT_SEARCH=(directory,...)
845 -- When searching for library and object files, look in the specified
846 -- directories. The order in which library files are searched is the same
849 S_Clean_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
851 -- /PROJECT_FILE=filename
853 -- Specifies the main project file to be used. The project files rooted
854 -- at the main project file will be parsed before the invocation of the
855 -- compiler. The source and object directories to be searched will be
856 -- communicated to gnatclean through logical names ADA_PRJ_INCLUDE_FILE
857 -- and ADA_PRJ_OBJECTS_FILE.
859 S_Clean_Quiet
: aliased constant S
:= "/QUIET " &
864 -- Quiet output. If there are no error, do not ouuput anything, except in
865 -- verbose mode (qualifier /VERBOSE) or in informative-only mode
866 -- (qualifier /NODELETE).
868 S_Clean_Recurs
: aliased constant S
:= "/RECURSIVE " &
873 -- When a project file is specified (using switch -P), clean all imported
874 -- and extended project files, recursively. If this qualifier is not
875 -- specified, only the files related to the main project file are to be
876 -- deleted. This qualifier has no effect if no project file is specified.
878 S_Clean_Search
: aliased constant S
:= "/SEARCH=*" &
880 -- /SEARCH=(directory,...)
882 -- Equivalent to /OBJECT_SEARCH=(directory,...).
884 S_Clean_Verbose
: aliased constant S
:= "/VERBOSE " &
891 Clean_Switches
: aliased constant Switches
:=
892 (S_Clean_Compil
'Access,
893 S_Clean_Current'Access,
894 S_Clean_Delete 'Access,
895 S_Clean_Dirobj
'Access,
897 S_Clean_Full
'Access,
898 S_Clean_Help 'Access,
899 S_Clean_Index
'Access,
900 S_Clean_Mess 'Access,
901 S_Clean_Object
'Access,
902 S_Clean_Project'Access,
903 S_Clean_Quiet 'Access,
904 S_Clean_Recurs
'Access,
905 S_Clean_Search 'Access,
906 S_Clean_Verbose
'Access);
908 -------------------------------
909 -- Switches for GNAT COMPILE --
910 -------------------------------
912 S_GCC_Ada_83
: aliased constant S
:= "/83 " &
917 -- Although GNAT is primarily an Ada 95 compiler, it accepts this
918 -- qualifier to specify that an Ada 83 mode program is being compiled. If
919 -- you specify this qualifier, GNAT rejects Ada 95 extensions and applies
920 -- Ada 83 semantics. It is not possible to guarantee this qualifier does
921 -- a perfect job; for example, some subtle tests of pathological cases,
922 -- such as are found in ACVC tests that have been removed from the ACVC
923 -- suite for Ada 95, may not compile correctly. However for practical
924 -- purposes, using this qualifier should ensure that programs that
925 -- compile correctly under the /83 qualifier can be ported reasonably
926 -- easily to an Ada 83 compiler. This is the main use of this qualifier.
928 -- With few exceptions (most notably the need to use "<>" on
929 -- unconstrained generic formal parameters), it is not necessary to use
930 -- this qualifier switch when compiling Ada 83 programs, because, with
931 -- rare and obscure exceptions, Ada 95 is upwardly compatible with Ada
932 -- 83. This means that a correct Ada 83 program is usually also a correct
935 S_GCC_Ada_95
: aliased constant S
:= "/95 " &
939 -- Allows GNAT to recognize the full range of Ada 95 constructs.
940 -- This is the normal default for GNAT Pro.
942 S_GCC_Ada_05
: aliased constant S
:= "/05 " &
946 -- Allows GNAT to recognize all implemented proposed Ada 2005
947 -- extensions. See features file for list of implemented features.
949 S_GCC_Asm
: aliased constant S
:= "/ASM " &
954 -- Use to cause the assembler source file to be generated, using S as the
955 -- filetype, instead of the object file. This may be useful if you need
956 -- to examine the generated assembly code.
958 S_GCC_Checks
: aliased constant S
:= "/CHECKS=" &
960 "-gnato,!-gnatE,!-gnatp " &
974 -- /CHECKS[=(keyword[,...])]
976 -- If you compile with the default options, GNAT will insert many runtime
977 -- checks into the compiled code, including code that performs range
978 -- checking against constraints, but not arithmetic overflow checking for
979 -- integer operations (including division by zero) or checks for access
980 -- before elaboration on subprogram calls. All other runtime checks, as
981 -- required by the Ada 95 Reference Manual, are generated by default.
983 -- You may specify one or more of the following keywords to the /CHECKS
984 -- qualifier to modify this behavior:
986 -- DEFAULT The behavior described above. This is the default
987 -- if the /CHECKS qualifier is not present on the
988 -- command line. Same as /NOCHECKS.
990 -- OVERFLOW Enables overflow checking for integer operations and
991 -- checks for access before elaboration on subprogram
992 -- calls. This causes GNAT to generate slower and larger
993 -- executable programs by adding code to check for both
994 -- overflow and division by zero (resulting in raising
995 -- "Constraint_Error" as required by Ada semantics).
996 -- Similarly, GNAT does not generate elaboration check
997 -- by default, and you must specify this keyword to
1000 -- Note that this keyword does not affect the code
1001 -- generated for any floating-point operations; it
1002 -- applies only to integer operations. For floating-point,
1003 -- GNAT has the "Machine_Overflows" attribute set to
1004 -- "False" and the normal mode of operation is to generate
1005 -- IEEE NaN and infinite values on overflow or invalid
1006 -- operations (such as dividing 0.0 by 0.0).
1008 -- ELABORATION Enables dynamic checks for access-before-elaboration
1009 -- on subprogram calls and generic instantiations.
1011 -- ASSERTIONS The pragmas "Assert" and "Debug" normally have no
1012 -- effect and are ignored. This keyword causes "Assert"
1013 -- and "Debug" pragmas to be activated.
1015 -- SUPPRESS_ALL Suppress all runtime checks as though you have "pragma
1016 -- Suppress (all_checks)" in your source. Use this switch
1017 -- to improve the performance of the code at the expense
1018 -- of safety in the presence of invalid data or program
1021 -- DEFAULT Suppress the effect of any option OVERFLOW or
1024 -- FULL (D) Similar to OVERFLOW, but suppress the effect of any
1025 -- option ELABORATION or SUPPRESS_ALL.
1027 -- These keywords only control the default setting of the checks. You
1028 -- may modify them using either "Suppress" (to remove checks) or
1029 -- "Unsuppress" (to add back suppressed checks) pragmas in your program
1032 S_GCC_ChecksX
: aliased constant S
:= "/NOCHECKS " &
1033 "-gnatp,!-gnato,!-gnatE";
1034 -- NODOC (see /CHECKS)
1036 S_GCC_Compres
: aliased constant S
:= "/COMPRESS_NAMES " &
1038 -- /NOCOMPRESS_NAMES (D)
1041 -- Compress debug information and external symbol name table entries.
1042 -- In the generated debugging information, and also in the case of long
1043 -- external names, the compiler uses a compression mechanism if the name
1044 -- is very long. This compression method uses a checksum, and avoids
1045 -- trouble on some operating systems which have difficulty with very long
1048 S_GCC_Config
: aliased constant S
:= "/CONFIGURATION_PRAGMAS_FILE=<" &
1050 -- /CONFIGURATION_PRAGMAS_FILE=file
1052 -- Specify a configuration pragmas file that need to be taken into account
1054 S_GCC_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
1056 -- /CURRENT_DIRECTORY (D)
1057 -- /NOCURRENT_DIRECTORY
1059 -- Look for source files in the default directory.
1061 S_GCC_Data
: aliased constant S
:= "/DATA_PREPROCESSING=<" &
1063 -- /DATA_PREPROCESSING=file_name
1065 -- This qualifier indicates to the compiler the file name (without
1066 -- directory information) of the preprocessor data file to use.
1067 -- The preprocessor data file should be found in the source directories.
1069 -- A preprocessing data file is a text file with significant lines
1070 -- indicating how should be preprocessed either a specific source or all
1071 -- sources not mentioned in other lines. A significant line is a non
1072 -- empty, non comment line. Comments are similar to Ada comments.
1074 -- Each significant line starts with either a literal string or the
1075 -- character '*'. A literal string is the file name (without directory
1076 -- information) of the source to preprocess. A character '*' indicates the
1077 -- preprocessing for all the sources that are not specified explicitly on
1078 -- other lines. It is an error to have two lines with the same file name
1079 -- or two lines starting with the character '*'.
1081 -- After the file name or the character '*', another optional literal
1082 -- string indicating the file name of the definition file to be used for
1083 -- preprocessing. (see 15.3 Form of Definitions File. The definition files
1084 -- are found by the compiler in one of the source directories. In some
1085 -- cases, when compiling a source in a directory other than the current
1086 -- directory, if the definition file is in the current directory, it may
1087 -- be necessary to add the current directory as a source directory through
1088 -- qualifier "/SEARCH=[]", otherwise the compiler would not find the
1091 -- Then, optionally, switches similar to those of gnatprep may be found.
1092 -- Those switches are:
1094 -- -b Causes both preprocessor lines and the lines deleted by
1095 -- preprocessing to be replaced by blank lines, preserving
1096 -- the line number. This switch is always implied;
1097 -- however, if specified after `-c' it cancels the effect
1100 -- -c Causes both preprocessor lines and the lines deleted by
1101 -- preprocessing to be retained as comments marked with
1102 -- the special string "--! ".
1104 -- -Dsymbol=value Define or redefine a symbol, associated with value.
1105 -- A symbol is an Ada identifier, or an Ada reserved word,
1106 -- with the exception of "if", "else", "elsif", "end",
1107 -- "and", "or" and "then". value is either a literal
1108 -- string, an Ada identifier or any Ada reserved word.
1109 -- A symbol declared with this switch replaces a symbol
1110 -- with the same name defined in a definition file.
1112 -- -s Causes a sorted list of symbol names and values to be
1113 -- listed on the standard output file.
1115 -- -u Causes undefined symbols to be treated as having the
1116 -- value FALSE in the context of a preprocessor test.
1117 -- In the absence of this option, an undefined symbol
1118 -- in a #if or #elsif test will be treated as an error.
1120 -- Examples of valid lines in a preprocessor data file:
1122 -- "toto.adb" "prep.def" -u
1123 -- -- preprocess "toto.adb", using definition file "prep.def",
1124 -- -- undefined symbol are False.
1126 -- * -c -DVERSION=V101
1127 -- -- preprocess all other sources without a definition file;
1128 -- -- suppressed lined are commented; symbol VERSION has the value
1131 -- "titi.adb" "prep2.def" -s
1132 -- -- preprocess "titi.adb", using definition file "prep2.def";
1133 -- -- list all symbols with their values.
1135 S_GCC_Debug
: aliased constant S
:= "/DEBUG=" &
1148 -- /DEBUG[=debug-level]
1151 -- Specifies how much debugging information is to be included in
1152 -- the resulting object fie.
1154 -- 'debug-level' is one of the following:
1156 -- SYMBOLS (D) Include both debugger symbol records and traceback
1157 -- in the object file.
1159 -- ALL Include debugger symbol records, traceback plus
1160 -- extra debug information in the object file.
1162 -- NONE Excludes both debugger symbol records and traceback
1163 -- from the object file. Same as /NODEBUG.
1165 -- TRACEBACK Includes only traceback records in the object
1166 -- file. This is the default when /DEBUG is not used.
1168 S_GCC_DebugX
: aliased constant S
:= "/NODEBUG " &
1170 -- NODOC (see /Debug)
1172 S_GCC_Dist
: aliased constant S
:= "/DISTRIBUTION_STUBS=" &
1177 -- /NODISTRIBUTION_STUBS (D)
1178 -- /DISTRIBUTION_STUBS[=dist-opt]
1180 -- 'dist-opt' is either RECEIVER (the default) or SENDER and indicates
1181 -- that stubs for use in distributed programs (see the Distributed
1182 -- Systems Annex of the Ada RM) should be generated.
1184 S_GCC_DistX
: aliased constant S
:= "/NODISTRIBUTION_STUBS " &
1185 "!-gnatzr,!-gnatzc";
1186 -- NODOC (see /DISTRIBUTION_STUBS)
1188 S_GCC_Error
: aliased constant S
:= "/ERROR_LIMIT=#" &
1190 -- /NOERROR_LIMIT (D)
1193 -- NNN is a decimal integer in the range of 1 to 999999 and limits the
1194 -- number of error messages to be generated to that number. Once that
1195 -- number has been reached, the compilation is abandoned.
1196 -- Specifying 999999 is equivalent to /NOERROR_LIMIT.
1198 S_GCC_ErrorX
: aliased constant S
:= "/NOERROR_LIMIT " &
1200 -- NODOC (see /ERROR_LIMIT)
1202 S_GCC_Expand
: aliased constant S
:= "/EXPAND_SOURCE " &
1204 -- /NOEXPAND_SOURCE (D)
1207 -- Produces a listing of the expanded code in Ada source form. For
1208 -- example, all tasking constructs are reduced to appropriate run-time
1211 S_GCC_Extend
: aliased constant S
:= "/EXTENSIONS_ALLOWED " &
1213 -- /NOEXTENSIONS_ALLOWED (D)
1214 -- /EXTENSIONS_ALLOWED
1216 -- GNAT specific language extensions allowed.
1218 S_GCC_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
1220 -- /EXTERNAL_REFERENCE="name=val"
1222 -- Specifies an external reference to the project manager. Useful only if
1223 -- /PROJECT_FILE is used.
1226 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
1228 S_GCC_File
: aliased constant S
:= "/FILE_NAME_MAX_LENGTH=#" &
1230 -- /FILE_NAME_MAX_LENGTH=nnn
1232 -- Activates file name "krunching". NNN, a decimal integer in the range
1233 -- 1-999, indicates the maximum allowable length of a file name (not
1234 -- including the ADS or ADB filetype. The default is not to enable file
1237 S_GCC_Force
: aliased constant S
:= "/FORCE_ALI " &
1242 -- In normal operation mode, the .ALI file is not generated if any
1243 -- illegalities are detected in the program. The use of this qualifier
1244 -- forces generation of the .ALI file. This file is marked as being
1245 -- in error, so it cannot be used for binding purposes, but it does
1246 -- contain reasonably complete cross-reference information, and thus may
1247 -- be useful for use by tools (e.g. semantic browing tools or integrated
1248 -- development environments) that are driven from the .ALI file.
1250 S_GCC_Full
: aliased constant S
:= "/FULL_PATH_IN_BRIEF_MESSAGES " &
1252 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
1253 -- /FULL_PATH_IN_BRIEF_MESSAGES
1255 -- When using project files, if some errors or warnings are detected
1256 -- during parsing and verbose mode is not in effect (no use of qualifier
1257 -- /VERBOSE), then error lines start with the full path name of the
1258 -- project file, rather than its simple file name.
1260 S_GCC_Help
: aliased constant S
:= "/HELP " &
1265 -- Output usage information.
1267 S_GCC_Ident
: aliased constant S
:= "/IDENTIFIER_CHARACTER_SET=" &
1290 -- /NOIDENTIFIER_CHARACTER_SET (D)
1291 -- /IDENTIFIER_CHARACTER_SET=char-set
1293 -- Normally GNAT recognizes the Latin-1 character set in source program
1294 -- identifiers, as described in the reference manual. This qualifier
1295 -- causes GNAT to recognize alternate character sets in identifiers.
1296 -- 'char-set' is one of the following strings indicating the character
1299 -- DEFAULT (D) Equivalent to 1, below. Also equivalent to
1300 -- /NOIDENTIFIER_CHARACTER_SET.
1302 -- 1 The basic character set is Latin-1. This character
1303 -- set is defined by ISO standard 8859, part 1. The lower
1304 -- half (character codes 16#00# ... 16#7F#) is identical
1305 -- to standard ASCII coding, but the upper half is used
1306 -- to represent additional characters. This includes
1307 -- extended letters used by European languages, such as
1308 -- the umlaut used in German.
1310 -- You may use any of these extended characters freely
1311 -- in character or string literals. In addition, the
1312 -- extended characters that represent letters can be
1313 -- used in identifiers.
1315 -- 2 Latin-2 letters allowed in identifiers, with uppercase
1316 -- and lowercase equivalence.
1318 -- 3 Latin-3 letters allowed in identifiers, with uppercase
1319 -- and lower case equivalence.
1321 -- 4 Latin-4 letters allowed in identifiers, with uppercase
1322 -- and lower case equivalence.
1324 -- PC IBM PC code page 437. This code page is the normal
1325 -- default for PCs in the U.S. It corresponds to the
1326 -- original IBM PC character set. This set has some, but
1327 -- not all, of the extended Latin-1 letters, but these
1328 -- letters do not have the same encoding as Latin-1. In
1329 -- this mode, these letters are allowed in identifiers
1330 -- with uppercase and lowercase equivalence.
1332 -- PC850 This code page (850) is a modification of 437 extended
1333 -- to include all the Latin-1 letters, but still not with
1334 -- the usual Latin-1 encoding. In this mode, all these
1335 -- letters are allowed in identifiers with uppercase and
1336 -- lower case equivalence.
1338 -- FULL_UPPER Any character in the range 80-FF allowed in
1339 -- identifiers, and all are considered distinct. In
1340 -- other words, there are no uppercase and lower case
1341 -- equivalences in this range.
1343 -- NO_UPPER No upper-half characters in the range 80-FF are
1344 -- allowed in identifiers. This gives Ada 95
1345 -- compatibility for identifier names.
1347 -- WIDE GNAT allows wide character codes to appear in
1348 -- character and string literals, and also optionally
1349 -- in identifiers. See the /WIDE_CHARACTER_ENCODING
1350 -- qualifier for information on encoding formats.
1352 S_GCC_IdentX
: aliased constant S
:= "/NOIDENTIFIER_CHARACTER_SET " &
1354 -- NODOC (see /IDENTIFIER_CHARACTER_SET)
1356 S_GCC_Immed
: aliased constant S
:= "/IMMEDIATE_ERRORS " &
1358 -- /NOIMMEDIATE_ERRORS (D)
1359 -- /IMMEDIATE_ERRORS
1361 -- Causes errors to be displayed as soon as they are encountered, rather
1362 -- than after compilation is terminated. If GNAT terminates prematurely
1363 -- or goes into an infinite loop, the last error message displayed may
1364 -- help to pinpoint the culprit.
1366 S_GCC_Inline
: aliased constant S
:= "/INLINE=" &
1374 -- /INLINE[=keyword]
1376 -- Selects the level of inlining for your program. In the absence of this
1377 -- qualifier, GNAT does not attempt inlining across units and does not
1378 -- need to access the bodies of subprograms for which "pragma Inline" is
1379 -- specified if they are not in the current unit.
1381 -- The supported keywords are as follows:
1383 -- PRAGMA (D) Recognize and process "Inline" pragmas. However,
1384 -- for the inlining to actually occur, optimization
1385 -- must be enabled. This enables inlining across unit
1386 -- boundaries, that is, inlining a call in one unit of
1387 -- a subprogram declared in a with'ed unit. The compiler
1388 -- will access these bodies, creating an extra source
1389 -- dependency for the resulting object file, and where
1390 -- possible, the call will be inlined.
1392 -- This qualifier also turns on full optimization and
1393 -- requests GNAT to try to attempt automatic inlining
1394 -- of small subprograms within a unit.
1396 -- Specifying /OPTIMIZE=NONE will disable the main effect
1397 -- of this qualifier, but you may specify other
1398 -- optimization options, to get either lower
1399 -- (/OPTIMIZE=SOME) or higher (/OPTIMIZE=UNROLL_LOOPS)
1400 -- levels of optimization.
1402 -- FULL Front end inlining. The front end inlining activated
1403 -- by this switch is generally more extensive, and quite
1404 -- often more effective than the standard PRAGMA inlining
1405 -- mode. It will also generate additional dependencies.
1407 -- SUPPRESS Suppresses all inlining, even if other optimization
1408 -- or inlining switches are set.
1410 S_GCC_InlineX
: aliased constant S
:= "/NOINLINE " &
1412 -- NODOC (see /INLINE)
1414 S_GCC_Jumps
: aliased constant S
:= "/LONGJMP_SETJMP " &
1416 -- /NOLONGJMP_SETJMP (D)
1419 -- Causes the longjmp/setjmp approach to be used for exception handling.
1421 -- The default mechanism for OpenVMS is zero cost exceptions. This
1422 -- qualifier can be used to modify this default, but it must be used for
1423 -- all units in the partition, including all run-time library units.
1424 -- One way to achieve this is to use the /ALL_FILES and /FORCE_COMPILE
1426 -- This option is rarely used. One case in which it may be advantageous is
1427 -- in an application where exception raising is common and the overall
1428 -- performance of the application is improved by favoring exception
1431 S_GCC_Length
: aliased constant S
:= "/MAX_LINE_LENGTH=#" &
1433 -- /MAX_LINE_LENGTH=nnn
1435 -- Set maximum line length.
1436 -- The length of lines must not exceed the given value nnn.
1438 S_GCC_List
: aliased constant S
:= "/LIST " &
1443 -- Cause a full listing of the file to be generated.
1445 S_GCC_Mapping
: aliased constant S
:= "/MAPPING_FILE=<" &
1447 -- /MAPPING_FILE=file_name
1449 -- Use mapping file file_name
1451 -- A mapping file is a way to communicate to the compiler two mappings:
1452 -- from unit names to file names (without any directory information) and
1453 -- from file names to path names (with full directory information).
1454 -- These mappings are used by the compiler to short-circuit the path
1457 -- The use of mapping files is not required for correct operation of the
1458 -- compiler, but mapping files can improve efficiency, particularly when
1459 -- sources are read over a slow network connection. In normal operation,
1460 -- you need not be concerned with the format or use of mapping files,
1461 -- and /MAPPING_FILE is not a qualifier that you would use explicitly.
1462 -- It is intended only for use by automatic tools such as GNAT MAKE
1463 -- running under the project file facility. The description here of the
1464 -- format of mapping files is provided for completeness and for possible
1465 -- use by other tools.
1467 -- A mapping file is a sequence of sets of three lines. In each set, the
1468 -- first line is the unit name, in lower case, with "%s" appended for
1469 -- specifications and "%b" appended for bodies; the second line is the
1470 -- file name; and the third line is the path name.
1476 -- /gnat/project1/sources/main.2_ada
1478 -- When qualifier ?MAPPING_FILE is specified, the compiler will create in
1479 -- memory the two mappings from the specified file. If there is any
1480 -- problem (non existent file, truncated file or duplicate entries),
1481 -- no mapping will be created.
1483 -- Several /MAPPING_FILE qualifiers may be specified; however, only the
1484 -- last one on the command line will be taken into account.
1486 -- When using a project file, GNAT MAKE creates a temporary mapping file
1487 -- and communicates it to the compiler using this switch.
1489 S_GCC_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
1496 -- /MESSAGES_PROJECT_FILE[=messages-option]
1498 -- Specifies the "verbosity" of the parsing of project files.
1499 -- messages-option may be one of the following:
1501 -- DEFAULT (D) No messages are output if there is no error or warning.
1503 -- MEDIUM A small number of messages are output.
1505 -- HIGH A great number of messages are output, most of them not
1506 -- being useful for the user.
1508 S_GCC_Nesting
: aliased constant S
:= "/MAX_NESTING=#" &
1512 -- Set maximum level of nesting of constructs (including subprograms,
1513 -- loops, blocks, packages, and conditionals).
1514 -- The level of nesting must not exceed the given value nnn.
1515 -- A value of zero disable this style check (not enabled by default).
1517 S_GCC_Noadc
: aliased constant S
:= "/NO_GNAT_ADC " &
1521 -- Cause the compiler to ignore any configuration pragmas file GNAT.ADC
1522 -- in the default directory. Implied by qualifier /PROJECT_FILE.
1523 -- Often used in conjunction with qualifier /CONFIGURATION_PRAGMAS_FILE.
1525 S_GCC_Noload
: aliased constant S
:= "/NOLOAD " &
1529 -- Cause the compiler to operate in semantic check mode with full
1530 -- checking for all illegalities specified in the reference manual, but
1531 -- without generation of any source code (no object or ALI file
1534 -- Since dependent files must be accessed, you must follow the GNAT
1535 -- semantic restrictions on file structuring to operate in this mode:
1537 -- o The needed source files must be accessible.
1538 -- o Each file must contain only one compilation unit.
1539 -- o The file name and unit name must match.
1541 -- The output consists of error messages as appropriate. No object file
1542 -- or ALI file is generated. The checking corresponds exactly to the
1543 -- notion of legality in the Ada reference manual.
1545 -- Any unit can be compiled in semantics-checking-only mode, including
1546 -- units that would not normally be compiled (generic library units,
1547 -- subunits, and specifications where a separate body is present).
1549 S_GCC_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
1553 -- Do not look in the default directory for source files of the runtime.
1555 S_GCC_Nostlib
: aliased constant S
:= "/NOSTD_LIBRARIES " &
1559 -- Do not look for library files in the system default directory.
1561 S_GCC_Opt
: aliased constant S
:= "/OPTIMIZE=" &
1563 "-O2,!-O0,!-O1,!-O3 " &
1565 "-O0,!-O1,!-O2,!-O3 " &
1567 "-O1,!-O0,!-O2,!-O3 " &
1569 "-O1,!-O0,!-O2,!-O3 " &
1572 "NO_STRICT_ALIASING " &
1573 "-fno-strict-aliasing " &
1575 "-O3,!-O0,!-O1,!-O2";
1577 -- /OPTIMIZE[=(keyword[,...])]
1579 -- Selects the level of optimization for your program. The supported
1580 -- keywords are as follows:
1582 -- ALL (D) Perform most optimizations, including those that
1583 -- may be expensive.
1585 -- NONE Do not do any optimizations. Same as /NOOPTIMIZE.
1587 -- SOME Perform some optimizations, but omit ones that
1588 -- are costly in compilation time.
1590 -- DEVELOPMENT Same as SOME.
1592 -- INLINING Full optimization, and also attempt automatic inlining
1593 -- of small subprograms within a unit
1595 -- UNROLL_LOOPS Try to unroll loops. This keyword may be specified
1596 -- with any keyword above other than NONE. Loop
1597 -- unrolling usually, but not always, improves the
1598 -- performance of programs.
1600 -- NO_STRICT_ALIASING
1601 -- Suppress aliasing analysis. When optimization is
1602 -- enabled (ALL or SOME above), the compiler assumes
1603 -- that pointers do in fact point to legitimate values
1604 -- of the pointer type (allocated from the proper pool).
1605 -- If this assumption is violated, e.g. by the use of
1606 -- unchecked conversion, then it may be necessary to
1607 -- suppress this assumption using this keyword (which
1608 -- may be specified only in conjunction with any
1609 -- keyword above, other than NONE).
1611 S_GCC_OptX
: aliased constant S
:= "/NOOPTIMIZE " &
1612 "-O0,!-O1,!-O2,!-O3";
1613 -- NODOC (see /OPTIMIZE)
1615 S_GCC_Polling
: aliased constant S
:= "/POLLING " &
1620 -- Enable polling. See the description of pragma Polling in the GNAT
1621 -- Reference Manual for full details.
1623 S_GCC_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
1625 -- /PROJECT_FILE=filename
1627 -- Specifies the main project file to be used. The project files rooted
1628 -- at the main project file will be parsed before the invocation of the
1629 -- compiler. The source and object directories to be searched will be
1630 -- communicated to the compiler through logical names
1631 -- ADA_PRJ_INCLUDE_FILE and ADA_PRJ_OBJECTS_FILE.
1633 S_GCC_Psta
: aliased constant S
:= "/PRINT_STANDARD " &
1637 -- cause the compiler to output a representation of package Standard
1638 -- in a form very close to standard Ada. It is not quite possible to
1639 -- do this and remain entirely Standard (since new numeric base types
1640 -- cannot be created in standard Ada), but the output is easily
1641 -- readable to any Ada programmer, and is useful to determine the
1642 -- characteristics of target dependent types in package Standard.
1644 S_GCC_Report
: aliased constant S
:= "/REPORT_ERRORS=" &
1655 -- /NOREPORT_ERRORS (D)
1656 -- /REPORT_ERRORS[=(keyword[,...])]
1658 -- Change the way errors are reported. The following keywords are
1661 -- VERBOSE (D) Verbose mode. Full error output with source lines
1664 -- BRIEF Generate the brief format error messages to
1665 -- SYS$OUTPUT as well as the verbose format message or
1668 -- FULL Normally, the compiler suppresses error messages that
1669 -- are likely to be redundant. This keyword causes all
1670 -- error messages to be generated. One particular effect
1671 -- is for the case of references to undefined variables.
1672 -- If a given variable is referenced several times, the
1673 -- normal format of messages produces one error. With
1674 -- FULL, each undefined reference produces a separate
1677 -- IMMEDIATE Normally, the compiler saves up error messages and
1678 -- generates them at the end of compilation in proper
1679 -- sequence. This keyword causes error messages to be
1680 -- generated as soon as they are detected. The use of
1681 -- IMMEDIATE usually causes error messages to be
1682 -- generated out of sequence. Use it when the compiler
1683 -- blows up due to an internal error. In this case, the
1684 -- error messages may be lost. Sometimes blowups are
1685 -- the result of mishandled error messages, so you may
1686 -- want to run with this keyword to determine whether
1687 -- any error messages were generated.
1689 -- DEFAULT Turn off VERBOSE and BRIEF. Same as /NOREPORT_ERRORS.
1691 S_GCC_ReportX
: aliased constant S
:= "/NOREPORT_ERRORS " &
1693 -- NODOC (see /REPORT_ERRORS)
1695 S_GCC_Repinfo
: aliased constant S
:= "/REPRESENTATION_INFO=" &
1712 -- /NOREPRESENTATION_INFO (D)
1713 -- /REPRESENTATION_INFO[=(keyword[,...])]
1715 -- This qualifier controls output from the compiler of a listing showing
1716 -- representation information for declared types and objects.
1718 -- ARRAYS (D) Size and alignment information is listed for
1719 -- declared array and record types.
1721 -- ARRAYS_FILE Similar to ARRAYS, but the output is to a file
1722 -- with the name 'file_rep' where 'file' is the name
1723 -- of the corresponding source file.
1725 -- NONE no information is output (equivalent to omitting
1726 -- the /REPRESENTATION_INFO qualifiers).
1728 -- OBJECTS Size and alignment information is listed for all
1729 -- declared types and objects.
1731 -- OBJECTS_FILE Similar to OBJECTS, but the output is to a file
1732 -- with the name 'file_rep' where 'file' is the name
1733 -- of the corresponding source file.
1735 -- SYMBOLIC Symbolic expression information for values that
1736 -- are computed at run time for variant records.
1738 -- SYMBOLIC_FILE Similar to SYMBOLIC, but the output is to a file
1739 -- with the name 'file_rep' where 'file' is the name
1740 -- of the corresponding source file.
1742 -- DEFAULT Equivalent to ARRAYS.
1744 S_GCC_RepinfX
: aliased constant S
:= "/NOREPRESENTATION_INFO " &
1746 -- NODOC (see /REPRESENTATION_INFO)
1748 S_GCC_RTS
: aliased constant S
:= "/RUNTIME_SYSTEM=|" &
1750 -- /RUNTIME_SYSTEM=xxx
1752 -- Build against an alternate runtime system named xxx or RTS-xxx.
1754 S_GCC_Search
: aliased constant S
:= "/SEARCH=*" &
1756 -- /SEARCH=(directory[,...])
1758 -- When looking for source files also look in directories specified.
1760 S_GCC_Style
: aliased constant S
:= "/STYLE_CHECKS=" &
1805 "STANDARD_CASING " &
1807 "ORDERED_SUBPROGRAMS " &
1810 "!-gnatg,!-gnaty* " &
1819 -- /NOSTYLE_CHECKS (D)
1820 -- /STYLE_CHECKS[=(keyword,[...])]
1822 -- Normally, GNAT permits any code layout consistent with the reference
1823 -- manual requirements. This qualifier imposes style checking on the
1824 -- input source code. The following keywords are supported:
1826 -- ALL_BUILTIN (D) Equivalent to the following list of options:
1827 -- 3, ATTRIBUTE, BLANKS, COMMENTS, END, VTABS,
1828 -- HTABS, IF_THEN, KEYWORD, LAYOUT, LINE_LENGTH,
1829 -- PRAGMA, REFERENCES, SPECS, TOKEN.
1831 -- 1 .. 9 Specify indentation level from 1 to 9.
1832 -- The general style of required indentation is as
1833 -- specified by the examples in the Ada Reference
1834 -- Manual. Full line comments must be aligned with
1835 -- the -- starting on a column that is a multiple
1836 -- of the alignment level.
1838 -- ATTRIBUTE Check attribute casing.
1839 -- Attribute names, including the case of keywords
1840 -- such as digits used as attributes names,
1841 -- must be written in mixed case, that is,
1842 -- the initial letter and any letter following an
1843 -- underscore must be uppercase.
1844 -- All other letters must be lowercase.
1846 -- BLANKS Blanks not allowed at statement end.
1847 -- Trailing blanks are not allowed at the end of
1848 -- statements. The purpose of this rule, together
1849 -- with option HTABS (no horizontal tabs), is to
1850 -- enforce a canonical format for the use of
1851 -- blanks to separate source tokens.
1853 -- COMMENTS Check comments.
1854 -- Comments must meet the following set of rules:
1856 -- * The "--" that starts the column must either
1857 -- start in column one, or else at least one
1858 -- blank must precede this sequence.
1860 -- * Comments that follow other tokens on a line
1861 -- must have at least one blank following the
1862 -- "--" at the start of the comment.
1864 -- * Full line comments must have two blanks
1865 -- following the "--" that starts the comment,
1866 -- with the following exceptions.
1868 -- * A line consisting only of the "--"
1869 -- characters, possibly preceded by blanks is
1872 -- * A comment starting with "--x" where x is
1873 -- a special character is permitted. This
1874 -- allows proper processing of the output
1875 -- generated by specialized tools including
1876 -- gnatprep (where --! is used) and the SPARK
1877 -- annnotation language (where --# is used).
1878 -- For the purposes of this rule, a special
1879 -- character is defined as being in one of the
1880 -- ASCII ranges 16#21#..16#2F# or
1883 -- * A line consisting entirely of minus signs,
1884 -- possibly preceded by blanks, is permitted.
1885 -- This allows the construction of box
1886 -- comments where lines of minus signs are
1887 -- used to form the top and bottom of the box.
1889 -- * If a comment starts and ends with "--" is
1890 -- permitted as long as at least one blank
1891 -- follows the initial "--". Together with
1892 -- the preceding rule, this allows the
1893 -- construction of box comments, as shown in
1894 -- the following example:
1896 -- ---------------------------
1897 -- -- This is a box comment --
1898 -- ---------------------------
1900 -- END Check end/exit labels.
1901 -- Optional labels on end statements ending
1902 -- subprograms and on exit statements exiting
1903 -- named loops, are required to be present.
1905 -- GNAT Enforces a set of style conventions that
1906 -- correspond to the style used in the GNAT
1907 -- source code. All compiler units are always
1908 -- compile with this keyword specified.
1910 -- You can find the full documentation for the
1911 -- style conventions imposed by this keyword
1912 -- in the body of the package "Style" in the
1913 -- compiler sources.
1915 -- You should not normally use this keyword.
1916 -- However, you MUST use it for compiling any
1917 -- language-defined unit, or for adding children
1918 -- to any language-defined unit other than
1921 -- HTABS No horizontal tabs.
1922 -- Horizontal tab characters are not permitted in
1923 -- the source text. Together with the BLANKS
1924 -- (no blanks at end of line) option, this
1925 -- enforces a canonical form for the use of blanks
1926 -- to separate source tokens.
1928 -- IF_THEN Check if-then layout.
1929 -- The keyword then must appear either on the
1930 -- same line as the corresponding if, or on a line
1931 -- on its own, lined up under the if with at least
1932 -- one non-blank line in between containing all or
1933 -- part of the condition to be tested.
1935 -- KEYWORD Check keyword casing.
1936 -- All keywords must be in lower case (with the
1937 -- exception of keywords such as digits used as
1938 -- attribute names to which this check does not
1941 -- LAYOUT Check layout.
1942 -- Layout of statement and declaration constructs
1943 -- must follow the recommendations in the Ada
1944 -- Reference Manual, as indicated by the form of
1945 -- the syntax rules. For example an else keyword
1946 -- must be lined up with the corresponding if
1949 -- There are two respects in which the style rule
1950 -- enforced by this check option are more liberal
1951 -- than those in the Ada Reference Manual.
1952 -- First in the case of record declarations,
1953 -- it is permissible to put the record keyword on
1954 -- the same line as the type keyword, and then
1955 -- the end in end record must line up under type.
1956 -- For example, either of the following two
1957 -- layouts is acceptable:
1970 -- Second, in the case of a block statement,
1971 -- a permitted alternative is to put the block
1972 -- label on the same line as the declare or begin
1973 -- keyword, and then line the end keyword up under
1974 -- the block label. For example both the following
1980 -- A : Integer := 3;
1987 -- A : Integer := 3;
1992 -- The same alternative format is allowed for
1993 -- loops. For example, both of the following are
1998 -- Clear : while J < 10 loop
2003 -- while J < 10 loop
2009 -- LINE_LENGTH Check maximum line length.
2010 -- The length of source lines must not exceed 79
2011 -- characters, including any trailing blanks
2012 -- The value of 79 allows convenient display on
2013 -- an 80 character wide device or window, allowing
2014 -- for possible special treatment of 80 character
2017 -- NONE Clear any previously set style checks.
2019 -- ORDERED_SUBPROGRAMS Check order of subprogram bodies.
2020 -- All subprogram bodies in a given scope (e.g.
2021 -- a package body) must be in alphabetical order.
2022 -- The ordering rule uses normal Ada rules for
2023 -- comparing strings, ignoring casing of letters,
2024 -- except that if there is a trailing numeric
2025 -- suffix, then the value of this suffix is used
2026 -- in the ordering (e.g. Junk2 comes before
2029 -- NONE The default behavior. Same as /NOSTYLE_CHECKS.
2031 -- PRAGMA Check pragma casing.
2032 -- Pragma names must be written in mixed case,
2033 -- that is, the initial letter and any letter
2034 -- following an underscore must be uppercase.
2035 -- All other letters must be lowercase.
2037 -- REFERENCES Check references.
2038 -- All identifier references must be cased in the
2039 -- same way as the corresponding declaration.
2040 -- No specific casing style is imposed on
2041 -- identifiers. The only requirement is for
2042 -- consistency of references with declarations.
2044 -- RM_COLUMN_LAYOUT Enforce the layout conventions suggested by
2045 -- the examples and syntax rules of the Ada
2046 -- Language Reference Manual. For example, an
2047 -- "else" must line up with an "if" and code in
2048 -- the "then" and "else" parts must be indented.
2049 -- The compiler considers violations of the
2050 -- layout rules a syntax error if you specify
2053 -- SPECS Check separate specs.
2054 -- Separate declarations ("specs") are required
2055 -- for subprograms (a body is not allowed to serve
2056 -- as its own declaration). The only exception is
2057 -- that parameterless library level procedures are
2058 -- not required to have a separate declaration.
2059 -- This exception covers the most frequent form of
2060 -- main program procedures.
2062 -- STANDARD_CASING Check casing of entities in Standard.
2063 -- Any identifier from Standard must be cased to
2064 -- match the presentation in the Ada Reference
2065 -- Manual (for example, Integer and ASCII.NUL).
2067 -- TOKEN Check token spacing.
2068 -- The following token spacing rules are enforced:
2070 -- * The keywords abs and not must be followed
2073 -- * The token => must be surrounded by spaces.
2075 -- * The token <> must be preceded by a space or
2076 -- a left parenthesis.
2078 -- * Binary operators other than ** must be
2079 -- surrounded by spaces. There is no
2080 -- restriction on the layout of the ** binary
2083 -- * Colon must be surrounded by spaces.
2085 -- * Colon-equal (assignment) must be surrounded
2088 -- * Comma must be the first non-blank character
2089 -- on the line, or be immediately preceded by
2090 -- a non-blank character, and must be followed
2093 -- * If the token preceding a left paren ends
2094 -- with a letter or digit, then a space must
2095 -- separate the two tokens.
2097 -- * A right parenthesis must either be the
2098 -- first non-blank character on a line, or it
2099 -- must be preceded by a non-blank character.
2101 -- * A semicolon must not be preceded by
2102 -- a space, and must not be followed by
2103 -- a non-blank character.
2105 -- * A unary plus or minus may not be followed
2108 -- * A vertical bar must be surrounded by
2111 -- In the above rules, appearing in column one is
2112 -- always permitted, that is, counts as meeting
2113 -- either a requirement for a required preceding
2114 -- space, or as meeting a requirement for no
2117 -- Appearing at the end of a line is also always
2118 -- permitted, that is, counts as meeting either
2119 -- a requirement for a following space,
2120 -- or as meeting a requirement for no following
2123 -- VTABS No form feeds or vertical tabs.
2124 -- Form feeds or vertical tab characters are not
2125 -- permitted in the source text.
2127 S_GCC_StyleX
: aliased constant S
:= "/NOSTYLE_CHECKS " &
2129 -- NODOC (see /STYLE_CHECKS)
2131 S_GCC_Symbol
: aliased constant S
:= "/SYMBOL_PREPROCESSING=" & '"' &
2133 -- /SYMBOL_PREPROCESSING="symbol=value"
2135 -- Define or redefine a preprocessing symbol, associated with value.
2136 -- If "=value" is not specified, then the value of the symbol is True.
2137 -- A symbol is an identifier, following normal Ada (case-insensitive)
2138 -- rules for its syntax, and value is any sequence (including an empty
2139 -- sequence) of characters from the set (letters, digits, period,
2140 -- underline). Ada reserved words may be used as symbols, with the
2141 -- exceptions of "if", "else", "elsif", "end", "and", "or" and "then".
2143 -- A symbol declared with this qualifier on the command line replaces
2144 -- a symbol with the same name either in a definition file or specified
2145 -- with a switch -D in the preprocessor data file.
2147 -- This qualifier is similar to qualifier /ASSOCIATE of
2148 -- GNAT PREPROCESSING.
2150 S_GCC_Syntax
: aliased constant S
:= "/SYNTAX_ONLY " &
2152 -- /NOSYNTAX_ONLY (D)
2155 -- Run GNAT in syntax checking only mode. You can check a series of
2156 -- files in a single command, and can use wild cards to specify such a
2159 -- You may use other qualifiers in conjunction with this qualifier. In
2160 -- particular, /LIST and /REPORT_ERRORS=VERBOSE are useful to control the
2161 -- format of any generated error messages.
2163 -- The output is simply the error messages, if any. No object file or ALI
2164 -- file is generated by a syntax-only compilation. Also, no units other
2165 -- than the one specified are accessed. For example, if a unit "X" with's
2166 -- a unit "Y", compiling unit "X" in syntax check only mode does not
2167 -- access the source file containing unit "Y".
2169 -- Normally, GNAT allows only a single unit in a source file. However,
2170 -- this restriction does not apply in syntax-check-only mode, and it is
2171 -- possible to check a file containing multiple compilation units
2172 -- concatenated together. This is primarily used by the GNAT CHOP
2175 S_GCC_Table
: aliased constant S
:= "/TABLE_MULTIPLIER=#" &
2177 -- /TABLE_MULTIPLIER=nnn
2179 -- All compiler tables start at nnn times usual starting size.
2181 S_GCC_Trace
: aliased constant S
:= "/TRACE_UNITS " &
2186 -- This switch that does for the frontend what /VERBOSE does for the
2187 -- backend. The system prints the name of each unit, either a compilation
2188 -- unit or nested unit, as it is being analyzed.
2190 S_GCC_Tree
: aliased constant S
:= "/TREE_OUTPUT " &
2195 -- Cause GNAT to write the internal tree for a unit to a file (with the
2196 -- filetype ATB for a body or ATS for a spec). This is not normally
2197 -- required, but is used by separate analysis tools. Typically these
2198 -- tools do the necessary compilations automatically, so you should never
2199 -- have to specify this switch in normal operation.
2201 S_GCC_Trys
: aliased constant S
:= "/TRY_SEMANTICS " &
2206 -- In normal operation mode the compiler first parses the program and
2207 -- determines if there are any syntax errors. If there are, appropriate
2208 -- error messages are generated and compilation is immediately
2209 -- terminated. This qualifier tells GNAT to continue with semantic
2210 -- analysis even if syntax errors have been found. This may enable the
2211 -- detection of more errors in a single run. On the other hand, the
2212 -- semantic analyzer is more likely to encounter some internal fatal
2213 -- error when given a syntactically invalid tree.
2215 S_GCC_Units
: aliased constant S
:= "/UNITS_LIST " &
2217 -- /NOUNITS_LIST (D)
2220 -- Print a list of units required by this compilation on SYS$OUTPUT. The
2221 -- listing includes all units on which the unit being compiled depends
2222 -- either directly or indirectly.
2224 S_GCC_Unique
: aliased constant S
:= "/UNIQUE_ERROR_TAG " &
2226 -- /NOUNIQUE_ERROR_TAG (D)
2227 -- /UNIQUE_ERROR_TAG
2229 -- Tag compiler error messages with the string "error: ".
2231 S_GCC_Upcase
: aliased constant S
:= "/UPPERCASE_EXTERNALS " &
2233 -- /NOUPPERCASE_EXTERNALS (D)
2234 -- /UPPERCASE_EXTERNALS
2236 -- Fold default and explicit external names in pragmas Import and Export
2237 -- to uppercase for compatibility with the default behavior of DEC C.
2239 S_GCC_Valid
: aliased constant S
:= "/VALIDITY_CHECKING=" &
2284 -- /VALIDITY_CHECKING[=(keyword,[...])]
2286 -- Control level of validity checking.
2288 -- DEFAULT (D) In this mode checks are made to prevent
2289 -- erroneous behavior in accordance with the RM.
2290 -- Notably extra checks may be needed for case
2291 -- statements and subscripted array assignments.
2293 -- NONE No special checks for invalid values are
2294 -- performed. This means that references to
2295 -- uninitialized variables can cause erroneous
2296 -- behavior from constructs like case statements
2297 -- and subscripted array assignments. In this
2298 -- mode, invalid values can lead to erroneous
2301 -- FULL Every assignment is checked for validity, so
2302 -- that it is impossible to assign invalid values.
2303 -- The RM specifically allows such assignments,
2304 -- but in this mode, invalid values can never be
2305 -- assigned, and an attempt to perform such an
2306 -- assignment immediately raises Constraint_Error.
2307 -- This behavior is allowed (but not required) by
2308 -- the RM. This mode is intended as a debugging aid,
2309 -- and may be useful in helping to track down
2310 -- uninitialized variables. It may be useful to
2311 -- use this in conjunction with the Normalize_Scalars
2312 -- pragma which attempts to initialize with invalid
2313 -- values where possible.
2315 S_GCC_Verbose
: aliased constant S
:= "/VERBOSE " &
2320 -- Show commands generated by the GCC driver. Normally used only for
2321 -- debugging purposes or if you need to be sure what version of the
2322 -- compiler you are executing.
2324 S_GCC_Verb_Asm
: aliased constant S
:= "/VERBOSE_ASM " &
2325 "-S,-verbose_asm,!-c";
2329 -- Use to cause the assembler source file to be generated, using S as the
2330 -- filetype, instead of the object file. This may be useful if you need
2331 -- to examine the generated assembly code.
2333 S_GCC_Warn
: aliased constant S
:= "/WARNINGS=" &
2335 "!-gnatws,!-gnatwe " &
2346 "CONSTANT_VARIABLES " &
2348 "NOCONSTANT_VARIABLES " &
2350 "IMPLICIT_DEREFERENCE " &
2352 "NO_IMPLICIT_DEREFERENCE " &
2366 "NOIMPLEMENTATION " &
2368 "INEFFECTIVE_INLINE " &
2370 "NOINEFFECTIVE_INLINE " &
2374 "NOMODIFIED_UNREF " &
2397 "-Wuninitialized " &
2398 "UNREFERENCED_FORMALS " &
2400 "NOUNREFERENCED_FORMALS " &
2402 "UNRECOGNIZED_PRAGMAS " &
2404 "NOUNRECOGNIZED_PRAGMAS " &
2410 "VARIABLES_UNINITIALIZED " &
2412 "NOVARIABLES_UNINITIALIZED " &
2414 "IMPORT_EXPORT_PRAGMAS " &
2416 "NOIMPORT_EXPORT_PRAGMAS " &
2418 "UNCHECKED_CONVERSIONS " &
2420 "NOUNCHECKED_CONVERSIONS " &
2424 -- Suppress the output of all warning messages from the GNAT front end.
2425 -- Note that it does not suppress warnings from the gcc back end.
2427 -- /WARNINGS[=(keyword[,...])]
2429 -- In addition to error messages, corresponding to illegalities as
2430 -- defined in the reference manual, the compiler detects two kinds of
2431 -- warning situations. First, the compiler considers some constructs
2432 -- suspicious and generates a warning message to alert you to a possible
2433 -- error. Second, if the compiler detects a situation that is sure to
2434 -- raise an exception at runtime, it generates a warning message.
2436 -- You may specify the following keywords to change this behavior:
2438 -- DEFAULT (D) The default behavior above.
2440 -- ALL Activate all optional warnings.
2441 -- Activates most optional warning messages,
2442 -- see remaining list in this section for
2443 -- details on optional warning messages that
2444 -- can be individually controlled.
2445 -- The warnings that are not turned on by
2446 -- this option are BIASED_ROUNDING,
2447 -- IMPLICIT_DEREFERENCE, HIDING and
2448 -- ELABORATION. All other optional Ada
2449 -- warnings are turned on.
2451 -- NOALL Suppress all optional errors.
2452 -- Suppresses all optional warning messages
2453 -- that can be activated by option ALL.
2455 -- ALL_GCC Request additional messages from the GCC
2456 -- backend. Most of these are not relevant
2459 -- CONDITIONALS Activate warnings for conditional
2460 -- Expressions used in tests that are known
2461 -- to be True or False at compile time. The
2462 -- default is that such warnings are not
2465 -- NOCONDITIONALS Suppress warnings for conditional
2466 -- expressions used in tests that are known
2467 -- to be True or False at compile time.
2469 -- IMPLICIT_DEREFERENCE Activate warnings on implicit dereferencing.
2470 -- The use of a prefix of an access type in an
2471 -- indexed component, slice, or selected component
2472 -- without an explicit .all will generate
2473 -- a warning. With this warning enabled, access
2474 -- checks occur only at points where an explicit
2475 -- .all appears in the source code (assuming no
2476 -- warnings are generated as a result of this
2477 -- option). The default is that such warnings are
2478 -- not generated. Note that /WARNINGS=ALL does not
2479 -- affect the setting of this warning option.
2481 -- NOIMPLICIT_DEREFERENCE Suppress warnings on implicit dereferencing.
2482 -- in indexed components, slices, and selected
2485 -- ELABORATION Activate warnings on missing pragma
2486 -- Elaborate_All statements. The default is
2487 -- that such warnings are not generated.
2489 -- NOELABORATION Suppress warnings on missing pragma
2490 -- Elaborate_All statements.
2492 -- ERRORS Warning messages are to be treated as errors.
2493 -- The warning string still appears, but the
2494 -- warning messages are counted as errors, and
2495 -- prevent the generation of an object file.
2497 -- HIDING Activate warnings on hiding declarations.
2498 -- A declaration is considered hiding if it is
2499 -- for a non-overloadable entity, and it declares
2500 -- an entity with the same name as some other
2501 -- entity that is directly or use-visible. The
2502 -- default is that such warnings are not
2505 -- NOHIDING Suppress warnings on hiding declarations.
2507 -- IMPLEMENTATION Activate warnings for a with of an internal
2508 -- GNAT implementation unit, defined as any unit
2509 -- from the Ada, Interfaces, GNAT, DEC or
2510 -- System hierarchies that is not documented in
2511 -- either the Ada Reference Manual or the GNAT
2512 -- Programmer's Reference Manual. Such units are
2513 -- intended only for internal implementation
2514 -- purposes and should not be with'ed by user
2515 -- programs. The default is that such warnings
2518 -- NOIMPLEMENTATION Disables warnings for a with of an internal
2519 -- GNAT implementation unit.
2521 -- INEFFECTIVE_INLINE Activate warnings on ineffective pragma Inlines
2522 -- Activates warnings for failure of front end
2523 -- inlining (activated by /INLINE=FULL) to inline
2524 -- a particular call. There are many reasons for
2525 -- not being able to inline a call, including most
2526 -- commonly that the call is too complex to
2527 -- inline. This warning can also be turned on
2528 -- using /INLINE=FULL.
2530 -- NOINEFFECTIVE_INLINE Suppress warnings on ineffective pragma Inlines
2531 -- Suppresses warnings on ineffective pragma
2532 -- Inlines. If the inlining mechanism cannot
2533 -- inline a call, it will simply ignore the
2534 -- request silently.
2536 -- MODIFIED_UNREF Activates warnings for variables that are
2537 -- assigned (using an initialization value or with
2538 -- one or more assignment statements) but whose
2539 -- value is never read. The warning is suppressed
2540 -- for volatile variables and also for variables
2541 -- that are renamings of other variables or for
2542 -- which an address clause is given. This warning
2543 -- can also be turned on using /WARNINGS/OPTIONAL.
2545 -- NOMODIFIED_UNREF Disables warnings for variables that are
2546 -- assigned or initialized, but never read.
2548 -- NORMAL Sets normal warning mode, in which enabled
2549 -- warnings are issued and treated as warnings
2550 -- rather than errors. This is the default mode.
2551 -- It can be used to cancel the effect of an
2552 -- explicit /WARNINGS=SUPPRESS or
2553 -- /WARNINGS=ERRORS. It also cancels the effect
2554 -- of the implicit /WARNINGS=ERRORS that is
2555 -- activated by the use of /STYLE=GNAT.
2557 -- OBSOLESCENT Activates warnings for calls to subprograms
2558 -- marked with pragma Obsolescent and for use of
2559 -- features in Annex J of the Ada Reference
2560 -- Manual. In the case of Annex J, not all
2561 -- features are flagged. In particular use of the
2562 -- renamed packages (like Text_IO), use of package
2563 -- ASCII and use of the attribute 'Constrained are
2564 -- not flagged, since these are very common and
2565 -- would generate many annoying positive warnings.
2566 -- The default is that such warnings are not
2569 -- NOOBSOLESCENT Disables warnings on use of obsolescent
2572 -- OPTIONAL Activate all optional warning messages.
2573 -- See other options under this qualifier
2574 -- for details on optional warning messages
2575 -- that can be individually controlled. The
2576 -- one exception is that /WARNINGS=OPTIONAL
2577 -- doesn't activate warnings for hiding
2578 -- variables (/WARNINGS=HIDING), so if this
2579 -- warning is required it must be explicitly
2582 -- NOOPTIONAL Suppress all optional warning messages.
2583 -- See other options under this qualifier
2584 -- for details on optional warning messages
2585 -- that can be individually controlled.
2587 -- OVERLAYS Activate warnings for possibly unintended
2588 -- initialization effects of defining address
2589 -- clauses that cause one variable to overlap
2590 -- another. The default is that such warnings
2593 -- NOOVERLAYS Suppress warnings on possibly unintended
2594 -- initialization effects of defining address
2595 -- clauses that cause one variable to overlap
2598 -- REDUNDANT Activate warnings for redundant constructs.
2599 -- In particular assignments of a variable to
2600 -- itself, and a type conversion that converts
2601 -- an object to its own type. The default
2602 -- is that such warnings are not generated.
2604 -- NOREDUNDANT Suppress warnings for redundant constructs.
2606 -- SUPPRESS Completely suppresse the output of all warning
2607 -- messages. Same as /NOWARNINGS.
2609 -- UNCHECKED_CONVERSIONS Activates warnings on unchecked conversions.
2610 -- Causes warnings to be generated for
2611 -- unchecked conversions when the two types are
2612 -- known at compile time to have different sizes.
2613 -- The default is that such warnings are
2616 -- NOUNCHECKED_CONVERSIONS Suppress warnings for unchecked conversions.
2618 -- UNINITIALIZED Generate warnings for uninitialized variables.
2619 -- This is a GCC option, not an Ada option.
2620 -- You must also specify the /OPTIMIZE qualifier
2621 -- with a value other than NONE (in other words,
2622 -- this keyword works only if optimization is
2625 -- UNREFERENCED_FORMALS Activate warnings on unreferenced formals.
2626 -- Causes a warning to be generated if a formal
2627 -- parameter is not referenced in the body of
2628 -- the subprogram. This warning can also be turned
2629 -- on using option ALL or UNUSED.
2631 -- NOUNREFERENCED_FORMALS Suppress warnings on unreferenced formals.
2632 -- Suppresses warnings for unreferenced formal
2633 -- parameters. Note that the combination UNUSED
2634 -- followed by NOUNREFERENCED_FORMALS has the
2635 -- effect of warning on unreferenced entities
2636 -- other than subprogram formals.
2638 -- UNUSED Activates warnings to be generated for entities
2639 -- that are defined but not referenced, and for
2640 -- units that are with'ed and not referenced. In
2641 -- the case of packages, a warning is also
2642 -- generated if no entities in the package are
2643 -- referenced. This means that if the package
2644 -- is referenced but the only references are in
2645 -- use clauses or renames declarations, a warning
2646 -- is still generated. A warning is also generated
2647 -- for a generic package that is with'ed but never
2648 -- instantiated. In the case where a package or
2649 -- subprogram body is compiled, and there is a
2650 -- with on the corresponding spec that is only
2651 -- referenced in the body, a warning is also
2652 -- generated, noting that the with can be moved
2653 -- to the body. The default is that such warnings
2654 -- are not generated.
2656 -- NOUNUSED Suppress warnings for unused entities and
2659 -- VARIABLES_UNINITIALIZED Activates warnings on unassigned variables.
2660 -- Causes warnings to be generated when a variable
2661 -- is accessed which may not be properly
2663 -- The default is that such warnings are
2666 -- NOVARIABLES_UNINITIALIZED Suppress warnings for uninitialized
2669 S_GCC_WarnX
: aliased constant S
:= "/NOWARNINGS " &
2671 -- NODOC (see /WARNINGS)
2673 S_GCC_No_Back
: aliased constant S
:= "/NO_BACK_END_WARNINGS " &
2675 -- /NO_BACK_END_WARNINGS
2677 -- Inhibit all warning messages of the GCC back-end.
2679 S_GCC_Wide
: aliased constant S
:= "/WIDE_CHARACTER_ENCODING=" &
2694 -- /NOWIDE_CHARACTER_ENCODING (D)
2695 -- /WIDE_CHARACTER_ENCODING[=encode-type]
2697 -- Specifies the mechanism used to encode wide characters. 'encode-type'
2698 -- is one of the following:
2700 -- BRACKETS (D) A wide character is encoded as ["xxxx"] where XXXX
2701 -- are four hexadecimal digits representing the coding
2702 -- ('Pos value) of the character in type
2703 -- Wide_Character. The hexadecimal digits may use upper
2704 -- or lower case letters.
2706 -- This notation can also be used for upper half
2707 -- Character values using the format ["xx"] where XX is
2708 -- two hexadecimal digits representing the coding ('Pos
2709 -- value) of the character in type Character (or
2710 -- Wide_Character). The hexadecimal digits may use upper
2713 -- NONE No wide characters are allowed. Same
2714 -- as /NOWIDE_CHARCTER_ENCODING.
2716 -- HEX In this encoding, a wide character is represented by
2717 -- the following five character sequence: ESC a b c d
2718 -- Where 'a', 'b', 'c', and 'd' are the four hexadecimal
2719 -- characters (using uppercase letters) of the wide
2720 -- character code. For example, ESC A345 is used to
2721 -- represent the wide character with code 16#A345#. This
2722 -- scheme is compatible with use of the full
2723 -- Wide_Character set.
2725 -- UPPER The wide character with encoding 16#abcd# where the
2726 -- upper bit is on (in other words, "a" is in the range
2727 -- 8-F) is represented as two bytes, 16#ab# and 16#cd#.
2728 -- The second byte may never be a format control
2729 -- character, but is not required to be in the upper
2730 -- half. This method can be also used for shift-JIS or
2731 -- EUC, where the internal coding matches the external
2734 -- SHIFT_JIS A wide character is represented by a two-character
2735 -- sequence, 16#ab# and 16#cd#, with the restrictions
2736 -- described for upper-half encoding as described above.
2737 -- The internal character code is the corresponding JIS
2738 -- character according to the standard algorithm for
2739 -- Shift-JIS conversion. Only characters defined in the
2740 -- JIS code set table can be used with this encoding
2743 -- UTF8 A wide character is represented using
2744 -- UCS Transformation Format 8 (UTF-8) as defined in Annex
2745 -- R of ISO 10646-1/Am.2. Depending on the character
2746 -- value, the representation is a one, two, or three byte
2749 -- 16#0000#-16#007f#: 2#0xxxxxxx#
2750 -- 16#0080#-16#07ff#: 2#110xxxxx# 2#10xxxxxx#
2751 -- 16#0800#-16#ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx#
2753 -- where the xxx bits correspond to the left-padded bits
2754 -- of the the 16-bit character value. Note that all lower
2755 -- half ASCII characters are represented as ASCII bytes
2756 -- and all upper half characters and other wide characters
2757 -- are represented as sequences of upper-half (The full
2758 -- UTF-8 scheme allows for encoding 31-bit characters as
2759 -- 6-byte sequences, but in this implementation, all UTF-8
2760 -- sequences of four or more bytes length will be treated
2763 -- EUC A wide character is represented by a two-character
2764 -- sequence 16#ab# and 16#cd#, with both characters being
2765 -- in the upper half. The internal character code is the
2766 -- corresponding JIS character according to the EUC
2767 -- encoding algorithm. Only characters defined in the JIS
2768 -- code set table can be used with this encoding method.
2770 S_GCC_WideX
: aliased constant S
:= "/NOWIDE_CHARACTER_ENCODING " &
2772 -- NODOC (see /WIDE_CHARACTER_ENCODING)
2774 S_GCC_Xdebug
: aliased constant S
:= "/XDEBUG " &
2779 -- Output expanded source files for source level debugging.
2780 -- The expanded source (see /EXPAND_SOURCE) is written to files
2781 -- with names formed by appending "_DG" to the input file name,
2782 -- The debugging information generated by the /DEBUG qualifier will then
2783 -- refer to the generated file. This allows source level debugging using
2784 -- the generated code which is sometimes useful for complex code, for
2785 -- example to find out exactly which part of a complex construction
2786 -- raised an exception.
2788 S_GCC_Xref
: aliased constant S
:= "/XREF=" &
2795 -- Normally the compiler generates full cross-referencing information in
2796 -- the .ALI file. This information is used by a number of tools,
2797 -- including GNAT FIND and GNAT XREF.
2799 -- GENERATE (D) Generate cross-referencing information.
2801 -- SUPPRESS Suppress cross-referencing information.
2802 -- This saves some space and may slightly
2803 -- speed up compilation, but means that some
2804 -- tools cannot be used.
2806 S_GCC_Zero
: aliased constant S
:= "/ZERO_COST_EXCEPTIONS " &
2808 -- /ZERO_COST_EXCEPTIONS
2809 -- /NOZERO_COST_EXCEPTIONS
2811 -- As zero-cost exceptions is the default on VMS, this qualifier has
2812 -- no effect, except that it cancels the effect of a previous
2813 -- /LONGJMP_SETJUMP qualifier.
2815 GCC_Switches
: aliased constant Switches
:=
2816 (S_GCC_Ada_83
'Access,
2817 S_GCC_Ada_95 'Access,
2818 S_GCC_Ada_05
'Access,
2820 S_GCC_Checks
'Access,
2821 S_GCC_ChecksX 'Access,
2822 S_GCC_Compres
'Access,
2823 S_GCC_Config 'Access,
2824 S_GCC_Current
'Access,
2825 S_GCC_Debug 'Access,
2826 S_GCC_DebugX
'Access,
2829 S_GCC_DistX 'Access,
2830 S_GCC_Error
'Access,
2831 S_GCC_ErrorX 'Access,
2832 S_GCC_Expand
'Access,
2833 S_GCC_Extend 'Access,
2836 S_GCC_Force
'Access,
2839 S_GCC_Ident 'Access,
2840 S_GCC_IdentX
'Access,
2841 S_GCC_Immed 'Access,
2842 S_GCC_Inline
'Access,
2843 S_GCC_InlineX 'Access,
2844 S_GCC_Jumps
'Access,
2845 S_GCC_Length 'Access,
2847 S_GCC_Mapping 'Access,
2849 S_GCC_Nesting 'Access,
2850 S_GCC_Noadc
'Access,
2851 S_GCC_Noload 'Access,
2852 S_GCC_Nostinc
'Access,
2853 S_GCC_Nostlib 'Access,
2856 S_GCC_Polling
'Access,
2857 S_GCC_Project 'Access,
2859 S_GCC_Report 'Access,
2860 S_GCC_ReportX
'Access,
2861 S_GCC_Repinfo 'Access,
2862 S_GCC_RepinfX
'Access,
2864 S_GCC_Search
'Access,
2865 S_GCC_Style 'Access,
2866 S_GCC_StyleX
'Access,
2867 S_GCC_Symbol 'Access,
2868 S_GCC_Syntax
'Access,
2869 S_GCC_Table 'Access,
2870 S_GCC_Trace
'Access,
2873 S_GCC_Units 'Access,
2874 S_GCC_Unique
'Access,
2875 S_GCC_Upcase 'Access,
2876 S_GCC_Valid
'Access,
2877 S_GCC_Verbose 'Access,
2878 S_GCC_Verb_Asm
'Access,
2880 S_GCC_WarnX 'Access,
2882 S_GCC_WideX 'Access,
2883 S_GCC_No_Back
'Access,
2884 S_GCC_Xdebug 'Access,
2886 S_GCC_Zero 'Access);
2888 ----------------------------
2889 -- Switches for GNAT ELIM --
2890 ----------------------------
2892 S_Elim_All
: aliased constant S
:= "/ALL " &
2897 -- Also look for subprograms from the GNAT run time that can be
2898 -- eliminated. Note that when 'gnat.adc' is produced using this switch,
2899 -- the entire program must be recompiled with qualifier /ALL_FILES of
2902 S_Elim_Bind
: aliased constant S
:= "/BIND_FILE=<" &
2904 -- /BIND_FILE=file_name
2906 -- Specifies file_name as the bind file to process. If this qualifier is
2907 -- not used, the name of the bind file is computed from the full expanded
2908 -- Ada name of a main subprogram.
2910 S_Elim_Comp
: aliased constant S
:= "/COMPILER=@" &
2912 -- /COMPILER=path_name
2914 -- Instructs GNAT ELIM to use a specific gcc compiler instead of one
2915 -- available on the path.
2917 S_Elim_Config
: aliased constant S
:= "/CONFIGURATION_PRAGMAS=<" &
2919 -- /CONFIGURATION_PRAGMAS=path_name
2921 -- Specifies a file that contains configuration pragmas.
2922 -- The file must be specified with absolute path.
2924 S_Elim_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
2926 -- /CURRENT_DIRECTORY (D)
2927 -- /NOCURRENT_DIRECTORY
2929 -- Look for source files in the default directory.
2931 S_Elim_GNATMAKE
: aliased constant S
:= "/GNATMAKE=@" &
2933 -- /GNATMAKE=path_name
2935 -- Instructs GNAT MAKE to use a specific gnatmake instead of one available
2938 S_Elim_Quiet
: aliased constant S
:= "/QUIET " &
2943 -- Quiet mode: by default GNAT ELIM outputs to the standard error stream
2944 -- the number of program units left to be processed. This option turns
2947 S_Elim_Search
: aliased constant S
:= "/SEARCH=*" &
2949 -- /SEARCH=(directory, ...)
2951 -- When looking for source files also look in the specified directories.
2953 S_Elim_Verb
: aliased constant S
:= "/VERBOSE " &
2958 -- Verbose mode: GNAT ELIM version information is output as Ada comments
2959 -- to the standard output stream. Also, in addition to the number of
2960 -- program units left, GNAT ELIM will output the name of the current unit
2963 Elim_Switches
: aliased constant Switches
:=
2964 (S_Elim_All
'Access,
2965 S_Elim_Bind 'Access,
2966 S_Elim_Comp
'Access,
2967 S_Elim_Config 'Access,
2968 S_Elim_Current
'Access,
2969 S_Elim_GNATMAKE'Access,
2970 S_Elim_Quiet 'Access,
2971 S_Elim_Search
'Access,
2972 S_Elim_Verb 'Access);
2974 ----------------------------
2975 -- Switches for GNAT FIND --
2976 ----------------------------
2978 S_Find_All
: aliased constant S
:= "/ALL_FILES " &
2983 -- If this switch is present, FIND and XREF will parse the read-only
2984 -- files found in the library search path. Otherwise, these files will
2985 -- be ignored. This option can be used to protect Gnat sources or your
2986 -- own libraries from being parsed, thus making FIND and XREF much
2987 -- faster, and their output much smaller.
2989 S_Find_Deriv
: aliased constant S
:= "/DERIVED_TYPE_INFORMATION " &
2991 -- /NODERIVED_TYPE_INFORMATION (D)
2992 -- /DERIVED_TYPE_INFORMATION
2994 -- Output the parent type reference for each matching derived types.
2996 S_Find_Expr
: aliased constant S
:= "/EXPRESSIONS " &
2998 -- /NOEXPRESSIONS (D)
3001 -- By default, FIND accepts the simple regular expression set for pattern.
3002 -- If this switch is set, then the pattern will be considered as a full
3003 -- Unix-style regular expression.
3005 S_Find_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
3007 -- /EXTERNAL_REFERENCE="name=val"
3009 -- Specifies an external reference to the project manager. Useful only if
3010 -- /PROJECT_FILE is used.
3013 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3015 S_Find_Full
: aliased constant S
:= "/FULL_PATHNAME " &
3017 -- /NOFULL_PATHNAME (D)
3020 -- If this switch is set, the output file names will be preceded by their
3021 -- directory (if the file was found in the search path). If this switch
3022 -- is not set, the directory will not be printed.
3024 S_Find_Ignore
: aliased constant S
:= "/IGNORE_LOCALS " &
3026 -- /NOIGNORE_LOCALS (D)
3029 -- If this switch is set, information is output only for library-level
3030 -- entities, ignoring local entities. The use of this switch may
3031 -- accelerate FIND and XREF.
3033 S_Find_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
3040 -- /MESSAGES_PROJECT_FILE[=messages-option]
3042 -- Specifies the "verbosity" of the parsing of project files.
3043 -- messages-option may be one of the following:
3045 -- DEFAULT (D) No messages are output if there is no error or warning.
3047 -- MEDIUM A small number of messages are output.
3049 -- HIGH A great number of messages are output, most of them not
3050 -- being useful for the user.
3052 S_Find_Nostinc
: aliased constant S
:= "/NOSTD_INCLUDES " &
3056 -- Do not look for sources in the system default directory.
3058 S_Find_Nostlib
: aliased constant S
:= "/NOSTD_LIBRARIES " &
3062 -- Do not look for library files in the system default directory.
3064 S_Find_Object
: aliased constant S
:= "/OBJECT_SEARCH=*" &
3066 -- /OBJECT_SEARCH=(directory,...)
3068 -- When searching for library and object files, look in the specified
3069 -- directories. The order in which library files are searched is the same
3072 S_Find_Print
: aliased constant S
:= "/PRINT_LINES " &
3074 -- /NOPRINT_LINES (D)
3077 -- Output the content of the Ada source file lines were the entity was
3080 S_Find_Project
: aliased constant S
:= "/PROJECT=@" &
3084 -- Specify a project file to use. By default, FIND and XREF will try to
3085 -- locate a project file in the current directory.
3087 -- If a project file is either specified or found by the tools, then the
3088 -- content of the source directory and object directory lines are added
3089 -- as if they had been specified respectively by /SOURCE_SEARCH and
3092 -- This qualifier is not compatible with /PROJECT_FILE
3094 S_Find_Prj
: aliased constant S
:= "/PROJECT_FILE=<" &
3096 -- /PROJECT_FILE=filename
3098 -- Specifies the main project file to be used. The project files rooted
3099 -- at the main project file will be parsed before looking for sources.
3100 -- The source and object directories to be searched will be communicated
3101 -- to gnatfind through logical names ADA_PRJ_INCLUDE_FILE and
3102 -- ADA_PRJ_OBJECTS_FILE.
3104 S_Find_Ref
: aliased constant S
:= "/REFERENCES " &
3106 -- /NOREFERENCES (D)
3109 -- By default, FIND will output only the information about the
3110 -- declaration, body or type completion of the entities. If this switch
3111 -- is set, the FIND will locate every reference to the entities in the
3112 -- files specified on the command line (or in every file in the search
3113 -- path if no file is given on the command line).
3115 S_Find_Search
: aliased constant S
:= "/SEARCH=*" &
3117 -- /SEARCH=(directory,...)
3120 -- /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
3122 S_Find_Source
: aliased constant S
:= "/SOURCE_SEARCH=*" &
3124 -- /SOURCE_SEARCH=(directory,...)
3126 -- When looking for source files also look in the specified directories.
3127 -- The order in which source file search is undertaken is the same as for
3130 S_Find_Types
: aliased constant S
:= "/TYPE_HIERARCHY " &
3132 -- /NOTYPE_HIERARCHY (D)
3135 -- Output the type hierarchy for the specified type. It acts like the
3136 -- /DERIVED_TYPE_INFORMATION qualifier, but recursively from parent type
3137 -- to parent type. When this qualifier is specified it is not possible to
3138 -- specify more than one file.
3140 Find_Switches
: aliased constant Switches
:=
3141 (S_Find_All
'Access,
3142 S_Find_Deriv 'Access,
3143 S_Find_Expr
'Access,
3145 S_Find_Full
'Access,
3146 S_Find_Ignore 'Access,
3147 S_Find_Mess
'Access,
3148 S_Find_Nostinc 'Access,
3149 S_Find_Nostlib
'Access,
3150 S_Find_Object 'Access,
3151 S_Find_Print
'Access,
3152 S_Find_Project 'Access,
3155 S_Find_Search
'Access,
3156 S_Find_Source 'Access,
3157 S_Find_Types
'Access);
3159 ------------------------------
3160 -- Switches for GNAT KRUNCH --
3161 ------------------------------
3163 S_Krunch_Count : aliased constant S := "/COUNT=#" &
3168 -- Limit file names to nnn characters (where nnn is a decimal
3169 -- integer). The maximum file name length is 39, but if you want to
3170 -- generate a set of files that would be usable if ported to a system
3171 -- with some different maximum file length, then a different value can
3174 Krunch_Switches : aliased constant Switches :=
3175 (1 .. 1 => S_Krunch_Count 'Access);
3177 -------------------------------
3178 -- Switches for GNAT LIBRARY --
3179 -------------------------------
3181 S_Lbr_Config
: aliased constant S
:= "/CONFIG=@" &
3185 -- File containing configuration pragmas.
3187 S_Lbr_Create
: aliased constant S
:= "/CREATE=%" &
3189 -- /CREATE=directory
3191 -- Directory to create and build alternate library in.
3193 S_Lbr_Delete
: aliased constant S
:= "/DELETE=%" &
3195 -- /DELETE=directory
3197 -- Directory containing alternate library to be deleted.
3199 S_Lbr_Set
: aliased constant S
:= "/SET=%" &
3203 -- Directory containing alternate library to be made the current library.
3205 Lbr_Switches
: aliased constant Switches
:=
3206 (S_Lbr_Config
'Access,
3207 S_Lbr_Create 'Access,
3208 S_Lbr_Delete
'Access,
3211 ----------------------------
3212 -- Switches for GNAT LINK --
3213 ----------------------------
3215 S_Link_Bind
: aliased constant S
:= "/BIND_FILE=" &
3220 -- /BIND_FILE=[bind-file-option]
3222 -- Specifies the language of the binder generated file.
3224 -- ADA (D) Binder file is Ada.
3226 -- C Binder file is 'C'.
3228 S_Link_Debug
: aliased constant S
:= "/DEBUG=" &
3238 -- /DEBUG[=debug-option]
3240 -- Specifies the amount of debugging information included. 'debug-option'
3241 -- is one of the following:
3243 -- ALL (D) Include full debugging information.
3245 -- NONE Provide no debugging information. Same as /NODEBUG.
3247 -- TRACEBACK Provide sufficient debug information for a traceback.
3249 -- NOTRACEBACK Same as NONE.
3251 S_Link_Nodebug
: aliased constant S
:= "/NODEBUG " &
3253 -- NODOC (see /DEBUG)
3255 S_Link_Execut
: aliased constant S
:= "/EXECUTABLE=@" &
3257 -- /EXECUTABLE=exec-name
3259 -- 'exec-name' specifies an alternative name for the generated executable
3260 -- program. If this qualifier switch is omitted, the executable is called
3261 -- the name of the main unit. So "$ GNAT LINK TRY.ALI" creates an
3262 -- executable called TRY.EXE.
3264 S_Link_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
3266 -- /EXTERNAL_REFERENCE="name=val"
3268 -- Specifies an external reference to the project manager. Useful only if
3269 -- /PROJECT_FILE is used.
3272 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3274 S_Link_Forlink
: aliased constant S
:= "/FOR_LINKER=" & '"' &
3275 "--for-linker=" & '"';
3276 -- /FOR_LINKER=<string>
3278 -- Transmit the option <string> to the underlying linker.
3280 S_Link_Force
: aliased constant S
:= "/FORCE_OBJECT_FILE_LIST " &
3282 -- /NOFORCE_OBJECT_FILE_LIST (D)
3283 -- /FORCE_OBJECT_FILE_LIST
3285 -- Forces the generation of a file that contains commands for the linker.
3286 -- This is useful in some cases to deal with special situations where the
3287 -- command line length is exceeded.
3289 S_Link_Ident
: aliased constant S
:= "/IDENTIFICATION=" & '"' &
3290 "--for-linker=IDENT=" &
3292 -- /IDENTIFICATION="<string>"
3294 -- "<string>" specifies the string to be stored in the image file ident-
3295 -- ification field in the image header. It overrides any pragma Ident
3296 -- specified string.
3298 S_Link_Libdir
: aliased constant S
:= "/LIBDIR=*" &
3300 -- /LIBDIR=(directory, ...)
3302 -- Look for libraries in the specified directories.
3304 S_Link_Library
: aliased constant S
:= "/LIBRARY=|" &
3308 -- Link with library named "xyz".
3310 S_Link_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
3317 -- /MESSAGES_PROJECT_FILE[=messages-option]
3319 -- Specifies the "verbosity" of the parsing of project files.
3320 -- messages-option may be one of the following:
3322 -- DEFAULT (D) No messages are output if there is no error or warning.
3324 -- MEDIUM A small number of messages are output.
3326 -- HIGH A great number of messages are output, most of them not
3327 -- being useful for the user.
3329 S_Link_Nocomp
: aliased constant S
:= "/NOCOMPILE " &
3333 -- Do not compile the file generated by the binder.
3334 -- This may be used when a link is rerun with different options,
3335 -- but there is no need to recompile the binder generated file.
3337 S_Link_Noinhib
: aliased constant S
:= "/NOINHIBIT-EXEC " &
3338 "--for-linker=--noinhibit-exec";
3341 -- Delete executable if there are errors or warnings.
3343 S_Link_Nofiles
: aliased constant S
:= "/NOSTART_FILES " &
3347 -- Link in default image initialization and startup functions.
3349 S_Link_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
3351 -- /PROJECT_FILE=filename
3353 -- Specifies the main project file to be used. The project files rooted
3354 -- at the main project file will be parsed before the invocation of the
3356 -- The source and object directories to be searched will be communicated
3357 -- to the linker through logical names ADA_PRJ_INCLUDE_FILE and
3358 -- ADA_PRJ_OBJECTS_FILE.
3360 S_Link_Return
: aliased constant S
:= "/RETURN_CODES=" &
3362 "!-mvms-return-codes " &
3364 "-mvms-return-codes";
3365 -- /RETURN_CODES=POSIX (D)
3366 -- /RETURN_CODES=VMS
3368 -- Specifies the style of codes returned by
3369 -- Ada.Command_Line.Set_Exit_Status.
3371 -- POSIX (D) Return Posix compatible exit codes.
3373 -- VMS Return VMS compatible exit codes. The value returned
3374 -- is identically equal to the Set_Exit_Status parameter.
3376 S_Link_Static
: aliased constant S
:= "/STATIC " &
3377 "--for-linker=-static";
3381 -- Indicate to the linker that the link is static.
3383 S_Link_Verb
: aliased constant S
:= "/VERBOSE " &
3388 -- Causes additional information to be output, including a full list of
3389 -- the included object files. This switch option is most useful when you
3390 -- want to see what set of object files are being used in the link step.
3392 S_Link_ZZZZZ
: aliased constant S
:= "/<other> " &
3396 -- Any other switch that will be transmited to the underlying linker.
3398 Link_Switches
: aliased constant Switches
:=
3399 (S_Link_Bind
'Access,
3400 S_Link_Debug 'Access,
3401 S_Link_Nodebug
'Access,
3402 S_Link_Execut 'Access,
3404 S_Link_Forlink 'Access,
3405 S_Link_Force
'Access,
3406 S_Link_Ident 'Access,
3407 S_Link_Libdir
'Access,
3408 S_Link_Library 'Access,
3409 S_Link_Mess
'Access,
3410 S_Link_Nocomp 'Access,
3411 S_Link_Nofiles
'Access,
3412 S_Link_Noinhib 'Access,
3413 S_Link_Project
'Access,
3414 S_Link_Return 'Access,
3415 S_Link_Static
'Access,
3416 S_Link_Verb 'Access,
3417 S_Link_ZZZZZ
'Access);
3419 ----------------------------
3420 -- Switches for GNAT LIST --
3421 ----------------------------
3423 S_List_All : aliased constant S := "/ALL_UNITS " &
3428 -- Consider all units, including those of the predefined Ada library.
3429 -- Especially useful with /DEPENDENCIES.
3431 S_List_Current : aliased constant S := "/CURRENT_DIRECTORY " &
3433 -- /CURRENT_DIRECTORY (D)
3434 -- /NOCURRENT_DIRECTORY
3436 -- Look for source, library or object files in the default directory.
3438 S_List_Depend : aliased constant S := "/DEPENDENCIES " &
3440 -- /NODEPENDENCIES (D)
3443 S_List_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
3445 -- /EXTERNAL_REFERENCE="name=val"
3447 -- Specifies an external reference to the project manager. Useful only if
3448 -- /PROJECT_FILE is used.
3451 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3453 S_List_Files : aliased constant S := "/FILES=@" &
3457 -- Take as arguments the files that are listed in the specified
3460 S_List_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
3467 -- /MESSAGES_PROJECT_FILE[=messages-option]
3469 -- Specifies the "verbosity" of the parsing of project files.
3470 -- messages-option may be one of the following:
3472 -- DEFAULT (D) No messages are output if there is no error or warning.
3474 -- MEDIUM A small number of messages are output.
3476 -- HIGH A great number of messages are output, most of them not
3477 -- being useful for the user.
3479 S_List_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
3483 -- Do not look for sources of the run time in the standard directory.
3485 S_List_Object : aliased constant S := "/OBJECT_SEARCH=*" &
3487 -- /OBJECT_SEARCH=(directory,...)
3489 -- When looking for library and object files look also in the specified
3492 S_List_Output : aliased constant S := "/OUTPUT=" &
3505 -- /OUTPUT=(option,option,...)
3507 -- SOURCES (D) Only output information about source files.
3509 -- DEPEND List sources from which specified units depend on.
3511 -- OBJECTS Only output information about object files.
3513 -- UNITS Only output information about compilation units.
3515 -- OPTIONS Output the list of options.
3517 -- VERBOSE Output the complete source and object paths.
3518 -- Do not use the default column layout but instead
3519 -- use long format giving as much as information
3520 -- possible on each requested units, including
3521 -- special characteristics.
3523 S_List_Project : aliased constant S := "/PROJECT_FILE=<" &
3525 -- /PROJECT_FILE=filename
3527 -- Specifies the main project file to be used. The project files rooted
3528 -- at the main project file will be parsed before doing any listing.
3529 -- The source and object directories to be searched will be communicated
3530 -- to gnatlist through logical names ADA_PRJ_INCLUDE_FILE and
3531 -- ADA_PRJ_OBJECTS_FILE.
3533 S_List_Search : aliased constant S := "/SEARCH=*" &
3535 -- /SEARCH=(directory,...)
3537 -- Search the specified directories for both source and object files.
3539 S_List_Source : aliased constant S := "/SOURCE_SEARCH=*" &
3541 -- /SOURCE_SEARCH=(directory,...)
3543 -- When looking for source files also look in the specified directories.
3545 List_Switches : aliased constant Switches :=
3546 (S_List_All 'Access,
3547 S_List_Current
'Access,
3548 S_List_Depend 'Access,
3550 S_List_Files 'Access,
3551 S_List_Mess
'Access,
3552 S_List_Nostinc 'Access,
3553 S_List_Object
'Access,
3554 S_List_Output 'Access,
3555 S_List_Project
'Access,
3556 S_List_Search 'Access,
3557 S_List_Source
'Access);
3559 ----------------------------
3560 -- Switches for GNAT MAKE --
3561 ----------------------------
3563 S_Make_Actions : aliased constant S := "/ACTIONS=" &
3570 -- /ACTIONS=(keyword[,...])
3572 -- GNAT MAKE default behavior is to check if the sources are up to date,
3573 -- compile those sources that are not up to date, bind the main source,
3574 -- then link the executable.
3576 -- With the /ACTIONS qualifier, GNAT MAKE may be restricted to one or
3577 -- two of these three steps:
3584 -- You may specify one or more of the following keywords to the /ACTIONS
3587 -- BIND Bind only. Can be combined with /ACTIONS=COMPILE
3588 -- to do compilation and binding, but no linking.
3589 -- Can be combined with /ACTIONS=LINK to do binding and
3590 -- linking. When not combined with /ACTIONS=COMPILE,
3591 -- all the units in the closure of the main program must
3592 -- have been previously compiled and must be up to date.
3594 -- COMPILE Compile only. Do not perform binding, except when
3595 -- /ACTIONS=BIND is also specified. Do not perform
3596 -- linking, except if both /ACTIONS=BIND and /ACTIONS=LINK
3597 -- are also specified.
3599 -- LINK Link only. Can be combined with /ACTIONS=BIND to do
3600 -- binding and linking. Linking will not be performed
3601 -- if combined with /ACTIONS=COMPILE but not with
3602 -- /ACTIONS=BIND\. When not combined with /ACTIONS=BIND
3603 -- all the units in the closure of the main program must
3604 -- have been previously compiled and must be up to date,
3605 -- and the main program need to have been bound.
3607 S_Make_All : aliased constant S := "/ALL_FILES " &
3612 -- Consider all files in the make process, even the GNAT internal system
3613 -- files (for example, the predefined Ada library files). By default,
3614 -- GNAT MAKE does not check these files (however, if there is an
3615 -- installation problem, it will be caught when GNAT MAKE binds your
3616 -- program). You may have to specify this qualifier if you are working on
3617 -- GNAT itself. The vast majority of GNAT MAKE users never need to
3618 -- specify this switch. All GNAT internal files with will be compiled
3619 -- with /STYLE_CHECK=GNAT.
3621 S_Make_Allproj : aliased constant S := "/ALL_PROJECTS " &
3623 -- /NOALL_PROJECTS (D)
3627 -- When used without project files, it is equivalent to /UNIQUE.
3628 -- When used with a project file wit no main (neither on the command
3629 -- line nor in the attribute Main) check every source of every project,
3630 -- recompile all sources that are not up to date and rebuild libraries
3633 S_Make_Bind : aliased constant S := "/BINDER_QUALIFIERS=?" &
3635 -- /BINDER_QUALIFIERS
3637 -- Any qualifiers specified after this qualifier other than
3638 -- /COMPILER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
3639 -- passed to any GNAT BIND commands generated by GNAT MAKE.
3641 S_Make_Bindprj : aliased constant S := "/BND_LNK_FULL_PROJECT " &
3643 -- /BND_LNK_FULL_PROJECT
3645 -- Bind and link all sources of a project, without any consideration
3646 -- to attribute Main, if there is one. This qualifier need to be
3647 -- used in conjunction with the /PROJECT_FILE= qualifier and cannot
3648 -- be used with a main subprogram on the command line or for
3649 -- a library project file. As the binder is invoked with the option
3650 -- meaning "No Ada main subprogram", the user must ensure that the
3651 -- proper options are specified to the linker. This qualifier is
3652 -- normally used when the main subprogram is in a foreign language
3655 S_Make_Comp : aliased constant S := "/COMPILER_QUALIFIERS=?" &
3657 -- /COMPILER_QUALIFIERS
3659 -- Any qualifiers specified after this qualifier other than
3660 -- /BINDER_QUALIFIERS, /LINKER_QUALIFIERS and /MAKE_QUALIFIERS will be
3661 -- passed to any GNAT COMPILE commands generated by GNAT MAKE.
3663 S_Make_Cond : aliased constant S := "/CONDITIONAL_SOURCE_SEARCH=*" &
3665 -- /CONDITIONAL_SOURCE_SEARCH=dir
3667 -- Equivalent to "/SOURCE_SEARCH=dir /SKIP_MISSING=dir".
3669 S_Make_Cont : aliased constant S := "/CONTINUE_ON_ERROR " &
3671 -- /NOCONTINUE_ON_ERROR (D)
3672 -- /CONTINUE_ON_ERROR
3674 -- Keep going. Continue as much as possible after a compilation error.
3675 -- To ease the programmer's task in case of compilation errors, the list
3676 -- of sources for which the compile fails is given when GNAT MAKE
3679 S_Make_Current : aliased constant S := "/CURRENT_DIRECTORY " &
3681 -- /CURRENT_DIRECTORY (D)
3682 -- /NOCURRENT_DIRECTORY
3684 -- Look for source, library or object files in the default directory.
3686 S_Make_Dep : aliased constant S := "/DEPENDENCIES_LIST " &
3688 -- /NODEPENDENCIES_LIST (D)
3689 -- /DEPENDENCIES_LIST
3691 -- Check if all objects are up to date. If they are, output the object
3692 -- dependences to SYS$OUTPUT in a form that can be directly exploited in
3693 -- a Unix-style Makefile. By default, each source file is prefixed with
3694 -- its (relative or absolute) directory name. This name is whatever you
3695 -- specified in the various /SOURCE_SEARCH and /SEARCH qualifiers. If
3696 -- you also speficy the /QUIET qualifier, only the source file names,
3697 -- without relative paths, are output. If you just specify the
3698 -- /DEPENDENCY_LIST qualifier, dependencies of the GNAT internal system
3699 -- files are omitted. This is typically what you want. If you also
3700 -- specify the /ALL_FILES qualifier, dependencies of the GNAT internal
3701 -- files are also listed. Note that dependencies of the objects in
3702 -- external Ada libraries (see the /SKIP_MISSING qualifier) are never
3705 S_Make_Dirobj : aliased constant S := "/DIRECTORY_OBJECTS=@" &
3707 -- /DIRECTORY_OBJECTS=<file>
3709 -- Put all object files and .ALI files in <file>.
3710 -- This qualifier is not compatible with /PROJECT_FILE.
3712 S_Make_Doobj : aliased constant S := "/DO_OBJECT_CHECK " &
3714 -- /NODO_OBJECT_CHECK (D)
3717 -- Don't compile, bind, or link. Output a single command that will
3718 -- recompile an out of date unit, if any. Repeated use of this option,
3719 -- followed by carrying out the indicated compilation, will eventually
3720 -- result in recompiling all required units.
3722 -- If any ALI is missing during the process, GNAT MAKE halts and
3723 -- displays an error message.
3725 S_Make_Execut : aliased constant S := "/EXECUTABLE=@" &
3727 -- /EXECUTABLE=exec-name
3729 -- The name of the final executable program will be 'exec_name
'. If this
3730 -- qualifier is omitted the default name for the executable will be the
3731 -- name of the input file with an EXE filetype. You may prefix
3732 -- 'exec_name
' with a relative or absolute directory path.
3734 S_Make_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
3736 -- /EXTERNAL_REFERENCE="name=val"
3738 -- Specifies an external reference to the project manager. Useful only if
3739 -- /PROJECT_FILE is used.
3742 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
3744 S_Make_Force : aliased constant S := "/FORCE_COMPILE " &
3746 -- /NOFORCE_COMPILE (D)
3749 -- Force recompilations. Recompile all sources, even though some object
3750 -- files may be up to date, but don't recompile predefined or GNAT
3751 -- internal files unless the /ALL_FILES qualfier is also specified.
3753 S_Make_Full : aliased constant S := "/FULL_PATH_IN_BRIEF_MESSAGES " &
3755 -- /NOFULL_PATH_IN_BRIEF_MESSAGES (D)
3756 -- /FULL_PATH_IN_BRIEF_MESSAGES
3758 -- When using project files, if some errors or warnings are detected
3759 -- during parsing and verbose mode is not in effect (no use of qualifier
3760 -- /VERBOSE), then error lines start with the full path name of the
3761 -- project file, rather than its simple file name.
3763 S_Make_Inplace : aliased constant S := "/IN_PLACE " &
3768 -- In normal mode, GNAT MAKE compiles all object files and ALI files
3769 -- into the current directory. If the /IN_PLACE switch is used,
3770 -- then instead object files and ALI files that already exist are over-
3771 -- written in place. This means that once a large project is organized
3772 -- into separate directories in the desired manner, then GNAT MAKE will
3773 -- automatically maintain and update this organization. If no ALI files
3774 -- are found on the Ada object path, the new object and ALI files are
3775 -- created in the directory containing the source being compiled.
3777 S_Make_Index : aliased constant S := "/SOURCE_INDEX=#" &
3779 -- /SOURCE_INDEX=nnn
3781 -- Specifies the index of the units in the source file
3782 -- By default, source files are mono-unit and there is no index
3783 -- When /SOURCE_INDEX=nnn is specified, only one main may be specified
3784 -- on the command line.
3786 S_Make_Library : aliased constant S := "/LIBRARY_SEARCH=*" &
3788 -- /LIBRARY_SEARCH=(directory[,...])
3790 -- Add the specified directories to the list of directories in which the
3791 -- linker will search for libraries.
3793 S_Make_Link : aliased constant S := "/LINKER_QUALIFIERS=?" &
3795 -- /LINKER_QUALIFIERS
3797 -- Any qualifiers specified after this qualifier other than
3798 -- /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /MAKE_QUALIFIERS will be
3799 -- passed to any GNAT LINK commands generated by GNAT LINK.
3801 S_Make_Make : aliased constant S := "/MAKE_QUALIFIERS=?" &
3805 -- Any qualifiers specified after this qualifier other than
3806 -- /COMPILER_QUALIFIERS, /BINDER_QUALIFIERS and /LINKER_QUALIFIERS
3807 -- are for the benefit of GNAT MAKE itself.
3809 S_Make_Mapping : aliased constant S := "/MAPPING " &
3814 -- Use a mapping file. A mapping file is a way to communicate to the
3815 -- compiler two mappings: from unit names to file names (without any
3816 -- directory information) and from file names to path names (with full
3817 -- directory information). These mappings are used by the compiler to
3818 -- short-circuit the path search. When GNAT MAKE is invoked with this
3819 -- qualifier, it will create a mapping file, initially populated by the
3820 -- project manager, if /PROJECT_File= is used, otherwise initially empty.
3821 -- Each invocation of the compiler will add the newly accessed sources to
3822 -- the mapping file. This will improve the source search during the next
3823 -- invocations of the compiler
3825 S_Make_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
3832 -- /MESSAGES_PROJECT_FILE[=messages-option]
3834 -- Specifies the "verbosity" of the parsing of project files.
3835 -- messages-option may be one of the following:
3837 -- DEFAULT (D) No messages are output if there is no error or warning.
3839 -- MEDIUM A small number of messages are output.
3841 -- HIGH A great number of messages are output, most of them not
3842 -- being useful for the user.
3844 S_Make_Minimal : aliased constant S := "/MINIMAL_RECOMPILATION " &
3846 -- /NOMINIMAL_RECOMPILATION (D)
3847 -- /MINIMAL_RECOMPILATION
3849 -- Specifies that the minimum necessary amount of recompilation
3850 -- be performed. In this mode GNAT MAKE ignores time stamp differences
3851 -- when the only modifications to a source file consist in
3852 -- adding/removing comments, empty lines, spaces or tabs.
3854 S_Make_Nolink : aliased constant S := "/NOLINK " &
3858 -- Compile only. Do not perform binding and linking. If the root unit is
3859 -- not a main unit, this is the default. Otherwise GNAT MAKE will
3860 -- attempt binding and linking unless all objects are up to date and the
3861 -- executable is more recent than the objects.
3862 -- This is equivalent to /ACTIONS=COMPILE
3864 S_Make_Nomain : aliased constant S := "/NOMAIN " &
3868 -- No main subprogram. Bind and link the program even if the unit name
3869 -- given on the command line is a package name. The resulting executable
3870 -- will execute the elaboration routines of the package and its closure,
3871 -- then the finalization routines.
3873 S_Make_Nonpro : aliased constant S := "/NON_PROJECT_UNIT_COMPILATION " &
3875 -- /NON_PROJECT_UNIT_COMPILATION
3877 -- Normally, when using project files, a unit that is not part of any
3878 -- project file, cannot be compile. These units may be compile, when
3879 -- needed, if this qualifier is specified.
3881 S_Make_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
3885 -- Do not look for sources the in the system default directory.
3887 S_Make_Nostlib : aliased constant S := "/NOSTD_LIBRARIES " &
3891 -- Do not look for library files in the system default directory.
3893 S_Make_Object : aliased constant S := "/OBJECT_SEARCH=*" &
3895 -- /OBJECT_SEARCH=(directory[,...])
3897 -- When looking for library and object files look also in the specified
3900 S_Make_Proc : aliased constant S := "/PROCESSES=#" &
3905 -- Use NNN processes to carry out the (re)complations. If you have a
3906 -- multiprocessor machine, compilations will occur in parallel. In the
3907 -- event of compilation errors, messages from various compilations might
3908 -- get interspersed (but GNAT MAKE will give you the full ordered list of
3909 -- failing compiles at the end). This can at times be annoying. To get a
3910 -- clean list of error messages don't use this qualifier.
3912 S_Make_Nojobs : aliased constant S := "/NOPROCESSES " &
3914 -- NODOC (see /PROCESS)
3916 S_Make_Project : aliased constant S := "/PROJECT_FILE=<" &
3918 -- /PROJECT_FILE=filename
3920 -- Specifies the main project file to be used. The project files rooted
3921 -- at the main project file will be parsed before any other processing to
3922 -- set the building environment.
3924 S_Make_Quiet : aliased constant S := "/QUIET " &
3929 -- When this qualifiers is specified, the commands carried out by GNAT
3930 -- MAKE are not displayed.
3932 S_Make_Reason : aliased constant S := "/REASONS " &
3937 -- Displays the reason for all recompilations GNAT MAKE decides are
3940 S_Make_RTS : aliased constant S := "/RUNTIME_SYSTEM=|" &
3942 -- /RUNTIME_SYSTEM=xxx
3944 -- Build against an alternate runtime system named xxx or RTS-xxx.
3946 S_Make_Search : aliased constant S := "/SEARCH=*" &
3948 -- /SEARCH=(directory[,...])
3950 -- Search the specified directories for both source and object files.
3952 S_Make_Skip : aliased constant S := "/SKIP_MISSING=*" &
3954 -- /SKIP_MISSING=(directory[,...])
3956 -- Skip missing library sources if ALI in 'directory
'.
3958 S_Make_Source : aliased constant S := "/SOURCE_SEARCH=*" &
3960 -- /SOURCE_SEARCH=(directory[,...])
3962 -- When looking for source files also look in the specified directories.
3964 S_Make_Switch : aliased constant S := "/SWITCH_CHECK " &
3966 -- /NOSWITCH_CHECK (D)
3969 -- Recompile if compiler switches have changed since last compilation.
3970 -- All compiler switches but -I and -o are taken into account in the
3971 -- following way: orders between different "first letter" switches are
3972 -- ignored, but orders between same switches are taken into account.
3973 -- For example, -O -O2 is different than -O2 -O, but -g -O is equivalent
3976 S_Make_Unique : aliased constant S := "/UNIQUE " &
3981 -- Recompile at most the main file. It implies /ACTIONS=COMPILE.
3982 -- Combined with /FORCE_COMPILE, it is equivalent to calling the compiler
3985 S_Make_Use_Map : aliased constant S := "/USE_MAPPING_File=@" &
3987 -- /USE_MAPPING_FILE=file_name
3989 -- Use a specific mapping file. The file 'file_name
', specified as a path
3990 -- name (absolute or relative) by this qualifier, should already exist,
3991 -- otherwise the qualifier is ineffective. The specified mapping file
3992 -- will be communicated to the compiler. This switch is not compatible
3993 -- with a project file (/PROJECT_FILE=) or with multiple compiling
3994 -- processes (/PROCESSES=nnn, when nnn is greater than 1).
3996 S_Make_Verbose : aliased constant S := "/VERBOSE " &
4001 -- Displays the reason for all recompilations GNAT MAKE decides are
4004 Make_Switches : aliased constant Switches :=
4005 (S_Make_Actions 'Access,
4007 S_Make_Allproj 'Access,
4008 S_Make_Bind
'Access,
4009 S_Make_Comp 'Access,
4010 S_Make_Cond
'Access,
4011 S_Make_Cont 'Access,
4012 S_Make_Current
'Access,
4014 S_Make_Dirobj
'Access,
4015 S_Make_Doobj 'Access,
4016 S_Make_Execut
'Access,
4018 S_Make_Force
'Access,
4019 S_Make_Full 'Access,
4020 S_Make_Inplace
'Access,
4021 S_Make_Index 'Access,
4022 S_Make_Library
'Access,
4023 S_Make_Link 'Access,
4024 S_Make_Make
'Access,
4025 S_Make_Mapping 'Access,
4026 S_Make_Mess
'Access,
4027 S_Make_Minimal 'Access,
4028 S_Make_Nolink
'Access,
4029 S_Make_Nomain 'Access,
4030 S_Make_Nonpro
'Access,
4031 S_Make_Nostinc 'Access,
4032 S_Make_Nostlib
'Access,
4033 S_Make_Object 'Access,
4034 S_Make_Proc
'Access,
4035 S_Make_Nojobs 'Access,
4036 S_Make_Project
'Access,
4037 S_Make_Quiet 'Access,
4038 S_Make_Reason
'Access,
4040 S_Make_Search
'Access,
4041 S_Make_Skip 'Access,
4042 S_Make_Source
'Access,
4043 S_Make_Switch 'Access,
4044 S_Make_Unique
'Access,
4045 S_Make_Use_Map 'Access,
4046 S_Make_Verbose
'Access);
4048 ------------------------------
4049 -- Switches for GNAT METRIC --
4050 ------------------------------
4052 S_Metric_Config : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
4054 -- /CONFIGURATION_PRAGMAS_FILE=file
4056 -- Specify a configuration pragmas file that need to be taken into account
4058 S_Metric_Current : aliased constant S := "/CURRENT_DIRECTORY " &
4060 -- /CURRENT_DIRECTORY (D)
4062 -- Look for files in the directory where GNAT METRIC was invoked
4064 -- /NOCURRENT_DIRECTORY
4066 -- Do not look for files in the directory where GNAT METRIC was invoked
4068 S_Metric_Debug : aliased constant S := "/DEBUG_OUTPUT " &
4072 -- Generate the debug information
4074 S_Metric_Direct : aliased constant S := "/DIRECTORY=@" &
4076 -- /DIRECTORY=pathname
4078 -- Put the files with detailed metric information into the specified
4081 S_Metric_Element : aliased constant S := "/ELEMENT_METRICS=" &
4083 "!-ed,!-es,!-enl,!-eis," &
4084 "!-eas,!-eit,!-eat,!-enu " &
4085 "DECLARATION_TOTAL " &
4087 "STATEMENT_TOTAL " &
4089 "LOOP_NESTING_MAX " &
4091 "INT_SUBPROGRAMS " &
4093 "SUBPROGRAMS_ALL " &
4099 "PROGRAM_NESTING_MAX " &
4101 -- /ELEMENT_METRICS=(option, option ...)
4103 -- Specifies the element metrics to be computed (if not set, all the
4104 -- element metrics are set on, otherwise only specified metrics are
4105 -- computed and reported)
4107 -- option may be one of the following:
4109 -- ALL (D) All the element metrics are computed
4110 -- DECLARATION_TOTAL Compute the total number of declarations
4111 -- STATEMENT_TOTAL Compute the total number of statements
4112 -- LOOP_NESTING_MAX Compute the maximal loop nesting level
4113 -- INT_SUBPROGRAMS Compute the number of interface subprograms
4114 -- SUBPROGRAMS_ALL Compute the number of all the subprograms
4115 -- INT_TYPES Compute the number of interface types
4116 -- TYPES_ALL Compute the number of all the types
4117 -- PROGRAM_NESTING_MAX Compute the maximal program unit nesting level
4119 -- All combinations of element metrics options are allowed.
4121 S_Metric_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
4123 -- /EXTERNAL_REFERENCE="name=val"
4125 -- Specifies an external reference to the project manager. Useful only if
4126 -- /PROJECT_FILE is used.
4129 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4131 S_Metric_Files : aliased constant S := "/FILES=@" &
4135 -- Take as arguments the files that are listed in the specified
4138 S_Metric_Format : aliased constant S := "/FORMAT_OUTPUT=" &
4145 "SHORT_SOURCE_FILE_NAME " &
4147 -- /FORMAT_OUTPUT=(option, option ...)
4149 -- Specifies the details of the tool output
4151 -- option may be one of the following:
4153 -- DEFAULT (D) Generate the text output only, use full
4154 -- argument source names in global information
4155 -- XML Generate the output in XML format
4156 -- NO_TEXT Do not generate the text output (implies XML)
4157 -- SHORT_SOURCE_FILE_NAME Use short argument source names in output
4159 S_Metric_Globout : aliased constant S := "/GLOBAL_OUTPUT=@" &
4161 -- /GLOBAL_OUTPUT=filename
4163 -- Put the textual global metric information into the specified file
4165 S_Metric_Line : aliased constant S := "/LINE_METRICS=" &
4167 "!-la,!-lcode,!-lcomm," &
4175 "MIXED_CODE_COMMENTS " &
4179 -- /LINE_METRICS=(option, option ...)
4181 -- Specifies the line metrics to be computed (if not set, all the line
4182 -- metrics are set on, otherwise only specified metrics are computed and
4185 -- option may be one of the following:
4187 -- ALL (D) All the line metrics are computed
4188 -- LINES_ALL All lines are computed
4189 -- CODE_LINES Lines with Ada code are computed
4190 -- COMENT_LINES All comment lines are computed
4191 -- MIXED_CODE_COMMENTS All lines containing both code and comment are
4193 -- BLANK_LINES Blank lines are computed
4195 -- All combinations of line metrics options are allowed.
4197 S_Metric_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
4204 -- /MESSAGES_PROJECT_FILE[=messages-option]
4206 -- Specifies the "verbosity" of the parsing of project files.
4207 -- messages-option may be one of the following:
4209 -- DEFAULT (D) No messages are output if there is no error or warning.
4211 -- MEDIUM A small number of messages are output.
4213 -- HIGH A great number of messages are output, most of them not
4214 -- being useful for the user.
4216 S_Metric_Project : aliased constant S := "/PROJECT_FILE=<" &
4218 -- /PROJECT_FILE=filename
4220 -- Specifies the main project file to be used. The project files rooted
4221 -- at the main project file will be parsed before the invocation of the
4224 S_Metric_Quiet : aliased constant S := "/QUIET " &
4229 -- Quiet mode: by default GNAT METRIC outputs to the standard error stream
4230 -- the number of program units left to be processed. This option turns
4233 S_Metric_Search : aliased constant S := "/SEARCH=*" &
4235 -- /SEARCH=(directory, ...)
4237 -- When looking for source files also look in the specified directories.
4239 S_Metric_Suffix : aliased constant S := "/SUFFIX_DETAILS=" & '"' &
4241 -- /SUFFIX_DETAILS=suffix
4243 -- Use the given suffix as the suffix for the name of the file to place
4244 -- the detailed metrics into.
4246 S_Metric_Suppress : aliased constant S := "/SUPPRESS=" &
4248 "!-nocc,!-noec,!-nonl," &
4250 "CYCLOMATIC_COMPLEXITY " &
4252 "ESSENTIAL_COMPLEXITY " &
4254 "MAXIMAL_LOOP_NESTING " &
4260 -- /SUPPRESS=(option, option ...)
4262 -- Specifies the metric that should not be computed
4264 -- option may be one of the following:
4266 -- NOTHING (D) Do not suppress computation of any metric
4267 -- CYCLOMATIC_COMPLEXITY Do not compute the Cyclomatic Complexity
4268 -- ESSENTIAL_COMPLEXITY Do not compute the Essential Complexity
4269 -- MAXIMAL_LOOP_NESTING Do not compute the maximal loop nesting
4270 -- EXITS_AS_GOTOS Do not count EXIT statements as GOTOs when
4271 -- computing the Essential Complexity
4272 -- LOCAL_DETAILS Do not compute the detailed metrics for local
4275 -- All combinations of options are allowed.
4277 S_Metric_Verbose : aliased constant S := "/VERBOSE " &
4284 S_Metric_XMLout : aliased constant S := "/XML_OUTPUT=@" &
4286 -- /XML_OUTPUT=filename
4288 -- Place the XML output into the specified file
4290 Metric_Switches : aliased constant Switches :=
4291 (S_Metric_Config 'Access,
4292 S_Metric_Current
'Access,
4293 S_Metric_Debug 'Access,
4294 S_Metric_Direct
'Access,
4295 S_Metric_Element 'Access,
4296 S_Metric_Ext
'Access,
4297 S_Metric_Files 'Access,
4298 S_Metric_Format
'Access,
4299 S_Metric_Globout 'Access,
4300 S_Metric_Line
'Access,
4301 S_Metric_Mess 'Access,
4302 S_Metric_Project
'Access,
4303 S_Metric_Quiet 'Access,
4304 S_Metric_Search
'Access,
4305 S_Metric_Suffix 'Access,
4306 S_Metric_Suppress
'Access,
4307 S_Metric_Verbose 'Access,
4308 S_Metric_XMLout
'Access);
4310 ----------------------------
4311 -- Switches for GNAT NAME --
4312 ----------------------------
4314 S_Name_Conf : aliased constant S := "/CONFIG_FILE=<" &
4316 -- /CONFIG_FILE=path_name
4318 -- Create a configuration pragmas file 'path_name
' (instead of the default
4319 -- 'gnat
.adc
'). 'path_name
' may include directory information. 'path_name
'
4320 -- must be writable. There may be only one qualifier /CONFIG_FILE.
4321 -- This qualifier is not compatible with qualifier /PROJECT_FILE.
4323 S_Name_Dirs : aliased constant S := "/SOURCE_DIRS=*" &
4325 -- /SOURCE_DIRS=(directory, ...)
4327 -- Look for source files in the specified directories. When this qualifier
4328 -- is specified, the current working directory will not be searched for
4329 -- source files, unless it is explicitly specified with a qualifier
4330 -- /SOURCE_DIRS or /DIRS_FILE. Several qualifiers /SOURCE_DIRS may be
4331 -- specified. If a directory is specified as a relative path, it is
4332 -- relative to the directory of the configuration pragmas file specified
4333 -- with qualifier /CONFIG_FILE, or to the directory of the project file
4334 -- specified with qualifier /PROJECT_FILE or, if neither qualifier
4335 -- /CONFIG_FILE nor qualifier /PROJECT_FILE are specified, it is relative
4336 -- to the current working directory. The directories specified with
4337 -- qualifiers /SOURCE_DIRS must exist and be readable.
4339 S_Name_Dfile : aliased constant S := "/DIRS_FILE=<" &
4341 -- /DIRS_FILE=file_name
4343 -- Look for source files in all directories listed in text file
4344 -- 'file_name
'. 'file_name
' must be an existing, readable text file.
4345 -- Each non empty line in the specified file must be a directory.
4346 -- Specifying qualifier /DIRS_FILE is equivalent to specifying as many
4347 -- qualifiers /SOURCE_DIRS as there are non empty lines in the specified
4350 S_Name_Frng : aliased constant S := "/FOREIGN_PATTERN=" & '"' &
4352 -- /FOREIGN_PATTERN=<string>
4354 -- Specify a foreign pattern.
4355 -- Using this qualifier, it is possible to add sources of languages other
4356 -- than Ada to the list of sources of a project file. It is only useful
4357 -- if a qualifier /PROJECT_FILE is used. For example,
4359 -- GNAT NAME /PROJECT_FILE=PRJ /FOREIGN_PATTERN="*.C" "*.ADA"
4361 -- will look for Ada units in all files with the '.ADA
' extension, and
4362 -- will add to the list of file for project PRJ.GPR the C files with
4365 S_Name_Help : aliased constant S := "/HELP " &
4370 -- Output usage information to the standard output stream.
4372 S_Name_Proj : aliased constant S := "/PROJECT_FILE=<" &
4374 -- /PROJECT_FILE=file_name
4376 -- Create or update a project file. 'file_name
' may include directory
4377 -- information. The specified file must be writable. There may be only
4378 -- one qualifier /PROJECT_FILE. When a qualifier /PROJECT_DILE is
4379 -- specified, no qualifier /CONFIG_FILE may be specified.
4381 S_Name_Verbose : aliased constant S := "/VERBOSE " &
4386 -- Verbose mode. Output detailed explanation of behavior to the standard
4387 -- output stream. This includes name of the file written, the name of the
4388 -- directories to search and, for each file in those directories whose
4389 -- name matches at least one of the Naming Patterns, an indication of
4390 -- whether the file contains a unit, and if so the name of the unit.
4392 S_Name_Excl : aliased constant S := "/EXCLUDED_PATTERN=" & '"' &
4394 -- /EXCLUDED_PATTERN=<string>
4396 -- Specify an excluded pattern.
4397 -- Using this qualifier, it is possible to exclude some files that would
4398 -- match the Naming patterns. For example,
4400 -- GNAT NAME /EXCLUDED_PATTERN="*_NT.ADA" "*.ADA"
4402 -- will look for Ada units in all files with the '.ADA
' extension, except
4403 -- those whose names end with '_NT
.ADA
'.
4405 Name_Switches : aliased constant Switches :=
4406 (S_Name_Conf 'Access,
4407 S_Name_Dirs
'Access,
4408 S_Name_Dfile 'Access,
4409 S_Name_Frng
'Access,
4410 S_Name_Help 'Access,
4411 S_Name_Proj
'Access,
4412 S_Name_Verbose 'Access,
4413 S_Name_Excl
'Access);
4415 ----------------------------------
4416 -- Switches for GNAT PREPROCESS --
4417 ----------------------------------
4419 S_Prep_Assoc : aliased constant S := "/ASSOCIATE=" & '"' &
4421 -- /ASSOCIATE="name=val"
4423 -- Defines a new symbol, associated with value. If no value is given
4424 -- on the command line, then symbol is considered to be True.
4425 -- This qualifier can be used in place of a definition file.
4427 S_Prep_Blank : aliased constant S := "/BLANK_LINES " &
4429 -- /NOBLANK_LINES (D)
4432 -- Causes both preprocessor lines and the lines deleted by preprocessing
4433 -- to be replaced by blank lines in the output source file, thus
4434 -- preserving line numbers in the output file.
4436 S_Prep_Com : aliased constant S := "/COMMENTS " &
4441 -- /COMMENTS causes both preprocessor lines and the lines deleted
4442 -- by preprocessing to be retained in the output source as comments marked
4443 -- with the special string "--! ". This option will result in line numbers
4444 -- being preserved in the output file.
4446 -- /NOCOMMENTS causes both preprocessor lines and the lines deleted by
4447 -- preprocessing to be replaced by blank lines in the output source file,
4448 -- thus preserving line numbers in the output file.
4450 S_Prep_Ref : aliased constant S := "/REFERENCE " &
4455 -- Causes a "Source_Reference" pragma to be generated that references the
4456 -- original input file, so that error messages will use the file name of
4457 -- this original file. Also implies /BLANK_LINES if /COMMENTS is not
4460 S_Prep_Remove : aliased constant S := "/REMOVE " &
4465 -- Preprocessor lines and deleted lines are completely removed from the
4468 S_Prep_Symbols : aliased constant S := "/SYMBOLS " &
4473 -- Causes a sorted list of symbol names and values to be listed on
4476 S_Prep_Undef : aliased constant S := "/UNDEFINED " &
4481 Prep_Switches : aliased constant Switches :=
4482 (S_Prep_Assoc 'Access,
4483 S_Prep_Blank
'Access,
4486 S_Prep_Remove 'Access,
4487 S_Prep_Symbols
'Access,
4488 S_Prep_Undef 'Access);
4490 ------------------------------
4491 -- Switches for GNAT PRETTY --
4492 ------------------------------
4494 S_Pretty_Align
: aliased constant S
:= "/ALIGN=" &
4507 -- /ALIGN[=align-option, align-option, ...]
4509 -- Set alignments. By default, all alignments (colons in declarations,
4510 -- initialisations in declarations, assignments and arrow delimiters) are
4513 -- align-option may be one of the following:
4515 -- OFF (D) Set all alignments to OFF
4516 -- COLONS Set alignments of colons in declarations to ON
4517 -- DECLARATIONS Set alignments of initialisations in declarations to ON
4518 -- STATEMENTS Set alignments of assignments statements to ON
4519 -- ARROWS Set alignments of arrow delimiters to ON.
4521 -- Specifying one of the ON options without first specifying the OFF
4522 -- option has no effect, because by default all alignments are set to ON.
4524 S_Pretty_Attrib
: aliased constant S
:= "/ATTRIBUTE_CASING=" &
4531 -- /ATTRIBUTE_CASING[=casing-option]
4533 -- Set the case of the attributes. By default the attributes are in mixed
4535 -- casing-option may be one of the following:
4541 S_Pretty_Comments
: aliased constant S
:= "/COMMENTS_LAYOUT=" &
4546 "STANDARD_INDENT " &
4552 -- /COMMENTS_LAYOUT[=layout-option, layout-option, ...]
4554 -- Set the comment layout. By default, comments use the GNAT style
4555 -- comment line indentation.
4557 -- layout-option may be one of the following:
4559 -- UNTOUCHEDÂ Â Â Â Â Â Â Â Â Â All the comments remain unchanged
4560 -- DEFAULT (D) GNAT style comment line indentation
4561 -- STANDARD_INDENT Standard comment line indentation
4562 -- GNAT_BEGINNING GNAT style comment beginning
4563 -- REFORMAT Reformat comment blocks
4565 -- All combinations of layout options are allowed, except for DEFAULT
4566 -- and STANDARD_INDENT which are mutually exclusive, and also if
4567 -- UNTOUCHED is specified, this must be the only option.
4569 -- The difference between "GNAT style comment line indentation" and
4570 -- "standard comment line indentation" is the following: for standard
4571 -- comment indentation, any comment line is indented as if it were
4572 -- a declaration or statement at the same place.
4573 -- For GNAT style comment indentation, comment lines which are
4574 -- immediately followed by if or case statement alternative, record
4575 -- variant or 'begin' keyword are indented as the keyword that follows
4578 -- Standard indentation:
4587 -- GNAT style indentation:
4596 -- Option "GNAT style comment beginning" means that for each comment
4597 -- which is not considered as non-formattable separator (that is, the
4598 -- comment line contains only dashes, or a comment line ends with two
4599 -- dashes), there will be at least two spaces between starting "--" and
4600 -- the first non-blank character of the comment.
4602 S_Pretty_Config
: aliased constant S
:= "/CONFIGURATION_PRAGMAS_FILE=<" &
4604 -- /CONFIGURATION_PRAGMAS_FILE=file
4606 -- Specify a configuration pragmas file that need to be passed to the
4609 S_Pretty_Constr
: aliased constant S
:= "/CONSTRUCT_LAYOUT=" &
4616 -- /CONSTRUCT_LAYOUT[=construct-option]
4618 -- Set construct layout. Default is GNAT style layout.
4619 -- construct-option may be one of the following:
4625 -- The difference between GNAT style and Compact layout on one hand
4626 -- and Uncompact layout on the other hand can be illustrated by the
4627 -- following examples:
4629 -- GNAT style and Uncompact layout
4632 -- type q is record type q is
4633 -- a : integer; record
4634 -- b : integer; a : integer;
4635 -- end record; b : integer;
4639 -- Block : declare Block :
4640 -- A : Integer := 3; declare
4641 -- begin A : Integer := 3;
4642 -- Proc (A, A); begin
4643 -- end Block; Proc (A, A);
4646 -- Clear : for J in 1 .. 10 loop Clear :
4647 -- A (J) := 0; for J in 1 .. 10 loop
4648 -- end loop Clear; A (J) := 0;
4652 -- A further difference between GNAT style layout and compact layout is
4653 -- that in GNAT style layout compound statements, return statements and
4654 -- bodies are always separated by empty lines.
4656 S_Pretty_Comind
: aliased constant S
:= "/CONTINUATION_INDENT=#" &
4658 -- /CONTINUATION_INDENT=nnn
4660 -- Indentation level for continuation lines, nnn from 1 .. 9.
4661 -- The default value is one less then the (normal) indentation level,
4662 -- unless the indentation is set to 1: in that case the default value for
4663 -- continuation line indentation is also 1.
4665 S_Pretty_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
4667 -- /EXTERNAL_REFERENCE="name=val"
4669 -- Specifies an external reference to the project manager. Useful only if
4670 -- /PROJECT_FILE is used.
4673 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4675 S_Pretty_Current
: aliased constant S
:= "/CURRENT_DIRECTORY " &
4677 -- /CURRENT_DIRECTORY (D)
4679 -- Look for source files in the current working directory.
4681 -- /NOCURRENT_DIRECTORY
4682 -- Do not look for source files in the current working directory.
4684 S_Pretty_Dico
: aliased constant S
:= "/DICTIONARY=*" &
4686 -- /DICTIONARY=(file_name, ...)
4688 -- Use each specified file as a dictionary file that defines the casing
4689 -- for a set of specified names, thereby overriding the effect on these
4690 -- names by any explicit or implicit /NAME_CASING qualifier.
4692 -- GNAT PRETTY implicitly uses a default dictionary file to define the
4693 -- casing for the Ada predefined names and the names declared in the GNAT
4696 -- The structure of a dictionary file, and details on the conventions
4697 -- used in the default dictionary file, are defined in the GNAT User's
4700 S_Pretty_Files
: aliased constant S
:= "/FILES=@" &
4704 -- Take as arguments the files that are listed in the specified
4707 S_Pretty_Forced
: aliased constant S
:= "/FORCED_OUTPUT=@" &
4709 -- /FORCED_OUTPUT=file
4711 -- Write the output into the specified file, overriding any possibly
4714 S_Pretty_Formfeed
: aliased constant S
:= "/FORM_FEED_AFTER_PRAGMA_PAGE " &
4716 -- /FORM_FEED_AFTER_PRAGMA_PAGE
4718 -- When there is a pragma Page in the source, insert a Form Feed
4719 -- character immediately after the semicolon that follows the pragma
4722 S_Pretty_Indent
: aliased constant S
:= "/INDENTATION_LEVEL=#" &
4724 -- /INDENTATION_LEVEL=nnn
4726 -- Specify the number of spaces to add for each indentation level.
4727 -- nnn must be between 1 and 9. The default is 3.
4729 S_Pretty_Keyword
: aliased constant S
:= "/KEYWORD_CASING=" &
4734 -- /KEYWORD_CASING[=keyword-option]
4736 -- Specify the case of Ada keywords. The default is keywords in lower
4738 -- keyword-option may be one of the following:
4743 S_Pretty_Maxlen
: aliased constant S
:= "/LINE_LENGTH_MAX=#" &
4745 -- /LINE_LENGTH_MAX=nnn
4747 -- Set the maximum line length, nnn from 32 ..256. The default is 79.
4749 S_Pretty_Maxind
: aliased constant S
:= "/MAX_INDENT=#" &
4753 -- Do not use an additional indentation level for case alternatives
4754 -- and variants if their number is nnn or more. The default is 10.
4755 -- If nnn is zero, an additional indentation level is used for any number
4756 -- of case alternatives and variants.
4758 S_Pretty_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
4765 -- /MESSAGES_PROJECT_FILE[=messages-option]
4767 -- Specifies the "verbosity" of the parsing of project files.
4768 -- messages-option may be one of the following:
4770 -- DEFAULT (D) No messages are output if there is no error or warning.
4772 -- MEDIUM A small number of messages are output.
4774 -- HIGH A great number of messages are output, most of them not
4775 -- being useful for the user.
4777 S_Pretty_Names
: aliased constant S
:= "/NAME_CASING=" &
4786 -- /NAME_CASING[=name-option]
4788 -- Specify the casing of names.
4789 -- 'name-option' may be one of:
4791 -- AS_DECLARED (D) Name casing for defining occurrences are as they
4792 -- appear in the source file.
4794 -- LOWER_CASE Names are in lower case.
4796 -- UPPER_CASE Names are in upper case.
4798 -- MIXED_CASE Names are in mixed case.
4800 S_Pretty_No_Backup
: aliased constant S
:= "/NO_BACKUP " &
4802 -- /REPLACE_NO_BACKUP
4804 -- Replace the argument source with the pretty-printed source without
4805 -- creating any backup copy of the argument source.
4807 S_Pretty_No_Labels
: aliased constant S
:= "/NO_MISSED_LABELS " &
4809 -- /NO_MISSED_LABELS
4811 -- Do not insert missing end/exit labels. The end label is the name of
4812 -- a construct that may optionally appear at the end of the construct.
4813 -- This includes the names of packages and subprograms.
4814 -- Similarly, the exit label is the name of a loop that may appear as the
4815 -- argument of an exit statement within the loop. By default, GNAT PRETTY
4816 -- inserts these end/exit labels when they are absent in the original
4817 -- source. This qualifier /NO_MISSED_LABELS suppresses this insertion,
4818 -- so that the formatted source reflects the original.
4820 S_Pretty_Notabs
: aliased constant S
:= "/NOTABS " &
4824 -- Replace all tabulations in comments with spaces.
4826 S_Pretty_Output
: aliased constant S
:= "/OUTPUT=@" &
4830 -- Write the output to the specified file. If the file already exists,
4831 -- an error is reported.
4833 S_Pretty_Override
: aliased constant S
:= "/OVERRIDING_REPLACE " &
4835 -- /NOOVERRIDING_REPLACE (D)
4836 -- /OVERRIDING_REPLACE
4838 -- Replace the argument source with the pretty-printed source and copy the
4839 -- argument source into filename.NPP, overriding any existing file if
4842 S_Pretty_Pragma
: aliased constant S
:= "/PRAGMA_CASING=" &
4849 -- /PRAGMA_CASING[=pragma-option]
4851 -- Set the case of pragma identifiers. The default is Mixed case.
4852 -- pragma-option may be one of the following:
4858 S_Pretty_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
4860 -- /PROJECT_FILE=filename
4862 -- Specifies the main project file to be used. The project files rooted
4863 -- at the main project file will be parsed before any other processing to
4864 -- set the building environment.
4866 S_Pretty_Replace
: aliased constant S
:= "/REPLACE " &
4871 -- Replace the argument source with the pretty-printed source and copy the
4872 -- argument source into filename.NPP. If filename.NPP already exists,
4873 -- report an error and exit.
4875 S_Pretty_RTS
: aliased constant S
:= "/RUNTIME_SYSTEM=|" &
4877 -- /RUNTIME_SYSTEM=xxx
4879 -- Compile against an alternate runtime system named xxx or RTS-xxx.
4881 S_Pretty_Search
: aliased constant S
:= "/SEARCH=*" &
4883 -- /SEARCH=(directory[,...])
4885 -- When looking for source files also look in directories specified.
4887 S_Pretty_Specific
: aliased constant S
:= "/SPECIFIC_CASING " &
4891 -- Do not use the default dictionary file; instead, use the casing
4892 -- defined by a qualifier /NAME_CASING and/or any explicit dictionary
4893 -- file specified by a qualifier /DICTIONARY.
4895 S_Pretty_Standard
: aliased constant S
:= "/STANDARD_OUTPUT " &
4897 -- /NOSTANDARD_OUTPUT (D)
4900 -- Redirect the output to the standard output.
4902 S_Pretty_Verbose
: aliased constant S
:= "/VERBOSE " &
4907 -- Verbose mode; GNAT PRETTY generates version information and then a
4908 -- trace of the actions it takes to produce or obtain the ASIS tree.
4910 S_Pretty_Warnings
: aliased constant S
:= "/WARNINGS " &
4915 -- Issue a warning to the standard error stream if it is not possible
4916 -- to provide the required layout in the result source.
4917 -- By default such warnings are not activated.
4919 Pretty_Switches
: aliased constant Switches
:=
4920 (S_Pretty_Align
'Access,
4921 S_Pretty_Attrib 'Access,
4922 S_Pretty_Comments
'Access,
4923 S_Pretty_Config 'Access,
4924 S_Pretty_Constr
'Access,
4925 S_Pretty_Comind 'Access,
4926 S_Pretty_Ext
'Access,
4927 S_Pretty_Current 'Access,
4928 S_Pretty_Dico
'Access,
4929 S_Pretty_Files 'Access,
4930 S_Pretty_Forced
'Access,
4931 S_Pretty_Formfeed 'Access,
4932 S_Pretty_Indent
'Access,
4933 S_Pretty_Keyword 'Access,
4934 S_Pretty_Maxlen
'Access,
4935 S_Pretty_Maxind 'Access,
4936 S_Pretty_Mess
'Access,
4937 S_Pretty_Names 'Access,
4938 S_Pretty_No_Backup
'Access,
4939 S_Pretty_No_Labels 'Access,
4940 S_Pretty_Notabs
'Access,
4941 S_Pretty_Output 'Access,
4942 S_Pretty_Override
'Access,
4943 S_Pretty_Pragma 'Access,
4944 S_Pretty_Replace
'Access,
4945 S_Pretty_Project 'Access,
4946 S_Pretty_RTS
'Access,
4947 S_Pretty_Search 'Access,
4948 S_Pretty_Specific
'Access,
4949 S_Pretty_Standard 'Access,
4950 S_Pretty_Verbose
'Access,
4951 S_Pretty_Warnings 'Access);
4953 -----------------------------
4954 -- Switches for GNAT SETUP --
4955 -----------------------------
4957 S_Setup_Ext
: aliased constant S
:= "/EXTERNAL_REFERENCE=" & '"' &
4959 -- /EXTERNAL_REFERENCE="name=val"
4961 -- Specifies an external reference to the project manager. Useful only if
4962 -- /PROJECT_FILE is used.
4965 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
4967 S_Setup_Mess
: aliased constant S
:= "/MESSAGES_PROJECT_FILE=" &
4974 -- /MESSAGES_PROJECT_FILE[=messages-option]
4976 -- Specifies the "verbosity" of the parsing of project files.
4977 -- messages-option may be one of the following:
4979 -- DEFAULT (D) No messages are output if there is no error or warning.
4981 -- MEDIUM A small number of messages are output.
4983 -- HIGH A great number of messages are output, most of them not
4984 -- being useful for the user.
4986 S_Setup_Project
: aliased constant S
:= "/PROJECT_FILE=<" &
4988 -- /PROJECT_FILE=filename
4990 -- Specifies the main project file to be used. The project files rooted
4991 -- at the main project file are parsed and non existing object
4992 -- directories, library directories and exec directories are created.
4994 S_Setup_Quiet
: aliased constant S
:= "/QUIET " &
4999 -- Work quietly, only output warnings and errors.
5001 S_Setup_Verbose
: aliased constant S
:= "/VERBOSE " &
5006 -- Verbose mode; GNAT PRETTY generates version information and then a
5007 -- trace of the actions it takes to produce or obtain the ASIS tree.
5009 Setup_Switches
: aliased constant Switches
:=
5010 (S_Setup_Ext
'Access,
5011 S_Setup_Mess 'Access,
5012 S_Setup_Project
'Access,
5013 S_Setup_Quiet 'Access,
5014 S_Setup_Verbose
'Access);
5016 ------------------------------
5017 -- Switches for GNAT SHARED --
5018 ------------------------------
5020 S_Shared_Debug : aliased constant S := "/DEBUG=" &
5029 -- /DEBUG[=debug-option]
5032 -- Specifies the amount of debugging information included. 'debug
-option
'
5033 -- is one of the following:
5035 -- ALL (D) Include full debugging information.
5037 -- NONE Provide no debugging information. Same as /NODEBUG.
5039 -- TRACEBACK Provide sufficient debug information for a traceback.
5041 -- NOTRACEBACK Same as NONE.
5043 S_Shared_Image : aliased constant S := "/IMAGE=@" &
5045 -- /IMAGE=image-name
5047 -- 'image
-name
' specifies the name for the generated shared library.
5049 S_Shared_Ident : aliased constant S := "/IDENTIFICATION=" & '"' &
5050 "--for-linker=IDENT=" &
5052 -- /IDENTIFICATION="<string>"
5054 -- "<string>" specifies the string to be stored in the image file ident-
5055 -- ification field in the image header. It overrides any pragma Ident
5056 -- specified string.
5058 S_Shared_Nofiles
: aliased constant S
:= "/NOSTART_FILES " &
5062 -- Link in default image initialization and startup functions.
5064 S_Shared_Noinhib
: aliased constant S
:= "/NOINHIBIT-IMAGE " &
5065 "--for-linker=--noinhibit-exec";
5068 -- Delete image if there are errors or warnings.
5070 S_Shared_Verb
: aliased constant S
:= "/VERBOSE " &
5075 -- Causes additional information to be output, including a full list of
5076 -- the included object files. This switch option is most useful when you
5077 -- want to see what set of object files are being used in the link step.
5079 S_Shared_ZZZZZ
: aliased constant S
:= "/<other> " &
5083 -- Any other switch transmitted to the underlying linker.
5085 Shared_Switches
: aliased constant Switches
:=
5086 (S_Shared_Debug
'Access,
5087 S_Shared_Image 'Access,
5088 S_Shared_Ident
'Access,
5089 S_Shared_Nofiles 'Access,
5090 S_Shared_Noinhib
'Access,
5091 S_Shared_Verb 'Access,
5092 S_Shared_ZZZZZ
'Access);
5094 ----------------------------
5095 -- Switches for GNAT STUB --
5096 ----------------------------
5098 S_Stub_Config : aliased constant S := "/CONFIGURATION_PRAGMAS_FILE=<" &
5100 -- /CONFIGURATION_PRAGMAS_FILE=filespec
5102 -- Specifies a configuration pragmas file that must be taken into account
5105 S_Stub_Current : aliased constant S := "/CURRENT_DIRECTORY " &
5107 -- /CURRENT_DIRECTORY (D)
5108 -- /NOCURRENT_DIRECTORY
5110 -- Look for source, library or object files in the default directory.
5112 S_Stub_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
5114 -- /EXTERNAL_REFERENCE="name=val"
5116 -- Specifies an external reference to the project manager. Useful only if
5117 -- /PROJECT_FILE is used.
5120 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
5122 S_Stub_Full : aliased constant S := "/FULL " &
5127 -- If the destination directory already contains a file with the name of
5128 -- the body file for the argument file spec, replace it with the generated
5129 -- body stub. If /FULL is not used and there is already a body file, this
5130 -- existing body file is not replaced.
5132 S_Stub_Header : aliased constant S := "/HEADER=" &
5137 -- /HEADER[=header-option]
5139 -- Specifies the form of the comment header above the generated body stub.
5140 -- If no /HEADER qualifier is specified, there is no comment header.
5141 -- header-option is one of the following:
5144 -- GENERAL (D) Put a sample comment header into the body stub.
5146 -- SPEC Put the comment header (i.e., all the comments
5147 -- preceding the compilation unit) from the source of the
5148 -- library unit declaration into the body stub.
5150 S_Stub_Indent : aliased constant S := "/INDENTATION=#" &
5154 -- (nnn is a non-negative integer). Set the indentation level in the
5155 -- generated body stub to nnn. nnn=0 means "no indentation".
5156 -- Default insdentation is 3.
5158 S_Stub_Keep : aliased constant S := "/KEEP " &
5163 -- Do not delete the tree file (i.e., the snapshot of the compiler
5164 -- internal structures used by gnatstub) after creating the body stub.
5166 S_Stub_Length : aliased constant S := "/LINE_LENGTH=#" &
5170 -- (n is a non-negative integer). Set the maximum line length in the body
5171 -- stub to nnn. Default is 78.
5173 S_Stub_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
5180 -- /MESSAGES_PROJECT_FILE[=messages-option]
5182 -- Specifies the "verbosity" of the parsing of project files.
5183 -- messages-option may be one of the following:
5185 -- DEFAULT (D) No messages are output if there is no error or warning.
5187 -- MEDIUM A small number of messages are output.
5189 -- HIGH A great number of messages are output, most of them not
5190 -- being useful for the user.
5192 S_Stub_Output : aliased constant S := "/OUTPUT=@" &
5196 -- Body file name. This should be set if the argument file name does not
5197 -- follow the GNAT file naming conventions. If this switch is omitted,
5198 -- the default name for the body will be obtained from the argument file
5199 -- name according to the GNAT file naming conventions.
5201 S_Stub_Project : aliased constant S := "/PROJECT_FILE=<" &
5203 -- /PROJECT_FILE=filename
5205 -- Specifies the main project file to be used. The project files rooted
5206 -- at the main project file will be parsed before any other processing.
5207 -- The source and object directories to be searched will be communicated
5208 -- to gnatstub through logical names ADA_PRJ_INCLUDE_FILE and
5209 -- ADA_PRJ_OBJECTS_FILE.
5211 S_Stub_Quiet : aliased constant S := "/QUIET " &
5216 -- Quiet mode: do not generate a confirmation when a body is successfully
5217 -- created, and do not generate a message when a body is not required for
5218 -- an argument unit.
5220 S_Stub_Search : aliased constant S := "/SEARCH=*" &
5222 -- /SEARCH=(directory[,...])
5224 -- When looking for source files also look in directories specified.
5226 S_Stub_Tree : aliased constant S := "/TREE_FILE=" &
5233 -- /TREE_FILE[=treefile-option]
5235 -- Specify what to do with the tree file.
5236 -- treefile-option is one of the following:
5238 -- OVERWRITE (D) Overwrite the existing tree file. If the current
5239 -- directory already contains the file which, according
5240 -- to the GNAT file naming rules should be considered
5241 -- as a tree file for the argument source file,
5242 -- gnatstub will refuse to create the tree file needed
5243 -- to create a sample body unless this option is chosen.
5245 -- SAVE Do not remove the tree file (i.e., the snapshot
5246 -- of the compiler internal structures used by gnatstub)
5247 -- after creating the body stub.
5249 -- REUSE Reuse the tree file (if it exists) instead of
5251 -- Instead of creating the tree file for the library
5252 -- unit declaration, gnatstub tries to find it in the
5253 -- current directory and use it for creating a body.
5254 -- If the tree file is not found, no body is created.
5255 -- This option also implies `SAVE', whether
or not the
5256 -- latter is set explicitly.
5258 S_Stub_Verbose
: aliased constant S
:= "/VERBOSE " &
5263 -- Verbose mode: generate version information.
5265 Stub_Switches
: aliased constant Switches
:=
5266 (S_Stub_Config
'Access,
5267 S_Stub_Current 'Access,
5269 S_Stub_Full 'Access,
5270 S_Stub_Header
'Access,
5271 S_Stub_Indent 'Access,
5272 S_Stub_Keep
'Access,
5273 S_Stub_Length 'Access,
5274 S_Stub_Mess
'Access,
5275 S_Stub_Output 'Access,
5276 S_Stub_Project
'Access,
5277 S_Stub_Quiet 'Access,
5278 S_Stub_Search
'Access,
5279 S_Stub_Tree 'Access,
5280 S_Stub_Verbose
'Access);
5282 ----------------------------
5283 -- Switches for GNAT XREF --
5284 ----------------------------
5286 S_Xref_All : aliased constant S := "/ALL_FILES " &
5291 -- If this switch is present, FIND and XREF will parse the read-only
5292 -- files found in the library search path. Otherwise, these files will
5293 -- be ignored. This option can be used to protect Gnat sources or your
5294 -- own libraries from being parsed, thus making FIND and XREF much
5295 -- faster, and their output much smaller.
5297 S_Xref_Deriv : aliased constant S := "/DERIVED_TYPES " &
5299 -- /NODERIVED_TYPES (D)
5302 -- Output the parent type reference for each matching derived types.
5304 S_Xref_Ext : aliased constant S := "/EXTERNAL_REFERENCE=" & '"' &
5306 -- /EXTERNAL_REFERENCE="name=val"
5308 -- Specifies an external reference to the project manager. Useful only if
5309 -- /PROJECT_FILE is used.
5312 -- /EXTERNAL_REFERENCE="DEBUG=TRUE"
5314 S_Xref_Full : aliased constant S := "/FULL_PATHNAME " &
5316 -- /NOFULL_PATHNAME (D)
5319 -- If this switch is set, the output file names will be preceded by their
5320 -- directory (if the file was found in the search path). If this switch
5321 -- is not set, the directory will not be printed.
5323 S_Xref_Global : aliased constant S := "/IGNORE_LOCALS " &
5325 -- /NOIGNORE_LOCALS (D)
5328 -- If this switch is set, information is output only for library-level
5329 -- entities, ignoring local entities. The use of this switch may
5330 -- accelerate FIND and XREF.
5332 S_Xref_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" &
5339 -- /MESSAGES_PROJECT_FILE[=messages-option]
5341 -- Specifies the "verbosity" of the parsing of project files.
5342 -- messages-option may be one of the following:
5344 -- DEFAULT (D) No messages are output if there is no error or warning.
5346 -- MEDIUM A small number of messages are output.
5348 -- HIGH A great number of messages are output, most of them not
5349 -- being useful for the user.
5351 S_Xref_Nostinc : aliased constant S := "/NOSTD_INCLUDES " &
5355 -- Do not look for sources in the system default directory.
5357 S_Xref_Nostlib : aliased constant S := "/NOSTD_LIBRARIES " &
5361 -- Do not look for library files in the system default directory.
5363 S_Xref_Object : aliased constant S := "/OBJECT_SEARCH=*" &
5365 -- /OBJECT_SEARCH=(directory,...)
5367 -- When searching for library and object files, look in the specified
5368 -- directories. The order in which library files are searched is the same
5371 S_Xref_Project : aliased constant S := "/PROJECT=@" &
5375 -- Specify a project file to use. By default, FIND and XREF will try to
5376 -- locate a project file in the current directory.
5378 -- If a project file is either specified or found by the tools, then the
5379 -- content of the source directory and object directory lines are added
5380 -- as if they had been specified respectively by /SOURCE_SEARCH and
5383 S_Xref_Prj : aliased constant S := "/PROJECT_FILE=<" &
5385 -- /PROJECT_FILE=filename
5387 -- Specifies the main project file to be used. The project files rooted
5388 -- at the main project file will be parsed before doing any processing.
5389 -- The source and object directories to be searched will be communicated
5390 -- to gnatxref through logical names ADA_PRJ_INCLUDE_FILE and
5391 -- ADA_PRJ_OBJECTS_FILE.
5393 S_Xref_Search : aliased constant S := "/SEARCH=*" &
5395 -- /SEARCH=(directory,...)
5398 -- /OBJECT_SEARCH=(directory,...) /SOURCE_SEARCH=(directory,...)
5400 S_Xref_Source : aliased constant S := "/SOURCE_SEARCH=*" &
5402 -- /SOURCE_SEARCH=(directory,...)
5404 -- When looking for source files also look in the specified directories.
5405 -- The order in which source file search is undertaken is the same as for
5408 S_Xref_Output : aliased constant S := "/UNUSED " &
5410 -- /SOURCE_SEARCH=(directory,...)
5412 -- When looking for source files also look in the specified directories.
5413 -- The order in which source file search is undertaken is the same as for
5416 S_Xref_Tags : aliased constant S := "/TAGS " &
5421 -- Print a 'tags
' file for vi.
5423 Xref_Switches : aliased constant Switches :=
5424 (S_Xref_All 'Access,
5425 S_Xref_Deriv
'Access,
5427 S_Xref_Full
'Access,
5428 S_Xref_Global 'Access,
5429 S_Xref_Mess
'Access,
5430 S_Xref_Nostinc 'Access,
5431 S_Xref_Nostlib
'Access,
5432 S_Xref_Object 'Access,
5433 S_Xref_Project
'Access,
5435 S_Xref_Search
'Access,
5436 S_Xref_Source 'Access,
5437 S_Xref_Output
'Access,
5438 S_Xref_Tags 'Access);