OSDN Git Service

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