166a9e829c00833b7ec3a713c8f6cd15cd2dd41d
[platform/upstream/gcc.git] / gcc / ada / projects.texi
1 @set gprconfig GPRconfig
2
3 @c ------ projects.texi
4 @c Copyright (C) 2002-2013, Free Software Foundation, Inc.
5 @c This file is shared between the GNAT user's guide and gprbuild. It is not
6 @c compilable on its own, you should instead compile the other two manuals.
7 @c For that reason, there is no toplevel @menu
8
9 @c ---------------------------------------------
10 @node GNAT Project Manager
11 @chapter GNAT Project Manager
12 @c ---------------------------------------------
13
14 @noindent
15 @menu
16 * Introduction::
17 * Building With Projects::
18 * Organizing Projects into Subsystems::
19 * Scenarios in Projects::
20 * Library Projects::
21 * Project Extension::
22 * Aggregate Projects::
23 * Aggregate Library Projects::
24 * Project File Reference::
25 @end menu
26
27 @c ---------------------------------------------
28 @node Introduction
29 @section Introduction
30 @c ---------------------------------------------
31
32 @noindent
33 This chapter describes GNAT's @emph{Project Manager}, a facility that allows
34 you to manage complex builds involving a number of source files, directories,
35 and options for different system configurations. In particular,
36 project files allow you to specify:
37
38 @itemize @bullet
39 @item The directory or set of directories containing the source files, and/or the
40   names of the specific source files themselves
41 @item The directory in which the compiler's output
42   (@file{ALI} files, object files, tree files, etc.) is to be placed
43 @item The directory in which the executable programs are to be placed
44 @item ^Switch^Switch^ settings for any of the project-enabled tools;
45   you can apply these settings either globally or to individual compilation units.
46 @item The source files containing the main subprogram(s) to be built
47 @item The source programming language(s)
48 @item Source file naming conventions; you can specify these either globally or for
49   individual compilation units (@pxref{Naming Schemes}).
50 @item Change any of the above settings depending on external values, thus enabling
51   the reuse of the projects in various @b{scenarios} (@pxref{Scenarios in Projects}).
52 @item Automatically build libraries as part of the build process
53   (@pxref{Library Projects}).
54
55 @end itemize
56
57 @noindent
58 Project files are written in a syntax close to that of Ada, using familiar
59 notions such as packages, context clauses, declarations, default values,
60 assignments, and inheritance (@pxref{Project File Reference}).
61
62 Project files can be built hierarchically from other project files, simplifying
63 complex system integration and project reuse (@pxref{Organizing Projects into
64 Subsystems}).
65
66 @itemize @bullet
67 @item One project can import other projects containing needed source files.
68   More generally, the Project Manager lets you structure large development
69   efforts into hierarchical subsystems, where build decisions are delegated
70   to the subsystem level, and thus different compilation environments
71   (^switch^switch^ settings) used for different subsystems.
72 @item You can organize GNAT projects in a hierarchy: a child project
73   can extend a parent project, inheriting the parent's source files and
74   optionally overriding any of them with alternative versions
75   (@pxref{Project Extension}).
76
77 @end itemize
78
79 @noindent
80 Several tools support project files, generally in addition to specifying
81 the information on the command line itself). They share common switches
82 to control the loading of the project (in particular
83 @option{^-P^/PROJECT_FILE=^@emph{projectfile}} and
84 @option{^-X^/EXTERNAL_REFERENCE=^@emph{vbl}=@emph{value}}).
85
86 The Project Manager supports a wide range of development strategies,
87 for systems of all sizes.  Here are some typical practices that are
88 easily handled:
89
90 @itemize @bullet
91 @item Using a common set of source files and generating object files in different
92   directories via different ^switch^switch^ settings. It can be used for instance, for
93   generating separate sets of object files for debugging and for production.
94 @item Using a mostly-shared set of source files with different versions of
95   some units or subunits. It can be used for instance, for grouping and hiding
96 @end itemize
97
98 @noindent
99 all OS dependencies in a small number of implementation units.
100
101 Project files can be used to achieve some of the effects of a source
102 versioning system (for example, defining separate projects for
103 the different sets of sources that comprise different releases) but the
104 Project Manager is independent of any source configuration management tool
105 that might be used by the developers.
106
107 The various sections below introduce the different concepts related to
108 projects. Each section starts with examples and use cases, and then goes into
109 the details of related project file capabilities.
110
111 @c ---------------------------------------------
112 @node Building With Projects
113 @section Building With Projects
114 @c ---------------------------------------------
115
116 @noindent
117 In its simplest form, a unique project is used to build a single executable.
118 This section concentrates on such a simple setup. Later sections will extend
119 this basic model to more complex setups.
120
121 The following concepts are the foundation of project files, and will be further
122 detailed later in this documentation. They are summarized here as a reference.
123
124 @table @asis
125 @item @b{Project file}:
126   A text file using an Ada-like syntax, generally using the @file{.gpr}
127   extension. It defines build-related characteristics of an application.
128   The characteristics include the list of sources, the location of those
129   sources, the location for the generated object files, the name of
130   the main program, and the options for the various tools involved in the
131   build process.
132
133 @item @b{Project attribute}:
134   A specific project characteristic is defined by an attribute clause. Its
135   value is a string or a sequence of strings. All settings in a project
136   are defined through a list of predefined attributes with precise
137   semantics. @xref{Attributes}.
138
139 @item @b{Package in a project}:
140   Global attributes are defined at the top level of a project.
141   Attributes affecting specific tools are grouped in a
142   package whose name is related to tool's function. The most common
143   packages are @code{Builder}, @code{Compiler}, @code{Binder},
144   and @code{Linker}. @xref{Packages}.
145
146 @item @b{Project variables}:
147   In addition to attributes, a project can use variables to store intermediate
148   values and avoid duplication in complex expressions. It can be initialized
149   with a value coming from the environment.
150   A frequent use of variables is to define scenarios.
151   @xref{External Values}, @xref{Scenarios in Projects}, and @xref{Variables}.
152
153 @item @b{Source files} and @b{source directories}:
154   A source file is associated with a language through a naming convention. For
155   instance, @code{foo.c} is typically the name of a C source file;
156   @code{bar.ads} or @code{bar.1.ada} are two common naming conventions for a
157   file containing an Ada spec. A compilation unit is often composed of a main
158   source file and potentially several auxiliary ones, such as header files in C.
159   The naming conventions can be user defined @xref{Naming Schemes}, and will
160   drive the builder to call the appropriate compiler for the given source file.
161   Source files are searched for in the source directories associated with the
162   project through the @b{Source_Dirs} attribute. By default, all the files (in
163   these source directories) following the naming conventions associated with the
164   declared languages are considered to be part of the project. It is also
165   possible to limit the list of source files using the @b{Source_Files} or
166   @b{Source_List_File} attributes. Note that those last two attributes only
167   accept basenames with no directory information.
168
169 @item @b{Object files} and @b{object directory}:
170   An object file is an intermediate file produced by the compiler from a
171   compilation unit. It is used by post-compilation tools to produce
172   final executables or libraries. Object files produced in the context of
173   a given project are stored in a single directory that can be specified by the
174   @b{Object_Dir} attribute. In order to store objects in
175   two or more object directories, the system must be split into
176   distinct subsystems with their own project file.
177 /first exam
178
179 @end table
180
181 The following subsections introduce gradually all the attributes of interest
182 for simple build needs. Here is the simple setup that will be used in the
183 following examples.
184
185 The Ada source files @file{pack.ads}, @file{pack.adb}, and @file{proc.adb} are in
186 the @file{common/} directory. The file @file{proc.adb} contains an Ada main
187 subprogram @code{Proc} that @code{with}s package @code{Pack}. We want to compile
188 these source files with the ^switch^switch^
189 @option{^-O2^-O2^}, and put the resulting files in
190 the directory @file{obj/}.
191
192 @smallexample
193 @group
194 ^common/^[COMMON]^
195   pack.ads
196   pack.adb
197   proc.adb
198 @end group
199 @group
200 ^common/release/^[COMMON.RELEASE]^
201   proc.ali, proc.o pack.ali, pack.o
202 @end group
203 @end smallexample
204
205 @noindent
206 Our project is to be called @emph{Build}. The name of the
207 file is the name of the project (case-insensitive) with the
208 @file{.gpr} extension, therefore the project file name is @file{build.gpr}. This
209 is not mandatory, but a warning is issued when this convention is not followed.
210
211 This is a very simple example, and as stated above, a single project
212 file is enough for it. We will thus create a new file, that for now
213 should contain the following code:
214
215 @smallexample
216 @b{project} Build @b{is}
217 @b{end} Build;
218 @end smallexample
219
220 @menu
221 * Source Files and Directories::
222 * Duplicate Sources in Projects::
223 * Object and Exec Directory::
224 * Main Subprograms::
225 * Tools Options in Project Files::
226 * Compiling with Project Files::
227 * Executable File Names::
228 * Avoid Duplication With Variables::
229 * Naming Schemes::
230 * Installation::
231 * Distributed support::
232 @end menu
233
234 @c ---------------------------------------------
235 @node Source Files and Directories
236 @subsection Source Files and Directories
237 @c ---------------------------------------------
238
239 @noindent
240 When you create a new project, the first thing to describe is how to find the
241 corresponding source files. This is the only settings that are needed by all
242 the tools that will use this project (builder, compiler, binder and linker for
243 the compilation, IDEs to edit the source files,@dots{}).
244
245 @cindex Source directories
246 First step is to declare the source directories, which are the directories
247 to be searched to find source files. In the case of the example,
248 the @file{common} directory is the only source directory.
249
250 @cindex @code{Source_Dirs}
251 There are several ways of defining source directories:
252
253 @itemize @bullet
254 @item When the attribute @b{Source_Dirs} is not used, a project contains a
255   single source directory which is the one where the project file itself
256   resides. In our example, if @file{build.gpr} is placed in the @file{common}
257   directory, the project has the needed implicit source directory.
258
259 @item The attribute @b{Source_Dirs} can be set to a list of path names, one
260   for each of the source directories. Such paths can either be absolute
261   names (for instance @file{"/usr/local/common/"} on UNIX), or relative to the
262   directory in which the project file resides (for instance "." if
263   @file{build.gpr} is inside @file{common/}, or "common" if it is one level up).
264   Each of the source directories must exist and be readable.
265
266 @cindex portability
267   The syntax for directories is platform specific. For portability, however,
268   the project manager will always properly translate UNIX-like path names to
269   the native format of specific platform. For instance, when the same project
270   file is to be used both on Unix and Windows, "/" should be used as the
271   directory separator rather than "\".
272
273 @item The attribute @b{Source_Dirs} can automatically include subdirectories
274   using a special syntax inspired by some UNIX shells. If any of the path in
275   the list ends with @emph{"**"}, then that path and all its subdirectories
276   (recursively) are included in the list of source directories. For instance,
277   @file{**} and @file{./**} represent the complete directory tree rooted at ".".
278 @cindex Source directories, recursive
279
280 @cindex @code{Excluded_Source_Dirs}
281   When using that construct, it can sometimes be convenient to also use the
282   attribute @b{Excluded_Source_Dirs}, which is also a list of paths. Each entry
283   specifies a directory whose immediate content, not including subdirs, is to
284   be excluded. It is also possible to exclude a complete directory subtree
285   using the "**" notation.
286
287 @cindex @code{Ignore_Source_Sub_Dirs}
288   It is often desirable to remove, from the source directories, directory
289   subtrees rooted at some subdirectories. An example is the subdirectories
290   created by a Version Control System such as Subversion that creates directory
291   subtrees rooted at subdirectories ".svn". To do that, attribute
292   @b{Ignore_Source_Sub_Dirs} can be used. It specifies the list of simple
293   file names for the roots of these undesirable directory subtrees.
294
295 @smallexample
296     @b{for} Source_Dirs @b{use} ("./**");
297     @b{for} Ignore_Source_Sub_Dirs @b{use} (".svn");
298 @end smallexample
299
300 @end itemize
301
302 @noindent
303 When applied to the simple example, and because we generally prefer to have
304 the project file at the toplevel directory rather than mixed with the sources,
305 we will create the following file
306
307 @smallexample
308    build.gpr
309    @b{project} Build @b{is}
310       @b{for} Source_Dirs @b{use} ("common");  --  <<<<
311    @b{end} Build;
312 @end smallexample
313
314 @noindent
315 Once source directories have been specified, one may need to indicate
316 source files of interest. By default, all source files present in the source
317 directories are considered by the project manager. When this is not desired,
318 it is possible to specify the list of sources to consider explicitly.
319 In such a case, only source file base names are indicated and not
320 their absolute or relative path names. The project manager is in charge of
321 locating the specified source files in the specified source directories.
322
323 @itemize @bullet
324 @item By default, the project manager  search for all source files of all
325   specified languages in all the source directories.
326
327   Since the project manager was initially developed for Ada environments, the
328   default language is usually Ada and the above project file is complete: it
329   defines without ambiguity the sources composing the project: that is to say,
330   all the sources in subdirectory "common" for the default language (Ada) using
331   the default naming convention.
332
333 @cindex @code{Languages}
334   However, when compiling a multi-language application, or a pure C
335   application, the project manager must be told which languages are of
336   interest, which is done by setting the @b{Languages} attribute to a list of
337   strings, each of which is the name of a language. Tools like
338   @command{gnatmake} only know about Ada, while other tools like
339   @command{gprbuild} know about many more languages such as C, C++, Fortran,
340   assembly and others can be added dynamically.
341
342 @cindex Naming scheme
343   Even when using only Ada, the default naming might not be suitable. Indeed,
344   how does the project manager recognizes an "Ada file" from any other
345   file? Project files can describe the naming scheme used for source files,
346   and override the default (@pxref{Naming Schemes}). The default is the
347   standard GNAT extension (@file{.adb} for bodies and @file{.ads} for
348   specs), which is what is used in our example, explaining why no naming scheme
349   is explicitly specified.
350   @xref{Naming Schemes}.
351
352 @item @code{Source_Files}
353 @cindex @code{Source_Files}
354   In some cases, source directories might contain files that should not be
355   included in a project. One can specify the explicit list of file names to
356   be considered through the @b{Source_Files} attribute.
357   When this attribute is defined, instead of looking at every file in the
358   source directories, the project manager takes only those names into
359   consideration  reports  errors if they cannot be found in the source
360   directories or does not correspond to the naming scheme.
361
362 @item For various reasons, it is sometimes useful to have a project with no
363   sources (most of the time because the attributes defined in the project
364   file will be reused in other projects, as explained in
365   @pxref{Organizing Projects into Subsystems}. To do this, the attribute
366   @emph{Source_Files} is set to the empty list, i.e. @code{()}. Alternatively,
367   @emph{Source_Dirs} can be set to the empty list, with the same
368   result.
369
370 @item @code{Source_List_File}
371 @cindex @code{Source_List_File}
372   If there is a great number of files, it might be more convenient to use
373   the attribute @b{Source_List_File}, which specifies the full path of a file.
374   This file must contain a list of source file names (one per line, no
375   directory information) that are searched as if they had been defined
376   through @emph{Source_Files}. Such a file can easily be created through
377   external tools.
378
379   A warning is issued if both attributes @code{Source_Files} and
380   @code{Source_List_File} are given explicit values. In this case, the
381   attribute @code{Source_Files} prevails.
382
383 @item @code{Excluded_Source_Files}
384 @cindex @code{Excluded_Source_Files}
385 @cindex @code{Locally_Removed_Files}
386 @cindex @code{Excluded_Source_List_File}
387   Specifying an explicit list of files is not always convenient.It might be
388   more convenient to use the default search rules with specific exceptions.
389   This can be done thanks to the attribute @b{Excluded_Source_Files}
390   (or its synonym @b{Locally_Removed_Files}).
391   Its value is the list of file names that should not be taken into account.
392   This attribute is often used when extending a project,
393   @xref{Project Extension}. A similar attribute
394   @b{Excluded_Source_List_File} plays the same
395   role but takes the name of file containing file names similarly to
396   @code{Source_List_File}.
397
398 @end itemize
399
400 @noindent
401 In most simple cases, such as the above example, the default source file search
402 behavior provides the expected result, and we do not need to add anything after
403 setting @code{Source_Dirs}. The project manager automatically finds
404 @file{pack.ads}, @file{pack.adb} and @file{proc.adb} as source files of the
405 project.
406
407 Note that by default a warning is issued when a project has no sources attached
408 to it and this is not explicitly indicated in the project file.
409
410 @c ---------------------------------------------
411 @node Duplicate Sources in Projects
412 @subsection Duplicate Sources in Projects
413 @c ---------------------------------------------
414
415 @noindent
416 If the order of the source directories is known statically, that is if
417 @code{"/**"} is not used in the string list @code{Source_Dirs}, then there may
418 be several files with the same source file name sitting in different
419 directories of the project. In this case, only the file in the first directory
420 is considered as a source of the project and the others are hidden. If
421 @code{"/**"} is used in the string list @code{Source_Dirs}, it is an error
422 to have several files with the same source file name in the same directory
423 @code{"/**"} subtree, since there would be an ambiguity as to which one should
424 be used. However, two files with the same source file name may exist in two
425 single directories or directory subtrees. In this case, the one in the first
426 directory or directory subtree is a source of the project.
427
428 If there are two sources in different directories of the same @code{"/**"}
429 subtree, one way to resolve the problem is to exclude the directory of the
430 file that should not be used as a source of the project.
431
432 @c ---------------------------------------------
433 @node Object and Exec Directory
434 @subsection Object and Exec Directory
435 @c ---------------------------------------------
436
437 @noindent
438 The next step when writing a project is to indicate where the compiler should
439 put the object files. In fact, the compiler and other tools might create
440 several different kind of files (for GNAT, there is the object file and the ALI
441 file for instance). One of the important concepts in projects is that most
442 tools may consider source directories as read-only and do not attempt to create
443 new or temporary files there. Instead, all files are created in the object
444 directory. It is of course not true for project-aware IDEs, whose purpose it is
445 to create the source files.
446
447 @cindex @code{Object_Dir}
448 The object directory is specified through the @b{Object_Dir} attribute.
449 Its value is the path to the object directory, either absolute or
450 relative to the directory containing the project file. This
451 directory must already exist and be readable and writable, although
452 some tools have a switch to create the directory if needed (See
453 the switch @code{^-p^/CREATE_MISSING_DIRS^} for @command{gnatmake}
454 and @command{gprbuild}).
455
456 If the attribute @code{Object_Dir} is not specified, it defaults to
457 the project directory, that is the directory containing the project file.
458
459 For our example, we can specify the object dir in this way:
460
461 @smallexample
462    @b{project} Build @b{is}
463       @b{for} Source_Dirs @b{use} ("common");
464       @b{for} Object_Dir @b{use} "obj";   --  <<<<
465    @b{end} Build;
466 @end smallexample
467
468 @noindent
469 As mentioned earlier, there is a single object directory per project. As a
470 result, if you have an existing system where the object files are spread in
471 several directories, you can either move all of them into the same directory if
472 you want to build it with a single project file, or study the section on
473 subsystems (@pxref{Organizing Projects into Subsystems}) to see how each
474 separate object directory can be associated with one of the subsystem
475 constituting the application.
476
477 When the @command{linker} is called, it usually creates an executable. By
478 default, this executable is placed in the object directory of the project. It
479 might be convenient to store it in its own directory.
480
481 @cindex @code{Exec_Dir}
482 This can be done through the @code{Exec_Dir} attribute, which, like
483 @emph{Object_Dir} contains a single absolute or relative path and must point to
484 an existing and writable directory, unless you ask the tool to create it on
485 your behalf. When not specified, It defaults to the object directory and
486 therefore to the project file's directory if neither @emph{Object_Dir} nor
487 @emph{Exec_Dir} was specified.
488
489 In the case of the example, let's place the executable in the root
490 of the hierarchy, ie the same directory as @file{build.gpr}. Hence
491 the project file is now
492
493 @smallexample
494    @b{project} Build @b{is}
495       @b{for} Source_Dirs @b{use} ("common");
496       @b{for} Object_Dir @b{use} "obj";
497       @b{for} Exec_Dir @b{use} ".";  --   <<<<
498    @b{end} Build;
499 @end smallexample
500
501 @c ---------------------------------------------
502 @node Main Subprograms
503 @subsection Main Subprograms
504 @c ---------------------------------------------
505
506 @noindent
507 In the previous section, executables were mentioned. The project manager needs
508 to be taught what they are. In a project file, an executable is indicated by
509 pointing to source file of the main subprogram. In C this is the file that
510 contains the @code{main} function, and in Ada the file that contains the main
511 unit.
512
513 There can be any number of such main files within a given project, and thus
514 several executables can be built in the context of a single project file. Of
515 course, one given executable might not (and in fact will not) need all the
516 source files referenced by the project. As opposed to other build environments
517 such as @command{makefile}, one does not need to specify the list of
518 dependencies of each executable, the project-aware builders knows enough of the
519 semantics of the languages to build ands link only the necessary elements.
520
521 @cindex @code{Main}
522 The list of main files is specified via the @b{Main} attribute. It contains
523 a list of file names (no directories). If a project defines this
524 attribute, it is not necessary to identify  main files on the
525 command line when invoking a builder, and editors like
526 @command{GPS} will be able to create extra menus to spawn or debug the
527 corresponding executables.
528
529 @smallexample
530    @b{project} Build @b{is}
531       @b{for} Source_Dirs @b{use} ("common");
532       @b{for} Object_Dir @b{use} "obj";
533       @b{for} Exec_Dir @b{use} ".";
534       @b{for} Main @b{use} ("proc.adb");  --   <<<<
535    @b{end} Build;
536 @end smallexample
537
538 @noindent
539 If this attribute is defined in the project, then spawning the builder
540 with a command such as
541
542 @smallexample
543    gnatmake ^-Pbuild^/PROJECT_FILE=build^
544 @end smallexample
545
546 @noindent
547 automatically builds all the executables corresponding to the files
548 listed in the @emph{Main} attribute. It is possible to specify one
549 or more executables on the command line to build a subset of them.
550
551 @c ---------------------------------------------
552 @node Tools Options in Project Files
553 @subsection Tools Options in Project Files
554 @c ---------------------------------------------
555
556 @noindent
557 We now have a project file that fully describes our environment, and can be
558 used to build the application with a simple @command{gnatmake} command as seen
559 in the previous section. In fact, the empty project we showed immediately at
560 the beginning (with no attribute at all) could already fulfill that need if it
561 was put in the @file{common} directory.
562
563 Of course, we always want more control. This section will show you how to
564 specify the compilation switches that the various tools involved in the
565 building of the executable should use.
566
567 @cindex command line length
568 Since source names and locations are described into the project file, it is not
569 necessary to use switches on the command line for this purpose (switches such
570 as -I for gcc). This removes a major source of command line length overflow.
571 Clearly, the builders will have to communicate this information one way or
572 another to the underlying compilers and tools they call but they usually use
573 response files for this and thus should not be subject to command line
574 overflows.
575
576 Several tools are participating to the creation of an executable: the compiler
577 produces object files from the source files; the binder (in the Ada case)
578 creates an source file that takes care, among other things, of elaboration
579 issues and global variables initialization; and the linker gathers everything
580 into a single executable that users can execute. All these tools are known by
581 the project manager and will be called with user defined switches from the
582 project files. However, we need to introduce a new project file concept to
583 express which switches to be used for any of the tools involved in the build.
584
585 @cindex project file packages
586 A project file is subdivided into zero or more @b{packages}, each of which
587 contains the attributes specific to one tool (or one set of tools). Project
588 files use an Ada-like syntax for packages. Package names permitted in project
589 files are restricted to a predefined set (@pxref{Packages}), and the contents
590 of packages are limited to a small set of constructs and attributes
591 (@pxref{Attributes}).
592
593 Our example project file can be extended with the following empty packages. At
594 this stage, they could all be omitted since they are empty, but they show which
595 packages would be involved in the build process.
596
597 @smallexample
598    @b{project} Build @b{is}
599       @b{for} Source_Dirs @b{use} ("common");
600       @b{for} Object_Dir @b{use} "obj";
601       @b{for} Exec_Dir @b{use} ".";
602       @b{for} Main @b{use} ("proc.adb");
603
604       @b{package} Builder @b{is}  --<<<  for gnatmake and gprbuild
605       @b{end} Builder;
606
607       @b{package} Compiler @b{is} --<<<  for the compiler
608       @b{end} Compiler;
609
610       @b{package} Binder @b{is}   --<<<  for the binder
611       @b{end} Binder;
612
613       @b{package} Linker @b{is}   --<<<  for the linker
614       @b{end} Linker;
615    @b{end} Build;
616 @end smallexample
617
618 @noindent
619 Let's first examine the compiler switches. As stated in the initial description
620 of the example, we want to compile all files with @option{^-O2^-O2^}. This is a
621 compiler switch, although it is usual, on the command line, to pass it to the
622 builder which then passes it to the compiler. It is recommended to use directly
623 the right package, which will make the setup easier to understand for other
624 people.
625
626 Several attributes can be used to specify the ^switches^switches^:
627
628 @table @asis
629 @item @b{Default_Switches}:
630 @cindex @code{Default_Switches}
631   This is the first mention in this manual of an @b{indexed attribute}. When
632   this attribute is defined, one must supply an @emph{index} in the form of a
633   literal string.
634   In the case of @emph{Default_Switches}, the index is the name of the
635   language to which the switches apply (since a different compiler will
636   likely be used for each language, and each compiler has its own set of
637   switches). The value of the attribute is a list of switches.
638
639   In this example, we want to compile all Ada source files with the ^switch^switch^
640   @option{^-O2^-O2^}, and the resulting project file is as follows
641   (only the @code{Compiler} package is shown):
642
643   @smallexample
644   @b{package} Compiler @b{is}
645     @b{for} Default_Switches ("Ada") @b{use} ("^-O2^-O2^");
646   @b{end} Compiler;
647   @end smallexample
648
649 @item @b{^Switches^Switches^}:
650 @cindex @code{^Switches^Switches^}
651   in some cases, we might want to use specific ^switches^switches^
652   for one or more files. For instance, compiling @file{proc.adb} might not be
653   possible at high level of optimization because of a compiler issue.
654   In such a case, the @emph{^Switches^Switches^}
655   attribute (indexed on the file name) can be used and will override the
656   switches defined by @emph{Default_Switches}. Our project file would
657   become:
658
659   @smallexample
660   package Compiler is
661      for Default_Switches ("Ada")
662          use ("^-O2^-O2^");
663      for ^Switches^Switches^ ("proc.adb")
664          use ("^-O0^-O0^");
665   end Compiler;
666   @end smallexample
667
668   @noindent
669   @code{^Switches^Switches^} may take a pattern as an index, such as in:
670
671   @smallexample
672   package Compiler is
673     for Default_Switches ("Ada")
674         use ("^-O2^-O2^");
675     for ^Switches^Switches^ ("pkg*")
676         use ("^-O0^-O0^");
677   end Compiler;
678   @end smallexample
679
680   @noindent
681   Sources @file{pkg.adb} and @file{pkg-child.adb} would be compiled with ^-O0^-O0^,
682   not ^-O2^-O2^.
683
684   @noindent
685   @code{^Switches^Switches^} can also be given a language name as index instead of a file
686   name in which case it has the same semantics as @emph{Default_Switches}.
687   However, indexes with wild cards are never valid for language name.
688
689 @item @b{Local_Configuration_Pragmas}:
690 @cindex @code{Local_Configuration_Pragmas}
691   this attribute may specify the path
692   of a file containing configuration pragmas for use by the Ada compiler,
693   such as @code{pragma Restrictions (No_Tasking)}. These pragmas will be
694   used for all the sources of the project.
695
696 @end table
697
698 The switches for the other tools are defined in a similar manner through the
699 @b{Default_Switches} and @b{^Switches^Switches^} attributes, respectively in the
700 @emph{Builder} package (for @command{gnatmake} and @command{gprbuild}),
701 the @emph{Binder} package (binding Ada executables) and the @emph{Linker}
702 package (for linking executables).
703
704 @c ---------------------------------------------
705 @node Compiling with Project Files
706 @subsection Compiling with Project Files
707 @c ---------------------------------------------
708
709 @noindent
710 Now that our project files are written, let's build our executable.
711 Here is the command we would use from the command line:
712
713 @smallexample
714    gnatmake ^-Pbuild^/PROJECT_FILE=build^
715 @end smallexample
716
717 @noindent
718 This will automatically build the executables specified through the
719 @emph{Main} attribute: for each, it will compile or recompile the
720 sources for which the object file does not exist or is not up-to-date; it
721 will then run the binder; and finally run the linker to create the
722 executable itself.
723
724 @command{gnatmake} only knows how to handle Ada files. By using
725 @command{gprbuild} as a builder, you could automatically manage C files the
726 same way: create the file @file{utils.c} in the @file{common} directory,
727 set the attribute @emph{Languages} to @code{"(Ada, C)"}, and run
728
729 @smallexample
730    gprbuild ^-Pbuild^/PROJECT_FILE=build^
731 @end smallexample
732
733 @noindent
734 Gprbuild knows how to recompile the C files and will
735 recompile them only if one of their dependencies has changed. No direct
736 indication on how to build the various elements is given in the
737 project file, which describes the project properties rather than a
738 set of actions to be executed. Here is the invocation of
739 @command{gprbuild} when building a multi-language program:
740
741 @smallexample
742 $ gprbuild -Pbuild
743 gcc -c proc.adb
744 gcc -c pack.adb
745 gcc -c utils.c
746 gprbind proc
747 ...
748 gcc proc.o -o proc
749 @end smallexample
750
751 @noindent
752 Notice the three steps described earlier:
753
754 @itemize @bullet
755 @item The first three gcc commands correspond to the compilation phase.
756 @item The gprbind command corresponds to the post-compilation phase.
757 @item The last gcc command corresponds to the final link.
758
759 @end itemize
760
761 @noindent
762 @cindex @option{-v} option (for GPRbuild)
763 The default output of GPRbuild's execution is kept reasonably simple and easy
764 to understand. In particular, some of the less frequently used commands are not
765 shown, and some parameters are abbreviated. So it is not possible to rerun the
766 effect of the @command{gprbuild} command by cut-and-pasting its output.
767 GPRbuild's option @code{-v} provides a much more verbose output which includes,
768 among other information, more complete compilation, post-compilation and link
769 commands.
770
771 @c ---------------------------------------------
772 @node Executable File Names
773 @subsection Executable File Names
774 @c ---------------------------------------------
775
776 @noindent
777 @cindex @code{Executable}
778 By default, the executable name corresponding to a main file is
779 computed from the main source file name. Through the attribute
780 @b{Builder.Executable}, it is possible to change this default.
781
782 For instance, instead of building @command{proc} (or @command{proc.exe}
783 on Windows), we could configure our project file to build "proc1"
784 (resp proc1.exe) with the following addition:
785
786 @smallexample @c projectfile
787    project Build is
788       ...  --  same as before
789       package Builder is
790          for Executable ("proc.adb") use "proc1";
791       end Builder
792    end Build;
793 @end smallexample
794
795 @noindent
796 @cindex @code{Executable_Suffix}
797 Attribute @b{Executable_Suffix}, when specified, may change the suffix
798 of the executable files, when no attribute @code{Executable} applies:
799 its value replace the platform-specific executable suffix.
800 The default executable suffix is empty on UNIX and ".exe" on Windows.
801
802 It is also possible to change the name of the produced executable by using the
803 command line switch @option{-o}. When several mains are defined in the project,
804 it is not possible to use the @option{-o} switch and the only way to change the
805 names of the executable is provided by Attributes @code{Executable} and
806 @code{Executable_Suffix}.
807
808 @c ---------------------------------------------
809 @node Avoid Duplication With Variables
810 @subsection Avoid Duplication With Variables
811 @c ---------------------------------------------
812
813 @noindent
814 To illustrate some other project capabilities, here is a slightly more complex
815 project using similar sources and a main program in C:
816
817 @smallexample @c projectfile
818 project C_Main is
819    for Languages    use ("Ada", "C");
820    for Source_Dirs  use ("common");
821    for Object_Dir   use  "obj";
822    for Main         use ("main.c");
823    package Compiler is
824       C_Switches := ("-pedantic");
825       for Default_Switches ("C")   use C_Switches;
826       for Default_Switches ("Ada") use ("^-gnaty^-gnaty^");
827       for ^Switches^Switches^ ("main.c") use C_Switches & ("-g");
828    end Compiler;
829 end C_Main;
830 @end smallexample
831
832 @noindent
833 This project has many similarities with the previous one.
834 As expected, its @code{Main} attribute now refers to a C source.
835 The attribute @emph{Exec_Dir} is now omitted, thus the resulting
836 executable will be put in the directory @file{obj}.
837
838 The most noticeable difference is the use of a variable in the
839 @emph{Compiler} package to store settings used in several attributes.
840 This avoids text duplication, and eases maintenance (a single place to
841 modify if we want to add new switches for C files). We will revisit
842 the use of variables in the context of scenarios (@pxref{Scenarios in
843 Projects}).
844
845 In this example, we see how the file @file{main.c} can be compiled with
846 the switches used for all the other C files, plus @option{-g}.
847 In this specific situation the use of a variable could have been
848 replaced by a reference to the @code{Default_Switches} attribute:
849
850 @smallexample @c projectfile
851    for ^Switches^Switches^ ("c_main.c") use Compiler'Default_Switches ("C") & ("-g");
852 @end smallexample
853
854 @noindent
855 Note the tick (@emph{'}) used to refer to attributes defined in a package.
856
857 Here is the output of the GPRbuild command using this project:
858
859 @smallexample
860 $gprbuild -Pc_main
861 gcc -c -pedantic -g main.c
862 gcc -c -gnaty proc.adb
863 gcc -c -gnaty pack.adb
864 gcc -c -pedantic utils.c
865 gprbind main.bexch
866 ...
867 gcc main.o -o main
868 @end smallexample
869
870 @noindent
871 The default switches for Ada sources,
872 the default switches for C sources (in the compilation of @file{lib.c}),
873 and the specific switches for @file{main.c} have all been taken into
874 account.
875
876 @c ---------------------------------------------
877 @node Naming Schemes
878 @subsection Naming Schemes
879 @c ---------------------------------------------
880
881 @noindent
882 Sometimes an Ada software system is ported from one compilation environment to
883 another (say GNAT), and the file are not named using the default GNAT
884 conventions. Instead of changing all the file names, which for a variety of
885 reasons might not be possible, you can define the relevant file naming scheme
886 in the @b{Naming} package of your project file.
887
888 The naming scheme has two distinct goals for the project manager: it
889 allows finding of source files when searching in the source
890 directories, and given a source file name it makes it possible to guess
891 the associated language, and thus the compiler to use.
892
893 Note that the use by the Ada compiler of pragmas Source_File_Name is not
894 supported when using project files. You must use the features described in this
895 paragraph. You can however specify other configuration pragmas.
896
897 The following attributes can be defined in package @code{Naming}:
898
899 @table @asis
900 @item @b{Casing}:
901 @cindex @code{Casing}
902   Its value must be one of @code{"lowercase"} (the default if
903   unspecified), @code{"uppercase"} or @code{"mixedcase"}. It describes the
904   casing of file names with regards to the Ada unit name. Given an Ada unit
905   My_Unit, the file name will respectively be @file{my_unit.adb} (lowercase),
906   @file{MY_UNIT.ADB} (uppercase) or @file{My_Unit.adb} (mixedcase).
907   On Windows, file names are case insensitive, so this attribute is
908   irrelevant.
909
910 @item @b{Dot_Replacement}:
911 @cindex @code{Dot_Replacement}
912   This attribute specifies the string that should replace the "." in unit
913   names. Its default value is @code{"-"} so that a unit
914   @code{Parent.Child} is expected to be found in the file
915   @file{parent-child.adb}. The replacement string must satisfy the following
916   requirements to avoid ambiguities in the naming scheme:
917
918   @itemize -
919   @item It must not be empty
920   @item It cannot start or end with an alphanumeric character
921   @item It cannot be a single underscore
922   @item It cannot start with an underscore followed by an alphanumeric
923   @item It cannot contain a dot @code{'.'} except if the entire string
924      is @code{"."}
925
926   @end itemize
927
928 @item @b{Spec_Suffix} and @b{Specification_Suffix}:
929 @cindex @code{Spec_Suffix}
930 @cindex @code{Specification_Suffix}
931   For Ada, these attributes give the suffix used in file names that contain
932   specifications. For other languages, they give the extension for files
933   that contain declaration (header files in C for instance). The attribute
934   is indexed on the language.
935   The two attributes are equivalent, but the latter is obsolescent.
936
937   If the value of the attribute is the empty string, it indicates to the
938   Project Manager that the only specifications/header files for the language
939   are those specified with attributes @code{Spec} or
940   @code{Specification_Exceptions}.
941
942   If @code{Spec_Suffix ("Ada")} is not specified, then the default is
943   @code{"^.ads^.ADS^"}.
944
945   A non empty value must satisfy the following requirements:
946
947   @itemize -
948   @item It must include at least one dot
949   @item If @code{Dot_Replacement} is a single dot, then it cannot include
950         more than one dot.
951   @end itemize
952
953 @item @b{Body_Suffix} and @b{Implementation_Suffix}:
954 @cindex @code{Body_Suffix}
955 @cindex @code{Implementation_Suffix}
956   These attributes give the extension used for file names that contain
957   code (bodies in Ada). They are indexed on the language. The second
958   version is obsolescent and fully replaced by the first attribute.
959
960   For each language of a project, one of these two attributes need to be
961   specified, either in the project itself or in the configuration project file.
962
963   If the value of the attribute is the empty string, it indicates to the
964   Project Manager that the only source files for the language
965   are those specified with attributes @code{Body} or
966   @code{Implementation_Exceptions}.
967
968   These attributes must satisfy the same requirements as @code{Spec_Suffix}.
969   In addition, they must be different from any of the values in
970   @code{Spec_Suffix}.
971   If @code{Body_Suffix ("Ada")} is not specified, then the default is
972   @code{"^.adb^.ADB^"}.
973
974   If @code{Body_Suffix ("Ada")} and @code{Spec_Suffix ("Ada")} end with the
975   same string, then a file name that ends with the longest of these two
976   suffixes will be a body if the longest suffix is @code{Body_Suffix ("Ada")}
977   or a spec if the longest suffix is @code{Spec_Suffix ("Ada")}.
978
979   If the suffix does not start with a '.', a file with a name exactly equal to
980   the suffix will also be part of the project (for instance if you define the
981   suffix as @code{Makefile.in}, a file called @file{Makefile.in} will be part
982   of the project. This capability is usually not interesting when building.
983   However, it might become useful when a project is also used to
984   find the list of source files in an editor, like the GNAT Programming System
985   (GPS).
986
987 @item @b{Separate_Suffix}:
988 @cindex @code{Separate_Suffix}
989   This attribute is specific to Ada. It denotes the suffix used in file names
990   that contain separate bodies. If it is not specified, then it defaults to
991   same value as @code{Body_Suffix ("Ada")}.
992
993   The value of this attribute cannot be the empty string.
994
995   Otherwise, the same rules apply as for the
996   @code{Body_Suffix} attribute. The only accepted index is "Ada".
997
998 @item @b{Spec} or @b{Specification}:
999 @cindex @code{Spec}
1000 @cindex @code{Specification}
1001   This attribute @code{Spec} can be used to define the source file name for a
1002   given Ada compilation unit's spec. The index is the literal name of the Ada
1003   unit (case insensitive). The value is the literal base name of the file that
1004   contains this unit's spec (case sensitive or insensitive depending on the
1005   operating system). This attribute allows the definition of exceptions to the
1006   general naming scheme, in case some files do not follow the usual
1007   convention.
1008
1009   When a source file contains several units, the relative position of the unit
1010   can be indicated. The first unit in the file is at position 1
1011
1012   @smallexample @c projectfile
1013    for Spec ("MyPack.MyChild") use "mypack.mychild.spec";
1014    for Spec ("top") use "foo.a" at 1;
1015    for Spec ("foo") use "foo.a" at 2;
1016   @end smallexample
1017
1018 @item @b{Body} or @b{Implementation}:
1019 @cindex @code{Body}
1020 @cindex @code{Implementation}
1021   These attribute play the same role as @emph{Spec} for Ada bodies.
1022
1023 @item @b{Specification_Exceptions} and @b{Implementation_Exceptions}:
1024 @cindex @code{Specification_Exceptions}
1025 @cindex @code{Implementation_Exceptions}
1026   These attributes define exceptions to the naming scheme for languages
1027   other than Ada. They are indexed on the language name, and contain
1028   a list of file names respectively for headers and source code.
1029
1030 @end table
1031
1032 @ifclear vms
1033 For example, the following package models the Apex file naming rules:
1034
1035 @smallexample @c projectfile
1036 @group
1037   package Naming is
1038     for Casing               use "lowercase";
1039     for Dot_Replacement      use ".";
1040     for Spec_Suffix ("Ada")  use ".1.ada";
1041     for Body_Suffix ("Ada")  use ".2.ada";
1042   end Naming;
1043 @end group
1044 @end smallexample
1045 @end ifclear
1046
1047 @ifset vms
1048 For example, the following package models the DEC Ada file naming rules:
1049
1050 @smallexample @c projectfile
1051 @group
1052   package Naming is
1053     for Casing               use "lowercase";
1054     for Dot_Replacement      use "__";
1055     for Spec_Suffix ("Ada")  use "_.ada";
1056     for Body_Suffix ("Ada")  use ".ada";
1057   end Naming;
1058 @end group
1059 @end smallexample
1060
1061 @noindent
1062 (Note that @code{Casing} is @code{"lowercase"} because GNAT gets the file
1063 names in lower case)
1064 @end ifset
1065
1066 @c ---------------------------------------------
1067 @node Installation
1068 @subsection Installation
1069 @c ---------------------------------------------
1070
1071 @noindent
1072 After building an application or a library it is often required to
1073 install it into the development environment. For instance this step is
1074 required if the library is to be used by another application.
1075 The @command{gprinstall} tool provides an easy way to install
1076 libraries, executable or object code generated during the build. The
1077 @b{Install} package can be used to change the default locations.
1078
1079 The following attributes can be defined in package @code{Install}:
1080
1081 @table @asis
1082
1083 @item @b{Active}
1084
1085 Whether the project is to be installed, values are @code{true}
1086 (default) or @code{false}.
1087
1088 @item @b{Prefix}:
1089 @cindex @code{Prefix}
1090
1091 Root directory for the installation.
1092
1093 @item @b{Exec_Subdir}
1094
1095 Subdirectory of @b{Prefix} where executables are to be
1096 installed. Default is @b{bin}.
1097
1098 @item @b{Lib_Subdir}
1099
1100 Subdirectory of @b{Prefix} where directory with the library or object
1101 files is to be installed. Default is @b{lib}.
1102
1103 @item @b{Sources_Subdir}
1104
1105 Subdirectory of @b{Prefix} where directory with sources is to be
1106 installed. Default is @b{include}.
1107
1108 @item @b{Project_Subdir}
1109
1110 Subdirectory of @b{Prefix} where the generated project file is to be
1111 installed. Default is @b{share/gpr}.
1112 @end table
1113
1114 @c ---------------------------------------------
1115 @node Distributed support
1116 @subsection Distributed support
1117 @c ---------------------------------------------
1118
1119 @noindent
1120 For large projects the compilation time can become a limitation in
1121 the development cycle. To cope with that, GPRbuild supports
1122 distributed compilation.
1123
1124 The following attributes can be defined in package @code{Remote}:
1125
1126 @table @asis
1127
1128 @item @b{Root_Dir}:
1129 @cindex @code{Root_Dir}
1130
1131 Root directory of the project's sources. The default value is the
1132 project's directory.
1133
1134 @end table
1135
1136 @c ---------------------------------------------
1137 @node Organizing Projects into Subsystems
1138 @section Organizing Projects into Subsystems
1139 @c ---------------------------------------------
1140
1141 @noindent
1142 A @b{subsystem} is a coherent part of the complete system to be built. It is
1143 represented by a set of sources and one single object directory. A system can
1144 be composed of a single subsystem when it is simple as we have seen in the
1145 first section. Complex systems are usually composed of several interdependent
1146 subsystems. A subsystem is dependent on another subsystem if knowledge of the
1147 other one is required to build it, and in particular if visibility on some of
1148 the sources of this other subsystem is required. Each subsystem is usually
1149 represented by its own project file.
1150
1151 In this section, the previous example is being extended. Let's assume some
1152 sources of our @code{Build} project depend on other sources.
1153 For instance, when building a graphical interface, it is usual to depend upon
1154 a graphical library toolkit such as GtkAda. Furthermore, we also need
1155 sources from a logging module we had previously written.
1156
1157 @menu
1158 * Project Dependencies::
1159 * Cyclic Project Dependencies::
1160 * Sharing Between Projects::
1161 * Global Attributes::
1162 @end menu
1163
1164 @c ---------------------------------------------
1165 @node Project Dependencies
1166 @subsection Project Dependencies
1167 @c ---------------------------------------------
1168
1169 @noindent
1170 GtkAda comes with its own project file (appropriately called
1171 @file{gtkada.gpr}), and we will assume we have already built a project
1172 called @file{logging.gpr} for the logging module. With the information provided
1173 so far in @file{build.gpr}, building the application would fail with an error
1174 indicating that the gtkada and logging units that are relied upon by the sources
1175 of this project cannot be found.
1176
1177 This is easily solved by adding the following @b{with} clauses at the beginning
1178 of our project:
1179
1180 @smallexample @c projectfile
1181   with "gtkada.gpr";
1182   with "a/b/logging.gpr";
1183   project Build is
1184      ...  --  as before
1185   end Build;
1186 @end smallexample
1187
1188 @noindent
1189 @cindex @code{Externally_Built}
1190 When such a project is compiled, @command{gnatmake} will automatically
1191 check the other projects and recompile their sources when needed. It will also
1192 recompile the sources from @code{Build} when needed, and finally create the
1193 executable. In some cases, the implementation units needed to recompile a
1194 project are not available, or come from some third-party and you do not want to
1195 recompile it yourself. In this case, the attribute @b{Externally_Built} to
1196 "true" can be set, indicating to the builder that this project can be assumed
1197 to be up-to-date, and should not be considered for recompilation. In Ada, if
1198 the sources of this externally built project were compiled with another version
1199 of the compiler or with incompatible options, the binder will issue an error.
1200
1201 The project's @code{with} clause has several effects. It provides source
1202 visibility between projects during the compilation process. It also guarantees
1203 that the necessary object files from @code{Logging} and @code{GtkAda} are
1204 available when linking @code{Build}.
1205
1206 As can be seen in this example, the syntax for importing projects is similar
1207 to the syntax for importing compilation units in Ada. However, project files
1208 use literal strings instead of names, and the @code{with} clause identifies
1209 project files rather than packages.
1210
1211 Each literal string after @code{with} is the path
1212 (absolute or relative) to a project file. The @code{.gpr} extension is
1213 optional, although we recommend adding it. If no extension is specified,
1214 and no project file with the @file{^.gpr^.GPR^} extension is found, then
1215 the file is searched for exactly as written in the @code{with} clause,
1216 that is with no extension.
1217
1218 As mentioned above, the path after a @code{with} has to be a literal
1219 string, and you cannot use concatenation, or lookup the value of external
1220 variables to change the directories from which a project is loaded.
1221 A solution if you need something like this is to use aggregate projects
1222 (@pxref{Aggregate Projects}).
1223
1224 @cindex project path
1225 When a relative path or a base name is used, the
1226 project files are searched relative to each of the directories in the
1227 @b{project path}. This path includes all the directories found with the
1228 following algorithm, in that order, as soon as a matching file is found,
1229 the search stops:
1230
1231 @itemize @bullet
1232 @item First, the file is searched relative to the directory that contains the
1233   current project file.
1234
1235 @item
1236 @cindex @code{GPR_PROJECT_PATH_FILE}
1237 @cindex @code{GPR_PROJECT_PATH}
1238 @cindex @code{ADA_PROJECT_PATH}
1239   Then it is searched relative to all the directories specified in the
1240   ^environment variables^logical names^ @b{GPR_PROJECT_PATH_FILE},
1241   @b{GPR_PROJECT_PATH} and @b{ADA_PROJECT_PATH} (in that order) if they exist.
1242   The value of @b{GPR_PROJECT_PATH_FILE}, when defined, is the path name of
1243   a text file that contains project directory path names, one per line.
1244   @b{GPR_PROJECT_PATH} and @b{ADA_PROJECT_PATH}, when defined, contain
1245   project directory path names separated by directory separators.
1246   @b{ADA_PROJECT_PATH} is used for compatibility, it is recommended to
1247   use @b{GPR_PROJECT_PATH_FILE} or @b{GPR_PROJECT_PATH}.
1248
1249 @item Finally, it is searched relative to the default project directories.
1250   Such directories depends on the tool used. The different locations searched
1251   in the specified order are:
1252
1253   @itemize @bullet
1254   @item @file{<prefix>/<target>/lib/gnat}
1255   (for @command{gnatmake} in all cases, and for @command{gprbuild} if option
1256   @option{--target} is specified)
1257   @item @file{<prefix>/share/gpr/}
1258   (for @command{gnatmake} and @command{gprbuild})
1259   @item @file{<prefix>/lib/gnat/}
1260   (for @command{gnatmake} and @command{gprbuild})
1261   @end itemize
1262
1263   In our example, @file{gtkada.gpr} is found in the predefined directory if
1264   it was installed at the same root as GNAT.
1265 @end itemize
1266
1267 @noindent
1268 Some tools also support extending the project path from the command line,
1269 generally through the @option{-aP}. You can see the value of the project
1270 path by using the @command{gnatls -v} command.
1271
1272 Any symbolic link will be fully resolved in the directory of the
1273 importing project file before the imported project file is examined.
1274
1275 Any source file in the imported project can be used by the sources of the
1276 importing project, transitively.
1277 Thus if @code{A} imports @code{B}, which imports @code{C}, the sources of
1278 @code{A} may depend on the sources of @code{C}, even if @code{A} does not
1279 import @code{C} explicitly. However, this is not recommended, because if
1280 and when @code{B} ceases to import @code{C}, some sources in @code{A} will
1281 no longer compile. @command{gprbuild} has a switch @option{--no-indirect-imports}
1282 that will report such indirect dependencies.
1283
1284 One very important aspect of a project hierarchy is that
1285 @b{a given source can only belong to one project} (otherwise the project manager
1286 would not know which settings apply to it and when to recompile it). It means
1287 that different project files do not usually share source directories or
1288 when they do, they need to specify precisely which project owns which sources
1289 using attribute @code{Source_Files} or equivalent. By contrast, 2 projects
1290 can each own a source with the same base file name as long as they live in
1291 different directories. The latter is not true for Ada Sources because of the
1292 correlation between source files and Ada units.
1293
1294 @c ---------------------------------------------
1295 @node Cyclic Project Dependencies
1296 @subsection Cyclic Project Dependencies
1297 @c ---------------------------------------------
1298
1299 @noindent
1300 Cyclic dependencies are mostly forbidden:
1301 if @code{A} imports @code{B} (directly or indirectly) then @code{B}
1302 is not allowed to import @code{A}. However, there are cases when cyclic
1303 dependencies would be beneficial. For these cases, another form of import
1304 between projects exists: the @b{limited with}.  A project @code{A} that
1305 imports a project @code{B} with a straight @code{with} may also be imported,
1306 directly or indirectly, by @code{B} through a @code{limited with}.
1307
1308 The difference between straight @code{with} and @code{limited with} is that
1309 the name of a project imported with a @code{limited with} cannot be used in the
1310 project importing it. In particular, its packages cannot be renamed and
1311 its variables cannot be referred to.
1312
1313 @smallexample @c 0projectfile
1314 with "b.gpr";
1315 with "c.gpr";
1316 project A is
1317     For Exec_Dir use B'Exec_Dir; -- ok
1318 end A;
1319
1320 limited with "a.gpr";   --  Cyclic dependency: A -> B -> A
1321 project B is
1322    For Exec_Dir use A'Exec_Dir; -- not ok
1323 end B;
1324
1325 with "d.gpr";
1326 project C is
1327 end C;
1328
1329 limited with "a.gpr";  --  Cyclic dependency: A -> C -> D -> A
1330 project D is
1331    For Exec_Dir use A'Exec_Dir; -- not ok
1332 end D;
1333 @end smallexample
1334
1335 @c ---------------------------------------------
1336 @node Sharing Between Projects
1337 @subsection Sharing Between Projects
1338 @c ---------------------------------------------
1339
1340 @noindent
1341 When building an application, it is common to have similar needs in several of
1342 the projects corresponding to the subsystems under construction. For instance,
1343 they will all have the same compilation switches.
1344
1345 As seen before (@pxref{Tools Options in Project Files}), setting compilation
1346 switches for all sources of a subsystem is simple: it is just a matter of
1347 adding a @code{Compiler.Default_Switches} attribute to each project files with
1348 the same value. Of course, that means duplication of data, and both places need
1349 to be changed in order to recompile the whole application with different
1350 switches. It can become a real problem if there are many subsystems and thus
1351 many project files to edit.
1352
1353 There are two main approaches to avoiding this duplication:
1354
1355 @itemize @bullet
1356 @item Since @file{build.gpr} imports @file{logging.gpr}, we could change it
1357   to reference the attribute in Logging, either through a package renaming,
1358   or by referencing the attribute. The following example shows both cases:
1359
1360   @smallexample @c projectfile
1361   project Logging is
1362      package Compiler is
1363         for ^Switches^Switches^ ("Ada")
1364             use ("^-O2^-O2^");
1365      end Compiler;
1366      package Binder is
1367         for ^Switches^Switches^ ("Ada")
1368             use ("-E");
1369      end Binder;
1370   end Logging;
1371
1372   with "logging.gpr";
1373   project Build is
1374      package Compiler renames Logging.Compiler;
1375      package Binder is
1376         for ^Switches^Switches^ ("Ada") use Logging.Binder'Switches ("Ada");
1377      end Binder;
1378   end Build;
1379   @end smallexample
1380
1381   @noindent
1382   The solution used for @code{Compiler} gets the same value for all
1383   attributes of the package, but you cannot modify anything from the
1384   package (adding extra switches or some exceptions). The second
1385   version is more flexible, but more verbose.
1386
1387   If you need to refer to the value of a variable in an imported
1388   project, rather than an attribute, the syntax is similar but uses
1389   a "." rather than an apostrophe. For instance:
1390
1391   @smallexample @c projectfile
1392   with "imported";
1393   project Main is
1394      Var1 := Imported.Var;
1395   end Main;
1396   @end smallexample
1397
1398 @item The second approach is to define the switches in a third project.
1399   That project is setup without any sources (so that, as opposed to
1400   the first example, none of the project plays a special role), and
1401   will only be used to define the attributes. Such a project is
1402   typically called @file{shared.gpr}.
1403
1404   @smallexample @c projectfile
1405   abstract project Shared is
1406      for Source_Files use ();   --  no sources
1407      package Compiler is
1408         for ^Switches^Switches^ ("Ada")
1409             use ("^-O2^-O2^");
1410      end Compiler;
1411   end Shared;
1412
1413   with "shared.gpr";
1414   project Logging is
1415      package Compiler renames Shared.Compiler;
1416   end Logging;
1417
1418   with "shared.gpr";
1419   project Build is
1420      package Compiler renames Shared.Compiler;
1421   end Build;
1422   @end smallexample
1423
1424   @noindent
1425   As for the first example, we could have chosen to set the attributes
1426   one by one rather than to rename a package. The reason we explicitly
1427   indicate that @code{Shared} has no sources is so that it can be created
1428   in any directory and we are sure it shares no sources with @code{Build}
1429   or @code{Logging}, which of course would be invalid.
1430
1431 @cindex project qualifier
1432   Note the additional use of the @b{abstract} qualifier in @file{shared.gpr}.
1433   This qualifier is optional, but helps convey the message that we do not
1434   intend this project to have sources (@pxref{Qualified Projects} for
1435   more qualifiers).
1436 @end itemize
1437
1438 @c ---------------------------------------------
1439 @node Global Attributes
1440 @subsection Global Attributes
1441 @c ---------------------------------------------
1442
1443 @noindent
1444 We have already seen many examples of attributes used to specify a special
1445 option of one of the tools involved in the build process. Most of those
1446 attributes are project specific. That it to say, they only affect the invocation
1447 of tools on the sources of the project where they are defined.
1448
1449 There are a few additional attributes that apply to all projects in a
1450 hierarchy as long as they are defined on the "main" project.
1451 The main project is the project explicitly mentioned on the command-line.
1452 The project hierarchy is the "with"-closure of the main project.
1453
1454 Here is a list of commonly used global attributes:
1455
1456 @table @asis
1457 @item @b{Builder.Global_Configuration_Pragmas}:
1458 @cindex @code{Global_Configuration_Pragmas}
1459   This attribute points to a file that contains configuration pragmas
1460   to use when building executables. These pragmas apply for all
1461   executables built from this project hierarchy. As we have seen before,
1462   additional pragmas can be specified on a per-project basis by setting the
1463   @code{Compiler.Local_Configuration_Pragmas} attribute.
1464
1465 @item @b{Builder.Global_Compilation_Switches}:
1466 @cindex @code{Global_Compilation_Switches}
1467   This attribute is a list of compiler switches to use when compiling any
1468   source file in the project hierarchy. These switches are used in addition
1469   to the ones defined in the @code{Compiler} package, which only apply to
1470   the sources of the corresponding project. This attribute is indexed on
1471   the name of the language.
1472
1473 @end table
1474
1475 Using such global capabilities is convenient. It can also lead to unexpected
1476 behavior. Especially when several subsystems are shared among different main
1477 projects and the different global attributes are not
1478 compatible. Note that using aggregate projects can be a safer and more powerful
1479 replacement to global attributes.
1480
1481 @c ---------------------------------------------
1482 @node Scenarios in Projects
1483 @section Scenarios in Projects
1484 @c ---------------------------------------------
1485
1486 @noindent
1487 Various aspects of the projects can be modified based on @b{scenarios}. These
1488 are user-defined modes that change the behavior of a project. Typical
1489 examples are the setup of platform-specific compiler options, or the use of
1490 a debug and a release mode (the former would activate the generation of debug
1491 information, when the second will focus on improving code optimization).
1492
1493 Let's enhance our example to support a debug and a release modes.The issue is to
1494 let the user choose what kind of system he is building:
1495 use @option{-g} as compiler switches in debug mode and @option{^-O2^-O2^}
1496 in release mode. We will also setup the projects so that we do not share the
1497 same object directory in both modes, otherwise switching from one to the other
1498 might trigger more recompilations than needed or mix objects from the 2 modes.
1499
1500 One naive approach is to create two different project files, say
1501 @file{build_debug.gpr} and @file{build_release.gpr}, that set the appropriate
1502 attributes as explained in previous sections. This solution does not scale well,
1503 because in presence of multiple projects depending on each other,
1504 you will also have to duplicate the complete hierarchy and adapt the project
1505 files to point to the right copies.
1506
1507 @cindex scenarios
1508 Instead, project files support the notion of scenarios controlled
1509 by external values. Such values can come from several sources (in decreasing
1510 order of priority):
1511
1512 @table @asis
1513 @item @b{Command line}:
1514 @cindex @option{-X}
1515   When launching @command{gnatmake} or @command{gprbuild}, the user can pass
1516   extra @option{-X} switches to define the external value. In
1517   our case, the command line might look like
1518
1519   @smallexample
1520        gnatmake -Pbuild.gpr -Xmode=debug
1521    or  gnatmake -Pbuild.gpr -Xmode=release
1522   @end smallexample
1523
1524 @item @b{^Environment variables^Logical names^}:
1525   When the external value does not come from the command line, it can come from
1526   the value of ^environment variables^logical names^ of the appropriate name.
1527   In our case, if ^an environment variable^a logical name^ called "mode"
1528   exist, its value will be taken into account.
1529
1530 @item @b{External function second parameter}
1531
1532 @end table
1533
1534 @cindex @code{external}
1535 We now need to get that value in the project. The general form is to use
1536 the predefined function @b{external} which returns the current value of
1537 the external. For instance, we could setup the object directory to point to
1538 either @file{obj/debug} or @file{obj/release} by changing our project to
1539
1540 @smallexample @c projectfile
1541    project Build is
1542        for Object_Dir use "obj/" & external ("mode", "debug");
1543        ... --  as before
1544    end Build;
1545 @end smallexample
1546
1547 @noindent
1548 The second parameter to @code{external} is optional, and is the default
1549 value to use if "mode" is not set from the command line or the environment.
1550
1551 In order to set the switches according to the different scenarios, other
1552 constructs have to be introduced such as typed variables and case constructions.
1553
1554 @cindex typed variable
1555 @cindex case construction
1556 A @b{typed variable} is a variable that
1557 can take only a limited number of values, similar to an enumeration in Ada.
1558 Such a variable can then be used in a @b{case construction} and create conditional
1559 sections in the project. The following example shows how this can be done:
1560
1561 @smallexample @c projectfile
1562    project Build is
1563       type Mode_Type is ("debug", "release");  --  all possible values
1564       Mode : Mode_Type := external ("mode", "debug"); -- a typed variable
1565
1566       package Compiler is
1567          case Mode is
1568             when "debug" =>
1569                for ^Switches^Switches^ ("Ada")
1570                    use ("-g");
1571             when "release" =>
1572                for ^Switches^Switches^ ("Ada")
1573                    use ("^-O2^-O2^");
1574          end case;
1575       end Compiler;
1576    end Build;
1577 @end smallexample
1578
1579 @noindent
1580 The project has suddenly grown in size, but has become much more flexible.
1581 @code{Mode_Type} defines the only valid values for the @code{mode} variable. If
1582 any other value is read from the environment, an error is reported and the
1583 project is considered as invalid.
1584
1585 The @code{Mode} variable is initialized with an external value
1586 defaulting to @code{"debug"}. This default could be omitted and that would
1587 force the user to define the value. Finally, we can use a case construction to set the
1588 switches depending on the scenario the user has chosen.
1589
1590 Most aspects of the projects can depend on scenarios. The notable exception
1591 are project dependencies (@code{with} clauses), which may not depend on a scenario.
1592
1593 Scenarios work the same way with @b{project hierarchies}: you can either
1594 duplicate a variable similar to @code{Mode} in each of the project (as long
1595 as the first argument to @code{external} is always the same and the type is
1596 the same), or simply set the variable in the @file{shared.gpr} project
1597 (@pxref{Sharing Between Projects}).
1598
1599 @c ---------------------------------------------
1600 @node Library Projects
1601 @section Library Projects
1602 @c ---------------------------------------------
1603
1604 @noindent
1605 So far, we have seen examples of projects that create executables. However,
1606 it is also possible to create libraries instead. A @b{library} is a specific
1607 type of subsystem where, for convenience, objects are grouped together
1608 using system-specific means such as archives or windows DLLs.
1609
1610 Library projects provide a system- and language-independent way of building both @b{static}
1611 and @b{dynamic} libraries. They also support the concept of @b{standalone
1612 libraries} (SAL) which offers two significant properties: the elaboration
1613 (e.g. initialization) of the library is either automatic or very simple;
1614 a change in the
1615 implementation part of the library implies minimal post-compilation actions on
1616 the complete system and potentially no action at all for the rest of the
1617 system in the case of dynamic SALs.
1618
1619 The GNAT Project Manager takes complete care of the library build, rebuild and
1620 installation tasks, including recompilation of the source files for which
1621 objects do not exist or are not up to date, assembly of the library archive, and
1622 installation of the library (i.e., copying associated source, object and
1623 @file{ALI} files to the specified location).
1624
1625 @menu
1626 * Building Libraries::
1627 * Using Library Projects::
1628 * Stand-alone Library Projects::
1629 * Installing a library with project files::
1630 @end menu
1631
1632 @c ---------------------------------------------
1633 @node Building Libraries
1634 @subsection Building Libraries
1635 @c ---------------------------------------------
1636
1637 @noindent
1638 Let's enhance our example and transform the @code{logging} subsystem into a
1639 library.  In order to do so, a few changes need to be made to @file{logging.gpr}.
1640 A number of specific attributes needs to be defined: at least @code{Library_Name}
1641 and @code{Library_Dir}; in addition, a number of other attributes can be used
1642 to specify specific aspects of the library. For readability, it is also
1643 recommended (although not mandatory), to use the qualifier @code{library} in
1644 front of the @code{project} keyword.
1645
1646 @table @asis
1647 @item @b{Library_Name}:
1648 @cindex @code{Library_Name}
1649   This attribute is the name of the library to be built. There is no
1650   restriction on the name of a library imposed by the project manager, except
1651   for stand-alone libraries whose names must follow the syntax of Ada
1652   identifiers; however, there may be system specific restrictions on the name.
1653   In general, it is recommended to stick to alphanumeric characters (and
1654   possibly single underscores) to help portability.
1655
1656 @item @b{Library_Dir}:
1657 @cindex @code{Library_Dir}
1658   This attribute  is the path (absolute or relative) of the directory where
1659   the library is to be installed. In the process of building a library,
1660   the sources are compiled, the object files end up  in the explicit or
1661   implicit @code{Object_Dir} directory. When all sources of a library
1662   are compiled, some of the compilation artifacts, including the library itself,
1663   are copied to the library_dir directory. This directory must exists and be
1664   writable. It must also be different from the object directory so that cleanup
1665   activities in the Library_Dir do not affect recompilation needs.
1666
1667 @end table
1668
1669 Here is the new version of @file{logging.gpr} that makes it a library:
1670
1671 @smallexample @c projectfile
1672 library project Logging is          --  "library" is optional
1673    for Library_Name use "logging";  --  will create "liblogging.a" on Unix
1674    for Object_Dir   use "obj";
1675    for Library_Dir  use "lib";      --  different from object_dir
1676 end Logging;
1677 @end smallexample
1678
1679 @noindent
1680 Once the above two attributes are defined, the library project is valid and
1681 is enough for building a library with default characteristics.
1682 Other library-related attributes can be used to change the defaults:
1683
1684 @table @asis
1685 @item @b{Library_Kind}:
1686 @cindex @code{Library_Kind}
1687   The value of this attribute must be either @code{"static"}, @code{"dynamic"} or
1688   @code{"relocatable"} (the latter is a synonym for dynamic). It indicates
1689   which kind of library should be built (the default is to build a
1690   static library, that is an archive of object files that can potentially
1691   be linked into a static executable). When the library is set to be dynamic,
1692   a separate image is created that will be loaded independently, usually
1693   at the start of the main program execution. Support for dynamic libraries is
1694   very platform specific, for instance on Windows it takes the form of a DLL
1695   while on GNU/Linux, it is a dynamic elf image whose suffix is usually
1696   @file{.so}. Library project files, on the other hand, can be written in
1697   a platform independent way so that the same project file can be used to build
1698   a library on different operating systems.
1699
1700   If you need to build both a static and a dynamic library, it is recommended
1701   use two different object directories, since in some cases some extra code
1702   needs to be generated for the latter. For such cases, one can
1703   either define two different project files, or a single one which uses scenarios
1704   to indicate the various kinds of library to be built and their
1705   corresponding object_dir.
1706
1707 @cindex @code{Library_ALI_Dir}
1708 @item @b{Library_ALI_Dir}:
1709   This attribute may be specified to indicate the directory where the ALI
1710   files of the library are installed. By default, they are copied into the
1711   @code{Library_Dir} directory, but as for the executables where we have a
1712   separate @code{Exec_Dir} attribute, you might want to put them in a separate
1713   directory since there can be hundreds of them. The same restrictions as for
1714   the @code{Library_Dir} attribute apply.
1715
1716 @cindex @code{Library_Version}
1717 @item @b{Library_Version}:
1718   This attribute is platform dependent, and has no effect on VMS and Windows.
1719   On Unix, it is used only for dynamic libraries as the internal
1720   name of the library (the @code{"soname"}). If the library file name (built
1721   from the @code{Library_Name}) is different from the @code{Library_Version},
1722   then the library file will be a symbolic link to the actual file whose name
1723   will be @code{Library_Version}. This follows the usual installation schemes
1724   for dynamic libraries on many Unix systems.
1725
1726 @smallexample @c projectfile
1727 @group
1728   project Logging is
1729      Version := "1";
1730      for Library_Dir use "lib";
1731      for Library_Name use "logging";
1732      for Library_Kind use "dynamic";
1733      for Library_Version use "liblogging.so." & Version;
1734   end Logging;
1735 @end group
1736 @end smallexample
1737
1738   @noindent
1739   After the compilation, the directory @file{lib} will contain both a
1740   @file{libdummy.so.1} library and a symbolic link to it called
1741   @file{libdummy.so}.
1742
1743 @cindex @code{Library_GCC}
1744 @item @b{Library_GCC}:
1745   This attribute is the name of the tool to use instead of "gcc" to link shared
1746   libraries. A common use of this attribute is to define a wrapper script that
1747   accomplishes specific actions before calling gcc (which itself is calling the
1748   linker to build the library image).
1749
1750 @item @b{Library_Options}:
1751 @cindex @code{Library_Options}
1752   This attribute may be used to specify additional switches (last switches)
1753   when linking a shared library.
1754
1755 @item @b{Leading_Library_Options}:
1756 @cindex @code{Leading_Library_Options}
1757   This attribute, that is taken into account only by @command{gprbuild}, may be
1758   used to specified leading options (first switches) when linking a shared
1759   library.
1760
1761 @cindex @code{Linker_Options}
1762 @item @b{Linker.Linker_Options}:
1763   This attribute specifies additional switches to be given to the linker when
1764   linking an executable. It is ignored when defined in the main project and
1765   taken into account in all other projects that are imported directly or
1766   indirectly. These switches complement the @code{Linker.Switches}
1767   defined in the main project. This is useful when a particular subsystem
1768   depends on an external library: adding this dependency as a
1769   @code{Linker_Options} in the project of the subsystem is more convenient than
1770   adding it to all the @code{Linker.Switches} of the main projects that depend
1771   upon this subsystem.
1772 @end table
1773
1774 @c ---------------------------------------------
1775 @node Using Library Projects
1776 @subsection Using Library Projects
1777 @c ---------------------------------------------
1778
1779 @noindent
1780 When the builder detects that a project file is a library project file, it
1781 recompiles all sources of the project that need recompilation and rebuild the
1782 library if any of the sources have been recompiled. It then groups all object
1783 files into a single file, which is a shared or a static library. This library
1784 can later on be linked with multiple executables. Note that the use
1785 of shard libraries reduces the size of the final executable and can also reduce
1786 the memory footprint at execution time when the library is shared among several
1787 executables.
1788
1789 It is also possible to build @b{multi-language libraries}. When using
1790 @command{gprbuild} as a builder, multi-language library projects allow naturally
1791 the creation of multi-language libraries . @command{gnatmake}, does not try to
1792 compile non Ada sources. However, when the project is multi-language, it will
1793 automatically link all object files found in the object directory, whether or
1794 not they were compiled from an Ada source file. This specific behavior does not
1795 apply to Ada-only projects which only take into account the objects
1796 corresponding to the sources of the project.
1797
1798 A non-library project can import a library project. When the builder is invoked
1799 on the former, the library of the latter is only rebuilt when absolutely
1800 necessary. For instance, if a unit of the
1801 library is not up-to-date but non of the executables need this unit, then the
1802 unit is not recompiled and the library is not reassembled.
1803 For instance, let's assume in our example that logging has the following
1804 sources: @file{log1.ads}, @file{log1.adb}, @file{log2.ads} and
1805 @file{log2.adb}. If @file{log1.adb} has been modified, then the library
1806 @file{liblogging} will be rebuilt when compiling all the sources of
1807 @code{Build} only if @file{proc.ads}, @file{pack.ads} or @file{pack.adb}
1808 include a @code{"with Log1"}.
1809
1810 To ensure that all the sources in the @code{Logging} library are
1811 up to date, and that all the sources of @code{Build} are also up to date,
1812 the following two commands needs to be used:
1813
1814 @smallexample
1815 gnatmake -Plogging.gpr
1816 gnatmake -Pbuild.gpr
1817 @end smallexample
1818
1819 @noindent
1820 All @file{ALI} files will also be copied from the object directory to the
1821 library directory. To build executables, @command{gnatmake} will use the
1822 library rather than the individual object files.
1823
1824 @ifclear vms
1825 Library projects can also be useful to describe a library that need to be used
1826 but, for some reason, cannot be rebuilt. For instance, it is the case when some
1827 of the library sources are not available. Such library projects need simply to
1828 use the @code{Externally_Built} attribute as in the example below:
1829
1830 @smallexample @c projectfile
1831 library project Extern_Lib is
1832    for Languages    use ("Ada", "C");
1833    for Source_Dirs  use ("lib_src");
1834    for Library_Dir  use "lib2";
1835    for Library_Kind use "dynamic";
1836    for Library_Name use "l2";
1837    for Externally_Built use "true";  --  <<<<
1838 end Extern_Lib;
1839 @end smallexample
1840
1841 @noindent
1842 In the case of externally built libraries, the @code{Object_Dir}
1843 attribute does not need to be specified because it will never be
1844 used.
1845
1846 The main effect of using such an externally built library project is mostly to
1847 affect the linker command in order to reference the desired library. It can
1848 also be achieved by using @code{Linker.Linker_Options} or @code{Linker.Switches}
1849 in the project corresponding to the subsystem needing this external library.
1850 This latter method is more straightforward in simple cases but when several
1851 subsystems depend upon the same external library, finding the proper place
1852 for the @code{Linker.Linker_Options} might not be easy and if it is
1853 not placed properly, the final link command is likely to present ordering issues.
1854 In such a situation, it is better to use the externally built library project
1855 so that all other subsystems depending on it can declare this dependency thanks
1856 to a project @code{with} clause, which in turn will trigger the builder to find
1857 the proper order of libraries in the final link command.
1858 @end ifclear
1859
1860 @c ---------------------------------------------
1861 @node Stand-alone Library Projects
1862 @subsection Stand-alone Library Projects
1863 @c ---------------------------------------------
1864
1865 @noindent
1866 @cindex standalone libraries
1867 A @b{stand-alone library} is a library that contains the necessary code to
1868 elaborate the Ada units that are included in the library. A stand-alone
1869 library is a convenient way to add an Ada subsystem to a more global system
1870 whose main is not in Ada since it makes the elaboration of the Ada part mostly
1871 transparent. However, stand-alone libraries are also useful when the main is in
1872 Ada: they provide a means for minimizing relinking & redeployment of complex
1873 systems when localized changes are made.
1874
1875 The name of a stand-alone library, specified with attribute
1876 @code{Library_Name}, must have the syntax of an Ada identifier.
1877
1878 The most prominent characteristic of a stand-alone library is that it offers a
1879 distinction between interface units and implementation units. Only the former
1880 are visible to units outside the library. A stand-alone library project is thus
1881 characterised by a third attribute, usually @b{Library_Interface}, in addition
1882 to the two attributes that make a project a Library Project
1883 (@code{Library_Name} and @code{Library_Dir}). This third attribute may also be
1884 @b{Interfaces}. @b{Library_Interface} only works when the interface is in Ada
1885 and takes a list of units as parameter. @b{Interfaces} works for any supported
1886 language and takes a list of sources as parameter.
1887
1888 @table @asis
1889 @item @b{Library_Interface}:
1890 @cindex @code{Library_Interface}
1891   This attribute defines an explicit subset of the units of the project. Units
1892   from projects importing this library project may only "with" units whose
1893   sources are listed in the @code{Library_Interface}. Other sources are
1894   considered implementation units.
1895
1896 @smallexample @c projectfile
1897 @group
1898      for Library_Dir use "lib";
1899      for Library_Name use "loggin";
1900      for Library_Interface use ("lib1", "lib2");  --  unit names
1901 @end group
1902 @end smallexample
1903
1904 @item @b{Interfaces}
1905   This attribute defines an explicit subset of the source files of a project.
1906   Sources from projects importing this project, can only depend on sources from
1907   this subset. This attribute can be used on non library projects. It can also
1908   be used as a replacement for attribute @code{Library_Interface}, in which
1909   case, units have to be replaced by source files. For multi-language library
1910   projects, it is the only way to make the project a Stand-Alone Library project
1911   whose interface is not purely Ada.
1912
1913 @item @b{Library_Standalone}:
1914 @cindex @code{Library_Standalone}
1915   This attribute defines the kind of standalone library to
1916   build. Values are either @code{standard} (the default), @code{no} or
1917   @code{encapsulated}. When @code{standard} is used the code to elaborate and
1918   finalize the library is embedded, when @code{encapsulated} is used the
1919   library can furthermore only depends on static libraries (including
1920   the GNAT runtime). This attribute can be set to @code{no} to make it clear
1921   that the library should not be standalone in which case the
1922   @code{Library_Interface} should not defined. Note that this attribute
1923   only applies to shared libraries, so @code{Library_Kind} must be set
1924   to @code{dynamic}.
1925
1926 @smallexample @c projectfile
1927 @group
1928      for Library_Dir use "lib";
1929      for Library_Name use "loggin";
1930      for Library_Kind use "dynamic";
1931      for Library_Interface use ("lib1", "lib2");  --  unit names
1932      for Library_Standalone use "encapsulated";
1933 @end group
1934 @end smallexample
1935
1936 @end table
1937
1938 In order to include the elaboration code in the stand-alone library, the binder
1939 is invoked on the closure of the library units creating a package whose name
1940 depends on the library name (^b~logging.ads/b^B$LOGGING.ADS/B^ in the example).
1941 This binder-generated package includes @b{initialization} and @b{finalization}
1942 procedures whose names depend on the library name (@code{logginginit} and
1943 @code{loggingfinal} in the example). The object corresponding to this package is
1944 included in the library.
1945
1946 @table @asis
1947 @item @b{Library_Auto_Init}:
1948 @cindex @code{Library_Auto_Init}
1949   A dynamic stand-alone Library is automatically initialized
1950   if automatic initialization of Stand-alone Libraries is supported on the
1951   platform and if attribute @b{Library_Auto_Init} is not specified or
1952   is specified with the value "true". A static Stand-alone Library is never
1953   automatically initialized. Specifying "false" for this attribute
1954   prevent automatic initialization.
1955
1956   When a non-automatically initialized stand-alone library is used in an
1957   executable, its initialization procedure must be called before any service of
1958   the library is used. When the main subprogram is in Ada, it may mean that the
1959   initialization procedure has to be called during elaboration of another
1960   package.
1961
1962 @item @b{Library_Dir}:
1963 @cindex @code{Library_Dir}
1964   For a stand-alone library, only the @file{ALI} files of the interface units
1965   (those that are listed in attribute @code{Library_Interface}) are copied to
1966   the library directory. As a consequence, only the interface units may be
1967   imported from Ada units outside of the library. If other units are imported,
1968   the binding phase will fail.
1969
1970 @item @b{Binder.Default_Switches}:
1971   When a stand-alone library is bound, the switches that are specified in
1972   the attribute @b{Binder.Default_Switches ("Ada")} are
1973   used in the call to @command{gnatbind}.
1974
1975 @item @b{Library_Src_Dir}:
1976 @cindex @code{Library_Src_Dir}
1977   This attribute defines the location (absolute or relative to the project
1978   directory) where the sources of the interface units are copied at
1979   installation time.
1980   These sources includes the specs of the interface units along with the closure
1981   of sources necessary to compile them successfully. That may include bodies and
1982   subunits, when pragmas @code{Inline} are used, or when there is a generic
1983   units in the spec. This directory cannot point to the object directory or
1984   one of the source directories, but it can point to the library directory,
1985   which is the default value for this attribute.
1986
1987 @item @b{Library_Symbol_Policy}:
1988 @cindex @code{Library_Symbol_Policy}
1989   This attribute controls the export of symbols and, on some platforms (like
1990   VMS) that have the notions of major and minor IDs built in the library
1991   files, it controls the setting of these IDs. It is not supported on all
1992   platforms (where it will just have no effect). It may have one of the
1993   following values:
1994
1995   @itemize -
1996   @item @code{"autonomous"} or @code{"default"}: exported symbols are not controlled
1997   @item @code{"compliant"}: if attribute @b{Library_Reference_Symbol_File}
1998      is not defined, then it is equivalent to policy "autonomous". If there
1999      are exported symbols in the reference symbol file that are not in the
2000      object files of the interfaces, the major ID of the library is increased.
2001      If there are symbols in the object files of the interfaces that are not
2002      in the reference symbol file, these symbols are put at the end of the list
2003      in the newly created symbol file and the minor ID is increased.
2004   @item @code{"controlled"}: the attribute @b{Library_Reference_Symbol_File} must be
2005      defined. The library will fail to build if the exported symbols in the
2006      object files of the interfaces do not match exactly the symbol in the
2007      symbol file.
2008   @item @code{"restricted"}: The attribute @b{Library_Symbol_File} must be defined.
2009      The library will fail to build if there are symbols in the symbol file that
2010      are not in the exported symbols of the object files of the interfaces.
2011      Additional symbols in the object files are not added to the symbol file.
2012   @item @code{"direct"}: The attribute @b{Library_Symbol_File} must be defined and
2013      must designate an existing file in the object directory. This symbol file
2014      is passed directly to the underlying linker without any symbol processing.
2015
2016   @end itemize
2017
2018 @item @b{Library_Reference_Symbol_File}
2019 @cindex @code{Library_Reference_Symbol_File}
2020   This attribute may define the path name of a reference symbol file that is
2021   read when the symbol policy is either "compliant" or "controlled", on
2022   platforms that support symbol control, such as VMS, when building a
2023   stand-alone library. The path may be an absolute path or a path relative
2024   to the project directory.
2025
2026 @item @b{Library_Symbol_File}
2027 @cindex @code{Library_Symbol_File}
2028   This attribute may define the name of the symbol file to be created when
2029   building a stand-alone library when the symbol policy is either "compliant",
2030   "controlled" or "restricted", on platforms that support symbol control,
2031   such as VMS. When symbol policy is "direct", then a file with this name
2032   must exist in the object directory.
2033 @end table
2034
2035 @c ---------------------------------------------
2036 @node Installing a library with project files
2037 @subsection Installing a library with project files
2038 @c ---------------------------------------------
2039
2040 @noindent
2041 When using project files, a usable version of the library is created in the
2042 directory specified by the @code{Library_Dir} attribute of the library
2043 project file. Thus no further action is needed in order to make use of
2044 the libraries that are built as part of the general application build.
2045
2046 You may want to install a library in a context different from where the library
2047 is built. This situation arises with third party suppliers, who may want
2048 to distribute a library in binary form where the user is not expected to be
2049 able to recompile the library. The simplest option in this case is to provide
2050 a project file slightly different from the one used to build the library, by
2051 using the @code{externally_built} attribute. @ref{Using Library Projects}
2052
2053 Another option is to use @command{gprinstall} to install the library in a
2054 different context than the build location. A project to use this library is
2055 generated automatically by @command{gprinstall} which also copy, in the install
2056 location, the minimum set of sources needed to use the library.
2057 @ref{Installation}
2058
2059 @c ---------------------------------------------
2060 @node Project Extension
2061 @section Project Extension
2062 @c ---------------------------------------------
2063
2064 @noindent
2065 During development of a large system, it is sometimes necessary to use
2066 modified versions of some of the source files, without changing the original
2067 sources. This can be achieved through the @b{project extension} facility.
2068
2069 Suppose for instance that our example @code{Build} project is built every night
2070 for the whole team, in some shared directory. A developer usually need to work
2071 on a small part of the system, and might not want to have a copy of all the
2072 sources and all the object files (mostly because that would require too much
2073 disk space, time to recompile everything). He prefers to be able to override
2074 some of the source files in his directory, while taking advantage of all the
2075 object files generated at night.
2076
2077 Another example can be taken from large software systems, where it is common to have
2078 multiple implementations of a common interface; in Ada terms, multiple
2079 versions of a package body for the same spec.  For example, one implementation
2080 might be safe for use in tasking programs, while another might only be used
2081 in sequential applications.  This can be modeled in GNAT using the concept
2082 of @emph{project extension}.  If one project (the ``child'') @emph{extends}
2083 another project (the ``parent'') then by default all source files of the
2084 parent project are inherited by the child, but the child project can
2085 override any of the parent's source files with new versions, and can also
2086 add new files or remove unnecessary ones.
2087 This facility is the project analog of a type extension in
2088 object-oriented programming.  Project hierarchies are permitted (an extending
2089 project may itself be extended), and a project that
2090 extends a project can also import other projects.
2091
2092 A third example is that of using project extensions to provide different
2093 versions of the same system. For instance, assume that a @code{Common}
2094 project is used by two development branches. One of the branches has now
2095 been frozen, and no further change can be done to it or to @code{Common}.
2096 However, the other development branch still needs evolution of @code{Common}.
2097 Project extensions provide a flexible solution to create a new version
2098 of a subsystem while sharing and reusing as much as possible from the original
2099 one.
2100
2101 A project extension inherits implicitly all the sources and objects from the
2102 project it extends. It is possible to create a new version of some of the
2103 sources in one of the additional source dirs of the extending project. Those new
2104 versions hide the original versions. Adding new sources or removing existing
2105 ones is also possible. Here is an example on how to extend the project
2106 @code{Build} from previous examples:
2107
2108 @smallexample @c projectfile
2109    project Work extends "../bld/build.gpr" is
2110    end Work;
2111 @end smallexample
2112
2113 @noindent
2114 The project after @b{extends} is the one being extended. As usual, it can be
2115 specified using an absolute path, or a path relative to any of the directories
2116 in the project path (@pxref{Project Dependencies}). This project does not
2117 specify source or object directories, so the default value for these attribute
2118 will be used that is to say the current directory (where project @code{Work} is
2119 placed). We can already compile that project with
2120
2121 @smallexample
2122    gnatmake -Pwork
2123 @end smallexample
2124
2125 @noindent
2126 If no sources have been placed in the current directory, this command
2127 won't do anything, since this project does not change the
2128 sources it inherited from @code{Build}, therefore all the object files
2129 in @code{Build} and its dependencies are still valid and are reused
2130 automatically.
2131
2132 Suppose we now want to supply an alternate version of @file{pack.adb}
2133 but use the existing versions of @file{pack.ads} and @file{proc.adb}.
2134 We can create the new file Work's current directory  (likely
2135 by copying the one from the @code{Build} project and making changes to
2136 it. If new packages are needed at the same time, we simply create
2137 new files in the source directory of the extending project.
2138
2139 When we recompile, @command{gnatmake} will now automatically recompile
2140 this file (thus creating @file{pack.o} in the current directory) and
2141 any file that depends on it (thus creating @file{proc.o}). Finally, the
2142 executable is also linked locally.
2143
2144 Note that we could have obtained the desired behavior using project import
2145 rather than project inheritance. A @code{base} project would contain the
2146 sources for @file{pack.ads} and @file{proc.adb}, and @code{Work} would
2147 import @code{base} and add @file{pack.adb}. In this scenario,  @code{base}
2148 cannot contain the original version of @file{pack.adb} otherwise there would be
2149 2 versions of the same unit in the closure of the project and this is not
2150 allowed. Generally speaking, it is not recommended to put the spec and the
2151 body of a unit in different projects since this affects their autonomy and
2152 reusability.
2153
2154 In a project file that extends another project, it is possible to
2155 indicate that an inherited source is @b{not part} of the sources of the
2156 extending project. This is necessary sometimes when a package spec has
2157 been overridden and no longer requires a body: in this case, it is
2158 necessary to indicate that the inherited body is not part of the sources
2159 of the project, otherwise there will be a compilation error
2160 when compiling the spec.
2161
2162 @cindex @code{Excluded_Source_Files}
2163 @cindex @code{Excluded_Source_List_File}
2164 For that purpose, the attribute @b{Excluded_Source_Files} is used.
2165 Its value is a list of file names.
2166 It is also possible to use attribute @code{Excluded_Source_List_File}.
2167 Its value is the path of a text file containing one file name per
2168 line.
2169
2170 @smallexample @c @projectfile
2171 project Work extends "../bld/build.gpr" is
2172    for Source_Files use ("pack.ads");
2173    --  New spec of Pkg does not need a completion
2174    for Excluded_Source_Files use ("pack.adb");
2175 end Work;
2176 @end smallexample
2177
2178 @noindent
2179 All packages that are not declared in the extending project are inherited from
2180 the project being extended, with their attributes, with the exception of
2181 @code{Linker'Linker_Options} which is never inherited. In particular, an
2182 extending project retains all the switches specified in the project being
2183 extended.
2184
2185 At the project level, if they are not declared in the extending project, some
2186 attributes are inherited from the project being extended. They are:
2187 @code{Languages}, @code{Main} (for a root non library project) and
2188 @code{Library_Name} (for a project extending a library project)
2189
2190 @menu
2191 * Project Hierarchy Extension::
2192 @end menu
2193
2194 @c ---------------------------------------------
2195 @node Project Hierarchy Extension
2196 @subsection Project Hierarchy Extension
2197 @c ---------------------------------------------
2198
2199 @noindent
2200 One of the fundamental restrictions in project extension is the following:
2201 @b{A project is not allowed to import directly or indirectly at the same time an
2202 extending project and one of its ancestors}.
2203
2204 By means of example, consider the following hierarchy of projects.
2205
2206 @smallexample
2207    a.gpr  contains package A1
2208    b.gpr, imports a.gpr and contains B1, which depends on A1
2209    c.gpr, imports b.gpr and contains C1, which depends on B1
2210 @end smallexample
2211
2212 @noindent
2213 If we want to locally extend the packages @code{A1} and @code{C1}, we need to
2214 create several extending projects:
2215
2216 @smallexample
2217    a_ext.gpr which extends a.gpr, and overrides A1
2218    b_ext.gpr which extends b.gpr and imports a_ext.gpr
2219    c_ext.gpr which extends c.gpr, imports b_ext.gpr and overrides C1
2220 @end smallexample
2221
2222 @noindent
2223 @smallexample @c projectfile
2224    project A_Ext extends "a.gpr" is
2225       for Source_Files use ("a1.adb", "a1.ads");
2226    end A_Ext;
2227
2228    with "a_ext.gpr";
2229    project B_Ext extends "b.gpr" is
2230    end B_Ext;
2231
2232    with "b_ext.gpr";
2233    project C_Ext extends "c.gpr" is
2234       for Source_Files use ("c1.adb");
2235    end C_Ext;
2236 @end smallexample
2237
2238 @noindent
2239 The extension @file{b_ext.gpr} is required, even though we are not overriding
2240 any of the sources of @file{b.gpr} because otherwise @file{c_expr.gpr} would
2241 import @file{b.gpr} which itself knows nothing about @file{a_ext.gpr}.
2242
2243 @cindex extends all
2244 When extending a large system spanning multiple projects, it is often
2245 inconvenient to extend every project in the hierarchy that is impacted by a
2246 small change introduced in a low layer. In such cases, it is possible to create
2247 an @b{implicit extension} of entire hierarchy using @b{extends all}
2248 relationship.
2249
2250 When the project is extended using @code{extends all} inheritance, all projects
2251 that are imported by it, both directly and indirectly, are considered virtually
2252 extended. That is, the project manager creates implicit projects
2253 that extend every project in the hierarchy; all these implicit projects do not
2254 control sources on their own and use the object directory of
2255 the "extending all" project.
2256
2257 It is possible to explicitly extend one or more projects in the hierarchy
2258 in order to modify the sources. These extending projects must be imported by
2259 the "extending all" project, which will replace the corresponding virtual
2260 projects with the explicit ones.
2261
2262 When building such a project hierarchy extension, the project manager will
2263 ensure that both modified sources and sources in implicit extending projects
2264 that depend on them, are recompiled.
2265
2266 Thus, in our example we could create the following projects instead:
2267
2268 @smallexample
2269    a_ext.gpr, extends a.gpr and overrides A1
2270    c_ext.gpr, "extends all" c.gpr, imports a_ext.gpr and overrides C1
2271
2272 @end smallexample
2273
2274 @noindent
2275 @smallexample @c projectfile
2276    project A_Ext extends "a.gpr" is
2277       for Source_Files use ("a1.adb", "a1.ads");
2278    end A_Ext;
2279
2280    with "a_ext.gpr";
2281    project C_Ext extends all "c.gpr" is
2282      for Source_Files use ("c1.adb");
2283    end C_Ext;
2284 @end smallexample
2285
2286 @noindent
2287 When building project @file{c_ext.gpr}, the entire modified project space is
2288 considered for recompilation, including the sources of @file{b.gpr} that are
2289 impacted by the changes in @code{A1} and @code{C1}.
2290
2291 @c ---------------------------------------------
2292 @node Aggregate Projects
2293 @section Aggregate Projects
2294 @c ---------------------------------------------
2295
2296 @noindent
2297
2298 Aggregate projects are an extension of the project paradigm, and are
2299 meant to solve a few specific use cases that cannot be solved directly
2300 using standard projects. This section will go over a few of these use
2301 cases to try to explain what you can use aggregate projects for.
2302
2303 @menu
2304 * Building all main programs from a single project tree::
2305 * Building a set of projects with a single command::
2306 * Define a build environment::
2307 * Performance improvements in builder::
2308 * Syntax of aggregate projects::
2309 * package Builder in aggregate projects::
2310 @end menu
2311
2312 @c -----------------------------------------------------------
2313 @node Building all main programs from a single project tree
2314 @subsection Building all main programs from a single project tree
2315 @c -----------------------------------------------------------
2316
2317 Most often, an application is organized into modules and submodules,
2318 which are very conveniently represented as a project tree or graph
2319 (the root project A @code{with}s the projects for each modules (say B and C),
2320 which in turn @code{with} projects for submodules.
2321
2322 Very often, modules will build their own executables (for testing
2323 purposes for instance), or libraries (for easier reuse in various
2324 contexts).
2325
2326 However, if you build your project through @command{gnatmake} or
2327 @command{gprbuild}, using a syntax similar to
2328
2329 @smallexample
2330    gprbuild -PA.gpr
2331 @end smallexample
2332
2333 this will only rebuild the main programs of project A, not those of the
2334 imported projects B and C. Therefore you have to spawn several
2335 @command{gnatmake} commands, one per project, to build all executables.
2336 This is a little inconvenient, but more importantly is inefficient
2337 because @command{gnatmake} needs to do duplicate work to ensure that sources are
2338 up-to-date, and cannot easily compile things in parallel when using
2339 the -j switch.
2340
2341 Also libraries are always rebuilt when building a project.
2342
2343 You could therefore define an aggregate project Agg that groups A, B
2344 and C. Then, when you build with
2345
2346 @smallexample
2347     gprbuild -PAgg.gpr
2348 @end smallexample
2349
2350 this will build all mains from A, B and C.
2351
2352 @smallexample @c projectfile
2353    aggregate project Agg is
2354       for Project_Files use ("a.gpr", "b.gpr", "c.gpr");
2355    end Agg;
2356 @end smallexample
2357
2358 If B or C do not define any main program (through their Main
2359 attribute), all their sources are built. When you do not group them
2360 in the aggregate project, only those sources that are needed by A
2361 will be built.
2362
2363 If you add a main to a project P not already explicitly referenced in the
2364 aggregate project, you will need to add "p.gpr" in the list of project
2365 files for the aggregate project, or the main will not be built when
2366 building the aggregate project.
2367
2368 @c ---------------------------------------------------------
2369 @node Building a set of projects with a single command
2370 @subsection Building a set of projects with a single command
2371 @c ---------------------------------------------------------
2372
2373 One other case is when you have multiple applications and libraries
2374 that are built independently from each other (but can be built in
2375 parallel). For instance, you have a project tree rooted at A, and
2376 another one (which might share some subprojects) rooted at B.
2377
2378 Using only @command{gprbuild}, you could do
2379
2380 @smallexample
2381   gprbuild -PA.gpr
2382   gprbuild -PB.gpr
2383 @end smallexample
2384
2385 to build both. But again, @command{gprbuild} has to do some duplicate work for
2386 those files that are shared between the two, and cannot truly build
2387 things in parallel efficiently.
2388
2389 If the two projects are really independent, share no sources other
2390 than through a common subproject, and have no source files with a
2391 common basename, you could create a project C that imports A and
2392 B. But these restrictions are often too strong, and one has to build
2393 them independently. An aggregate project does not have these
2394 limitations and can aggregate two project trees that have common
2395 sources.
2396
2397 This scenario is particularly useful in environments like VxWorks 653
2398 where the applications running in the multiple partitions can be built
2399 in parallel through a single @command{gprbuild} command. This also works nicely
2400 with Annex E.
2401
2402 @c ---------------------------------------------
2403 @node Define a build environment
2404 @subsection Define a build environment
2405 @c ---------------------------------------------
2406
2407 The environment variables at the time you launch @command{gprbuild} or
2408 @command{gnatmake} will influence the view these tools have of the project
2409 (PATH to find the compiler, ADA_PROJECT_PATH or GPR_PROJECT_PATH to find the
2410 projects, environment variables that are referenced in project files
2411 through the "external" statement,...). Several command line switches
2412 can be used to override those (-X or -aP), but on some systems and
2413 with some projects, this might make the command line too long, and on
2414 all systems often make it hard to read.
2415
2416 An aggregate project can be used to set the environment for all
2417 projects built through that aggregate. One of the nice aspects is that
2418 you can put the aggregate project under configuration management, and
2419 make sure all your user have a consistent environment when
2420 building. The syntax looks like
2421
2422 @smallexample @c projectfile
2423    aggregate project Agg is
2424       for Project_Files use ("A.gpr", "B.gpr");
2425       for Project_Path use ("../dir1", "../dir1/dir2");
2426       for External ("BUILD") use "PRODUCTION";
2427
2428       package Builder is
2429          for ^Switches^Switches^ ("Ada") use ("-q");
2430       end Builder;
2431    end Agg;
2432 @end smallexample
2433
2434 One of the often requested features in projects is to be able to
2435 reference external variables in @code{with} statements, as in
2436
2437 @smallexample @c projectfile
2438   with external("SETUP") & "path/prj.gpr";   --  ILLEGAL
2439   project MyProject is
2440      ...
2441   end MyProject;
2442 @end smallexample
2443
2444 For various reasons, this isn't authorized. But using aggregate
2445 projects provide an elegant solution. For instance, you could
2446 use a project file like:
2447
2448 @smallexample @c projectfile
2449 aggregate project Agg is
2450     for Project_Path use (external("SETUP") % "path");
2451     for Project_Files use ("myproject.gpr");
2452 end Agg;
2453
2454 with "prj.gpr";  --  searched on Agg'Project_Path
2455 project MyProject is
2456    ...
2457 end MyProject;
2458 @end smallexample
2459
2460 @c --------------------------------------------
2461 @node Performance improvements in builder
2462 @subsection Performance improvements in builder
2463 @c --------------------------------------------
2464
2465 The loading of aggregate projects is optimized in @command{gprbuild} and
2466 @command{gnatmake}, so that all files are searched for only once on the disk
2467 (thus reducing the number of system calls and contributing to faster
2468 compilation times especially on systems with sources on remote
2469 servers). As part of the loading, @command{gprbuild} and @command{gnatmake}
2470 compute how and where a source file should be compiled, and even if it is found
2471 several times in the aggregated projects it will be compiled only
2472 once.
2473
2474 Since there is no ambiguity as to which switches should be used, files
2475 can be compiled in parallel (through the usual -j switch) and this can
2476 be done while maximizing the use of CPUs (compared to launching
2477 multiple @command{gprbuild} and @command{gnatmake} commands in parallel).
2478
2479 @c -------------------------------------
2480 @node Syntax of aggregate projects
2481 @subsection Syntax of aggregate projects
2482 @c -------------------------------------
2483
2484 An aggregate project follows the general syntax of project files. The
2485 recommended extension is still @file{.gpr}. However, a special
2486 @code{aggregate} qualifier must be put before the keyword
2487 @code{project}.
2488
2489 An aggregate project cannot @code{with} any other project (standard or
2490 aggregate), except an abstract project which can be used to share
2491 attribute values. Building other aggregate projects from an aggregate
2492 project is done through the Project_Files attribute (see below).
2493
2494 An aggregate project does not have any source files directly (only
2495 through other standard projects). Therefore a number of the standard
2496 attributes and packages are forbidden in an aggregate project. Here is the
2497 (non exhaustive) list:
2498
2499 @itemize @bullet
2500 @item Languages
2501 @item Source_Files, Source_List_File and other attributes dealing with
2502   list of sources.
2503 @item Source_Dirs, Exec_Dir and Object_Dir
2504 @item Library_Dir, Library_Name and other library-related attributes
2505 @item Main
2506 @item Roots
2507 @item Externally_Built
2508 @item Inherit_Source_Path
2509 @item Excluded_Source_Dirs
2510 @item Locally_Removed_Files
2511 @item Excluded_Source_Files
2512 @item Excluded_Source_List_File
2513 @item Interfaces
2514 @end itemize
2515
2516 The only package that is authorized (albeit optional) is
2517 Builder. Other packages (in particular Compiler, Binder and Linker)
2518 are forbidden. It is an error to have any of these
2519 (and such an error prevents the proper loading of the aggregate
2520 project).
2521
2522 Three new attributes have been created, which can only be used in the
2523 context of aggregate projects:
2524
2525 @table @asis
2526 @item @b{Project_Files}:
2527 @cindex @code{Project_Files}
2528
2529 This attribute is compulsory (or else we are not aggregating any project,
2530 and thus not doing anything). It specifies a list of @file{.gpr} files
2531 that are grouped in the aggregate. The list may be empty. The project
2532 files can be either other aggregate projects, or standard projects. When
2533 grouping standard projects, you can have both the root of a project tree
2534 (and you do not need to specify all its imported projects), and any project
2535 within the tree.
2536
2537 Basically, the idea is to specify all those projects that have
2538 main programs you want to build and link, or libraries you want to
2539 build. You can even specify projects that do not use the Main
2540 attribute nor the @code{Library_*} attributes, and the result will be to
2541 build all their source files (not just the ones needed by other
2542 projects).
2543
2544 The file can include paths (absolute or relative). Paths are
2545 relative to the location of the aggregate project file itself (if
2546 you use a base name, we expect to find the .gpr file in the same
2547 directory as the aggregate project file). The extension @file{.gpr} is
2548 mandatory, since this attribute contains file names, not project names.
2549
2550 Paths can also include the @code{"*"} and @code{"**"} globbing patterns. The
2551 latter indicates that any subdirectory (recursively) will be
2552 searched for matching files. The latter (@code{"**"}) can only occur at the
2553 last position in the directory part (ie @code{"a/**/*.gpr"} is supported, but
2554 not @code{"**/a/*.gpr"}). Starting the pattern with @code{"**"} is equivalent
2555 to starting with @code{"./**"}.
2556
2557 For now, the pattern @code{"*"} is only allowed in the filename part, not
2558 in the directory part. This is mostly for efficiency reasons to limit the
2559 number of system calls that are needed.
2560
2561 Here are a few valid examples:
2562
2563 @smallexample @c projectfile
2564     for Project_Files use ("a.gpr", "subdir/b.gpr");
2565     --  two specific projects relative to the directory of agg.gpr
2566
2567     for Project_Files use ("**/*.gpr");
2568     --  all projects recursively
2569 @end smallexample
2570
2571 @item @b{Project_Path}:
2572 @cindex @code{Project_Path}
2573
2574 This attribute can be used to specify a list of directories in
2575 which to look for project files in @code{with} statements.
2576
2577 When you specify a project in Project_Files
2578 say @code{"x/y/a.gpr"}), and this projects imports a project "b.gpr", only
2579 b.gpr is searched in the project path. a.gpr must be exactly at
2580 <dir of the aggregate>/x/y/a.gpr.
2581
2582 This attribute, however, does not affect the search for the aggregated
2583 project files specified with @code{Project_Files}.
2584
2585 Each aggregate project has its own (that is if agg1.gpr includes
2586 agg2.gpr, they can potentially both have a different project path).
2587
2588 This project path is defined as the concatenation, in that order, of:
2589
2590 @itemize @bullet
2591 @item the current directory;
2592 @item followed by the command line -aP switches;
2593 @item then the directories from the GPR_PROJECT_PATH and ADA_PROJECT_PATH environment
2594 variables;
2595 @item then the directories from the Project_Path attribute;
2596 @item and finally the predefined directories.
2597 @end itemize
2598
2599 In the example above, agg2.gpr's project path is not influenced by
2600 the attribute agg1'Project_Path, nor is agg1 influenced by
2601 agg2'Project_Path.
2602
2603 This can potentially lead to errors. In the following example:
2604
2605 @smallexample
2606      +---------------+                  +----------------+
2607      | Agg1.gpr      |-=--includes--=-->| Agg2.gpr       |
2608      |  'project_path|                  |  'project_path |
2609      |               |                  |                |
2610      +---------------+                  +----------------+
2611            :                                   :
2612            includes                        includes
2613            :                                   :
2614            v                                   v
2615        +-------+                          +---------+
2616        | P.gpr |<---------- withs --------|  Q.gpr  |
2617        +-------+---------\                +---------+
2618            |             |
2619            withs         |
2620            |             |
2621            v             v
2622        +-------+      +---------+
2623        | R.gpr |      | R'.gpr  |
2624        +-------+      +---------+
2625 @end smallexample
2626
2627 When looking for p.gpr, both aggregates find the same physical file on
2628 the disk. However, it might happen that with their different project
2629 paths, both aggregate projects would in fact find a different r.gpr.
2630 Since we have a common project (p.gpr) "with"ing two different r.gpr,
2631 this will be reported as an error by the builder.
2632
2633 Directories are relative to the location of the aggregate project file.
2634
2635 Here are a few valid examples:
2636
2637 @smallexample @c projectfile
2638    for Project_Path use ("/usr/local/gpr", "gpr/");
2639 @end smallexample
2640
2641 @item @b{External}:
2642 @cindex @code{External}
2643
2644 This attribute can be used to set the value of environment
2645 variables as retrieved through the @code{external} statement
2646 in projects. It does not affect the environment variables
2647 themselves (so for instance you cannot use it to change the value
2648 of your PATH as seen from the spawned compiler).
2649
2650 This attribute affects the external values as seen in the rest of
2651 the aggreate projects, and in the aggregated projects.
2652
2653 The exact value of external a variable comes from one of three
2654 sources (each level overrides the previous levels):
2655
2656 @itemize @bullet
2657 @item An External attribute in aggregate project, for instance
2658     @code{for External ("BUILD_MODE") use "DEBUG"};
2659
2660 @item Environment variables
2661
2662 These override the value given by the attribute, so that
2663 users can override the value set in the (presumably shared
2664 with others in his team) aggregate project.
2665
2666 @item The -X command line switch to @command{gprbuild} and @command{gnatmake}
2667
2668 This always takes precedence.
2669
2670 @end itemize
2671
2672 This attribute is only taken into account in the main aggregate
2673 project (i.e. the one specified on the command line to @command{gprbuild} or
2674 @command{gnatmake}), and ignored in other aggregate projects. It is invalid
2675 in standard projects.
2676 The goal is to have a consistent value in all
2677 projects that are built through the aggregate, which would not
2678 be the case in the diamond case: A groups the aggregate
2679 projects B and C, which both (either directly or indirectly)
2680 build the project P. If B and C could set different values for
2681 the environment variables, we would have two different views of
2682 P, which in particular might impact the list of source files in P.
2683
2684 @end table
2685
2686 @c ----------------------------------------------
2687 @node package Builder in aggregate projects
2688 @subsection package Builder in aggregate projects
2689 @c ----------------------------------------------
2690
2691 As we mentioned before, only the package Builder can be specified in
2692 an aggregate project. In this package, only the following attributes
2693 are valid:
2694
2695 @table @asis
2696 @item @b{^Switches^Switches^}:
2697 @cindex @code{^Switches^Switches^}
2698 This attribute gives the list of switches to use for the builder
2699 (@command{gprbuild} or @command{gnatmake}), depending on the language of the
2700 main file. For instance,
2701
2702 @smallexample @c projectfile
2703 for ^Switches^Switches^ ("Ada") use ("-d", "-p");
2704 for ^Switches^Switches^ ("C")   use ("-p");
2705 @end smallexample
2706
2707 These switches are only read from the main aggregate project (the
2708 one passed on the command line), and ignored in all other aggregate
2709 projects or projects.
2710
2711 It can only contain builder switches, not compiler switches.
2712
2713 @item @b{Global_Compilation_Switches}
2714 @cindex @code{Global_Compilation_Switches}
2715
2716 This attribute gives the list of compiler switches for the various
2717 languages. For instance,
2718
2719 @smallexample @c projectfile
2720 for Global_Compilation_Switches ("Ada") use ("^O1^-O1^", "-g");
2721 for Global_Compilation_Switches ("C")   use ("^-O2^-O2^");
2722 @end smallexample
2723
2724 This attribute is only taken into account in the aggregate project
2725 specified on the command line, not in other aggregate projects.
2726
2727 In the projects grouped by that aggregate, the attribute
2728 Builder.Global_Compilation_Switches is also ignored. However, the
2729 attribute Compiler.Default_Switches will be taken into account (but
2730 that of the aggregate have higher priority). The attribute
2731 Compiler.Switches is also taken into account and can be used to
2732 override the switches for a specific file. As a result, it always
2733 has priority.
2734
2735 The rules are meant to avoid ambiguities when compiling. For
2736 instance, aggregate project Agg groups the projects A and B, that
2737 both depend on C. Here is an extra for all of these projects:
2738
2739 @smallexample @c projectfile
2740       aggregate project Agg is
2741           for Project_Files use ("a.gpr", "b.gpr");
2742           package Builder is
2743              for Global_Compilation_Switches ("Ada") use ("^-O2^-O2^");
2744           end Builder;
2745       end Agg;
2746
2747       with "c.gpr";
2748       project A is
2749           package Builder is
2750              for Global_Compilation_Switches ("Ada") use ("^-O1^-O1^");
2751              --  ignored
2752           end Builder;
2753
2754           package Compiler is
2755              for Default_Switches ("Ada")
2756                  use ("^-O1^-O1^", "-g");
2757              for ^Switches^Switches^ ("a_file1.adb")
2758                  use ("^-O0^-O0^");
2759           end Compiler;
2760       end A;
2761
2762       with "c.gpr";
2763       project B is
2764           package Compiler is
2765              for Default_Switches ("Ada") use ("^-O0^-O0^");
2766           end Compiler;
2767       end B;
2768
2769       project C is
2770           package Compiler is
2771              for Default_Switches ("Ada")
2772                  use ("^-O3^-O3^",
2773                       "^-gnatn^-gnatn^");
2774              for ^Switches^Switches^ ("c_file1.adb")
2775                  use ("^-O0^-O0^", "-g");
2776           end Compiler;
2777       end C;
2778 @end smallexample
2779
2780 then the following switches are used:
2781
2782 @itemize @bullet
2783 @item all files from project A except a_file1.adb are compiled
2784       with "^-O2^-O2^ -g", since the aggregate project has priority.
2785 @item the file a_file1.adb is compiled with
2786       "^-O0^-O0^", since the Compiler.Switches has priority
2787 @item all files from project B are compiled with
2788       "^-O2^-O2^", since the aggregate project has priority
2789 @item all files from C are compiled with "^-O2^-O2^ -gnatn", except for
2790       c_file1.adb which is compiled with "^-O0^-O0^ -g"
2791 @end itemize
2792
2793 Even though C is seen through two paths (through A and through
2794 B), the switches used by the compiler are unambiguous.
2795
2796 @item @b{Global_Configuration_Pragmas}
2797 @cindex @code{Global_Configuration_Pragmas}
2798
2799 This attribute can be used to specify a file containing
2800 configuration pragmas, to be passed to the compiler.  Since we
2801 ignore the package Builder in other aggregate projects and projects,
2802 only those pragmas defined in the main aggregate project will be
2803 taken into account.
2804
2805 Projects can locally add to those by using the
2806 @code{Compiler.Local_Configuration_Pragmas} attribute if they need.
2807
2808 @end table
2809
2810 For projects that are built through the aggregate, the package Builder
2811 is ignored, except for the Executable attribute which specifies the
2812 name of the executables resulting from the link of the main programs, and
2813 for the Executable_Suffix.
2814
2815 @c ---------------------------------------------
2816 @node Aggregate Library Projects
2817 @section Aggregate Library Projects
2818 @c ---------------------------------------------
2819
2820 @noindent
2821
2822 Aggregate library projects make it possible to build a single library
2823 using object files built using other standard or library
2824 projects. This gives the flexibility to describe an application as
2825 having multiple modules (a GUI, database access, ...) using different
2826 project files (so possibly built with different compiler options) and
2827 yet create a single library (static or relocatable) out of the
2828 corresponding object files.
2829
2830 @menu
2831 * Building aggregate library projects::
2832 * Syntax of aggregate library projects::
2833 @end menu
2834
2835 @c ---------------------------------------------
2836 @node Building aggregate library projects
2837 @subsection Building aggregate library projects
2838 @c ---------------------------------------------
2839
2840 For example, we can define an aggregate project Agg that groups A, B
2841 and C:
2842
2843 @smallexample @c projectfile
2844    aggregate library project Agg is
2845       for Project_Files use ("a.gpr", "b.gpr", "c.gpr");
2846       for Library_Name use ("agg");
2847       for Library_Dir use ("lagg");
2848    end Agg;
2849 @end smallexample
2850
2851 Then, when you build with:
2852
2853 @smallexample
2854     gprbuild agg.gpr
2855 @end smallexample
2856
2857 This will build all units from projects A, B and C and will create a
2858 static library named @file{libagg.a} into the @file{lagg}
2859 directory. An aggregate library project has the same set of
2860 restriction as a standard library project.
2861
2862 Note that a shared aggregate library project cannot aggregates a
2863 static library project. In platforms where a compiler option is
2864 required to create relocatable object files, a Builder package in the
2865 aggregate library project may be used:
2866
2867 @smallexample @c projectfile
2868    aggregate library project Agg is
2869       for Project_Files use ("a.gpr", "b.gpr", "c.gpr");
2870       for Library_Name use ("agg");
2871       for Library_Dir use ("lagg");
2872       for Library_Kind use "relocatable";
2873
2874       package Builder is
2875          for Global_Compilation_Switches ("Ada") use ("-fPIC");
2876       end Builder;
2877    end Agg;
2878 @end smallexample
2879
2880 With the above aggregate library Builder package, the @code{-fPIC}
2881 option will be passed to the compiler when building any source code
2882 from projects @file{a.gpr}, @file{b.gpr} and @file{c.gpr}.
2883
2884 @c ---------------------------------------------
2885 @node Syntax of aggregate library projects
2886 @subsection Syntax of aggregate library projects
2887 @c ---------------------------------------------
2888
2889 An aggregate library project follows the general syntax of project
2890 files. The recommended extension is still @file{.gpr}. However, a special
2891 @code{aggregate library} qualifier must be put before the keyword
2892 @code{project}.
2893
2894 An aggregate library project cannot @code{with} any other project
2895 (standard or aggregate), except an abstract project which can be used
2896 to share attribute values.
2897
2898 An aggregate library project does not have any source files directly (only
2899 through other standard projects). Therefore a number of the standard
2900 attributes and packages are forbidden in an aggregate library
2901 project. Here is the (non exhaustive) list:
2902
2903 @itemize @bullet
2904 @item Languages
2905 @item Source_Files, Source_List_File and other attributes dealing with
2906   list of sources.
2907 @item Source_Dirs, Exec_Dir and Object_Dir
2908 @item Main
2909 @item Roots
2910 @item Externally_Built
2911 @item Inherit_Source_Path
2912 @item Excluded_Source_Dirs
2913 @item Locally_Removed_Files
2914 @item Excluded_Source_Files
2915 @item Excluded_Source_List_File
2916 @item Interfaces
2917 @end itemize
2918
2919 The only package that is authorized (albeit optional) is Builder.
2920
2921 The Project_Files attribute (See @pxref{Aggregate Projects}) is used to
2922 described the aggregated projects whose object files have to be
2923 included into the aggregate library.
2924
2925 @c ---------------------------------------------
2926 @node Project File Reference
2927 @section Project File Reference
2928 @c ---------------------------------------------
2929
2930 @noindent
2931 This section describes the syntactic structure of project files, the various
2932 constructs that can be used. Finally, it ends with a summary of all available
2933 attributes.
2934
2935 @menu
2936 * Project Declaration::
2937 * Qualified Projects::
2938 * Declarations::
2939 * Packages::
2940 * Expressions::
2941 * External Values::
2942 * Typed String Declaration::
2943 * Variables::
2944 * Case Constructions::
2945 * Attributes::
2946 @end menu
2947
2948 @c ---------------------------------------------
2949 @node Project Declaration
2950 @subsection Project Declaration
2951 @c ---------------------------------------------
2952
2953 @noindent
2954 Project files have an Ada-like syntax. The minimal project file is:
2955
2956 @smallexample @c projectfile
2957 @group
2958 project Empty is
2959 end Empty;
2960 @end group
2961 @end smallexample
2962
2963 @noindent
2964 The identifier @code{Empty} is the name of the project.
2965 This project name must be present after the reserved
2966 word @code{end} at the end of the project file, followed by a semi-colon.
2967
2968 @b{Identifiers} (i.e.@: the user-defined names such as project or variable names)
2969 have the same syntax as Ada identifiers: they must start with a letter,
2970 and be followed by zero or more letters, digits or underscore characters;
2971 it is also illegal to have two underscores next to each other. Identifiers
2972 are always case-insensitive ("Name" is the same as "name").
2973
2974 @smallexample
2975 simple_name ::= identifier
2976 name        ::= simple_name @{ . simple_name @}
2977 @end smallexample
2978
2979 @noindent
2980 @b{Strings} are used for values of attributes or as indexes for these
2981 attributes. They are in general case sensitive, except when noted
2982 otherwise (in particular, strings representing file names will be case
2983 insensitive on some systems, so that "file.adb" and "File.adb" both
2984 represent the same file).
2985
2986 @b{Reserved words} are the same as for standard Ada 95, and cannot
2987 be used for identifiers. In particular, the following words are currently
2988 used in project files, but others could be added later on. In bold are the
2989 extra reserved words in project files: @code{all, at, case, end, for, is,
2990 limited, null, others, package, renames, type, use, when, with, @b{extends},
2991 @b{external}, @b{project}}.
2992
2993 @b{Comments} in project files have the same syntax as in Ada, two consecutive
2994 hyphens through the end of the line.
2995
2996 A project may be an @b{independent project}, entirely defined by a single
2997 project file. Any source file in an independent project depends only
2998 on the predefined library and other source files in the same project.
2999 But a project may also depend on other projects, either by importing them
3000 through @b{with clauses}, or by @b{extending} at most one other project. Both
3001 types of dependency can be used in the same project.
3002
3003 A path name denotes a project file. It can be absolute or relative.
3004 An absolute path name includes a sequence of directories, in the syntax of
3005 the host operating system, that identifies uniquely the project file in the
3006 file system. A relative path name identifies the project file, relative
3007 to the directory that contains the current project, or relative to a
3008 directory listed in the environment variables ADA_PROJECT_PATH and
3009 GPR_PROJECT_PATH. Path names are case sensitive if file names in the host
3010 operating system are case sensitive. As a special case, the directory
3011 separator can always be "/" even on Windows systems, so that project files
3012 can be made portable across architectures.
3013 The syntax of the environment variable ADA_PROJECT_PATH and
3014 GPR_PROJECT_PATH is a list of directory names separated by colons on UNIX and
3015 semicolons on Windows.
3016
3017 A given project name can appear only once in a context clause.
3018
3019 It is illegal for a project imported by a context clause to refer, directly
3020 or indirectly, to the project in which this context clause appears (the
3021 dependency graph cannot contain cycles), except when one of the with clause
3022 in the cycle is a @b{limited with}.
3023 @c ??? Need more details here
3024
3025 @smallexample @c projectfile
3026 with "other_project.gpr";
3027 project My_Project extends "extended.gpr" is
3028 end My_Project;
3029 @end smallexample
3030
3031 @noindent
3032 These dependencies form a @b{directed graph}, potentially cyclic when using
3033 @b{limited with}. The subprogram reflecting the @b{extends} relations is a
3034 tree.
3035
3036 A project's @b{immediate sources} are the source files directly defined by
3037 that project, either implicitly by residing in the project source directories,
3038 or explicitly through any of the source-related attributes.
3039 More generally, a project sources are the immediate sources of the project
3040 together with the immediate sources (unless overridden) of any
3041 project on which it depends directly or indirectly.
3042
3043 A @b{project hierarchy} can be created, where projects are children of
3044 other projects. The name of such a child project must be @code{Parent.Child},
3045 where @code{Parent} is the name of the parent project. In particular, this
3046 makes all @code{with} clauses of the parent project automatically visible
3047 in the child project.
3048
3049 @smallexample
3050 project        ::= context_clause project_declaration
3051
3052 context_clause ::= @{with_clause@}
3053 with_clause    ::= @i{with} path_name @{ , path_name @} ;
3054 path_name      ::= string_literal
3055
3056 project_declaration ::= simple_project_declaration | project_extension
3057 simple_project_declaration ::=
3058   @i{project} @i{<project_>}name @i{is}
3059     @{declarative_item@}
3060   @i{end} <project_>simple_name;
3061 @end smallexample
3062
3063 @c ---------------------------------------------
3064 @node Qualified Projects
3065 @subsection Qualified Projects
3066 @c ---------------------------------------------
3067
3068 @noindent
3069 Before the reserved @code{project}, there may be one or two @b{qualifiers}, that
3070 is identifiers or reserved words, to qualify the project.
3071 The current list of qualifiers is:
3072
3073 @table @asis
3074 @item @b{abstract}: qualifies a project with no sources. Such a
3075   project must either have no declaration of attributes @code{Source_Dirs},
3076   @code{Source_Files}, @code{Languages} or @code{Source_List_File}, or one of
3077   @code{Source_Dirs}, @code{Source_Files}, or @code{Languages} must be declared
3078   as empty. If it extends another project, the project it extends must also be a
3079   qualified abstract project.
3080 @item @b{standard}: a standard project is a non library project with sources.
3081   This is the default (implicit) qualifier.
3082 @item @b{aggregate}: a project whose sources are aggregated from other
3083 project files.
3084 @item @b{aggregate library}: a library whose sources are aggregated
3085 from other project or library project files.
3086 @item @b{library}: a library project must declare both attributes
3087   @code{Library_Name} and @code{Library_Dir}.
3088 @item @b{configuration}: a configuration project cannot be in a project tree.
3089   It describes compilers and other tools to @command{gprbuild}.
3090 @end table
3091
3092 @c ---------------------------------------------
3093 @node Declarations
3094 @subsection Declarations
3095 @c ---------------------------------------------
3096
3097 @noindent
3098 Declarations introduce new entities that denote types, variables, attributes,
3099 and packages. Some declarations can only appear immediately within a project
3100 declaration. Others can appear within a project or within a package.
3101
3102 @smallexample
3103 declarative_item ::= simple_declarative_item
3104   | typed_string_declaration
3105   | package_declaration
3106
3107 simple_declarative_item ::= variable_declaration
3108   | typed_variable_declaration
3109   | attribute_declaration
3110   | case_construction
3111   | empty_declaration
3112
3113 empty_declaration ::= @i{null} ;
3114 @end smallexample
3115
3116 @noindent
3117 An empty declaration is allowed anywhere a declaration is allowed. It has
3118 no effect.
3119
3120 @c ---------------------------------------------
3121 @node Packages
3122 @subsection Packages
3123 @c ---------------------------------------------
3124
3125 @noindent
3126 A project file may contain @b{packages}, that group attributes (typically
3127 all the attributes that are used by one of the GNAT tools).
3128
3129 A package with a given name may only appear once in a project file.
3130 The following packages are currently supported in project files
3131 (See @pxref{Attributes} for the list of attributes that each can contain).
3132
3133 @table @code
3134 @item Binder
3135   This package specifies characteristics useful when invoking the binder either
3136   directly via the @command{gnat} driver or when using a builder such as
3137   @command{gnatmake} or @command{gprbuild}. @xref{Main Subprograms}.
3138 @item Builder
3139   This package specifies the compilation options used when building an
3140   executable or a library for a project. Most of the options should be
3141   set in one of @code{Compiler}, @code{Binder} or @code{Linker} packages,
3142   but there are some general options that should be defined in this
3143   package. @xref{Main Subprograms}, and @pxref{Executable File Names} in
3144   particular.
3145 @item Check
3146   This package specifies the options used when calling the checking tool
3147   @command{gnatcheck} via the @command{gnat} driver. Its attribute
3148   @b{Default_Switches} has the same semantics as for the package
3149   @code{Builder}. The first string should always be @code{-rules} to specify
3150   that all the other options belong to the @code{-rules} section of the
3151   parameters to @command{gnatcheck}.
3152 @item Clean
3153   This package specifies the options used when cleaning a project or a project
3154   tree using the tools @command{gnatclean} or @command{gprclean}.
3155 @item Compiler
3156   This package specifies the compilation options used by the compiler for
3157   each languages. @xref{Tools Options in Project Files}.
3158 @item Cross_Reference
3159   This package specifies the options used when calling the library tool
3160   @command{gnatxref} via the @command{gnat} driver. Its attributes
3161   @b{Default_Switches} and @b{^Switches^Switches^} have the same semantics as for the
3162   package @code{Builder}.
3163 @item Eliminate
3164   This package specifies the options used when calling the tool
3165   @command{gnatelim} via the @command{gnat} driver. Its attributes
3166   @b{Default_Switches} and @b{^Switches^Switches^} have the same semantics as for the
3167   package @code{Builder}.
3168 @item Finder
3169   This package specifies the options used when calling the search tool
3170   @command{gnatfind} via the @command{gnat} driver. Its attributes
3171   @b{Default_Switches} and @b{^Switches^Switches^} have the same semantics as for the
3172   package @code{Builder}.
3173 @item ^Gnatls^Gnatls^
3174   This package the options to use when invoking @command{gnatls} via the
3175   @command{gnat} driver.
3176 @item ^Gnatstub^Gnatstub^
3177   This package specifies the options used when calling the tool
3178   @command{gnatstub} via the @command{gnat} driver. Its attributes
3179   @b{Default_Switches} and @b{^Switches^Switches^} have the same semantics as for the
3180   package @code{Builder}.
3181 @item IDE
3182   This package specifies the options used when starting an integrated
3183   development environment, for instance @command{GPS} or @command{Gnatbench}.
3184 @item Install
3185   This package specifies the options used when installing a project
3186   with @command{gprinstall}. @xref{Installation}.
3187 @item Linker
3188   This package specifies the options used by the linker.
3189   @xref{Main Subprograms}.
3190 @item Metrics
3191   This package specifies the options used when calling the tool
3192   @command{gnatmetric} via the @command{gnat} driver. Its attributes
3193   @b{Default_Switches} and @b{^Switches^Switches^} have the same semantics as for the
3194   package @code{Builder}.
3195 @item Naming
3196   This package specifies the naming conventions that apply
3197   to the source files in a project. In particular, these conventions are
3198   used to automatically find all source files in the source directories,
3199   or given a file name to find out its language for proper processing.
3200   @xref{Naming Schemes}.
3201 @item Pretty_Printer
3202   This package specifies the options used when calling the formatting tool
3203   @command{gnatpp} via the @command{gnat} driver. Its attributes
3204   @b{Default_Switches} and @b{^Switches^Switches^} have the same semantics as for the
3205   package @code{Builder}.
3206 @item Remote
3207   This package is used by @command{gprbuild} to describe how distributed
3208   compilation should be done.
3209 @item Stack
3210   This package specifies the options used when calling the tool
3211   @command{gnatstack} via the @command{gnat} driver. Its attributes
3212   @b{Default_Switches} and @b{^Switches^Switches^} have the same semantics as for the
3213   package @code{Builder}.
3214 @item Synchronize
3215   This package specifies the options used when calling the tool
3216   @command{gnatsync} via the @command{gnat} driver.
3217
3218 @end table
3219
3220 In its simplest form, a package may be empty:
3221
3222 @smallexample @c projectfile
3223 @group
3224 project Simple is
3225   package Builder is
3226   end Builder;
3227 end Simple;
3228 @end group
3229 @end smallexample
3230
3231 @noindent
3232 A package may contain @b{attribute declarations},
3233 @b{variable declarations} and @b{case constructions}, as will be
3234 described below.
3235
3236 When there is ambiguity between a project name and a package name,
3237 the name always designates the project. To avoid possible confusion, it is
3238 always a good idea to avoid naming a project with one of the
3239 names allowed for packages or any name that starts with @code{gnat}.
3240
3241 A package can also be defined by a @b{renaming declaration}. The new package
3242 renames a package declared in a different project file, and has the same
3243 attributes as the package it renames. The name of the renamed package
3244 must be the same as the name of the renaming package. The project must
3245 contain a package declaration with this name, and the project
3246 must appear in the context clause of the current project, or be its parent
3247 project. It is not possible to add or override attributes to the renaming
3248 project. If you need to do so, you should use an @b{extending declaration}
3249 (see below).
3250
3251 Packages that are renamed in other project files often come from project files
3252 that have no sources: they are just used as templates. Any modification in the
3253 template will be reflected automatically in all the project files that rename
3254 a package from the template. This is a very common way to share settings
3255 between projects.
3256
3257 Finally, a package can also be defined by an @b{extending declaration}. This is
3258 similar to a @b{renaming declaration}, except that it is possible to add or
3259 override attributes.
3260
3261 @smallexample
3262 package_declaration ::= package_spec | package_renaming | package_extension
3263 package_spec ::=
3264   @i{package} @i{<package_>}simple_name @i{is}
3265     @{simple_declarative_item@}
3266   @i{end} package_identifier ;
3267 package_renaming ::==
3268   @i{package} @i{<package_>}simple_name @i{renames} @i{<project_>}simple_name.package_identifier ;
3269 package_extension ::==
3270   @i{package} @i{<package_>}simple_name @i{extends} @i{<project_>}simple_name.package_identifier @i{is}
3271     @{simple_declarative_item@}
3272   @i{end} package_identifier ;
3273 @end smallexample
3274
3275 @c ---------------------------------------------
3276 @node Expressions
3277 @subsection Expressions
3278 @c ---------------------------------------------
3279
3280 @noindent
3281 An expression is any value that can be assigned to an attribute or a
3282 variable. It is either a literal value, or a construct requiring runtime
3283 computation by the project manager. In a project file, the computed value of
3284 an expression is either a string or a list of strings.
3285
3286 A string value is one of:
3287 @itemize @bullet
3288 @item A literal string, for instance @code{"comm/my_proj.gpr"}
3289 @item The name of a variable that evaluates to a string (@pxref{Variables})
3290 @item The name of an attribute that evaluates to a string (@pxref{Attributes})
3291 @item An external reference (@pxref{External Values})
3292 @item A concatenation of the above, as in @code{"prefix_" & Var}.
3293
3294 @end itemize
3295
3296 @noindent
3297 A list of strings is one of the following:
3298
3299 @itemize @bullet
3300 @item A parenthesized comma-separated list of zero or more string expressions, for
3301   instance @code{(File_Name, "gnat.adc", File_Name & ".orig")} or @code{()}.
3302 @item The name of a variable that evaluates to a list of strings
3303 @item The name of an attribute that evaluates to a list of strings
3304 @item A concatenation of a list of strings and a string (as defined above), for
3305   instance @code{("A", "B") & "C"}
3306 @item A concatenation of two lists of strings
3307
3308 @end itemize
3309
3310 @noindent
3311 The following is the grammar for expressions
3312
3313 @smallexample
3314 string_literal ::= "@{string_element@}"  --  Same as Ada
3315 string_expression ::= string_literal
3316     | @i{variable_}name
3317     | external_value
3318     | attribute_reference
3319     | ( string_expression @{ & string_expression @} )
3320 string_list  ::= ( string_expression @{ , string_expression @} )
3321    | @i{string_variable}_name
3322    | @i{string_}attribute_reference
3323 term ::= string_expression | string_list
3324 expression ::= term @{ & term @}     --  Concatenation
3325 @end smallexample
3326
3327 @noindent
3328 Concatenation involves strings and list of strings. As soon as a list of
3329 strings is involved, the result of the concatenation is a list of strings. The
3330 following Ada declarations show the existing operators:
3331
3332 @smallexample @c ada
3333   function "&" (X : String;      Y : String)      return String;
3334   function "&" (X : String_List; Y : String)      return String_List;
3335   function "&" (X : String_List; Y : String_List) return String_List;
3336 @end smallexample
3337
3338 @noindent
3339 Here are some specific examples:
3340
3341 @smallexample @c projectfile
3342 @group
3343    List := () & File_Name; --  One string in this list
3344    List2 := List & (File_Name & ".orig"); -- Two strings
3345    Big_List := List & Lists2;  --  Three strings
3346    Illegal := "gnat.adc" & List2;  --  Illegal, must start with list
3347 @end group
3348 @end smallexample
3349
3350 @c ---------------------------------------------
3351 @node External Values
3352 @subsection External Values
3353 @c ---------------------------------------------
3354
3355 @noindent
3356 An external value is an expression whose value is obtained from the command
3357 that invoked the processing of the current project file (typically a
3358 @command{gnatmake} or @command{gprbuild} command).
3359
3360 There are two kinds of external values, one that returns a single string, and
3361 one that returns a string list.
3362
3363 The syntax of a single string external value is:
3364
3365 @smallexample
3366 external_value ::= @i{external} ( string_literal [, string_literal] )
3367 @end smallexample
3368
3369 @noindent
3370 The first string_literal is the string to be used on the command line or
3371 in the environment to specify the external value. The second string_literal,
3372 if present, is the default to use if there is no specification for this
3373 external value either on the command line or in the environment.
3374
3375 Typically, the external value will either exist in the
3376 ^environment variables^logical name^
3377 or be specified on the command line through the
3378 @option{^-X^/EXTERNAL_REFERENCE=^@emph{vbl}=@emph{value}} switch. If both
3379 are specified, then the command line value is used, so that a user can more
3380 easily override the value.
3381
3382 The function @code{external} always returns a string. It is an error if the
3383 value was not found in the environment and no default was specified in the
3384 call to @code{external}.
3385
3386 An external reference may be part of a string expression or of a string
3387 list expression, and can therefore appear in a variable declaration or
3388 an attribute declaration.
3389
3390 Most of the time, this construct is used to initialize typed variables, which
3391 are then used in @b{case} statements to control the value assigned to
3392 attributes in various scenarios. Thus such variables are often called
3393 @b{scenario variables}.
3394
3395 The syntax for a string list external value is:
3396
3397 @smallexample
3398 external_value ::= @i{external_as_list} ( string_literal , string_literal )
3399 @end smallexample
3400
3401 @noindent
3402 The first string_literal is the string to be used on the command line or
3403 in the environment to specify the external value. The second string_literal is
3404 the separator between each component of the string list.
3405
3406 If the external value does not exist in the environment or on the command line,
3407 the result is an empty list. This is also the case, if the separator is an
3408 empty string or if the external value is only one separator.
3409
3410 Any separator at the beginning or at the end of the external value is
3411 discarded. Then, if there is no separator in the external value, the result is
3412 a string list with only one string. Otherwise, any string between the beginning
3413 and the first separator, between two consecutive separators and between the
3414 last separator and the end are components of the string list.
3415
3416 @smallexample
3417    @i{external_as_list} ("SWITCHES", ",")
3418 @end smallexample
3419
3420 @noindent
3421 If the external value is "^-O2^-O2^,-g",
3422 the result is ("^-O2^-O2^", "-g").
3423
3424 If the external value is ",^-O2^-O2^,-g,",
3425 the result is also ("^-O2^-O2^", "-g").
3426
3427 if the external value is "^-gnatv^-gnatv^",
3428 the result is ("^-gnatv^-gnatv^").
3429
3430 If the external value is ",,", the result is ("").
3431
3432 If the external value is ",", the result is (), the empty string list.
3433
3434 @c ---------------------------------------------
3435 @node Typed String Declaration
3436 @subsection Typed String Declaration
3437 @c ---------------------------------------------
3438
3439 @noindent
3440 A @b{type declaration} introduces a discrete set of string literals.
3441 If a string variable is declared to have this type, its value
3442 is restricted to the given set of literals. These are the only named
3443 types in project files. A string type may only be declared at the project
3444 level, not inside a package.
3445
3446 @smallexample
3447 typed_string_declaration ::=
3448   @i{type} @i{<typed_string_>}_simple_name @i{is} ( string_literal @{, string_literal@} );
3449 @end smallexample
3450
3451 @noindent
3452 The string literals in the list are case sensitive and must all be different.
3453 They may include any graphic characters allowed in Ada, including spaces.
3454 Here is an example of a string type declaration:
3455
3456 @smallexample @c projectfile
3457    type OS is ("NT", "nt", "Unix", "GNU/Linux", "other OS");
3458 @end smallexample
3459
3460 @noindent
3461 Variables of a string type are called @b{typed variables}; all other
3462 variables are called @b{untyped variables}. Typed variables are
3463 particularly useful in @code{case} constructions, to support conditional
3464 attribute declarations. (@pxref{Case Constructions}).
3465
3466 A string type may be referenced by its name if it has been declared in the same
3467 project file, or by an expanded name whose prefix is the name of the project
3468 in which it is declared.
3469
3470 @c ---------------------------------------------
3471 @node Variables
3472 @subsection Variables
3473 @c ---------------------------------------------
3474
3475 @noindent
3476 @b{Variables} store values (strings or list of strings) and can appear
3477 as part of an expression. The declaration of a variable creates the
3478 variable and assigns the value of the expression to it. The name of the
3479 variable is available immediately after the assignment symbol, if you
3480 need to reuse its old value to compute the new value. Before the completion
3481 of its first declaration, the value of a variable defaults to the empty
3482 string ("").
3483
3484 A @b{typed} variable can be used as part of a @b{case} expression to
3485 compute the value, but it can only be declared once in the project file,
3486 so that all case constructions see the same value for the variable. This
3487 provides more consistency and makes the project easier to understand.
3488 The syntax for its declaration is identical to the Ada syntax for an
3489 object declaration. In effect, a typed variable acts as a constant.
3490
3491 An @b{untyped} variable can be declared and overridden multiple times
3492 within the same project. It is declared implicitly through an Ada
3493 assignment. The first declaration establishes the kind of the variable
3494 (string or list of strings) and successive declarations must respect
3495 the initial kind. Assignments are executed in the order in which they
3496 appear, so the new value replaces the old one and any subsequent reference
3497 to the variable uses the new value.
3498
3499 A variable may be declared at the project file level, or within a package.
3500
3501 @smallexample
3502 typed_variable_declaration ::=
3503   @i{<typed_variable_>}simple_name : @i{<typed_string_>}name := string_expression;
3504 variable_declaration ::= @i{<variable_>}simple_name := expression;
3505 @end smallexample
3506
3507 @noindent
3508 Here are some examples of variable declarations:
3509
3510 @smallexample @c projectfile
3511 @group
3512    This_OS : OS := external ("OS"); --  a typed variable declaration
3513    That_OS := "GNU/Linux";          --  an untyped variable declaration
3514
3515    Name      := "readme.txt";
3516    Save_Name := Name & ".saved";
3517
3518    Empty_List := ();
3519    List_With_One_Element := ("-gnaty");
3520    List_With_Two_Elements := List_With_One_Element & "-gnatg";
3521    Long_List := ("main.ada", "pack1_.ada", "pack1.ada", "pack2_.ada");
3522 @end group
3523 @end smallexample
3524
3525 @noindent
3526 A @b{variable reference} may take several forms:
3527
3528 @itemize @bullet
3529 @item The simple variable name, for a variable in the current package (if any)
3530   or in the current project
3531 @item An expanded name, whose prefix is a context name.
3532
3533 @end itemize
3534
3535 @noindent
3536 A @b{context} may be one of the following:
3537
3538 @itemize @bullet
3539 @item The name of an existing package in the current project
3540 @item The name of an imported project of the current project
3541 @item The name of an ancestor project (i.e., a project extended by the current
3542   project, either directly or indirectly)
3543 @item An expanded name whose prefix is an imported/parent project name, and
3544   whose selector is a package name in that project.
3545 @end itemize
3546
3547 @c ---------------------------------------------
3548 @node Case Constructions
3549 @subsection Case Constructions
3550 @c ---------------------------------------------
3551
3552 @noindent
3553 A @b{case} statement is used in a project file to effect conditional
3554 behavior. Through this statement, you can set the value of attributes
3555 and variables depending on the value previously assigned to a typed
3556 variable.
3557
3558 All choices in a choice list must be distinct. Unlike Ada, the choice
3559 lists of all alternatives do not need to include all values of the type.
3560 An @code{others} choice must appear last in the list of alternatives.
3561
3562 The syntax of a @code{case} construction is based on the Ada case statement
3563 (although the @code{null} statement for empty alternatives is optional).
3564
3565 The case expression must be a typed string variable, whose value is often
3566 given by an external reference (@pxref{External Values}).
3567
3568 Each alternative starts with the reserved word @code{when}, either a list of
3569 literal strings separated by the @code{"|"} character or the reserved word
3570 @code{others}, and the @code{"=>"} token.
3571 Each literal string must belong to the string type that is the type of the
3572 case variable.
3573 After each @code{=>}, there are zero or more statements.  The only
3574 statements allowed in a case construction are other case constructions,
3575 attribute declarations and variable declarations. String type declarations and
3576 package declarations are not allowed. Variable declarations are restricted to
3577 variables that have already been declared before the case construction.
3578
3579 @smallexample
3580 case_statement ::=
3581   @i{case} @i{<typed_variable_>}name @i{is} @{case_item@} @i{end case} ;
3582
3583 case_item ::=
3584   @i{when} discrete_choice_list =>
3585     @{case_statement
3586       | attribute_declaration
3587       | variable_declaration
3588       | empty_declaration@}
3589
3590 discrete_choice_list ::= string_literal @{| string_literal@} | @i{others}
3591 @end smallexample
3592
3593 @noindent
3594 Here is a typical example:
3595
3596 @smallexample @c projectfile
3597 @group
3598 project MyProj is
3599    type OS_Type is ("GNU/Linux", "Unix", "NT", "VMS");
3600    OS : OS_Type := external ("OS", "GNU/Linux");
3601
3602    package Compiler is
3603      case OS is
3604        when "GNU/Linux" | "Unix" =>
3605          for ^Switches^Switches^ ("Ada")
3606              use ("-gnath");
3607        when "NT" =>
3608          for ^Switches^Switches^ ("Ada")
3609              use ("^-gnatP^-gnatP^");
3610        when others =>
3611          null;
3612      end case;
3613    end Compiler;
3614 end MyProj;
3615 @end group
3616 @end smallexample
3617
3618 @c ---------------------------------------------
3619 @node Attributes
3620 @subsection Attributes
3621 @c ---------------------------------------------
3622
3623 @menu
3624 * Project Level Attributes::
3625 * Package Binder Attributes::
3626 * Package Builder Attributes::
3627 * Package Check Attributes::
3628 * Package Clean Attributes::
3629 * Package Compiler Attributes::
3630 * Package Cross_Reference Attributes::
3631 * Package Eliminate Attributes::
3632 * Package Finder Attributes::
3633 * Package ^gnatls^gnatls^ Attributes::
3634 * Package ^gnatstub^gnatstub^ Attributes::
3635 * Package IDE Attributes::
3636 * Package Install Attributes::
3637 * Package Linker Attributes::
3638 * Package Metrics Attribute::
3639 * Package Naming Attributes::
3640 * Package Pretty_Printer Attributes::
3641 * Package Remote Attributes::
3642 * Package Stack Attributes::
3643 * Package Synchronize Attributes::
3644 @end menu
3645
3646 @noindent
3647 A project (and its packages) may have @b{attributes} that define
3648 the project's properties.  Some attributes have values that are strings;
3649 others have values that are string lists.
3650
3651 @smallexample
3652 attribute_declaration ::=
3653    simple_attribute_declaration | indexed_attribute_declaration
3654 simple_attribute_declaration ::= @i{for} attribute_designator @i{use} expression ;
3655 indexed_attribute_declaration ::=
3656   @i{for} @i{<indexed_attribute_>}simple_name ( string_literal) @i{use} expression ;
3657 attribute_designator ::=
3658   @i{<simple_attribute_>}simple_name
3659   | @i{<indexed_attribute_>}simple_name ( string_literal )
3660 @end smallexample
3661
3662 @noindent
3663 There are two categories of attributes: @b{simple attributes}
3664 and @b{indexed attributes}.
3665 Each simple attribute has a default value: the empty string (for string
3666 attributes) and the empty list (for string list attributes).
3667 An attribute declaration defines a new value for an attribute, and overrides
3668 the previous value. The syntax of a simple attribute declaration is similar to
3669 that of an attribute definition clause in Ada.
3670
3671 Some attributes are indexed. These attributes are mappings whose
3672 domain is a set of strings. They are declared one association
3673 at a time, by specifying a point in the domain and the corresponding image
3674 of the attribute.
3675 Like untyped variables and simple attributes, indexed attributes
3676 may be declared several times. Each declaration supplies a new value for the
3677 attribute, and replaces the previous setting.
3678
3679 Here are some examples of attribute declarations:
3680
3681 @smallexample @c projectfile
3682    --  simple attributes
3683    for Object_Dir use "objects";
3684    for Source_Dirs use ("units", "test/drivers");
3685
3686    --  indexed attributes
3687    for Body ("main") use "Main.ada";
3688    for ^Switches^Switches^ ("main.ada")
3689        use ("-v", "^-gnatv^-gnatv^");
3690    for ^Switches^Switches^ ("main.ada") use Builder'Switches ("main.ada") & "-g";
3691
3692    --  indexed attributes copy (from package Builder in project Default)
3693    --  The package name must always be specified, even if it is the current
3694    --  package.
3695    for Default_Switches use Default.Builder'Default_Switches;
3696 @end smallexample
3697
3698 @noindent
3699 Attributes references may appear anywhere in expressions, and are used
3700 to retrieve the value previously assigned to the attribute. If an attribute
3701 has not been set in a given package or project, its value defaults to the
3702 empty string or the empty list.
3703
3704 @smallexample
3705 attribute_reference ::= attribute_prefix ' @i{<simple_attribute>_}simple_name [ (string_literal) ]
3706 attribute_prefix ::= @i{project}
3707   | @i{<project_>}simple_name
3708   | package_identifier
3709   | @i{<project_>}simple_name . package_identifier
3710 @end smallexample
3711
3712 @noindent
3713 Examples are:
3714
3715 @smallexample @c projectfile
3716   project'Object_Dir
3717   Naming'Dot_Replacement
3718   Imported_Project'Source_Dirs
3719   Imported_Project.Naming'Casing
3720   Builder'Default_Switches ("Ada")
3721 @end smallexample
3722
3723 @noindent
3724 The prefix of an attribute may be:
3725
3726 @itemize @bullet
3727 @item @code{project} for an attribute of the current project
3728 @item The name of an existing package of the current project
3729 @item The name of an imported project
3730 @item The name of a parent project that is extended by the current project
3731 @item An expanded name whose prefix is imported/parent project name,
3732   and whose selector is a package name
3733
3734 @end itemize
3735
3736 @noindent
3737
3738 In the following sections, all predefined attributes are succinctly described,
3739 first the project level attributes, that is those attributes that are not in a
3740 package, then the attributes in the different packages.
3741
3742 It is possible for different tools to create dynamically new packages with
3743 attributes, or new attribute in predefined packages. These attributes are
3744 not documented here.
3745
3746 The attributes under Configuration headings are usually found only in
3747 configuration project files.
3748
3749 The characteristics of each attribute are indicated as follows:
3750
3751 @itemize @bullet
3752
3753 @item @b{Type of value}
3754
3755 The value of an attribute may be a single string, indicated by the word
3756 "single", or a string list, indicated by the word "list".
3757
3758 @item @b{Read-only}
3759
3760 When the attribute is read-only, that is when it is not allowed to declare
3761 the attribute, this is indicated by the words "read-only".
3762
3763 @item @b{Optional index}
3764
3765 If it is allowed in the value of the attribute (both single and list) to have
3766 an optional index, this is indicated by the words "optional index".
3767
3768 @item @b{Indexed attribute}
3769
3770 When an it is an indexed attribute, this is indicated by the word "indexed".
3771
3772 @item @b{Case-sensitivity of the index}
3773
3774 For an indexed attribute, if the index is case-insensitive, this is indicated
3775 by the words "case-insensitive index".
3776
3777 @item @b{File name index}
3778
3779 For an indexed attribute, when the index is a file name, this is indicated by
3780 the words "file name index". The index may or may not be case-sensitive,
3781 depending on the platform.
3782
3783 @item @b{others allowed in index}
3784
3785 For an indexed attribute, if it is allowed to use @b{others} as the index,
3786 this is indicated by the words "others allowed".
3787
3788 @end itemize
3789
3790 @node Project Level Attributes
3791 @subsubsection Project Level Attributes
3792 @noindent
3793
3794 @itemize @bullet
3795
3796 @item @b{General}
3797
3798 @itemize @bullet
3799
3800 @item @b{Name}: single, read-only
3801
3802 The name of the project.
3803
3804 @item @b{Project_Dir}: single, read-only
3805
3806 The path name of the project directory.
3807
3808 @item @b{Main}: list, optional index
3809
3810 The list of main sources for the executables.
3811
3812 @item @b{Languages}: list
3813
3814 The list of languages of the sources of the project.
3815
3816 @item @b{Roots}: list, indexed, file name index
3817
3818 The index is the file name of an executable source. Indicates the list of units
3819 from the main project that need to be bound and linked with their closures
3820 with the executable. The index is either a file name, a language name or "*".
3821 The roots for an executable source are those in @b{Roots} with an index that
3822 is the executable source file name, if declared. Otherwise, they are those in
3823 @b{Roots} with an index that is the language name of the executable source,
3824 if present. Otherwise, they are those in @b{Roots ("*")}, if declared. If none
3825 of these three possibilities are declared, then there are no roots for the
3826 executable source.
3827
3828 @item @b{Externally_Built}: single
3829
3830 Indicates if the project is externally built.
3831 Only case-insensitive values allowed are "true" and "false", the default.
3832
3833 @end itemize
3834 @noindent
3835
3836 @item @b{Directories}
3837
3838 @itemize @bullet
3839
3840 @item @b{Object_Dir}: single
3841
3842 Indicates the object directory for the project.
3843
3844 @item @b{Exec_Dir}: single
3845
3846 Indicates the exec directory for the project, that is the directory where the
3847 executables are.
3848
3849 @item @b{Source_Dirs}: list
3850
3851 The list of source directories of the project.
3852
3853 @item @b{Inherit_Source_Path}: list, indexed, case-insensitive index
3854
3855 Index is a language name. Value is a list of language names. Indicates that
3856 in the source search path of the index language the source directories of
3857 the languages in the list should be included.
3858
3859 Example:
3860
3861 for Inherit_Source_Path ("C++") use ("C");
3862
3863 @item @b{Exclude_Source_Dirs}: list
3864
3865 The list of directories that are included in Source_Dirs but are not source
3866 directories of the project.
3867
3868 @item @b{Ignore_Source_Sub_Dirs}: list
3869
3870 Value is a list of simple names for subdirectories that are removed from the
3871 list of source directories, including theur subdirectories.
3872
3873 @end itemize
3874
3875 @item @b{Source Files}
3876
3877 @itemize @bullet
3878
3879 @item @b{Source_Files}: list
3880
3881 Value is a list of source file simple names.
3882
3883 @item @b{Locally_Removed_Files}: list
3884
3885 Obsolescent. Equivalent to Excluded_Source_Files.
3886
3887 @item @b{Excluded_Source_Files}: list
3888
3889 Value is a list of simple file names that are not sources of the project.
3890 Allows to remove sources that are inherited or found in the source directories
3891 and that match the naming scheme.
3892
3893 @item @b{Source_List_File}: single
3894
3895 Value is a text file name that contains a list of source file simple names,
3896 one on each line.
3897
3898 @item @b{Excluded_Source_List_File}: single
3899
3900 Value is a text file name that contains a list of file simple names that
3901 are not sources of the project.
3902
3903 @item @b{Interfaces}: list
3904
3905 Value is a list of file names that constitutes the interfaces of the project.
3906
3907 @end itemize
3908
3909 @item @b{Aggregate Projects}
3910
3911 @itemize @bullet
3912
3913 @item @b{Project_Files}: list
3914
3915 Value is the list of aggregated projects.
3916
3917 @item @b{Project_Path}: list
3918
3919 Value is a list of directories that are added to the project search path when
3920 looking for the aggregated projects.
3921
3922 @item @b{External}: single, indexed
3923
3924 Index is the name of an external reference. Value is the value of the
3925 external reference to be used when parsing the aggregated projects.
3926
3927 @end itemize
3928
3929 @item @b{Libraries}
3930
3931 @itemize @bullet
3932
3933 @item @b{Library_Dir}: single
3934
3935 Value is the name of the library directory. This attribute needs to be
3936 declared for each library project.
3937
3938 @item @b{Library_Name}: single
3939
3940 Value is the name of the library. This attribute needs to be declared or
3941 inherited for each library project.
3942
3943 @item @b{Library_Kind}: single
3944
3945 Specifies the kind of library: static library (archive) or shared library.
3946 Case-insensitive values must be one of "static" for archives (the default) or
3947 "dynamic" or "relocatable" for shared libraries.
3948
3949 @item @b{Library_Version}: single
3950
3951 Value is the name of the library file.
3952
3953 @item @b{Library_Interface}: list
3954
3955 Value is the list of unit names that constitutes the interfaces
3956 of a Stand-Alone Library project.
3957
3958 @item @b{Library_Standalone}: single
3959
3960 Specifies if a Stand-Alone Library (SAL) is encapsulated or not.
3961 Only authorized case-insensitive values are "standard" for non encapsulated
3962 SALs, "encapsulated" for encapsulated SALs or "no" for non SAL library project.
3963
3964 @item @b{Library_Encapsulated_Options}: list
3965
3966 Value is a list of options that need to be used when linking an encapsulated
3967 Stand-Alone Library.
3968
3969 @item @b{Library_Encapsulated_Supported}: single
3970
3971 Indicates if encapsulated Stand-Alone Libraries are supported. Only
3972 authorized case-insensitive values are "true" and "false" (the default).
3973
3974 @item @b{Library_Auto_Init}: single
3975
3976 Indicates if a Stand-Alone Library is auto-initialized. Only authorized
3977 case-insentive values are "true" and "false".
3978
3979 @item @b{Leading_Library_Options}: list
3980
3981 Value is a list of options that are to be used at the beginning of
3982 the command line when linking a shared library.
3983
3984 @item @b{Library_Options}: list
3985
3986 Value is a list of options that are to be used when linking a shared library.
3987
3988 @item @b{Library_Rpath_Options}: list, indexed, case-insensitive index
3989
3990 Index is a language name. Value is a list of options for an invocation of the
3991 compiler of the language. This invocation is done for a shared library project
3992 with sources of the language. The output of the invocation is the path name
3993 of a shared library file. The directory name is to be put in the run path
3994 option switch when linking the shared library for the project.
3995
3996 @item @b{Library_Src_Dir}: single
3997
3998 Value is the name of the directory where copies of the sources of the
3999 interfaces of a Stand-Alone Library are to be copied.
4000
4001 @item @b{Library_ALI_Dir}: single
4002
4003 Value is the name of the directory where the ALI files of the interfaces
4004 of a Stand-Alone Library are to be copied. When this attribute is not declared,
4005 the directory is the library directory.
4006
4007 @item @b{Library_gcc}: single
4008
4009 Obsolescent attribute. Specify the linker driver used to link a shared library.
4010 Use instead attribute Linker'Driver.
4011
4012 @item @b{Library_Symbol_File}: single
4013
4014 Value is the name of the library symbol file.
4015
4016 @item @b{Library_Symbol_Policy}: single
4017
4018 Indicates the symbol policy kind. Only authorized case-insensitive values are
4019 "autonomous", "default", "compliant", "controlled" or "direct".
4020
4021 @item @b{Library_Reference_Symbol_File}: single
4022
4023 Value is the name of the reference symbol file.
4024
4025 @end itemize
4026
4027 @item @b{Configuration - General}
4028
4029 @itemize @bullet
4030
4031 @item @b{Default_Language}: single
4032
4033 Value is the case-insensitive name of the language of a project when attribute
4034 Languages is not specified.
4035
4036 @item @b{Run_Path_Option}: list
4037
4038 Value is the list of switches to be used when specifying the run path option
4039 in an executable.
4040
4041 @item @b{Run_Path_Origin}: single
4042
4043 Value is the the string that may replace the path name of the executable
4044 directory in the run path options.
4045
4046 @item @b{Separate_Run_Path_Options}: single
4047
4048 Indicates if there may be or not several run path options specified when
4049 linking an executable. Only authorized case-insensitive b=values are "true" or
4050 "false" (the default).
4051
4052 @item @b{Toolchain_Version}: single, indexed, case-insensitive index
4053
4054 Index is a language name. Specify the version of a toolchain for a language.
4055
4056 @item @b{Toolchain_Description}: single, indexed, case-insensitive index
4057
4058 Obsolescent. No longer used.
4059
4060 @item @b{Object_Generated}: single, indexed, case-insensitive index
4061
4062 Index is a language name. Indicates if invoking the compiler for a language
4063 produces an object file. Only authorized case-insensitive values are "false"
4064 and "true" (the default).
4065
4066 @item @b{Objects_Linked}: single, indexed, case-insensitive index
4067
4068 Index is a language name. Indicates if the object files created by the compiler
4069 for a language need to be linked in the executable. Only authorized
4070 case-insensitive values are "false" and "true" (the default).
4071
4072 @item @b{Target}: single
4073
4074 Value is the name of the target platform.
4075
4076 @end itemize
4077
4078 @item @b{Configuration - Libraries}
4079
4080 @itemize @bullet
4081
4082 @item @b{Library_Builder}: single
4083
4084 Value is the path name of the application that is to be used to build
4085 libraries. Usually the path name of "gprlib".
4086
4087 @item @b{Library_Support}: single
4088
4089 Indicates the level of support of libraries. Only authorized case-insensitive
4090 values are "static_only", "full" or "none" (the default).
4091
4092 @end itemize
4093
4094 @item @b{Configuration - Archives}
4095
4096 @itemize @bullet
4097
4098 @item @b{Archive_Builder}: list
4099
4100 Value is the name of the application to be used to create a static library
4101 (archive), followed by the options to be used.
4102
4103 @item @b{Archive_Builder_Append_Option}: list
4104
4105 Value is the list of options to be used when invoking the archive builder
4106 to add project files into an archive.
4107
4108 @item @b{Archive_Indexer}: list
4109
4110 Value is the name of the archive indexer, followed by the required options.
4111
4112 @item @b{Archive_Suffix}: single
4113
4114 Value is the extension of archives. When not declared, the extension is ".a".
4115
4116 @item @b{Library_Partial_Linker}: list
4117
4118 Value is the name of the partial linker executable, followed by the required
4119 options.
4120
4121 @end itemize
4122
4123 @item @b{Configuration - Shared Libraries}
4124
4125 @itemize @bullet
4126
4127 @item @b{Shared_Library_Prefix}: single
4128
4129 Value is the prefix in the name of shared library files. When not declared,
4130 the prefix is "lib".
4131
4132 @item @b{Shared_Library_Suffix}: single
4133
4134 Value is the the extension of the name of shared library files. When not
4135 declared, the extension is ".so".
4136
4137 @item @b{Symbolic_Link_Supported}: single
4138
4139 Indicates if symbolic links are supported on the platform. Only authorized
4140 case-insensitive values are "true" and "false" (the default).
4141
4142 @item @b{Library_Major_Minor_Id_Supported}: single
4143
4144 Indicates if major and minor ids for shared library names are supported on
4145 the platform. Only authorized case-insensitive values are "true" and "false"
4146 (the default).
4147
4148 @item @b{Library_Auto_Init_Supported}: single
4149
4150 Indicates if auto-initialization of Stand-Alone Libraries is supported. Only
4151 authorized case-insensitive values are "true" and "false" (the default).
4152
4153 @item @b{Shared_Library_Minimum_Switches}: list
4154
4155 Value is the list of required switches when linking a shared library.
4156
4157 @item @b{Library_Version_Switches}: list
4158
4159 Value is the list of switches to specify a internal name for a shared library.
4160
4161 @item @b{Library_Install_Name_Option}: single
4162
4163 Value is the name of the option that needs to be used, concatenated with the
4164 path name of the library file, when linking a shared library.
4165
4166 @item @b{Runtime_Library_Dir}: single, indexed, case-insensitive index
4167
4168 Index is a language name. Value is the path name of the directory where the
4169 runtime libraries are located.
4170
4171 @item @b{Runtime_Source_Dir}: single, indexed, case-insensitive index
4172
4173 Index is a language name. Value is the path name of the directory where the
4174 sources of runtime libraries are located.
4175
4176 @end itemize
4177
4178 @end itemize
4179
4180 @node Package Binder Attributes
4181 @subsubsection Package Binder Attributes
4182
4183 @itemize @bullet
4184
4185 @item @b{General}
4186
4187 @itemize @bullet
4188
4189 @item @b{Default_Switches}: list, indexed, case-insensitive index
4190
4191 Index is a language name. Value is the list of switches to be used when binding
4192 code of the language, if there is no applicable attribute ^Switches^Switches^.
4193
4194 @item @b{^Switches^Switches^}: list, optional index, indexed,
4195                     case-insensitive index, others allowed
4196
4197 Index is either a language name or a source file name. Value is the list of
4198 switches to be used when binding code. Index is either the source file name
4199 of the executable to be bound or the language name of the code to be bound.
4200
4201 @end itemize
4202
4203 @item @b{Configuration - Binding}
4204
4205 @itemize @bullet
4206
4207 @item @b{Driver}: single, indexed, case-insensitive index
4208
4209 Index is a language name. Value is the name of the application to be used when
4210 binding code of the language.
4211
4212 @item @b{Required_Switches}: list, indexed, case-insensitive index
4213
4214 Index is a language name. Value is the list of the required switches to be
4215 used when binding code of the language.
4216
4217 @item @b{Prefix}: single, indexed, case-insensitive index
4218
4219 Index is a language name. Value is a prefix to be used for the binder exchange
4220 file name for the language. Used to have different binder exchange file names
4221 when binding different languages.
4222
4223 @item @b{Objects_Path}: single,indexed, case-insensitive index
4224
4225 Index is a language name. Value is the name of the environment variable that
4226 contains the path for the object directories.
4227
4228 @item @b{Object_Path_File}: single,indexed, case-insensitive index
4229
4230 Index is a language name. Value is the name of the environment variable. The
4231 value of the environment variable is the path name of a text file that
4232 contains the list of object directories.
4233
4234 @end itemize
4235
4236 @end itemize
4237
4238 @node Package Builder Attributes
4239 @subsubsection Package Builder Attributes
4240
4241 @itemize @bullet
4242
4243 @item @b{Default_Switches}: list, indexed, case-insensitive index
4244
4245 Index is a language name. Value is the list of builder switches to be used when
4246 building an executable of the language, if there is no applicable attribute
4247 Switches.
4248
4249 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4250                     others allowed
4251
4252 Index is either a language name or a source file name. Value is the list of
4253 builder switches to be used when building an executable. Index is either the
4254 source file name of the executable to be built or its language name.
4255
4256 @item @b{Global_Compilation_Switches}: list, optional index, indexed,
4257                                        case-insensitive index
4258
4259 Index is either a language name or a source file name. Value is the list of
4260 compilation switches to be used when building an executable. Index is either
4261 the source file name of the executable to be built or its language name.
4262
4263 @item @b{Executable}: single, indexed, case-insensitive index
4264
4265 Index is an executable source file name. Value is the simple file name of the
4266 executable to be built.
4267
4268 @item @b{Executable_Suffix}: single
4269
4270 Value is the extension of the file names of executable. When not specified,
4271 the extension is the default extension of executables on the platform.
4272
4273 @item @b{Global_Configuration_Pragmas}: single
4274
4275 Value is the file name of a configuration pragmas file that is specified to
4276 the Ada compiler when compiling any Ada source in the project tree.
4277
4278 @item @b{Global_Config_File}: single, indexed, case-insensitive index
4279
4280 Index is a language name. Value is the file name of a configuration file that
4281 is specified to the compiler when compiling any source of the language in the
4282 project tree.
4283
4284 @end itemize
4285
4286 @node Package Check Attributes
4287 @subsubsection Package Check Attributes
4288
4289 @itemize @bullet
4290
4291 @item @b{Default_Switches}: list, indexed, case-insensitive index
4292
4293 Index is a language name. Value is a list of switches to be used when invoking
4294 @code{gnatcheck} for a source of the language, if there is no applicable
4295 attribute ^Switches^Switches^.
4296
4297 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4298                     others allowed
4299
4300 Index is a source file name. Value is the list of switches to be used when
4301 invoking @code{gnatcheck} for the source.
4302
4303 @end itemize
4304
4305 @node Package Clean Attributes
4306 @subsubsection Package Clean Attributes
4307
4308 @itemize @bullet
4309
4310 @item @b{^Switches^Switches^}: list
4311
4312 Value is a list of switches to be used by the cleaning application.
4313
4314 @item @b{Source_Artifact_Extensions}: list, indexed, case-insensitive index
4315
4316 Index is a language names. Value is the list of extensions for file names
4317 derived from object file names that need to be cleaned in the object
4318 directory of the project.
4319
4320 @item @b{Object_Artifact_Extensions}: list, indexed, case-insensitive index
4321
4322 Index is a language names. Value is the list of extensions for file names
4323 derived from source file names that need to be cleaned in the object
4324 directory of the project.
4325
4326 @item @b{Artifacts_In_Object_Dir}: single
4327
4328 Value is a list of file names expressed as regular expressions that are to be
4329 deleted by gprclean in the object directory of the project.
4330
4331 @item @b{Artifacts_In_Exec_Dir}: single
4332
4333 Value is list of file names expressed as regular expressions that are to be
4334 deleted by gprclean in the exec directory of the main project.
4335
4336 @end itemize
4337
4338 @node Package Compiler Attributes
4339 @subsubsection Package Compiler Attributes
4340
4341 @itemize @bullet
4342
4343 @item @b{General}
4344
4345 @itemize @bullet
4346
4347 @item @b{Default_Switches}: list, indexed, case-insensitive index
4348
4349 Index is a language name. Value is a list of switches to be used when invoking
4350 the compiler for the language for a source of the project, if there is no
4351 applicable attribute Switches.
4352
4353 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4354                     others allowed
4355
4356 Index is a source file name or a language name. Value is the list of switches
4357 to be used when invoking the compiler for the source or for its language.
4358
4359 @item @b{Local_Configuration_Pragmas}: single
4360
4361 Value is the file name of a configuration pragmas file that is specified to
4362 the Ada compiler when compiling any Ada source in the project.
4363
4364 @item @b{Local_Config_File}: single, indexed, case-insensitive index
4365
4366 Index is a language name. Value is the file name of a configuration file that
4367 is specified to the compiler when compiling any source of the language in the
4368 project.
4369
4370 @end itemize
4371
4372 @item @b{Configuration - Compiling}
4373
4374 @itemize @bullet
4375
4376 @item @b{Driver}: single, indexed, case-insensitive index
4377
4378 Index is a language name. Value is the name of the executable for the compiler
4379 of the language.
4380
4381 @item @b{Language_Kind}: single, indexed, case-insensitive index
4382
4383 Index is a language name. Indicates the kind of the language, either file based
4384 or unit based. Only authorized case-insensitive values are "unit_based" and
4385 "file_based" (the default).
4386
4387 @item @b{Dependency_Kind}: : single, indexed, case-insensitive index
4388
4389 Index is a language name. Indicates how the dependencies are handled for the
4390 language. Only authorized case-insensitive values are "makefile", "ali_file",
4391 "ali_closure" or "none" (the default.
4392
4393 @item @b{Required_Switches}: list, indexed, case-insensitive index
4394
4395 Equivalent to attribute Leading_Required_Switches.
4396
4397 @item @b{Leading_Required_Switches}: list, indexed, case-insensitive index
4398
4399 Index is a language name. Value is the list of the minimum switches to be used
4400 at the beginning of the command line when invoking the compiler for the
4401 language.
4402
4403 @item @b{Trailing_Required_Switches}: list, indexed, case-insensitive index
4404
4405 Index is a language name. Value is the list of the minimum switches to be used
4406 at the end of the command line when invoking the compiler for the language.
4407
4408 @item @b{PIC_Option}: list, indexed, case-insensitive index
4409
4410 Index is a language name. Value is the list of switches to be used when
4411 compiling a source of the language when the project is a shared library
4412 project.
4413
4414 @item @b{Path_Syntax}: single, indexed, case-insensitive index
4415
4416 Index is a language name. Value is the kind of path syntax to be used when
4417 invoking the compiler for the language. Only authorized case-insensitive
4418 values are "canonical" and "host" (the default).
4419
4420 @item @b{Source_File_Switches}: single, indexed, case-insensitive index
4421
4422 Index is a language name. Value is a list of switches to be used just before
4423 the path name of the source to compile when invoking the compiler for a source
4424 of the language.
4425
4426 @item @b{Object_File_Suffix}: single, indexed, case-insensitive index
4427
4428 Index is a language name. Value is the extension of the object files created
4429 by the compiler of the language. When not specified, the extension is the
4430 default one for the platform.
4431
4432 @item @b{Object_File_Switches}: list, indexed, case-insensitive index
4433
4434 Index is a language name. Value is the list of switches to be used by the
4435 compiler of the language to specify the path name of the object file. When not
4436 specified, the switch used is "-o".
4437
4438 @item @b{Multi_Unit_Switches}: list, indexed, case-insensitive index
4439
4440 Index is a language name. Value is the list of switches to be used to compile
4441 a unit in a multi unit source of the language. The index of the unit in the
4442 source is concatenated with the last switches in the list.
4443
4444 @item @b{Multi_Unit_Object_Separator}: single, indexed, case-insensitive index
4445
4446 Index is a language name. Value is the string to be used in the object file
4447 name before the index of the unit, when compiling a unit in a multi unit source
4448 of the language.
4449
4450 @end itemize
4451
4452 @item @b{Configuration - Mapping Files}
4453
4454 @itemize @bullet
4455
4456 @item @b{Mapping_File_Switches}: list, indexed, case-insensitive index
4457
4458 Index is a language name. Value is the list of switches to be used to specify
4459 a mapping file when invoking the compiler for a source of the language.
4460
4461 @item @b{Mapping_Spec_Suffix}: single, indexed, case-insensitive index
4462
4463 Index is a language name. Value is the suffix to be used in a mapping file
4464 to indicate that the source is a spec.
4465
4466 @item @b{Mapping_Body_Suffix}: single, indexed, case-insensitive index
4467
4468 Index is a language name. Value is the suffix to be used in a mapping file
4469 to indicate that the source is a body.
4470
4471 @end itemize
4472
4473 @item @b{Configuration - Config Files}
4474
4475 @itemize @bullet
4476
4477 @item @b{Config_File_Switches}: list: single, indexed, case-insensitive index
4478
4479 Index is a language name. Value is the list of switches to specify to the
4480 compiler of the language a configuration file.
4481
4482 @item @b{Config_Body_File_Name}: single, indexed, case-insensitive index
4483
4484 Index is a language name. Value is the template to be used to indicate a
4485 configuration specific to a body of the language in a configuration
4486 file.
4487
4488 @item @b{Config_Body_File_Name_Index}: single, indexed, case-insensitive index
4489
4490 Index is a language name. Value is the template to be used to indicate a
4491 configuration specific to the body a unit in a multi unit source of the
4492 language in a configuration file.
4493
4494 @item @b{Config_Body_File_Name_Pattern}: single, indexed,
4495                                          case-insensitive index
4496
4497 Index is a language name. Value is the template to be used to indicate a
4498 configuration for all bodies of the languages in a configuration file.
4499
4500 @item @b{Config_Spec_File_Name}: single, indexed, case-insensitive index
4501
4502 Index is a language name. Value is the template to be used to indicate a
4503 configuration specific to a spec of the language in a configuration
4504 file.
4505
4506 @item @b{Config_Spec_File_Name_Index}: single, indexed, case-insensitive index
4507
4508 Index is a language name. Value is the template to be used to indicate a
4509 configuration specific to the spec a unit in a multi unit source of the
4510 language in a configuration file.
4511
4512 @item @b{Config_Spec_File_Name_Pattern}: single, indexed,
4513                                          case-insensitive index
4514
4515 Index is a language name. Value is the template to be used to indicate a
4516 configuration for all specs of the languages in a configuration file.
4517
4518 @item @b{Config_File_Unique}: single, indexed, case-insensitive index
4519
4520 Index is a language name. Indicates if there should be only one configuration
4521 file specified to the compiler of the language. Only authorized
4522 case-insensitive values are "true" and "false" (the default).
4523
4524 @end itemize
4525
4526 @item @b{Configuration - Dependencies}
4527
4528 @itemize @bullet
4529
4530 @item @b{Dependency_Switches}: list, indexed, case-insensitive index
4531
4532 Index is a language name. Value is the list of switches to be used to specify
4533 to the compiler the dependency file when the dependency kind of the language is
4534 file based, and when Dependency_Driver is not specified for the language.
4535
4536 @item @b{Dependency_Driver}: list, indexed, case-insensitive index
4537
4538 Index is a language name. Value is the name of the executable to be used to
4539 create the dependency file for a source of the language, followed by the
4540 required switches.
4541
4542 @end itemize
4543
4544 @item @b{Configuration - Search Paths}
4545
4546 @itemize @bullet
4547
4548 @item @b{Include_Switches}: list, indexed, case-insensitive index
4549
4550 Index is a language name. Value is the list of switches to specify to the
4551 compiler of the language to indicate a directory to look for sources.
4552
4553 @item @b{Include_Path}: single, indexed, case-insensitive index
4554
4555 Index is a language name. Value is the name of an environment variable that
4556 contains the path of all the directories that the compiler of the language
4557 may search for sources.
4558
4559 @item @b{Include_Path_File}: single, indexed, case-insensitive index
4560
4561 Index is a language name. Value is the name of an environment variable the
4562 value of which is the path name of a text file that contains the directories
4563 that the compiler of the language may search for sources.
4564
4565 @item @b{Object_Path_Switches}: list, indexed, case-insensitive index
4566
4567 Index is a language name. Value is the list of switches to specify to the
4568 compiler of the language the name of a text file that contains the list of
4569 object directories. When this attribute is not declared, the text file is
4570 not created.
4571
4572 @end itemize
4573
4574 @end itemize
4575
4576 @node Package Cross_Reference Attributes
4577 @subsubsection Package Cross_Reference Attributes
4578
4579 @itemize @bullet
4580
4581 @item @b{Default_Switches}: list, indexed, case-insensitive index
4582
4583 Index is a language name. Value is a list of switches to be used when invoking
4584 @code{gnatxref} for a source of the language, if there is no applicable
4585 attribute Switches.
4586
4587 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4588                     others allowed
4589
4590 Index is a source file name. Value is the list of switches to be used when
4591 invoking @code{gnatxref} for the source.
4592
4593 @end itemize
4594
4595 @node Package Eliminate Attributes
4596 @subsubsection Package Eliminate Attributes
4597
4598 @itemize @bullet
4599
4600 @item @b{Default_Switches}: list, indexed, case-insensitive index
4601
4602 Index is a language name. Value is a list of switches to be used when invoking
4603 @code{gnatelim} for a source of the language, if there is no applicable
4604 attribute Switches.
4605
4606 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4607                     others allowed
4608
4609 Index is a source file name. Value is the list of switches to be used when
4610 invoking @code{gnatelim} for the source.
4611
4612 @end itemize
4613
4614 @node Package Finder Attributes
4615 @subsubsection Package Finder Attributes
4616
4617 @itemize @bullet
4618
4619 @item @b{Default_Switches}: list, indexed, case-insensitive index
4620
4621 Index is a language name. Value is a list of switches to be used when invoking
4622 @code{gnatfind} for a source of the language, if there is no applicable
4623 attribute Switches.
4624
4625 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4626                     others allowed
4627
4628 Index is a source file name. Value is the list of switches to be used when
4629 invoking @code{gnatfind} for the source.
4630
4631 @end itemize
4632
4633 @node Package ^gnatls^gnatls^ Attributes
4634 @subsubsection Package ^gnatls^gnatls^ Attributes
4635
4636 @itemize @bullet
4637
4638 @item @b{^Switches^Switches^}: list
4639
4640 Value is a list of switches to be used when invoking @code{gnatls}.
4641
4642 @end itemize
4643
4644 @node Package ^gnatstub^gnatstub^ Attributes
4645 @subsubsection Package ^gnatstub^gnatstub^ Attributes
4646
4647 @itemize @bullet
4648
4649 @item @b{Default_Switches}: list, indexed, case-insensitive index
4650
4651 Index is a language name. Value is a list of switches to be used when invoking
4652 @code{gnatstub} for a source of the language, if there is no applicable
4653 attribute ^Switches^Switches^.
4654
4655 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4656                     others allowed
4657
4658 Index is a source file name. Value is the list of switches to be used when
4659 invoking @code{gnatstub} for the source.
4660
4661 @end itemize
4662
4663 @node Package IDE Attributes
4664 @subsubsection Package IDE Attributes
4665
4666 @itemize @bullet
4667
4668 @item @b{Default_Switches}: list, indexed
4669
4670 Index is the name of an external tool that the GNAT Programming System (GPS)
4671 is supporting. Value is a list of switches to use when invoking that tool.
4672
4673 @item @b{Remote_Host}: single
4674
4675 Value is a string that designates the remote host in a cross-compilation
4676 environment, to be used for remote compilation and debugging. This attribute
4677 should not be specified when running on the local machine.
4678
4679 @item @b{Program_Host}: single
4680
4681 Value is a string that specifies the name of IP address of the embedded target
4682 in a cross-compilation environment, on which the program should execute.
4683
4684 @item @b{Communication_Protocol}: single
4685
4686 Value is the name of the protocol to use to communicate with the target
4687 in a cross-compilation environment, for example @code{"wtx"} or
4688 @code{"vxworks"}.
4689
4690 @item @b{Compiler_Command}: single, indexed, case-insensitive index
4691
4692 Index is a language Name. Value is a string that denotes the command to be
4693 used to invoke the compiler. The value of @code{Compiler_Command ("Ada")} is
4694 expected to be compatible with @command{gnatmake}, in particular in
4695 the handling of switches.
4696
4697 @item @b{Debugger_Command}: single
4698
4699 Value is a string that specifies the name of the debugger to be used, such as
4700 gdb, powerpc-wrs-vxworks-gdb or gdb-4.
4701
4702 @item @b{^gnatlist^gnatlist^}: single
4703
4704 Value is a string that specifies the name of the @command{^gnatls^gnatls^} utility
4705 to be used to retrieve information about the predefined path; for example,
4706 @code{"^gnatls^gnatls^"}, @code{"powerpc-wrs-vxworks-gnatls"}.
4707
4708 @item @b{VCS_Kind}: single
4709
4710 Value is a string used to specify the Version Control System (VCS) to be used
4711 for this project, for example CVS, RCS, ClearCase or Perforce.
4712
4713 @item @b{VCS_File_Check}: single
4714
4715 Value is a string that specifies the command used by the VCS to check
4716 the validity of a file, either when the user explicitly asks for a check,
4717 or as a sanity check before doing the check-in.
4718
4719 @item @b{VCS_Log_Check}: single
4720
4721 Value is a string that specifies the command used by the VCS to check
4722 the validity of a log file.
4723
4724 @item @b{Documentation_Dir}: single
4725
4726 Value is the directory used to generate the documentation of source code.
4727
4728 @end itemize
4729
4730 @node Package Install Attributes
4731 @subsubsection Package Install Attributes
4732
4733 @itemize @bullet
4734
4735 @item @b{Prefix}: single
4736
4737 Value is the install destination directory.
4738
4739 @item @b{Sources_Subdir}: single
4740
4741 Value is the sources directory or subdirectory of Prefix.
4742
4743 @item @b{Exec_Subdir}: single
4744
4745 Value is the executables directory or subdirectory of Prefix.
4746
4747 @item @b{Lib_Subdir}: single
4748
4749 Value is library directory or subdirectory of Prefix.
4750
4751 @item @b{Project_Subdir}: single
4752
4753 Value is the project directory or subdirectory of Prefix.
4754
4755 @item @b{Active}: single
4756
4757 Indicates that the project is to be installed or not. Case-insensitive value
4758 "false" means that the project is not to be installed, all other values mean
4759 that the project is to be installed.
4760
4761 @end itemize
4762
4763 @node Package Linker Attributes
4764 @subsubsection Package Linker Attributes
4765
4766 @itemize @bullet
4767
4768 @item @b{General}
4769
4770 @itemize @bullet
4771
4772 @item @b{Required_Switches}: list
4773
4774 Value is a list of switches that are required when invoking the linker to link
4775 an executable.
4776
4777 @item @b{Default_Switches}: list, indexed, case-insensitive index
4778
4779 Index is a language name. Value is a list of switches for the linker when
4780 linking an executable for a main source of the language, when there is no
4781 applicable Switches.
4782
4783 @item @b{Leading_Switches}: list, optional index, indexed,
4784                             case-insensitive index, others allowed
4785
4786 Index is a source file name or a language name. Value is the list of switches
4787 to be used at the beginning of the command line when invoking the linker to
4788 build an executable for the source or for its language.
4789
4790 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4791                     others allowed
4792
4793 Index is a source file name or a language name. Value is the list of switches
4794 to be used when invoking the linker to build an executable for the source or
4795 for its language.
4796
4797 @item @b{Trailing_Switches}: list, optional index, indexed,
4798                              case-insensitive index, others allowed
4799
4800 Index is a source file name or a language name. Value is the list of switches
4801 to be used at the end of the command line when invoking the linker to
4802 build an executable for the source or for its language. These switches may
4803 override the Required_Switches.
4804
4805 @item @b{Linker_Options}: list
4806
4807 Value is a list of switches/options that are to be added when linking an
4808 executable from a project importing the current project directly or indirectly.
4809 Linker_Options are not used when linking an executable from the current
4810 project.
4811
4812 @item @b{Map_File_Option}: single
4813
4814 Value is the switch to specify the map file name that the linker needs to
4815 create.
4816
4817 @end itemize
4818
4819 @item @b{Configuration - Linking}
4820
4821 @itemize @bullet
4822
4823 @item @b{Driver}: single
4824
4825 Value is the name of the linker executable.
4826
4827 @end itemize
4828
4829 @item @b{Configuration - Response Files}
4830
4831 @itemize @bullet
4832
4833 @item @b{Max_Command_Line_Length}: single
4834
4835 Value is the maximum number of character in the command line when invoking
4836 the linker to link an executable.
4837
4838 @item @b{Response_File_Format}: single
4839
4840 Indicates the kind of response file to create when the length of the linking
4841 command line is too large. Only authorized case-insensitive values are "none",
4842 "gnu", "object_list", "gcc_gnu", "gcc_option_list" and "gcc_object_list".
4843
4844 @item @b{Response_File_Switches}: list
4845
4846 Value is the list of switches to specify a response file to the linker.
4847
4848 @end itemize
4849
4850 @end itemize
4851
4852 @node Package Metrics Attribute
4853 @subsubsection Package Metrics Attribute
4854
4855 @itemize @bullet
4856
4857 @item @b{Default_Switches}: list, indexed, case-insensitive index
4858
4859 Index is a language name. Value is a list of switches to be used when invoking
4860 @code{gnatmetric} for a source of the language, if there is no applicable
4861 attribute Switches.
4862
4863 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4864                     others allowed
4865
4866 Index is a source file name. Value is the list of switches to be used when
4867 invoking @code{gnatmetric} for the source.
4868
4869 @end itemize
4870
4871 @node Package Naming Attributes
4872 @subsubsection Package Naming Attributes
4873
4874 @itemize @bullet
4875
4876 @item @b{Specification_Suffix}: single, indexed, case-insensitive index
4877
4878 Equivalent to attribute Spec_Suffix.
4879
4880 @item @b{Spec_Suffix}: single, indexed, case-insensitive index
4881
4882 Index is a language name. Value is the extension of file names for specs of
4883 the language.
4884
4885 @item @b{Implementation_Suffix}: single, indexed, case-insensitive index
4886
4887 Equivalent to attribute Body_Suffix.
4888
4889 @item @b{Body_Suffix}: single, indexed, case-insensitive index
4890
4891 Index is a language name. Value is the extension of file names for bodies of
4892 the language.
4893
4894 @item @b{Separate_Suffix}: single
4895
4896 Value is the extension of file names for subunits of Ada.
4897
4898 @item @b{Casing}: single
4899
4900 Indicates the casing of sources of the Ada language. Only authorized
4901 case-insensitive values are "lowercase", "uppercase" and "mixedcase".
4902
4903 @item @b{Dot_Replacement}: single
4904
4905 Value is the string that replace the dot of unit names in the source file names
4906 of the Ada language.
4907
4908 @item @b{Specification}: single, optional index, indexed,
4909                          case-insensitive index
4910
4911 Equivalent to attribute Spec.
4912
4913 @item @b{Spec}: single, optional index, indexed, case-insensitive index
4914
4915 Index is a unit name. Value is the file name of the spec of the unit.
4916
4917 @item @b{Implementation}: single, optional index, indexed,
4918                           case-insensitive index
4919
4920 Equivalent to attribute Body.
4921
4922 @item @b{Body}: single, optional index, indexed, case-insensitive index
4923
4924 Index is a unit name. Value is the file name of the body of the unit.
4925
4926 @item @b{Specification_Exceptions}: list, indexed, case-insensitive index
4927
4928 Index is a language name. Value is a list of specs for the language that do not
4929 necessarily follow the naming scheme for the language and that may or may not
4930 be found in the source directories of the project.
4931
4932 @item @b{Implementation_Exceptions}: list, indexed, case-insensitive index
4933
4934 Index is a language name. Value is a list of bodies for the language that do not
4935 necessarily follow the naming scheme for the language and that may or may not
4936 be found in the source directories of the project.
4937
4938 @end itemize
4939
4940 @node Package Pretty_Printer Attributes
4941 @subsubsection Package Pretty_Printer Attributes
4942
4943 @itemize @bullet
4944
4945 @item @b{Default_Switches}: list, indexed, case-insensitive index
4946
4947 Index is a language name. Value is a list of switches to be used when invoking
4948 @code{gnatpp} for a source of the language, if there is no applicable
4949 attribute Switches.
4950
4951 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4952                     others allowed
4953
4954 Index is a source file name. Value is the list of switches to be used when
4955 invoking @code{gnatpp} for the source.
4956
4957 @end itemize
4958
4959 @node Package Remote Attributes
4960 @subsubsection Package Remote Attributes
4961
4962 @itemize @bullet
4963
4964 @item @b{Build_Slaves}: list
4965
4966 Value is the list of machine names that are to be used in distributed
4967 compilation.
4968
4969 @item @b{Root_Dir}: single
4970
4971 Value is the root directory used by the slave machines.
4972
4973 @end itemize
4974
4975 @node Package Stack Attributes
4976 @subsubsection Package Stack Attributes
4977
4978 @itemize @bullet
4979
4980 @item @b{^Switches^Switches^}: list
4981
4982 Value is the list of switches to be used when invoking @code{gnatstack}.
4983
4984 @end itemize
4985
4986 @node Package Synchronize Attributes
4987 @subsubsection Package Synchronize Attributes
4988
4989 @itemize @bullet
4990
4991 @item @b{Default_Switches}: list, indexed, case-insensitive index
4992
4993 Index is a language name. Value is a list of switches to be used when invoking
4994 @code{gnatsync} for a source of the language, if there is no applicable
4995 attribute Switches.
4996
4997 @item @b{^Switches^Switches^}: list, optional index, indexed, case-insensitive index,
4998                     others allowed
4999
5000 Index is a source file name. Value is the list of switches to be used when
5001 invoking @code{gnatsync} for the source.
5002
5003 @end itemize
5004