[multiple changes]
[gcc.git] / gcc / ada / make.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- M A K E --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
25
26 with ALI; use ALI;
27 with ALI.Util; use ALI.Util;
28 with Csets;
29 with Debug;
30 with Errutil;
31 with Fmap;
32 with Fname; use Fname;
33 with Fname.SF; use Fname.SF;
34 with Fname.UF; use Fname.UF;
35 with Gnatvsn; use Gnatvsn;
36 with Hostparm; use Hostparm;
37 with Makeusg;
38 with Makeutl; use Makeutl;
39 with MLib;
40 with MLib.Prj;
41 with MLib.Tgt; use MLib.Tgt;
42 with MLib.Utl;
43 with Namet; use Namet;
44 with Opt; use Opt;
45 with Osint.M; use Osint.M;
46 with Osint; use Osint;
47 with Output; use Output;
48 with Prj; use Prj;
49 with Prj.Com;
50 with Prj.Env;
51 with Prj.Pars;
52 with Prj.Util;
53 with SFN_Scan;
54 with Sinput.P;
55 with Snames; use Snames;
56 with Switch; use Switch;
57 with Switch.M; use Switch.M;
58 with Targparm; use Targparm;
59 with Table;
60 with Tempdir;
61 with Types; use Types;
62
63 with Ada.Exceptions; use Ada.Exceptions;
64 with Ada.Command_Line; use Ada.Command_Line;
65
66 with GNAT.Directory_Operations; use GNAT.Directory_Operations;
67 with GNAT.Dynamic_HTables; use GNAT.Dynamic_HTables;
68 with GNAT.Case_Util; use GNAT.Case_Util;
69 with GNAT.OS_Lib; use GNAT.OS_Lib;
70
71 with System.HTable;
72
73 package body Make is
74
75 use ASCII;
76 -- Make control characters visible
77
78 Standard_Library_Package_Body_Name : constant String := "s-stalib.adb";
79 -- Every program depends on this package, that must then be checked,
80 -- especially when -f and -a are used.
81
82 procedure Kill (Pid : Process_Id; Sig_Num : Integer; Close : Integer);
83 pragma Import (C, Kill, "__gnat_kill");
84 -- Called by Sigint_Intercepted to kill all spawned compilation processes
85
86 type Sigint_Handler is access procedure;
87 pragma Convention (C, Sigint_Handler);
88
89 procedure Install_Int_Handler (Handler : Sigint_Handler);
90 pragma Import (C, Install_Int_Handler, "__gnat_install_int_handler");
91 -- Called by Gnatmake to install the SIGINT handler below
92
93 procedure Sigint_Intercepted;
94 pragma Convention (C, Sigint_Intercepted);
95 -- Called when the program is interrupted by Ctrl-C to delete the
96 -- temporary mapping files and configuration pragmas files.
97
98 No_Mapping_File : constant Natural := 0;
99
100 type Compilation_Data is record
101 Pid : Process_Id;
102 Full_Source_File : File_Name_Type;
103 Lib_File : File_Name_Type;
104 Source_Unit : Unit_Name_Type;
105 Mapping_File : Natural := No_Mapping_File;
106 Project : Project_Id := No_Project;
107 Syntax_Only : Boolean := False;
108 Output_Is_Object : Boolean := True;
109 end record;
110 -- Data recorded for each compilation process spawned
111
112 type Comp_Data_Arr is array (Positive range <>) of Compilation_Data;
113 type Comp_Data_Ptr is access Comp_Data_Arr;
114 Running_Compile : Comp_Data_Ptr;
115 -- Used to save information about outstanding compilations
116
117 Outstanding_Compiles : Natural := 0;
118 -- Current number of outstanding compiles
119
120 -------------------------
121 -- Note on terminology --
122 -------------------------
123
124 -- In this program, we use the phrase "termination" of a file name to refer
125 -- to the suffix that appears after the unit name portion. Very often this
126 -- is simply the extension, but in some cases, the sequence may be more
127 -- complex, for example in main.1.ada, the termination in this name is
128 -- ".1.ada" and in main_.ada the termination is "_.ada".
129
130 -------------------------------------
131 -- Queue (Q) Manipulation Routines --
132 -------------------------------------
133
134 -- The Q is used in Compile_Sources below. Its implementation uses the GNAT
135 -- generic package Table (basically an extensible array). Q_Front points to
136 -- the first valid element in the Q, whereas Q.First is the first element
137 -- ever enqueued, while Q.Last - 1 is the last element in the Q.
138 --
139 -- +---+--------------+---+---+---+-----------+---+--------
140 -- Q | | ........ | | | | ....... | |
141 -- +---+--------------+---+---+---+-----------+---+--------
142 -- ^ ^ ^
143 -- Q.First Q_Front Q.Last - 1
144 --
145 -- The elements comprised between Q.First and Q_Front - 1 are the elements
146 -- that have been enqueued and then dequeued, while the elements between
147 -- Q_Front and Q.Last - 1 are the elements currently in the Q. When the Q
148 -- is initialized Q_Front = Q.First = Q.Last. After Compile_Sources has
149 -- terminated its execution, Q_Front = Q.Last and the elements contained
150 -- between Q.Front and Q.Last-1 are those that were explored and thus
151 -- marked by Compile_Sources. Whenever the Q is reinitialized, the elements
152 -- between Q.First and Q.Last - 1 are unmarked.
153
154 procedure Init_Q;
155 -- Must be called to (re)initialize the Q
156
157 procedure Insert_Q
158 (Source_File : File_Name_Type;
159 Source_Unit : Unit_Name_Type := No_Unit_Name;
160 Index : Int := 0);
161 -- Inserts Source_File at the end of Q. Provide Source_Unit when possible
162 -- for external use (gnatdist). Provide index for multi-unit sources.
163
164 function Empty_Q return Boolean;
165 -- Returns True if Q is empty
166
167 procedure Extract_From_Q
168 (Source_File : out File_Name_Type;
169 Source_Unit : out Unit_Name_Type;
170 Source_Index : out Int);
171 -- Extracts the first element from the Q
172
173 procedure Insert_Project_Sources
174 (The_Project : Project_Id;
175 All_Projects : Boolean;
176 Into_Q : Boolean);
177 -- If Into_Q is True, insert all sources of the project file(s) that are
178 -- not already marked into the Q. If Into_Q is False, call Osint.Add_File
179 -- for the first source, then insert all other sources that are not already
180 -- marked into the Q. If All_Projects is True, all sources of all projects
181 -- are concerned; otherwise, only sources of The_Project are concerned,
182 -- including, if The_Project is an extending project, sources inherited
183 -- from projects being extended.
184
185 First_Q_Initialization : Boolean := True;
186 -- Will be set to false after Init_Q has been called once
187
188 Q_Front : Natural;
189 -- Points to the first valid element in the Q
190
191 Unique_Compile : Boolean := False;
192 -- Set to True if -u or -U or a project file with no main is used
193
194 Unique_Compile_All_Projects : Boolean := False;
195 -- Set to True if -U is used
196
197 RTS_Specified : String_Access := null;
198 -- Used to detect multiple --RTS= switches
199
200 type Q_Record is record
201 File : File_Name_Type;
202 Unit : Unit_Name_Type;
203 Index : Int;
204 end record;
205 -- File is the name of the file to compile. Unit is for gnatdist
206 -- use in order to easily get the unit name of a file to compile
207 -- when its name is krunched or declared in gnat.adc. Index, when not 0,
208 -- is the index of the unit in a multi-unit source.
209
210 package Q is new Table.Table (
211 Table_Component_Type => Q_Record,
212 Table_Index_Type => Natural,
213 Table_Low_Bound => 0,
214 Table_Initial => 4000,
215 Table_Increment => 100,
216 Table_Name => "Make.Q");
217 -- This is the actual Q
218
219 -- The 3 following packages are used to store gcc, gnatbind and gnatlink
220 -- switches found in the project files.
221
222 package Gcc_Switches is new Table.Table (
223 Table_Component_Type => String_Access,
224 Table_Index_Type => Integer,
225 Table_Low_Bound => 1,
226 Table_Initial => 20,
227 Table_Increment => 100,
228 Table_Name => "Make.Gcc_Switches");
229
230 package Binder_Switches is new Table.Table (
231 Table_Component_Type => String_Access,
232 Table_Index_Type => Integer,
233 Table_Low_Bound => 1,
234 Table_Initial => 20,
235 Table_Increment => 100,
236 Table_Name => "Make.Binder_Switches");
237
238 package Linker_Switches is new Table.Table (
239 Table_Component_Type => String_Access,
240 Table_Index_Type => Integer,
241 Table_Low_Bound => 1,
242 Table_Initial => 20,
243 Table_Increment => 100,
244 Table_Name => "Make.Linker_Switches");
245
246 -- The following instantiations and variables are necessary to save what
247 -- is found on the command line, in case there is a project file specified.
248
249 package Saved_Gcc_Switches is new Table.Table (
250 Table_Component_Type => String_Access,
251 Table_Index_Type => Integer,
252 Table_Low_Bound => 1,
253 Table_Initial => 20,
254 Table_Increment => 100,
255 Table_Name => "Make.Saved_Gcc_Switches");
256
257 package Saved_Binder_Switches is new Table.Table (
258 Table_Component_Type => String_Access,
259 Table_Index_Type => Integer,
260 Table_Low_Bound => 1,
261 Table_Initial => 20,
262 Table_Increment => 100,
263 Table_Name => "Make.Saved_Binder_Switches");
264
265 package Saved_Linker_Switches is new Table.Table
266 (Table_Component_Type => String_Access,
267 Table_Index_Type => Integer,
268 Table_Low_Bound => 1,
269 Table_Initial => 20,
270 Table_Increment => 100,
271 Table_Name => "Make.Saved_Linker_Switches");
272
273 package Switches_To_Check is new Table.Table (
274 Table_Component_Type => String_Access,
275 Table_Index_Type => Integer,
276 Table_Low_Bound => 1,
277 Table_Initial => 20,
278 Table_Increment => 100,
279 Table_Name => "Make.Switches_To_Check");
280
281 package Library_Paths is new Table.Table (
282 Table_Component_Type => String_Access,
283 Table_Index_Type => Integer,
284 Table_Low_Bound => 1,
285 Table_Initial => 20,
286 Table_Increment => 100,
287 Table_Name => "Make.Library_Paths");
288
289 package Failed_Links is new Table.Table (
290 Table_Component_Type => File_Name_Type,
291 Table_Index_Type => Integer,
292 Table_Low_Bound => 1,
293 Table_Initial => 10,
294 Table_Increment => 100,
295 Table_Name => "Make.Failed_Links");
296
297 package Successful_Links is new Table.Table (
298 Table_Component_Type => File_Name_Type,
299 Table_Index_Type => Integer,
300 Table_Low_Bound => 1,
301 Table_Initial => 10,
302 Table_Increment => 100,
303 Table_Name => "Make.Successful_Links");
304
305 package Library_Projs is new Table.Table (
306 Table_Component_Type => Project_Id,
307 Table_Index_Type => Integer,
308 Table_Low_Bound => 1,
309 Table_Initial => 10,
310 Table_Increment => 100,
311 Table_Name => "Make.Library_Projs");
312
313 -- Two variables to keep the last binder and linker switch index in tables
314 -- Binder_Switches and Linker_Switches, before adding switches from the
315 -- project file (if any) and switches from the command line (if any).
316
317 Last_Binder_Switch : Integer := 0;
318 Last_Linker_Switch : Integer := 0;
319
320 Normalized_Switches : Argument_List_Access := new Argument_List (1 .. 10);
321 Last_Norm_Switch : Natural := 0;
322
323 Saved_Maximum_Processes : Natural := 0;
324
325 Gnatmake_Switch_Found : Boolean;
326 -- Set by Scan_Make_Arg. True when the switch is a gnatmake switch.
327 -- Tested by Add_Switches when switches in package Builder must all be
328 -- gnatmake switches.
329
330 Switch_May_Be_Passed_To_The_Compiler : Boolean;
331 -- Set by Add_Switches and Switches_Of. True when unrecognized switches
332 -- are passed to the Ada compiler.
333
334 type Arg_List_Ref is access Argument_List;
335 The_Saved_Gcc_Switches : Arg_List_Ref;
336
337 Project_File_Name : String_Access := null;
338 -- The path name of the main project file, if any
339
340 Project_File_Name_Present : Boolean := False;
341 -- True when -P is used with a space between -P and the project file name
342
343 Current_Verbosity : Prj.Verbosity := Prj.Default;
344 -- Verbosity to parse the project files
345
346 Project_Tree : constant Project_Tree_Ref := new Project_Tree_Data;
347
348 Main_Project : Prj.Project_Id := No_Project;
349 -- The project id of the main project file, if any
350
351 Project_Of_Current_Object_Directory : Project_Id := No_Project;
352 -- The object directory of the project for the last compilation. Avoid
353 -- calling Change_Dir if the current working directory is already this
354 -- directory
355
356 -- Packages of project files where unknown attributes are errors
357
358 Naming_String : aliased String := "naming";
359 Builder_String : aliased String := "builder";
360 Compiler_String : aliased String := "compiler";
361 Binder_String : aliased String := "binder";
362 Linker_String : aliased String := "linker";
363
364 Gnatmake_Packages : aliased String_List :=
365 (Naming_String 'Access,
366 Builder_String 'Access,
367 Compiler_String 'Access,
368 Binder_String 'Access,
369 Linker_String 'Access);
370
371 Packages_To_Check_By_Gnatmake : constant String_List_Access :=
372 Gnatmake_Packages'Access;
373
374 procedure Add_Library_Search_Dir
375 (Path : String;
376 On_Command_Line : Boolean);
377 -- Call Add_Lib_Search_Dir with an absolute directory path. If Path is
378 -- relative path, when On_Command_Line is True, it is relative to the
379 -- current working directory. When On_Command_Line is False, it is relative
380 -- to the project directory of the main project.
381
382 procedure Add_Source_Search_Dir
383 (Path : String;
384 On_Command_Line : Boolean);
385 -- Call Add_Src_Search_Dir with an absolute directory path. If Path is a
386 -- relative path, when On_Command_Line is True, it is relative to the
387 -- current working directory. When On_Command_Line is False, it is relative
388 -- to the project directory of the main project.
389
390 procedure Add_Source_Dir (N : String);
391 -- Call Add_Src_Search_Dir (output one line when in verbose mode)
392
393 procedure Add_Source_Directories is
394 new Prj.Env.For_All_Source_Dirs (Action => Add_Source_Dir);
395
396 procedure Add_Object_Dir (N : String);
397 -- Call Add_Lib_Search_Dir (output one line when in verbose mode)
398
399 procedure Add_Object_Directories is
400 new Prj.Env.For_All_Object_Dirs (Action => Add_Object_Dir);
401
402 procedure Change_To_Object_Directory (Project : Project_Id);
403 -- Change to the object directory of project Project, if this is not
404 -- already the current working directory.
405
406 type Bad_Compilation_Info is record
407 File : File_Name_Type;
408 Unit : Unit_Name_Type;
409 Found : Boolean;
410 end record;
411 -- File is the name of the file for which a compilation failed. Unit is for
412 -- gnatdist use in order to easily get the unit name of a file when its
413 -- name is krunched or declared in gnat.adc. Found is False if the
414 -- compilation failed because the file could not be found.
415
416 package Bad_Compilation is new Table.Table (
417 Table_Component_Type => Bad_Compilation_Info,
418 Table_Index_Type => Natural,
419 Table_Low_Bound => 1,
420 Table_Initial => 20,
421 Table_Increment => 100,
422 Table_Name => "Make.Bad_Compilation");
423 -- Full name of all the source files for which compilation fails
424
425 Do_Compile_Step : Boolean := True;
426 Do_Bind_Step : Boolean := True;
427 Do_Link_Step : Boolean := True;
428 -- Flags to indicate what step should be executed. Can be set to False
429 -- with the switches -c, -b and -l. These flags are reset to True for
430 -- each invocation of procedure Gnatmake.
431
432 Shared_String : aliased String := "-shared";
433 Force_Elab_Flags_String : aliased String := "-F";
434
435 No_Shared_Switch : aliased Argument_List := (1 .. 0 => null);
436 Shared_Switch : aliased Argument_List := (1 => Shared_String'Access);
437 Bind_Shared : Argument_List_Access := No_Shared_Switch'Access;
438 -- Switch to added in front of gnatbind switches. By default no switch is
439 -- added. Switch "-shared" is added if there is a non-static Library
440 -- Project File.
441
442 Shared_Libgcc : aliased String := "-shared-libgcc";
443
444 No_Shared_Libgcc_Switch : aliased Argument_List := (1 .. 0 => null);
445 Shared_Libgcc_Switch : aliased Argument_List :=
446 (1 => Shared_Libgcc'Access);
447 Link_With_Shared_Libgcc : Argument_List_Access :=
448 No_Shared_Libgcc_Switch'Access;
449
450 procedure Make_Failed (S : String);
451 -- Delete all temp files created by Gnatmake and call Osint.Fail, with the
452 -- parameter S (see osint.ads). This is called from the Prj hierarchy and
453 -- the MLib hierarchy.
454
455 --------------------------
456 -- Obsolete Executables --
457 --------------------------
458
459 Executable_Obsolete : Boolean := False;
460 -- Executable_Obsolete is initially set to False for each executable,
461 -- and is set to True whenever one of the source of the executable is
462 -- compiled, or has already been compiled for another executable.
463
464 Max_Header : constant := 200;
465 -- This needs a proper comment, it used to say "arbitrary"
466 -- that's not an adequate comment ???
467
468 type Header_Num is range 1 .. Max_Header;
469 -- Header_Num for the hash table Obsoleted below
470
471 function Hash (F : File_Name_Type) return Header_Num;
472 -- Hash function for the hash table Obsoleted below
473
474 package Obsoleted is new System.HTable.Simple_HTable
475 (Header_Num => Header_Num,
476 Element => Boolean,
477 No_Element => False,
478 Key => File_Name_Type,
479 Hash => Hash,
480 Equal => "=");
481 -- A hash table to keep all files that have been compiled, to detect
482 -- if an executable is up to date or not.
483
484 procedure Enter_Into_Obsoleted (F : File_Name_Type);
485 -- Enter a file name, without directory information, into the hash table
486 -- Obsoleted.
487
488 function Is_In_Obsoleted (F : File_Name_Type) return Boolean;
489 -- Check if a file name, without directory information, has already been
490 -- entered into the hash table Obsoleted.
491
492 type Dependency is record
493 This : File_Name_Type;
494 Depends_On : File_Name_Type;
495 end record;
496 -- Components of table Dependencies below
497
498 package Dependencies is new Table.Table (
499 Table_Component_Type => Dependency,
500 Table_Index_Type => Integer,
501 Table_Low_Bound => 1,
502 Table_Initial => 20,
503 Table_Increment => 100,
504 Table_Name => "Make.Dependencies");
505 -- A table to keep dependencies, to be able to decide if an executable
506 -- is obsolete. More explanation needed ???
507
508 -- procedure Add_Dependency (S : File_Name_Type; On : File_Name_Type);
509 -- -- Add one entry in table Dependencies
510
511 ----------------------------
512 -- Arguments and Switches --
513 ----------------------------
514
515 Arguments : Argument_List_Access;
516 -- Used to gather the arguments for invocation of the compiler
517
518 Last_Argument : Natural := 0;
519 -- Last index of arguments in Arguments above
520
521 Arguments_Collected : Boolean := False;
522 -- Set to True when the arguments for the next invocation of the compiler
523 -- have been collected.
524
525 Arguments_Project : Project_Id;
526 -- Project id, if any, of the source to be compiled
527
528 Arguments_Path_Name : Path_Name_Type;
529 -- Full path of the source to be compiled, when Arguments_Project is not
530 -- No_Project.
531
532 Dummy_Switch : constant String_Access := new String'("- ");
533 -- Used to initialized Prev_Switch in procedure Check
534
535 procedure Add_Arguments (Args : Argument_List);
536 -- Add arguments to global variable Arguments, increasing its size
537 -- if necessary and adjusting Last_Argument.
538
539 function Configuration_Pragmas_Switch
540 (For_Project : Project_Id) return Argument_List;
541 -- Return an argument list of one element, if there is a configuration
542 -- pragmas file to be specified for For_Project,
543 -- otherwise return an empty argument list.
544
545 -------------------
546 -- Misc Routines --
547 -------------------
548
549 procedure List_Depend;
550 -- Prints to standard output the list of object dependencies. This list
551 -- can be used directly in a Makefile. A call to Compile_Sources must
552 -- precede the call to List_Depend. Also because this routine uses the
553 -- ALI files that were originally loaded and scanned by Compile_Sources,
554 -- no additional ALI files should be scanned between the two calls (i.e.
555 -- between the call to Compile_Sources and List_Depend.)
556
557 procedure List_Bad_Compilations;
558 -- Prints out the list of all files for which the compilation failed
559
560 procedure Verbose_Msg
561 (N1 : Name_Id;
562 S1 : String;
563 N2 : Name_Id := No_Name;
564 S2 : String := "";
565 Prefix : String := " -> ";
566 Minimum_Verbosity : Verbosity_Level_Type := Opt.Low);
567 procedure Verbose_Msg
568 (N1 : File_Name_Type;
569 S1 : String;
570 N2 : File_Name_Type := No_File;
571 S2 : String := "";
572 Prefix : String := " -> ";
573 Minimum_Verbosity : Verbosity_Level_Type := Opt.Low);
574 -- If the verbose flag (Verbose_Mode) is set and the verbosity level is
575 -- at least equal to Minimum_Verbosity, then print Prefix to standard
576 -- output followed by N1 and S1. If N2 /= No_Name then N2 is printed after
577 -- S1. S2 is printed last. Both N1 and N2 are printed in quotation marks.
578
579 Usage_Needed : Boolean := True;
580 -- Flag used to make sure Makeusg is call at most once
581
582 procedure Usage;
583 -- Call Makeusg, if Usage_Needed is True.
584 -- Set Usage_Needed to False.
585
586 procedure Debug_Msg (S : String; N : Name_Id);
587 procedure Debug_Msg (S : String; N : File_Name_Type);
588 procedure Debug_Msg (S : String; N : Unit_Name_Type);
589 -- If Debug.Debug_Flag_W is set outputs string S followed by name N
590
591 procedure Recursive_Compute_Depth (Project : Project_Id);
592 -- Compute depth of Project and of the projects it depends on
593
594 -----------------------
595 -- Gnatmake Routines --
596 -----------------------
597
598 subtype Lib_Mark_Type is Byte;
599 -- Used in Mark_Directory
600
601 Ada_Lib_Dir : constant Lib_Mark_Type := 1;
602 -- Used to mark a directory as a GNAT lib dir
603
604 -- Note that the notion of GNAT lib dir is no longer used. The code related
605 -- to it has not been removed to give an idea on how to use the directory
606 -- prefix marking mechanism.
607
608 -- An Ada library directory is a directory containing ali and object files
609 -- but no source files for the bodies (the specs can be in the same or some
610 -- other directory). These directories are specified in the Gnatmake
611 -- command line with the switch "-Adir" (to specify the spec location -Idir
612 -- cab be used). Gnatmake skips the missing sources whose ali are in Ada
613 -- library directories. For an explanation of why Gnatmake behaves that
614 -- way, see the spec of Make.Compile_Sources. The directory lookup penalty
615 -- is incurred every single time this routine is called.
616
617 procedure Check_Steps;
618 -- Check what steps (Compile, Bind, Link) must be executed.
619 -- Set the step flags accordingly.
620
621 function In_Ada_Lib_Dir (File : File_Name_Type) return Boolean;
622 -- Get directory prefix of this file and get lib mark stored in name
623 -- table for this directory. Then check if an Ada lib mark has been set.
624
625 procedure Mark_Directory
626 (Dir : String;
627 Mark : Lib_Mark_Type;
628 On_Command_Line : Boolean);
629 -- Store the absolute path from Dir in name table and set lib mark as name
630 -- info to identify Ada libraries.
631 --
632 -- If Dir is a relative path, when On_Command_Line is True, it is relative
633 -- to the current working directory; when On_Command_Line is False, it is
634 -- relative to the project directory of the main project.
635
636 Output_Is_Object : Boolean := True;
637 -- Set to False when using a switch -S for the compiler
638
639 procedure Check_For_S_Switch;
640 -- Set Output_Is_Object to False when the -S switch is used for the
641 -- compiler.
642
643 function Switches_Of
644 (Source_File : File_Name_Type;
645 Source_File_Name : String;
646 Source_Index : Int;
647 Naming : Naming_Data;
648 In_Package : Package_Id;
649 Allow_ALI : Boolean) return Variable_Value;
650 -- Return the switches for the source file in the specified package of a
651 -- project file. If the Source_File ends with a standard GNAT extension
652 -- (".ads" or ".adb"), try first the full name, then the name without the
653 -- extension, then, if Allow_ALI is True, the name with the extension
654 -- ".ali". If there is no switches for either names, try first Switches
655 -- (others) then the default switches for Ada. If all failed, return
656 -- No_Variable_Value.
657
658 function Is_In_Object_Directory
659 (Source_File : File_Name_Type;
660 Full_Lib_File : File_Name_Type) return Boolean;
661 -- Check if, when using a project file, the ALI file is in the project
662 -- directory of the ultimate extending project. If it is not, we ignore
663 -- the fact that this ALI file is read-only.
664
665 ----------------------------------------------------
666 -- Compiler, Binder & Linker Data and Subprograms --
667 ----------------------------------------------------
668
669 Gcc : String_Access := Program_Name ("gcc", "gnatmake");
670 Gnatbind : String_Access := Program_Name ("gnatbind", "gnatmake");
671 Gnatlink : String_Access := Program_Name ("gnatlink", "gnatmake");
672 -- Default compiler, binder, linker programs
673
674 Saved_Gcc : String_Access := null;
675 Saved_Gnatbind : String_Access := null;
676 Saved_Gnatlink : String_Access := null;
677 -- Given by the command line. Will be used, if non null
678
679 Gcc_Path : String_Access :=
680 GNAT.OS_Lib.Locate_Exec_On_Path (Gcc.all);
681 Gnatbind_Path : String_Access :=
682 GNAT.OS_Lib.Locate_Exec_On_Path (Gnatbind.all);
683 Gnatlink_Path : String_Access :=
684 GNAT.OS_Lib.Locate_Exec_On_Path (Gnatlink.all);
685 -- Path for compiler, binder, linker programs, defaulted now for gnatdist.
686 -- Changed later if overridden on command line.
687
688 Comp_Flag : constant String_Access := new String'("-c");
689 Output_Flag : constant String_Access := new String'("-o");
690 Ada_Flag_1 : constant String_Access := new String'("-x");
691 Ada_Flag_2 : constant String_Access := new String'("ada");
692 No_gnat_adc : constant String_Access := new String'("-gnatA");
693 GNAT_Flag : constant String_Access := new String'("-gnatpg");
694 Do_Not_Check_Flag : constant String_Access := new String'("-x");
695
696 Object_Suffix : constant String := Get_Target_Object_Suffix.all;
697
698 Syntax_Only : Boolean := False;
699 -- Set to True when compiling with -gnats
700
701 Display_Executed_Programs : Boolean := True;
702 -- Set to True if name of commands should be output on stderr (or on stdout
703 -- if the Commands_To_Stdout flag was set by use of the -eS switch).
704
705 Output_File_Name_Seen : Boolean := False;
706 -- Set to True after having scanned the file_name for
707 -- switch "-o file_name"
708
709 Object_Directory_Seen : Boolean := False;
710 -- Set to True after having scanned the object directory for
711 -- switch "-D obj_dir".
712
713 Object_Directory_Path : String_Access := null;
714 -- The path name of the object directory, set with switch -D
715
716 type Make_Program_Type is (None, Compiler, Binder, Linker);
717
718 Program_Args : Make_Program_Type := None;
719 -- Used to indicate if we are scanning gnatmake, gcc, gnatbind, or gnatbind
720 -- options within the gnatmake command line. Used in Scan_Make_Arg only,
721 -- but must be global since value preserved from one call to another.
722
723 Temporary_Config_File : Boolean := False;
724 -- Set to True when there is a temporary config file used for a project
725 -- file, to avoid displaying the -gnatec switch for a temporary file.
726
727 procedure Add_Switches
728 (The_Package : Package_Id;
729 File_Name : String;
730 Index : Int;
731 Program : Make_Program_Type;
732 Unknown_Switches_To_The_Compiler : Boolean := True);
733 procedure Add_Switch
734 (S : String_Access;
735 Program : Make_Program_Type;
736 Append_Switch : Boolean := True;
737 And_Save : Boolean := True);
738 procedure Add_Switch
739 (S : String;
740 Program : Make_Program_Type;
741 Append_Switch : Boolean := True;
742 And_Save : Boolean := True);
743 -- Make invokes one of three programs (the compiler, the binder or the
744 -- linker). For the sake of convenience, some program specific switches
745 -- can be passed directly on the gnatmake command line. This procedure
746 -- records these switches so that gnatmake can pass them to the right
747 -- program. S is the switch to be added at the end of the command line
748 -- for Program if Append_Switch is True. If Append_Switch is False S is
749 -- added at the beginning of the command line.
750
751 procedure Check
752 (Source_File : File_Name_Type;
753 Source_Index : Int;
754 Is_Main_Source : Boolean;
755 The_Args : Argument_List;
756 Lib_File : File_Name_Type;
757 Read_Only : Boolean;
758 ALI : out ALI_Id;
759 O_File : out File_Name_Type;
760 O_Stamp : out Time_Stamp_Type);
761 -- Determines whether the library file Lib_File is up-to-date or not. The
762 -- full name (with path information) of the object file corresponding to
763 -- Lib_File is returned in O_File. Its time stamp is saved in O_Stamp.
764 -- ALI is the ALI_Id corresponding to Lib_File. If Lib_File in not
765 -- up-to-date, then the corresponding source file needs to be recompiled.
766 -- In this case ALI = No_ALI_Id.
767
768 procedure Check_Linker_Options
769 (E_Stamp : Time_Stamp_Type;
770 O_File : out File_Name_Type;
771 O_Stamp : out Time_Stamp_Type);
772 -- Checks all linker options for linker files that are newer
773 -- than E_Stamp. If such objects are found, the youngest object
774 -- is returned in O_File and its stamp in O_Stamp.
775 --
776 -- If no obsolete linker files were found, the first missing
777 -- linker file is returned in O_File and O_Stamp is empty.
778 -- Otherwise O_File is No_File.
779
780 procedure Collect_Arguments
781 (Source_File : File_Name_Type;
782 Source_Index : Int;
783 Is_Main_Source : Boolean;
784 Args : Argument_List);
785 -- Collect all arguments for a source to be compiled, including those
786 -- that come from a project file.
787
788 procedure Display (Program : String; Args : Argument_List);
789 -- Displays Program followed by the arguments in Args if variable
790 -- Display_Executed_Programs is set. The lower bound of Args must be 1.
791
792 procedure Report_Compilation_Failed;
793 -- Delete all temporary files and fail graciously
794
795 -----------------
796 -- Mapping files
797 -----------------
798
799 type Temp_Path_Names is array (Positive range <>) of Path_Name_Type;
800 type Temp_Path_Ptr is access Temp_Path_Names;
801
802 type Free_File_Indices is array (Positive range <>) of Positive;
803 type Free_Indices_Ptr is access Free_File_Indices;
804
805 type Project_Compilation_Data is record
806 Mapping_File_Names : Temp_Path_Ptr;
807 -- The name ids of the temporary mapping files used. This is indexed
808 -- on the maximum number of compilation processes we will be spawning
809 -- (-j parameter)
810
811 Last_Mapping_File_Names : Natural;
812 -- Index of the last mapping file created for this project
813
814 Free_Mapping_File_Indices : Free_Indices_Ptr;
815 -- Indices in Mapping_File_Names of the mapping file names that can be
816 -- reused for subsequent compilations.
817
818 Last_Free_Indices : Natural;
819 -- Number of mapping files that can be reused
820 end record;
821 -- Information necessary when compiling a project
822
823 type Project_Compilation_Access is access Project_Compilation_Data;
824
825 package Project_Compilation_Htable is new Simple_HTable
826 (Header_Num => Prj.Header_Num,
827 Element => Project_Compilation_Access,
828 No_Element => null,
829 Key => Project_Id,
830 Hash => Prj.Hash,
831 Equal => "=");
832
833 Project_Compilation : Project_Compilation_Htable.Instance;
834
835 Gnatmake_Mapping_File : String_Access := null;
836 -- The path name of a mapping file specified by switch -C=
837
838 procedure Delete_Mapping_Files;
839 -- Delete all temporary mapping files. Called only in Delete_All_Temp_Files
840 -- which ensures that Debug_Flag_N is False.
841
842 procedure Init_Mapping_File
843 (Project : Project_Id;
844 Data : in out Project_Compilation_Data;
845 File_Index : in out Natural);
846 -- Create a new temporary mapping file, and fill it with the project file
847 -- mappings, when using project file(s). The out parameter File_Index is
848 -- the index to the name of the file in the array The_Mapping_File_Names.
849
850 procedure Delete_Temp_Config_Files;
851 -- Delete all temporary config files. Must not be called if Debug_Flag_N
852 -- is False.
853
854 procedure Delete_All_Temp_Files;
855 -- Delete all temp files (config files, mapping files, path files), unless
856 -- Debug_Flag_N is True (in which case all temp files are left for user
857 -- examination).
858
859 -------------------------------------------------
860 -- Subprogram declarations moved from the spec --
861 -------------------------------------------------
862
863 procedure Bind (ALI_File : File_Name_Type; Args : Argument_List);
864 -- Binds ALI_File. Args are the arguments to pass to the binder.
865 -- Args must have a lower bound of 1.
866
867 procedure Display_Commands (Display : Boolean := True);
868 -- The default behavior of Make commands (Compile_Sources, Bind, Link)
869 -- is to display them on stderr. This behavior can be changed repeatedly
870 -- by invoking this procedure.
871
872 -- If a compilation, bind or link failed one of the following 3 exceptions
873 -- is raised. These need to be handled by the calling routines.
874
875 procedure Compile_Sources
876 (Main_Source : File_Name_Type;
877 Args : Argument_List;
878 First_Compiled_File : out File_Name_Type;
879 Most_Recent_Obj_File : out File_Name_Type;
880 Most_Recent_Obj_Stamp : out Time_Stamp_Type;
881 Main_Unit : out Boolean;
882 Compilation_Failures : out Natural;
883 Main_Index : Int := 0;
884 Check_Readonly_Files : Boolean := False;
885 Do_Not_Execute : Boolean := False;
886 Force_Compilations : Boolean := False;
887 Keep_Going : Boolean := False;
888 In_Place_Mode : Boolean := False;
889 Initialize_ALI_Data : Boolean := True;
890 Max_Process : Positive := 1);
891 -- Compile_Sources will recursively compile all the sources needed by
892 -- Main_Source. Before calling this routine make sure Namet has been
893 -- initialized. This routine can be called repeatedly with different
894 -- Main_Source file as long as all the source (-I flags), library
895 -- (-B flags) and ada library (-A flags) search paths between calls are
896 -- *exactly* the same. The default directory must also be the same.
897 --
898 -- Args contains the arguments to use during the compilations.
899 -- The lower bound of Args must be 1.
900 --
901 -- First_Compiled_File is set to the name of the first file that is
902 -- compiled or that needs to be compiled. This is set to No_Name if no
903 -- compilations were needed.
904 --
905 -- Most_Recent_Obj_File is set to the full name of the most recent
906 -- object file found when no compilations are needed, that is when
907 -- First_Compiled_File is set to No_Name. When First_Compiled_File
908 -- is set then Most_Recent_Obj_File is set to No_Name.
909 --
910 -- Most_Recent_Obj_Stamp is the time stamp of Most_Recent_Obj_File.
911 --
912 -- Main_Unit is set to True if Main_Source can be a main unit.
913 -- If Do_Not_Execute is False and First_Compiled_File /= No_Name
914 -- the value of Main_Unit is always False.
915 -- Is this used any more??? It is certainly not used by gnatmake???
916 --
917 -- Compilation_Failures is a count of compilation failures. This count
918 -- is used to extract compilation failure reports with Extract_Failure.
919 --
920 -- Main_Index, when not zero, is the index of the main unit in source
921 -- file Main_Source which is a multi-unit source.
922 -- Zero indicates that Main_Source is a single unit source file.
923 --
924 -- Check_Readonly_Files set it to True to compile source files
925 -- which library files are read-only. When compiling GNAT predefined
926 -- files the "-gnatg" flag is used.
927 --
928 -- Do_Not_Execute set it to True to find out the first source that
929 -- needs to be recompiled, but without recompiling it. This file is
930 -- saved in First_Compiled_File.
931 --
932 -- Force_Compilations forces all compilations no matter what but
933 -- recompiles read-only files only if Check_Readonly_Files
934 -- is set.
935 --
936 -- Keep_Going when True keep compiling even in the presence of
937 -- compilation errors.
938 --
939 -- In_Place_Mode when True save library/object files in their object
940 -- directory if they already exist; otherwise, in the source directory.
941 --
942 -- Initialize_ALI_Data set it to True when you want to initialize ALI
943 -- data-structures. This is what you should do most of the time.
944 -- (especially the first time around when you call this routine).
945 -- This parameter is set to False to preserve previously recorded
946 -- ALI file data.
947 --
948 -- Max_Process is the maximum number of processes that should be spawned
949 -- to carry out compilations.
950 --
951 -- Flags in Package Opt Affecting Compile_Sources
952 -- -----------------------------------------------
953 --
954 -- Check_Object_Consistency set it to False to omit all consistency
955 -- checks between an .ali file and its corresponding object file.
956 -- When this flag is set to true, every time an .ali is read,
957 -- package Osint checks that the corresponding object file
958 -- exists and is more recent than the .ali.
959 --
960 -- Use of Name Table Info
961 -- ----------------------
962 --
963 -- All file names manipulated by Compile_Sources are entered into the
964 -- Names table. The Byte field of a source file is used to mark it.
965 --
966 -- Calling Compile_Sources Several Times
967 -- -------------------------------------
968 --
969 -- Upon return from Compile_Sources all the ALI data structures are left
970 -- intact for further browsing. HOWEVER upon entry to this routine ALI
971 -- data structures are re-initialized if parameter Initialize_ALI_Data
972 -- above is set to true. Typically this is what you want the first time
973 -- you call Compile_Sources. You should not load an ali file, call this
974 -- routine with flag Initialize_ALI_Data set to True and then expect
975 -- that ALI information to be around after the call. Note that the first
976 -- time you call Compile_Sources you better set Initialize_ALI_Data to
977 -- True unless you have called Initialize_ALI yourself.
978 --
979 -- Compile_Sources ALGORITHM : Compile_Sources (Main_Source)
980 -- -------------------------
981 --
982 -- 1. Insert Main_Source in a Queue (Q) and mark it.
983 --
984 -- 2. Let unit.adb be the file at the head of the Q. If unit.adb is
985 -- missing but its corresponding ali file is in an Ada library directory
986 -- (see below) then, remove unit.adb from the Q and goto step 4.
987 -- Otherwise, look at the files under the D (dependency) section of
988 -- unit.ali. If unit.ali does not exist or some of the time stamps do
989 -- not match, (re)compile unit.adb.
990 --
991 -- An Ada library directory is a directory containing Ada specs, ali
992 -- and object files but no source files for the bodies. An Ada library
993 -- directory is communicated to gnatmake by means of some switch so that
994 -- gnatmake can skip the sources whole ali are in that directory.
995 -- There are two reasons for skipping the sources in this case. Firstly,
996 -- Ada libraries typically come without full sources but binding and
997 -- linking against those libraries is still possible. Secondly, it would
998 -- be very wasteful for gnatmake to systematically check the consistency
999 -- of every external Ada library used in a program. The binder is
1000 -- already in charge of catching any potential inconsistencies.
1001 --
1002 -- 3. Look into the W section of unit.ali and insert into the Q all
1003 -- unmarked source files. Mark all files newly inserted in the Q.
1004 -- Specifically, assuming that the W section looks like
1005 --
1006 -- W types%s types.adb types.ali
1007 -- W unchecked_deallocation%s
1008 -- W xref_tab%s xref_tab.adb xref_tab.ali
1009 --
1010 -- Then xref_tab.adb and types.adb are inserted in the Q if they are not
1011 -- already marked.
1012 -- Note that there is no file listed under W unchecked_deallocation%s
1013 -- so no generic body should ever be explicitly compiled (unless the
1014 -- Main_Source at the start was a generic body).
1015 --
1016 -- 4. Repeat steps 2 and 3 above until the Q is empty
1017 --
1018 -- Note that the above algorithm works because the units withed in
1019 -- subunits are transitively included in the W section (with section) of
1020 -- the main unit. Likewise the withed units in a generic body needed
1021 -- during a compilation are also transitively included in the W section
1022 -- of the originally compiled file.
1023
1024 procedure Initialize;
1025 -- Performs default and package initialization. Therefore,
1026 -- Compile_Sources can be called by an external unit.
1027
1028 procedure Link
1029 (ALI_File : File_Name_Type;
1030 Args : Argument_List;
1031 Success : out Boolean);
1032 -- Links ALI_File. Args are the arguments to pass to the linker.
1033 -- Args must have a lower bound of 1. Success indicates if the link
1034 -- succeeded or not.
1035
1036 procedure Scan_Make_Arg (Argv : String; And_Save : Boolean);
1037 -- Scan make arguments. Argv is a single argument to be processed
1038
1039 -------------------
1040 -- Add_Arguments --
1041 -------------------
1042
1043 procedure Add_Arguments (Args : Argument_List) is
1044 begin
1045 if Arguments = null then
1046 Arguments := new Argument_List (1 .. Args'Length + 10);
1047
1048 else
1049 while Last_Argument + Args'Length > Arguments'Last loop
1050 declare
1051 New_Arguments : constant Argument_List_Access :=
1052 new Argument_List (1 .. Arguments'Last * 2);
1053 begin
1054 New_Arguments (1 .. Last_Argument) :=
1055 Arguments (1 .. Last_Argument);
1056 Arguments := New_Arguments;
1057 end;
1058 end loop;
1059 end if;
1060
1061 Arguments (Last_Argument + 1 .. Last_Argument + Args'Length) := Args;
1062 Last_Argument := Last_Argument + Args'Length;
1063 end Add_Arguments;
1064
1065 -- --------------------
1066 -- -- Add_Dependency --
1067 -- --------------------
1068 --
1069 -- procedure Add_Dependency (S : File_Name_Type; On : File_Name_Type) is
1070 -- begin
1071 -- Dependencies.Increment_Last;
1072 -- Dependencies.Table (Dependencies.Last) := (S, On);
1073 -- end Add_Dependency;
1074
1075 ----------------------------
1076 -- Add_Library_Search_Dir --
1077 ----------------------------
1078
1079 procedure Add_Library_Search_Dir
1080 (Path : String;
1081 On_Command_Line : Boolean)
1082 is
1083 begin
1084 if On_Command_Line then
1085 Add_Lib_Search_Dir (Normalize_Pathname (Path));
1086
1087 else
1088 Get_Name_String (Main_Project.Directory.Display_Name);
1089 Add_Lib_Search_Dir
1090 (Normalize_Pathname (Path, Name_Buffer (1 .. Name_Len)));
1091 end if;
1092 end Add_Library_Search_Dir;
1093
1094 --------------------
1095 -- Add_Object_Dir --
1096 --------------------
1097
1098 procedure Add_Object_Dir (N : String) is
1099 begin
1100 Add_Lib_Search_Dir (N);
1101
1102 if Verbose_Mode then
1103 Write_Str ("Adding object directory """);
1104 Write_Str (N);
1105 Write_Str (""".");
1106 Write_Eol;
1107 end if;
1108 end Add_Object_Dir;
1109
1110 --------------------
1111 -- Add_Source_Dir --
1112 --------------------
1113
1114 procedure Add_Source_Dir (N : String) is
1115 begin
1116 Add_Src_Search_Dir (N);
1117
1118 if Verbose_Mode then
1119 Write_Str ("Adding source directory """);
1120 Write_Str (N);
1121 Write_Str (""".");
1122 Write_Eol;
1123 end if;
1124 end Add_Source_Dir;
1125
1126 ---------------------------
1127 -- Add_Source_Search_Dir --
1128 ---------------------------
1129
1130 procedure Add_Source_Search_Dir
1131 (Path : String;
1132 On_Command_Line : Boolean)
1133 is
1134 begin
1135 if On_Command_Line then
1136 Add_Src_Search_Dir (Normalize_Pathname (Path));
1137
1138 else
1139 Get_Name_String (Main_Project.Directory.Display_Name);
1140 Add_Src_Search_Dir
1141 (Normalize_Pathname (Path, Name_Buffer (1 .. Name_Len)));
1142 end if;
1143 end Add_Source_Search_Dir;
1144
1145 ----------------
1146 -- Add_Switch --
1147 ----------------
1148
1149 procedure Add_Switch
1150 (S : String_Access;
1151 Program : Make_Program_Type;
1152 Append_Switch : Boolean := True;
1153 And_Save : Boolean := True)
1154 is
1155 generic
1156 with package T is new Table.Table (<>);
1157 procedure Generic_Position (New_Position : out Integer);
1158 -- Generic procedure that chooses a position for S in T at the
1159 -- beginning or the end, depending on the boolean Append_Switch.
1160 -- Calling this procedure may expand the table.
1161
1162 ----------------------
1163 -- Generic_Position --
1164 ----------------------
1165
1166 procedure Generic_Position (New_Position : out Integer) is
1167 begin
1168 T.Increment_Last;
1169
1170 if Append_Switch then
1171 New_Position := Integer (T.Last);
1172 else
1173 for J in reverse T.Table_Index_Type'Succ (T.First) .. T.Last loop
1174 T.Table (J) := T.Table (T.Table_Index_Type'Pred (J));
1175 end loop;
1176
1177 New_Position := Integer (T.First);
1178 end if;
1179 end Generic_Position;
1180
1181 procedure Gcc_Switches_Pos is new Generic_Position (Gcc_Switches);
1182 procedure Binder_Switches_Pos is new Generic_Position (Binder_Switches);
1183 procedure Linker_Switches_Pos is new Generic_Position (Linker_Switches);
1184
1185 procedure Saved_Gcc_Switches_Pos is new
1186 Generic_Position (Saved_Gcc_Switches);
1187
1188 procedure Saved_Binder_Switches_Pos is new
1189 Generic_Position (Saved_Binder_Switches);
1190
1191 procedure Saved_Linker_Switches_Pos is new
1192 Generic_Position (Saved_Linker_Switches);
1193
1194 New_Position : Integer;
1195
1196 -- Start of processing for Add_Switch
1197
1198 begin
1199 if And_Save then
1200 case Program is
1201 when Compiler =>
1202 Saved_Gcc_Switches_Pos (New_Position);
1203 Saved_Gcc_Switches.Table (New_Position) := S;
1204
1205 when Binder =>
1206 Saved_Binder_Switches_Pos (New_Position);
1207 Saved_Binder_Switches.Table (New_Position) := S;
1208
1209 when Linker =>
1210 Saved_Linker_Switches_Pos (New_Position);
1211 Saved_Linker_Switches.Table (New_Position) := S;
1212
1213 when None =>
1214 raise Program_Error;
1215 end case;
1216
1217 else
1218 case Program is
1219 when Compiler =>
1220 Gcc_Switches_Pos (New_Position);
1221 Gcc_Switches.Table (New_Position) := S;
1222
1223 when Binder =>
1224 Binder_Switches_Pos (New_Position);
1225 Binder_Switches.Table (New_Position) := S;
1226
1227 when Linker =>
1228 Linker_Switches_Pos (New_Position);
1229 Linker_Switches.Table (New_Position) := S;
1230
1231 when None =>
1232 raise Program_Error;
1233 end case;
1234 end if;
1235 end Add_Switch;
1236
1237 procedure Add_Switch
1238 (S : String;
1239 Program : Make_Program_Type;
1240 Append_Switch : Boolean := True;
1241 And_Save : Boolean := True)
1242 is
1243 begin
1244 Add_Switch (S => new String'(S),
1245 Program => Program,
1246 Append_Switch => Append_Switch,
1247 And_Save => And_Save);
1248 end Add_Switch;
1249
1250 ------------------
1251 -- Add_Switches --
1252 ------------------
1253
1254 procedure Add_Switches
1255 (The_Package : Package_Id;
1256 File_Name : String;
1257 Index : Int;
1258 Program : Make_Program_Type;
1259 Unknown_Switches_To_The_Compiler : Boolean := True)
1260 is
1261 Switches : Variable_Value;
1262 Switch_List : String_List_Id;
1263 Element : String_Element;
1264
1265 begin
1266 Switch_May_Be_Passed_To_The_Compiler :=
1267 Unknown_Switches_To_The_Compiler;
1268
1269 if File_Name'Length > 0 then
1270 Name_Len := 0;
1271 Add_Str_To_Name_Buffer (File_Name);
1272 Switches :=
1273 Switches_Of
1274 (Source_File => Name_Find,
1275 Source_File_Name => File_Name,
1276 Source_Index => Index,
1277 Naming => Main_Project.Naming,
1278 In_Package => The_Package,
1279 Allow_ALI => Program = Binder or else Program = Linker);
1280
1281 if Switches.Kind = List then
1282 Program_Args := Program;
1283
1284 Switch_List := Switches.Values;
1285 while Switch_List /= Nil_String loop
1286 Element := Project_Tree.String_Elements.Table (Switch_List);
1287 Get_Name_String (Element.Value);
1288
1289 if Name_Len > 0 then
1290 declare
1291 Argv : constant String := Name_Buffer (1 .. Name_Len);
1292 -- We need a copy, because Name_Buffer may be modified
1293
1294 begin
1295 if Verbose_Mode then
1296 Write_Str (" Adding ");
1297 Write_Line (Argv);
1298 end if;
1299
1300 Scan_Make_Arg (Argv, And_Save => False);
1301
1302 if not Gnatmake_Switch_Found
1303 and then not Switch_May_Be_Passed_To_The_Compiler
1304 then
1305 Errutil.Error_Msg
1306 ('"' & Argv &
1307 """ is not a gnatmake switch. Consider moving " &
1308 "it to Global_Compilation_Switches.",
1309 Element.Location);
1310 Errutil.Finalize;
1311 Make_Failed ("*** illegal switch """ & Argv & """");
1312 end if;
1313 end;
1314 end if;
1315
1316 Switch_List := Element.Next;
1317 end loop;
1318 end if;
1319 end if;
1320 end Add_Switches;
1321
1322 ----------
1323 -- Bind --
1324 ----------
1325
1326 procedure Bind (ALI_File : File_Name_Type; Args : Argument_List) is
1327 Bind_Args : Argument_List (1 .. Args'Last + 2);
1328 Bind_Last : Integer;
1329 Success : Boolean;
1330
1331 begin
1332 pragma Assert (Args'First = 1);
1333
1334 -- Optimize the simple case where the gnatbind command line looks like
1335 -- gnatbind -aO. -I- file.ali --into-> gnatbind file.adb
1336
1337 if Args'Length = 2
1338 and then Args (Args'First).all = "-aO" & Normalized_CWD
1339 and then Args (Args'Last).all = "-I-"
1340 and then ALI_File = Strip_Directory (ALI_File)
1341 then
1342 Bind_Last := Args'First - 1;
1343
1344 else
1345 Bind_Last := Args'Last;
1346 Bind_Args (Args'Range) := Args;
1347 end if;
1348
1349 -- It is completely pointless to re-check source file time stamps. This
1350 -- has been done already by gnatmake
1351
1352 Bind_Last := Bind_Last + 1;
1353 Bind_Args (Bind_Last) := Do_Not_Check_Flag;
1354
1355 Get_Name_String (ALI_File);
1356
1357 Bind_Last := Bind_Last + 1;
1358 Bind_Args (Bind_Last) := new String'(Name_Buffer (1 .. Name_Len));
1359
1360 GNAT.OS_Lib.Normalize_Arguments (Bind_Args (Args'First .. Bind_Last));
1361
1362 Display (Gnatbind.all, Bind_Args (Args'First .. Bind_Last));
1363
1364 if Gnatbind_Path = null then
1365 Make_Failed ("error, unable to locate " & Gnatbind.all);
1366 end if;
1367
1368 GNAT.OS_Lib.Spawn
1369 (Gnatbind_Path.all, Bind_Args (Args'First .. Bind_Last), Success);
1370
1371 if not Success then
1372 Make_Failed ("*** bind failed.");
1373 end if;
1374 end Bind;
1375
1376 --------------------------------
1377 -- Change_To_Object_Directory --
1378 --------------------------------
1379
1380 procedure Change_To_Object_Directory (Project : Project_Id) is
1381 Actual_Project : Project_Id;
1382 Object_Directory : Path_Name_Type;
1383
1384 begin
1385 -- For sources outside of any project, compilation occurs in the object
1386 -- directory of the main project, otherwise we use the project given.
1387
1388 if Project = No_Project then
1389 Actual_Project := Main_Project;
1390 else
1391 Actual_Project := Project;
1392 end if;
1393
1394 -- Nothing to do if the current working directory is already the correct
1395 -- object directory.
1396
1397 if Project_Of_Current_Object_Directory /= Actual_Project then
1398 Project_Of_Current_Object_Directory := Actual_Project;
1399 Object_Directory := Actual_Project.Object_Directory.Name;
1400
1401 -- Set the working directory to the object directory of the actual
1402 -- project.
1403
1404 if Verbose_Mode then
1405 Write_Str ("Changing to object directory of """);
1406 Write_Name (Actual_Project.Display_Name);
1407 Write_Str (""": """);
1408 Write_Name (Object_Directory);
1409 Write_Line ("""");
1410 end if;
1411
1412 Change_Dir (Get_Name_String (Object_Directory));
1413 end if;
1414
1415 exception
1416 -- Fail if unable to change to the object directory
1417
1418 when Directory_Error =>
1419 Make_Failed ("unable to change to object directory """ &
1420 Path_Or_File_Name
1421 (Actual_Project.Object_Directory.Name) &
1422 """ of project " &
1423 Get_Name_String (Actual_Project.Display_Name));
1424 end Change_To_Object_Directory;
1425
1426 -----------
1427 -- Check --
1428 -----------
1429
1430 procedure Check
1431 (Source_File : File_Name_Type;
1432 Source_Index : Int;
1433 Is_Main_Source : Boolean;
1434 The_Args : Argument_List;
1435 Lib_File : File_Name_Type;
1436 Read_Only : Boolean;
1437 ALI : out ALI_Id;
1438 O_File : out File_Name_Type;
1439 O_Stamp : out Time_Stamp_Type)
1440 is
1441 function File_Not_A_Source_Of
1442 (Uname : Name_Id;
1443 Sfile : File_Name_Type) return Boolean;
1444
1445 function First_New_Spec (A : ALI_Id) return File_Name_Type;
1446 -- Looks in the with table entries of A and returns the spec file name
1447 -- of the first withed unit (subprogram) for which no spec existed when
1448 -- A was generated but for which there exists one now, implying that A
1449 -- is now obsolete. If no such unit is found No_File is returned.
1450 -- Otherwise the spec file name of the unit is returned.
1451 --
1452 -- **WARNING** in the event of Uname format modifications, one *MUST*
1453 -- make sure this function is also updated.
1454 --
1455 -- Note: This function should really be in ali.adb and use Uname
1456 -- services, but this causes the whole compiler to be dragged along
1457 -- for gnatbind and gnatmake.
1458
1459 --------------------------
1460 -- File_Not_A_Source_Of --
1461 --------------------------
1462
1463 function File_Not_A_Source_Of
1464 (Uname : Name_Id;
1465 Sfile : File_Name_Type) return Boolean
1466 is
1467 UID : Prj.Unit_Index;
1468 U_Data : Unit_Data;
1469
1470 begin
1471 UID := Units_Htable.Get (Project_Tree.Units_HT, Uname);
1472
1473 if UID /= Prj.No_Unit_Index then
1474 U_Data := Project_Tree.Units.Table (UID);
1475
1476 if U_Data.File_Names (Body_Part).Name /= Sfile
1477 and then U_Data.File_Names (Specification).Name /= Sfile
1478 then
1479 Verbose_Msg (Uname, "sources do not include ", Name_Id (Sfile));
1480 return True;
1481 end if;
1482 end if;
1483
1484 return False;
1485 end File_Not_A_Source_Of;
1486
1487 --------------------
1488 -- First_New_Spec --
1489 --------------------
1490
1491 function First_New_Spec (A : ALI_Id) return File_Name_Type is
1492 Spec_File_Name : File_Name_Type := No_File;
1493
1494 function New_Spec (Uname : Unit_Name_Type) return Boolean;
1495 -- Uname is the name of the spec or body of some ada unit. This
1496 -- function returns True if the Uname is the name of a body which has
1497 -- a spec not mentioned in ALI file A. If True is returned
1498 -- Spec_File_Name above is set to the name of this spec file.
1499
1500 --------------
1501 -- New_Spec --
1502 --------------
1503
1504 function New_Spec (Uname : Unit_Name_Type) return Boolean is
1505 Spec_Name : Unit_Name_Type;
1506 File_Name : File_Name_Type;
1507
1508 begin
1509 -- Test whether Uname is the name of a body unit (i.e. ends
1510 -- with %b)
1511
1512 Get_Name_String (Uname);
1513 pragma
1514 Assert (Name_Len > 2 and then Name_Buffer (Name_Len - 1) = '%');
1515
1516 if Name_Buffer (Name_Len) /= 'b' then
1517 return False;
1518 end if;
1519
1520 -- Convert unit name into spec name
1521
1522 -- ??? this code seems dubious in presence of pragma
1523 -- Source_File_Name since there is no more direct relationship
1524 -- between unit name and file name.
1525
1526 -- ??? Further, what about alternative subunit naming
1527
1528 Name_Buffer (Name_Len) := 's';
1529 Spec_Name := Name_Find;
1530 File_Name := Get_File_Name (Spec_Name, Subunit => False);
1531
1532 -- Look if File_Name is mentioned in A's sdep list.
1533 -- If not look if the file exists. If it does return True.
1534
1535 for D in
1536 ALIs.Table (A).First_Sdep .. ALIs.Table (A).Last_Sdep
1537 loop
1538 if Sdep.Table (D).Sfile = File_Name then
1539 return False;
1540 end if;
1541 end loop;
1542
1543 if Full_Source_Name (File_Name) /= No_File then
1544 Spec_File_Name := File_Name;
1545 return True;
1546 end if;
1547
1548 return False;
1549 end New_Spec;
1550
1551 -- Start of processing for First_New_Spec
1552
1553 begin
1554 U_Chk : for U in
1555 ALIs.Table (A).First_Unit .. ALIs.Table (A).Last_Unit
1556 loop
1557 exit U_Chk when Units.Table (U).Utype = Is_Body_Only
1558 and then New_Spec (Units.Table (U).Uname);
1559
1560 for W in Units.Table (U).First_With
1561 ..
1562 Units.Table (U).Last_With
1563 loop
1564 exit U_Chk when
1565 Withs.Table (W).Afile /= No_File
1566 and then New_Spec (Withs.Table (W).Uname);
1567 end loop;
1568 end loop U_Chk;
1569
1570 return Spec_File_Name;
1571 end First_New_Spec;
1572
1573 ---------------------------------
1574 -- Data declarations for Check --
1575 ---------------------------------
1576
1577 Full_Lib_File : File_Name_Type;
1578 -- Full name of current library file
1579
1580 Full_Obj_File : File_Name_Type;
1581 -- Full name of the object file corresponding to Lib_File
1582
1583 Lib_Stamp : Time_Stamp_Type;
1584 -- Time stamp of the current ada library file
1585
1586 Obj_Stamp : Time_Stamp_Type;
1587 -- Time stamp of the current object file
1588
1589 Modified_Source : File_Name_Type;
1590 -- The first source in Lib_File whose current time stamp differs
1591 -- from that stored in Lib_File.
1592
1593 New_Spec : File_Name_Type;
1594 -- If Lib_File contains in its W (with) section a body (for a
1595 -- subprogram) for which there exists a spec and the spec did not
1596 -- appear in the Sdep section of Lib_File, New_Spec contains the file
1597 -- name of this new spec.
1598
1599 Source_Name : File_Name_Type;
1600 Text : Text_Buffer_Ptr;
1601
1602 Prev_Switch : String_Access;
1603 -- Previous switch processed
1604
1605 Arg : Arg_Id := Arg_Id'First;
1606 -- Current index in Args.Table for a given unit (init to stop warning)
1607
1608 Switch_Found : Boolean;
1609 -- True if a given switch has been found
1610
1611 ALI_Project : Project_Id;
1612 -- If the ALI file is in the object directory of a project, this is
1613 -- the project id.
1614
1615 -- Start of processing for Check
1616
1617 begin
1618 pragma Assert (Lib_File /= No_File);
1619
1620 -- If ALI file is read-only, temporarily set Check_Object_Consistency to
1621 -- False. We don't care if the object file is not there (presumably a
1622 -- library will be used for linking.)
1623
1624 if Read_Only then
1625 declare
1626 Saved_Check_Object_Consistency : constant Boolean :=
1627 Check_Object_Consistency;
1628 begin
1629 Check_Object_Consistency := False;
1630 Text := Read_Library_Info (Lib_File);
1631 Check_Object_Consistency := Saved_Check_Object_Consistency;
1632 end;
1633
1634 else
1635 Text := Read_Library_Info (Lib_File);
1636 end if;
1637
1638 Full_Lib_File := Full_Library_Info_Name;
1639 Full_Obj_File := Full_Object_File_Name;
1640 Lib_Stamp := Current_Library_File_Stamp;
1641 Obj_Stamp := Current_Object_File_Stamp;
1642
1643 if Full_Lib_File = No_File then
1644 Verbose_Msg
1645 (Lib_File,
1646 "being checked ...",
1647 Prefix => " ",
1648 Minimum_Verbosity => Opt.Medium);
1649 else
1650 Verbose_Msg
1651 (Full_Lib_File,
1652 "being checked ...",
1653 Prefix => " ",
1654 Minimum_Verbosity => Opt.Medium);
1655 end if;
1656
1657 ALI := No_ALI_Id;
1658 O_File := Full_Obj_File;
1659 O_Stamp := Obj_Stamp;
1660
1661 if Text = null then
1662 if Full_Lib_File = No_File then
1663 Verbose_Msg (Lib_File, "missing.");
1664
1665 elsif Obj_Stamp (Obj_Stamp'First) = ' ' then
1666 Verbose_Msg (Full_Obj_File, "missing.");
1667
1668 else
1669 Verbose_Msg
1670 (Full_Lib_File, "(" & String (Lib_Stamp) & ") newer than",
1671 Full_Obj_File, "(" & String (Obj_Stamp) & ")");
1672 end if;
1673
1674 else
1675 ALI := Scan_ALI (Lib_File, Text, Ignore_ED => False, Err => True);
1676 Free (Text);
1677
1678 if ALI = No_ALI_Id then
1679 Verbose_Msg (Full_Lib_File, "incorrectly formatted ALI file");
1680 return;
1681
1682 elsif ALIs.Table (ALI).Ver (1 .. ALIs.Table (ALI).Ver_Len) /=
1683 Verbose_Library_Version
1684 then
1685 Verbose_Msg (Full_Lib_File, "compiled with old GNAT version");
1686 ALI := No_ALI_Id;
1687 return;
1688 end if;
1689
1690 -- Don't take Ali file into account if it was generated with
1691 -- errors.
1692
1693 if ALIs.Table (ALI).Compile_Errors then
1694 Verbose_Msg (Full_Lib_File, "had errors, must be recompiled");
1695 ALI := No_ALI_Id;
1696 return;
1697 end if;
1698
1699 -- Don't take Ali file into account if it was generated without
1700 -- object.
1701
1702 if Operating_Mode /= Check_Semantics
1703 and then ALIs.Table (ALI).No_Object
1704 then
1705 Verbose_Msg (Full_Lib_File, "has no corresponding object");
1706 ALI := No_ALI_Id;
1707 return;
1708 end if;
1709
1710 -- Check for matching compiler switches if needed
1711
1712 if Check_Switches then
1713
1714 -- First, collect all the switches
1715
1716 Collect_Arguments
1717 (Source_File, Source_Index, Is_Main_Source, The_Args);
1718
1719 Prev_Switch := Dummy_Switch;
1720
1721 Get_Name_String (ALIs.Table (ALI).Sfile);
1722
1723 Switches_To_Check.Set_Last (0);
1724
1725 for J in 1 .. Last_Argument loop
1726
1727 -- Skip non switches -c, -I and -o switches
1728
1729 if Arguments (J) (1) = '-'
1730 and then Arguments (J) (2) /= 'c'
1731 and then Arguments (J) (2) /= 'o'
1732 and then Arguments (J) (2) /= 'I'
1733 then
1734 Normalize_Compiler_Switches
1735 (Arguments (J).all,
1736 Normalized_Switches,
1737 Last_Norm_Switch);
1738
1739 for K in 1 .. Last_Norm_Switch loop
1740 Switches_To_Check.Increment_Last;
1741 Switches_To_Check.Table (Switches_To_Check.Last) :=
1742 Normalized_Switches (K);
1743 end loop;
1744 end if;
1745 end loop;
1746
1747 for J in 1 .. Switches_To_Check.Last loop
1748
1749 -- Comparing switches is delicate because gcc reorders a number
1750 -- of switches, according to lang-specs.h, but gnatmake doesn't
1751 -- have sufficient knowledge to perform the same reordering.
1752 -- Instead, we ignore orders between different "first letter"
1753 -- switches, but keep orders between same switches, e.g -O -O2
1754 -- is different than -O2 -O, but -g -O is equivalent to -O -g.
1755
1756 if Switches_To_Check.Table (J) (2) /= Prev_Switch (2) or else
1757 (Prev_Switch'Length >= 6 and then
1758 Prev_Switch (2 .. 5) = "gnat" and then
1759 Switches_To_Check.Table (J)'Length >= 6 and then
1760 Switches_To_Check.Table (J) (2 .. 5) = "gnat" and then
1761 Prev_Switch (6) /= Switches_To_Check.Table (J) (6))
1762 then
1763 Prev_Switch := Switches_To_Check.Table (J);
1764 Arg :=
1765 Units.Table (ALIs.Table (ALI).First_Unit).First_Arg;
1766 end if;
1767
1768 Switch_Found := False;
1769
1770 for K in Arg ..
1771 Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg
1772 loop
1773 if
1774 Switches_To_Check.Table (J).all = Args.Table (K).all
1775 then
1776 Arg := K + 1;
1777 Switch_Found := True;
1778 exit;
1779 end if;
1780 end loop;
1781
1782 if not Switch_Found then
1783 if Verbose_Mode then
1784 Verbose_Msg (ALIs.Table (ALI).Sfile,
1785 "switch mismatch """ &
1786 Switches_To_Check.Table (J).all & '"');
1787 end if;
1788
1789 ALI := No_ALI_Id;
1790 return;
1791 end if;
1792 end loop;
1793
1794 if Switches_To_Check.Last /=
1795 Integer (Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg -
1796 Units.Table (ALIs.Table (ALI).First_Unit).First_Arg + 1)
1797 then
1798 if Verbose_Mode then
1799 Verbose_Msg (ALIs.Table (ALI).Sfile,
1800 "different number of switches");
1801
1802 for K in Units.Table (ALIs.Table (ALI).First_Unit).First_Arg
1803 .. Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg
1804 loop
1805 Write_Str (Args.Table (K).all);
1806 Write_Char (' ');
1807 end loop;
1808
1809 Write_Eol;
1810
1811 for J in 1 .. Switches_To_Check.Last loop
1812 Write_Str (Switches_To_Check.Table (J).all);
1813 Write_Char (' ');
1814 end loop;
1815
1816 Write_Eol;
1817 end if;
1818
1819 ALI := No_ALI_Id;
1820 return;
1821 end if;
1822 end if;
1823
1824 -- Get the source files and their message digests. Note that some
1825 -- sources may be missing if ALI is out-of-date.
1826
1827 Set_Source_Table (ALI);
1828
1829 Modified_Source := Time_Stamp_Mismatch (ALI, Read_Only);
1830
1831 if Modified_Source /= No_File then
1832 ALI := No_ALI_Id;
1833
1834 if Verbose_Mode then
1835 Source_Name := Full_Source_Name (Modified_Source);
1836
1837 if Source_Name /= No_File then
1838 Verbose_Msg (Source_Name, "time stamp mismatch");
1839 else
1840 Verbose_Msg (Modified_Source, "missing");
1841 end if;
1842 end if;
1843
1844 else
1845 New_Spec := First_New_Spec (ALI);
1846
1847 if New_Spec /= No_File then
1848 ALI := No_ALI_Id;
1849
1850 if Verbose_Mode then
1851 Source_Name := Full_Source_Name (New_Spec);
1852
1853 if Source_Name /= No_File then
1854 Verbose_Msg (Source_Name, "new spec");
1855 else
1856 Verbose_Msg (New_Spec, "old spec missing");
1857 end if;
1858 end if;
1859
1860 elsif not Read_Only and then Main_Project /= No_Project then
1861
1862 -- Check if a file name does not correspond to the mapping of
1863 -- units to file names.
1864
1865 declare
1866 SD : Sdep_Record;
1867 WR : With_Record;
1868 Unit_Name : Name_Id;
1869
1870 begin
1871 U_Chk :
1872 for U in ALIs.Table (ALI).First_Unit ..
1873 ALIs.Table (ALI).Last_Unit
1874 loop
1875 -- Check if the file name is one of the source of the
1876 -- unit.
1877
1878 Get_Name_String (Units.Table (U).Uname);
1879 Name_Len := Name_Len - 2;
1880 Unit_Name := Name_Find;
1881
1882 if File_Not_A_Source_Of
1883 (Unit_Name, Units.Table (U).Sfile)
1884 then
1885 ALI := No_ALI_Id;
1886 return;
1887 end if;
1888
1889 -- Do the same check for each of the withed units
1890
1891 W_Check :
1892 for W in Units.Table (U).First_With
1893 ..
1894 Units.Table (U).Last_With
1895 loop
1896 WR := Withs.Table (W);
1897
1898 if WR.Sfile /= No_File then
1899 Get_Name_String (WR.Uname);
1900 Name_Len := Name_Len - 2;
1901 Unit_Name := Name_Find;
1902
1903 if File_Not_A_Source_Of (Unit_Name, WR.Sfile) then
1904 ALI := No_ALI_Id;
1905 return;
1906 end if;
1907 end if;
1908 end loop W_Check;
1909 end loop U_Chk;
1910
1911 -- Check also the subunits
1912
1913 D_Check :
1914 for D in ALIs.Table (ALI).First_Sdep ..
1915 ALIs.Table (ALI).Last_Sdep
1916 loop
1917 SD := Sdep.Table (D);
1918 Unit_Name := SD.Subunit_Name;
1919
1920 if Unit_Name /= No_Name then
1921 if File_Not_A_Source_Of (Unit_Name, SD.Sfile) then
1922 ALI := No_ALI_Id;
1923 return;
1924 end if;
1925 end if;
1926 end loop D_Check;
1927 end;
1928
1929 -- Check that the ALI file is in the correct object directory.
1930 -- If it is in the object directory of a project that is
1931 -- extended and it depends on a source that is in one of its
1932 -- extending projects, then the ALI file is not in the correct
1933 -- object directory.
1934
1935 -- First, find the project of this ALI file. As there may be
1936 -- several projects with the same object directory, we first
1937 -- need to find the project of the source.
1938
1939 ALI_Project := No_Project;
1940
1941 declare
1942 Udata : Prj.Unit_Data;
1943
1944 begin
1945 for U in 1 .. Unit_Table.Last (Project_Tree.Units) loop
1946 Udata := Project_Tree.Units.Table (U);
1947
1948 if Udata.File_Names (Body_Part).Name = Source_File then
1949 ALI_Project := Udata.File_Names (Body_Part).Project;
1950 exit;
1951
1952 elsif
1953 Udata.File_Names (Specification).Name = Source_File
1954 then
1955 ALI_Project :=
1956 Udata.File_Names (Specification).Project;
1957 exit;
1958 end if;
1959 end loop;
1960 end;
1961
1962 if ALI_Project = No_Project then
1963 return;
1964 end if;
1965
1966 declare
1967 Obj_Dir : Path_Name_Type;
1968 Res_Obj_Dir : constant String :=
1969 Normalize_Pathname
1970 (Dir_Name
1971 (Get_Name_String (Full_Lib_File)),
1972 Resolve_Links => True,
1973 Case_Sensitive => False);
1974
1975 begin
1976 Name_Len := 0;
1977 Add_Str_To_Name_Buffer (Res_Obj_Dir);
1978
1979 if Name_Len > 1 and then
1980 (Name_Buffer (Name_Len) = '/'
1981 or else
1982 Name_Buffer (Name_Len) = Directory_Separator)
1983 then
1984 Name_Len := Name_Len - 1;
1985 end if;
1986
1987 Obj_Dir := Name_Find;
1988
1989 while ALI_Project /= No_Project
1990 and then Obj_Dir /= ALI_Project.Object_Directory.Name
1991 loop
1992 ALI_Project := ALI_Project.Extended_By;
1993 end loop;
1994 end;
1995
1996 if ALI_Project = No_Project then
1997 ALI := No_ALI_Id;
1998
1999 Verbose_Msg
2000 (Lib_File, " wrong object directory");
2001 return;
2002 end if;
2003
2004 -- If the ALI project is not extended, then it must be in
2005 -- the correct object directory.
2006
2007 if ALI_Project.Extended_By = No_Project then
2008 return;
2009 end if;
2010
2011 -- Count the extending projects
2012
2013 declare
2014 Num_Ext : Natural;
2015 Proj : Project_Id;
2016
2017 begin
2018 Num_Ext := 0;
2019 Proj := ALI_Project;
2020 loop
2021 Proj := Proj.Extended_By;
2022 exit when Proj = No_Project;
2023 Num_Ext := Num_Ext + 1;
2024 end loop;
2025
2026 -- Make a list of the extending projects
2027
2028 declare
2029 Projects : array (1 .. Num_Ext) of Project_Id;
2030 Dep : Sdep_Record;
2031 OK : Boolean := True;
2032
2033 begin
2034 Proj := ALI_Project;
2035 for J in Projects'Range loop
2036 Proj := Proj.Extended_By;
2037 Projects (J) := Proj;
2038 end loop;
2039
2040 -- Now check if any of the dependant sources are in
2041 -- any of these extending projects.
2042
2043 D_Chk :
2044 for D in ALIs.Table (ALI).First_Sdep ..
2045 ALIs.Table (ALI).Last_Sdep
2046 loop
2047 Dep := Sdep.Table (D);
2048
2049 Proj := No_Project;
2050
2051 Unit_Loop :
2052 for
2053 UID in 1 .. Unit_Table.Last (Project_Tree.Units)
2054 loop
2055 if Project_Tree.Units.Table (UID).
2056 File_Names (Body_Part).Name = Dep.Sfile
2057 then
2058 Proj := Project_Tree.Units.Table (UID).
2059 File_Names (Body_Part).Project;
2060
2061 elsif Project_Tree.Units.Table (UID).
2062 File_Names (Specification).Name = Dep.Sfile
2063 then
2064 Proj := Project_Tree.Units.Table (UID).
2065 File_Names (Specification).Project;
2066 end if;
2067
2068 -- If a source is in a project, check if it is one
2069 -- in the list.
2070
2071 if Proj /= No_Project then
2072 for J in Projects'Range loop
2073 if Proj = Projects (J) then
2074 OK := False;
2075 exit D_Chk;
2076 end if;
2077 end loop;
2078
2079 exit Unit_Loop;
2080 end if;
2081 end loop Unit_Loop;
2082 end loop D_Chk;
2083
2084 -- If one of the dependent sources is in one project of
2085 -- the list, then we must recompile.
2086
2087 if not OK then
2088 ALI := No_ALI_Id;
2089 Verbose_Msg (Lib_File, " wrong object directory");
2090 end if;
2091 end;
2092 end;
2093 end if;
2094 end if;
2095 end if;
2096 end Check;
2097
2098 ------------------------
2099 -- Check_For_S_Switch --
2100 ------------------------
2101
2102 procedure Check_For_S_Switch is
2103 begin
2104 -- By default, we generate an object file
2105
2106 Output_Is_Object := True;
2107
2108 for Arg in 1 .. Last_Argument loop
2109 if Arguments (Arg).all = "-S" then
2110 Output_Is_Object := False;
2111
2112 elsif Arguments (Arg).all = "-c" then
2113 Output_Is_Object := True;
2114 end if;
2115 end loop;
2116 end Check_For_S_Switch;
2117
2118 --------------------------
2119 -- Check_Linker_Options --
2120 --------------------------
2121
2122 procedure Check_Linker_Options
2123 (E_Stamp : Time_Stamp_Type;
2124 O_File : out File_Name_Type;
2125 O_Stamp : out Time_Stamp_Type)
2126 is
2127 procedure Check_File (File : File_Name_Type);
2128 -- Update O_File and O_Stamp if the given file is younger than E_Stamp
2129 -- and O_Stamp, or if O_File is No_File and File does not exist.
2130
2131 function Get_Library_File (Name : String) return File_Name_Type;
2132 -- Return the full file name including path of a library based
2133 -- on the name specified with the -l linker option, using the
2134 -- Ada object path. Return No_File if no such file can be found.
2135
2136 type Char_Array is array (Natural) of Character;
2137 type Char_Array_Access is access constant Char_Array;
2138
2139 Template : Char_Array_Access;
2140 pragma Import (C, Template, "__gnat_library_template");
2141
2142 ----------------
2143 -- Check_File --
2144 ----------------
2145
2146 procedure Check_File (File : File_Name_Type) is
2147 Stamp : Time_Stamp_Type;
2148 Name : File_Name_Type := File;
2149
2150 begin
2151 Get_Name_String (Name);
2152
2153 -- Remove any trailing NUL characters
2154
2155 while Name_Len >= Name_Buffer'First
2156 and then Name_Buffer (Name_Len) = NUL
2157 loop
2158 Name_Len := Name_Len - 1;
2159 end loop;
2160
2161 if Name_Len = 0 then
2162 return;
2163
2164 elsif Name_Buffer (1) = '-' then
2165
2166 -- Do not check if File is a switch other than "-l"
2167
2168 if Name_Buffer (2) /= 'l' then
2169 return;
2170 end if;
2171
2172 -- The argument is a library switch, get actual name. It
2173 -- is necessary to make a copy of the relevant part of
2174 -- Name_Buffer as Get_Library_Name uses Name_Buffer as well.
2175
2176 declare
2177 Base_Name : constant String := Name_Buffer (3 .. Name_Len);
2178
2179 begin
2180 Name := Get_Library_File (Base_Name);
2181 end;
2182
2183 if Name = No_File then
2184 return;
2185 end if;
2186 end if;
2187
2188 Stamp := File_Stamp (Name);
2189
2190 -- Find the youngest object file that is younger than the
2191 -- executable. If no such file exist, record the first object
2192 -- file that is not found.
2193
2194 if (O_Stamp < Stamp and then E_Stamp < Stamp)
2195 or else (O_File = No_File and then Stamp (Stamp'First) = ' ')
2196 then
2197 O_Stamp := Stamp;
2198 O_File := Name;
2199
2200 -- Strip the trailing NUL if present
2201
2202 Get_Name_String (O_File);
2203
2204 if Name_Buffer (Name_Len) = NUL then
2205 Name_Len := Name_Len - 1;
2206 O_File := Name_Find;
2207 end if;
2208 end if;
2209 end Check_File;
2210
2211 ----------------------
2212 -- Get_Library_Name --
2213 ----------------------
2214
2215 -- See comments in a-adaint.c about template syntax
2216
2217 function Get_Library_File (Name : String) return File_Name_Type is
2218 File : File_Name_Type := No_File;
2219
2220 begin
2221 Name_Len := 0;
2222
2223 for Ptr in Template'Range loop
2224 case Template (Ptr) is
2225 when '*' =>
2226 Add_Str_To_Name_Buffer (Name);
2227
2228 when ';' =>
2229 File := Full_Lib_File_Name (Name_Find);
2230 exit when File /= No_File;
2231 Name_Len := 0;
2232
2233 when NUL =>
2234 exit;
2235
2236 when others =>
2237 Add_Char_To_Name_Buffer (Template (Ptr));
2238 end case;
2239 end loop;
2240
2241 -- The for loop exited because the end of the template
2242 -- was reached. File contains the last possible file name
2243 -- for the library.
2244
2245 if File = No_File and then Name_Len > 0 then
2246 File := Full_Lib_File_Name (Name_Find);
2247 end if;
2248
2249 return File;
2250 end Get_Library_File;
2251
2252 -- Start of processing for Check_Linker_Options
2253
2254 begin
2255 O_File := No_File;
2256 O_Stamp := (others => ' ');
2257
2258 -- Process linker options from the ALI files
2259
2260 for Opt in 1 .. Linker_Options.Last loop
2261 Check_File (File_Name_Type (Linker_Options.Table (Opt).Name));
2262 end loop;
2263
2264 -- Process options given on the command line
2265
2266 for Opt in Linker_Switches.First .. Linker_Switches.Last loop
2267
2268 -- Check if the previous Opt has one of the two switches
2269 -- that take an extra parameter. (See GCC manual.)
2270
2271 if Opt = Linker_Switches.First
2272 or else (Linker_Switches.Table (Opt - 1).all /= "-u"
2273 and then
2274 Linker_Switches.Table (Opt - 1).all /= "-Xlinker"
2275 and then
2276 Linker_Switches.Table (Opt - 1).all /= "-L")
2277 then
2278 Name_Len := 0;
2279 Add_Str_To_Name_Buffer (Linker_Switches.Table (Opt).all);
2280 Check_File (Name_Find);
2281 end if;
2282 end loop;
2283
2284 end Check_Linker_Options;
2285
2286 -----------------
2287 -- Check_Steps --
2288 -----------------
2289
2290 procedure Check_Steps is
2291 begin
2292 -- If either -c, -b or -l has been specified, we will not necessarily
2293 -- execute all steps.
2294
2295 if Make_Steps then
2296 Do_Compile_Step := Do_Compile_Step and Compile_Only;
2297 Do_Bind_Step := Do_Bind_Step and Bind_Only;
2298 Do_Link_Step := Do_Link_Step and Link_Only;
2299
2300 -- If -c has been specified, but not -b, ignore any potential -l
2301
2302 if Do_Compile_Step and then not Do_Bind_Step then
2303 Do_Link_Step := False;
2304 end if;
2305 end if;
2306 end Check_Steps;
2307
2308 -----------------------
2309 -- Collect_Arguments --
2310 -----------------------
2311
2312 procedure Collect_Arguments
2313 (Source_File : File_Name_Type;
2314 Source_Index : Int;
2315 Is_Main_Source : Boolean;
2316 Args : Argument_List)
2317 is
2318 begin
2319 Arguments_Collected := True;
2320 Arguments_Project := No_Project;
2321 Last_Argument := 0;
2322 Add_Arguments (Args);
2323
2324 if Main_Project /= No_Project then
2325 declare
2326 Source_File_Name : constant String :=
2327 Get_Name_String (Source_File);
2328 Compiler_Package : Prj.Package_Id;
2329 Switches : Prj.Variable_Value;
2330
2331 begin
2332 Prj.Env.
2333 Get_Reference
2334 (Source_File_Name => Source_File_Name,
2335 Project => Arguments_Project,
2336 Path => Arguments_Path_Name,
2337 In_Tree => Project_Tree);
2338
2339 -- If the source is not a source of a project file, add the
2340 -- recorded arguments. Check will be done later if the source
2341 -- need to be compiled that the switch -x has been used.
2342
2343 if Arguments_Project = No_Project then
2344 Add_Arguments (The_Saved_Gcc_Switches.all);
2345
2346 elsif not Arguments_Project.Externally_Built then
2347 -- We get the project directory for the relative path
2348 -- switches and arguments.
2349
2350 Arguments_Project := Ultimate_Extending_Project_Of
2351 (Arguments_Project);
2352
2353 -- If building a dynamic or relocatable library, compile with
2354 -- PIC option, if it exists.
2355
2356 if Arguments_Project.Library
2357 and then Arguments_Project.Library_Kind /= Static
2358 then
2359 declare
2360 PIC : constant String := MLib.Tgt.PIC_Option;
2361
2362 begin
2363 if PIC /= "" then
2364 Add_Arguments ((1 => new String'(PIC)));
2365 end if;
2366 end;
2367 end if;
2368
2369 -- We now look for package Compiler and get the switches from
2370 -- this package.
2371
2372 Compiler_Package :=
2373 Prj.Util.Value_Of
2374 (Name => Name_Compiler,
2375 In_Packages => Arguments_Project.Decl.Packages,
2376 In_Tree => Project_Tree);
2377
2378 if Compiler_Package /= No_Package then
2379
2380 -- If package Gnatmake.Compiler exists, we get the specific
2381 -- switches for the current source, or the global switches,
2382 -- if any.
2383
2384 Switches :=
2385 Switches_Of
2386 (Source_File => Source_File,
2387 Source_File_Name => Source_File_Name,
2388 Source_Index => Source_Index,
2389 Naming => Arguments_Project.Naming,
2390 In_Package => Compiler_Package,
2391 Allow_ALI => False);
2392
2393 end if;
2394
2395 case Switches.Kind is
2396
2397 -- We have a list of switches. We add these switches,
2398 -- plus the saved gcc switches.
2399
2400 when List =>
2401
2402 declare
2403 Current : String_List_Id := Switches.Values;
2404 Element : String_Element;
2405 Number : Natural := 0;
2406
2407 begin
2408 while Current /= Nil_String loop
2409 Element := Project_Tree.String_Elements.
2410 Table (Current);
2411 Number := Number + 1;
2412 Current := Element.Next;
2413 end loop;
2414
2415 declare
2416 New_Args : Argument_List (1 .. Number);
2417 Last_New : Natural := 0;
2418 Dir_Path : constant String := Get_Name_String
2419 (Arguments_Project.Directory.Name);
2420
2421 begin
2422 Current := Switches.Values;
2423
2424 for Index in New_Args'Range loop
2425 Element := Project_Tree.String_Elements.
2426 Table (Current);
2427 Get_Name_String (Element.Value);
2428
2429 if Name_Len > 0 then
2430 Last_New := Last_New + 1;
2431 New_Args (Last_New) :=
2432 new String'(Name_Buffer (1 .. Name_Len));
2433 Test_If_Relative_Path
2434 (New_Args (Last_New),
2435 Parent => Dir_Path,
2436 Including_Non_Switch => False);
2437 end if;
2438
2439 Current := Element.Next;
2440 end loop;
2441
2442 Add_Arguments
2443 (Configuration_Pragmas_Switch
2444 (Arguments_Project) &
2445 New_Args (1 .. Last_New) &
2446 The_Saved_Gcc_Switches.all);
2447 end;
2448 end;
2449
2450 -- We have a single switch. We add this switch,
2451 -- plus the saved gcc switches.
2452
2453 when Single =>
2454 Get_Name_String (Switches.Value);
2455
2456 declare
2457 New_Args : Argument_List :=
2458 (1 => new String'
2459 (Name_Buffer (1 .. Name_Len)));
2460 Dir_Path : constant String :=
2461 Get_Name_String
2462 (Arguments_Project.Directory.Name);
2463
2464 begin
2465 Test_If_Relative_Path
2466 (New_Args (1),
2467 Parent => Dir_Path,
2468 Including_Non_Switch => False);
2469 Add_Arguments
2470 (Configuration_Pragmas_Switch (Arguments_Project) &
2471 New_Args & The_Saved_Gcc_Switches.all);
2472 end;
2473
2474 -- We have no switches from Gnatmake.Compiler.
2475 -- We add the saved gcc switches.
2476
2477 when Undefined =>
2478 Add_Arguments
2479 (Configuration_Pragmas_Switch (Arguments_Project) &
2480 The_Saved_Gcc_Switches.all);
2481 end case;
2482 end if;
2483 end;
2484 end if;
2485
2486 -- For VMS, when compiling the main source, add switch
2487 -- -mdebug-main=_ada_ so that the executable can be debugged
2488 -- by the standard VMS debugger.
2489
2490 if not No_Main_Subprogram
2491 and then Targparm.OpenVMS_On_Target
2492 and then Is_Main_Source
2493 then
2494 -- First, check if compilation will be invoked with -g
2495
2496 for J in 1 .. Last_Argument loop
2497 if Arguments (J)'Length >= 2
2498 and then Arguments (J) (1 .. 2) = "-g"
2499 and then (Arguments (J)'Length < 5
2500 or else Arguments (J) (1 .. 5) /= "-gnat")
2501 then
2502 Add_Arguments
2503 ((1 => new String'("-mdebug-main=_ada_")));
2504 exit;
2505 end if;
2506 end loop;
2507 end if;
2508
2509 -- Set Output_Is_Object, depending if there is a -S switch.
2510 -- If the bind step is not performed, and there is a -S switch,
2511 -- then we will not check for a valid object file.
2512
2513 Check_For_S_Switch;
2514 end Collect_Arguments;
2515
2516 ---------------------
2517 -- Compile_Sources --
2518 ---------------------
2519
2520 procedure Compile_Sources
2521 (Main_Source : File_Name_Type;
2522 Args : Argument_List;
2523 First_Compiled_File : out File_Name_Type;
2524 Most_Recent_Obj_File : out File_Name_Type;
2525 Most_Recent_Obj_Stamp : out Time_Stamp_Type;
2526 Main_Unit : out Boolean;
2527 Compilation_Failures : out Natural;
2528 Main_Index : Int := 0;
2529 Check_Readonly_Files : Boolean := False;
2530 Do_Not_Execute : Boolean := False;
2531 Force_Compilations : Boolean := False;
2532 Keep_Going : Boolean := False;
2533 In_Place_Mode : Boolean := False;
2534 Initialize_ALI_Data : Boolean := True;
2535 Max_Process : Positive := 1)
2536 is
2537 Source_Unit : Unit_Name_Type;
2538 -- Current source unit
2539
2540 Source_File : File_Name_Type;
2541 -- Current source file
2542
2543 Full_Source_File : File_Name_Type;
2544 -- Full name of the current source file
2545
2546 Lib_File : File_Name_Type;
2547 -- Current library file
2548
2549 Full_Lib_File : File_Name_Type;
2550 -- Full name of the current library file
2551
2552 Obj_File : File_Name_Type;
2553 -- Full name of the object file corresponding to Lib_File
2554
2555 Obj_Stamp : Time_Stamp_Type;
2556 -- Time stamp of the current object file
2557
2558 Sfile : File_Name_Type;
2559 -- Contains the source file of the units withed by Source_File
2560
2561 Uname : Unit_Name_Type;
2562 -- Contains the unit name of the units withed by Source_File
2563
2564 ALI : ALI_Id;
2565 -- ALI Id of the current ALI file
2566
2567 -- Comment following declarations ???
2568
2569 Read_Only : Boolean := False;
2570
2571 Compilation_OK : Boolean;
2572 Need_To_Compile : Boolean;
2573
2574 Pid : Process_Id;
2575 Text : Text_Buffer_Ptr;
2576
2577 Mfile : Natural := No_Mapping_File;
2578
2579 Need_To_Check_Standard_Library : Boolean :=
2580 Check_Readonly_Files
2581 and not Unique_Compile;
2582
2583 Mapping_File_Arg : String_Access;
2584
2585 Process_Created : Boolean := False;
2586
2587 procedure Add_Process
2588 (Pid : Process_Id;
2589 Sfile : File_Name_Type;
2590 Afile : File_Name_Type;
2591 Uname : Unit_Name_Type;
2592 Mfile : Natural := No_Mapping_File);
2593 -- Adds process Pid to the current list of outstanding compilation
2594 -- processes and record the full name of the source file Sfile that
2595 -- we are compiling, the name of its library file Afile and the
2596 -- name of its unit Uname. If Mfile is not equal to No_Mapping_File,
2597 -- it is the index of the mapping file used during compilation in the
2598 -- array The_Mapping_File_Names.
2599
2600 procedure Await_Compile
2601 (Sfile : out File_Name_Type;
2602 Afile : out File_Name_Type;
2603 Uname : out Unit_Name_Type;
2604 OK : out Boolean);
2605 -- Awaits that an outstanding compilation process terminates. When
2606 -- it does set Sfile to the name of the source file that was compiled
2607 -- Afile to the name of its library file and Uname to the name of its
2608 -- unit. Note that this time stamp can be used to check whether the
2609 -- compilation did generate an object file. OK is set to True if the
2610 -- compilation succeeded. Note that Sfile, Afile and Uname could be
2611 -- resp. No_File, No_File and No_Name if there were no compilations
2612 -- to wait for.
2613
2614 function Bad_Compilation_Count return Natural;
2615 -- Returns the number of compilation failures
2616
2617 procedure Check_Standard_Library;
2618 -- Check if s-stalib.adb needs to be compiled
2619
2620 procedure Collect_Arguments_And_Compile
2621 (Source_File : File_Name_Type;
2622 Source_Index : Int);
2623 -- Collect arguments from project file (if any) and compile
2624
2625 function Compile
2626 (S : File_Name_Type;
2627 L : File_Name_Type;
2628 Source_Index : Int;
2629 Args : Argument_List) return Process_Id;
2630 -- Compiles S using Args. If S is a GNAT predefined source "-gnatpg" is
2631 -- added to Args. Non blocking call. L corresponds to the expected
2632 -- library file name. Process_Id of the process spawned to execute the
2633 -- compilation.
2634
2635 package Good_ALI is new Table.Table (
2636 Table_Component_Type => ALI_Id,
2637 Table_Index_Type => Natural,
2638 Table_Low_Bound => 1,
2639 Table_Initial => 50,
2640 Table_Increment => 100,
2641 Table_Name => "Make.Good_ALI");
2642 -- Contains the set of valid ALI files that have not yet been scanned
2643
2644 function Good_ALI_Present return Boolean;
2645 -- Returns True if any ALI file was recorded in the previous set
2646
2647 procedure Get_Mapping_File (Project : Project_Id);
2648 -- Get a mapping file name. If there is one to be reused, reuse it.
2649 -- Otherwise, create a new mapping file.
2650
2651 function Get_Next_Good_ALI return ALI_Id;
2652 -- Returns the next good ALI_Id record
2653
2654 procedure Record_Failure
2655 (File : File_Name_Type;
2656 Unit : Unit_Name_Type;
2657 Found : Boolean := True);
2658 -- Records in the previous table that the compilation for File failed.
2659 -- If Found is False then the compilation of File failed because we
2660 -- could not find it. Records also Unit when possible.
2661
2662 procedure Record_Good_ALI (A : ALI_Id);
2663 -- Records in the previous set the Id of an ALI file
2664
2665 -----------------
2666 -- Add_Process --
2667 -----------------
2668
2669 procedure Add_Process
2670 (Pid : Process_Id;
2671 Sfile : File_Name_Type;
2672 Afile : File_Name_Type;
2673 Uname : Unit_Name_Type;
2674 Mfile : Natural := No_Mapping_File)
2675 is
2676 OC1 : constant Positive := Outstanding_Compiles + 1;
2677
2678 begin
2679 pragma Assert (OC1 <= Max_Process);
2680 pragma Assert (Pid /= Invalid_Pid);
2681
2682 Running_Compile (OC1).Pid := Pid;
2683 Running_Compile (OC1).Full_Source_File := Sfile;
2684 Running_Compile (OC1).Lib_File := Afile;
2685 Running_Compile (OC1).Source_Unit := Uname;
2686 Running_Compile (OC1).Mapping_File := Mfile;
2687 Running_Compile (OC1).Project := Arguments_Project;
2688 Running_Compile (OC1).Syntax_Only := Syntax_Only;
2689 Running_Compile (OC1).Output_Is_Object := Output_Is_Object;
2690
2691 Outstanding_Compiles := OC1;
2692 end Add_Process;
2693
2694 --------------------
2695 -- Await_Compile --
2696 -------------------
2697
2698 procedure Await_Compile
2699 (Sfile : out File_Name_Type;
2700 Afile : out File_Name_Type;
2701 Uname : out Unit_Name_Type;
2702 OK : out Boolean)
2703 is
2704 Pid : Process_Id;
2705 Project : Project_Id;
2706 Data : Project_Compilation_Access;
2707
2708 begin
2709 pragma Assert (Outstanding_Compiles > 0);
2710
2711 Sfile := No_File;
2712 Afile := No_File;
2713 Uname := No_Unit_Name;
2714 OK := False;
2715
2716 -- The loop here is a work-around for a problem on VMS; in some
2717 -- circumstances (shared library and several executables, for
2718 -- example), there are child processes other than compilation
2719 -- processes that are received. Until this problem is resolved,
2720 -- we will ignore such processes.
2721
2722 loop
2723 Wait_Process (Pid, OK);
2724
2725 if Pid = Invalid_Pid then
2726 return;
2727 end if;
2728
2729 for J in Running_Compile'First .. Outstanding_Compiles loop
2730 if Pid = Running_Compile (J).Pid then
2731 Sfile := Running_Compile (J).Full_Source_File;
2732 Afile := Running_Compile (J).Lib_File;
2733 Uname := Running_Compile (J).Source_Unit;
2734 Syntax_Only := Running_Compile (J).Syntax_Only;
2735 Output_Is_Object := Running_Compile (J).Output_Is_Object;
2736 Project := Running_Compile (J).Project;
2737
2738 -- If a mapping file was used by this compilation,
2739 -- get its file name for reuse by a subsequent compilation
2740
2741 if Running_Compile (J).Mapping_File /= No_Mapping_File then
2742 Data := Project_Compilation_Htable.Get
2743 (Project_Compilation, Project);
2744 Data.Last_Free_Indices := Data.Last_Free_Indices + 1;
2745 Data.Free_Mapping_File_Indices (Data.Last_Free_Indices) :=
2746 Running_Compile (J).Mapping_File;
2747 end if;
2748
2749 -- To actually remove this Pid and related info from
2750 -- Running_Compile replace its entry with the last valid
2751 -- entry in Running_Compile.
2752
2753 if J = Outstanding_Compiles then
2754 null;
2755
2756 else
2757 Running_Compile (J) :=
2758 Running_Compile (Outstanding_Compiles);
2759 end if;
2760
2761 Outstanding_Compiles := Outstanding_Compiles - 1;
2762 return;
2763 end if;
2764 end loop;
2765
2766 -- This child process was not one of our compilation processes;
2767 -- just ignore it for now.
2768
2769 -- raise Program_Error;
2770 end loop;
2771 end Await_Compile;
2772
2773 ---------------------------
2774 -- Bad_Compilation_Count --
2775 ---------------------------
2776
2777 function Bad_Compilation_Count return Natural is
2778 begin
2779 return Bad_Compilation.Last - Bad_Compilation.First + 1;
2780 end Bad_Compilation_Count;
2781
2782 ----------------------------
2783 -- Check_Standard_Library --
2784 ----------------------------
2785
2786 procedure Check_Standard_Library is
2787 begin
2788 Need_To_Check_Standard_Library := False;
2789
2790 if not Targparm.Suppress_Standard_Library_On_Target then
2791 declare
2792 Sfile : File_Name_Type;
2793 Add_It : Boolean := True;
2794
2795 begin
2796 Name_Len := 0;
2797 Add_Str_To_Name_Buffer (Standard_Library_Package_Body_Name);
2798 Sfile := Name_Enter;
2799
2800 -- If we have a special runtime, we add the standard
2801 -- library only if we can find it.
2802
2803 if RTS_Switch then
2804 Add_It :=
2805 Find_File (Sfile, Osint.Source) /= No_File;
2806 end if;
2807
2808 if Add_It then
2809 if Is_Marked (Sfile) then
2810 if Is_In_Obsoleted (Sfile) then
2811 Executable_Obsolete := True;
2812 end if;
2813
2814 else
2815 Insert_Q (Sfile, Index => 0);
2816 Mark (Sfile, Index => 0);
2817 end if;
2818 end if;
2819 end;
2820 end if;
2821 end Check_Standard_Library;
2822
2823 -----------------------------------
2824 -- Collect_Arguments_And_Compile --
2825 -----------------------------------
2826
2827 procedure Collect_Arguments_And_Compile
2828 (Source_File : File_Name_Type;
2829 Source_Index : Int)
2830 is
2831 begin
2832 -- Process_Created will be set True if an attempt is made to compile
2833 -- the source, that is if it is not in an externally built project.
2834
2835 Process_Created := False;
2836
2837 -- If arguments not yet collected (in Check), collect them now
2838
2839 if not Arguments_Collected then
2840 Collect_Arguments
2841 (Source_File, Source_Index, Source_File = Main_Source, Args);
2842 end if;
2843
2844 -- If we use mapping file (-P or -C switches), then get one
2845
2846 if Create_Mapping_File then
2847 Get_Mapping_File (Arguments_Project);
2848 end if;
2849
2850 -- If the source is part of a project file, we set the ADA_*_PATHs,
2851 -- check for an eventual library project, and use the full path.
2852
2853 if Arguments_Project /= No_Project then
2854 if not Arguments_Project.Externally_Built then
2855 Prj.Env.Set_Ada_Paths
2856 (Arguments_Project,
2857 Project_Tree,
2858 Including_Libraries => True);
2859
2860 if not Unique_Compile
2861 and then MLib.Tgt.Support_For_Libraries /= Prj.None
2862 then
2863 declare
2864 Prj : constant Project_Id :=
2865 Ultimate_Extending_Project_Of (Arguments_Project);
2866
2867 begin
2868 if Prj.Library
2869 and then not Prj.Externally_Built
2870 and then not Prj.Need_To_Build_Lib
2871 then
2872 -- Add to the Q all sources of the project that have
2873 -- not been marked.
2874
2875 Insert_Project_Sources
2876 (The_Project => Prj,
2877 All_Projects => False,
2878 Into_Q => True);
2879
2880 -- Now mark the project as processed
2881
2882 Prj.Need_To_Build_Lib := True;
2883 end if;
2884 end;
2885 end if;
2886
2887 -- Change to object directory of the project file, if necessary
2888
2889 Change_To_Object_Directory (Arguments_Project);
2890
2891 Pid :=
2892 Compile
2893 (File_Name_Type (Arguments_Path_Name),
2894 Lib_File,
2895 Source_Index,
2896 Arguments (1 .. Last_Argument));
2897 Process_Created := True;
2898 end if;
2899
2900 else
2901 -- If this is a source outside of any project file, make sure it
2902 -- will be compiled in object directory of the main project file.
2903
2904 if Main_Project /= No_Project then
2905 Change_To_Object_Directory (Arguments_Project);
2906 end if;
2907
2908 Pid := Compile (Full_Source_File, Lib_File, Source_Index,
2909 Arguments (1 .. Last_Argument));
2910 Process_Created := True;
2911 end if;
2912 end Collect_Arguments_And_Compile;
2913
2914 -------------
2915 -- Compile --
2916 -------------
2917
2918 function Compile
2919 (S : File_Name_Type;
2920 L : File_Name_Type;
2921 Source_Index : Int;
2922 Args : Argument_List) return Process_Id
2923 is
2924 Comp_Args : Argument_List (Args'First .. Args'Last + 10);
2925 Comp_Next : Integer := Args'First;
2926 Comp_Last : Integer;
2927 Arg_Index : Integer;
2928
2929 function Ada_File_Name (Name : File_Name_Type) return Boolean;
2930 -- Returns True if Name is the name of an ada source file
2931 -- (i.e. suffix is .ads or .adb)
2932
2933 -------------------
2934 -- Ada_File_Name --
2935 -------------------
2936
2937 function Ada_File_Name (Name : File_Name_Type) return Boolean is
2938 begin
2939 Get_Name_String (Name);
2940 return
2941 Name_Len > 4
2942 and then Name_Buffer (Name_Len - 3 .. Name_Len - 1) = ".ad"
2943 and then (Name_Buffer (Name_Len) = 'b'
2944 or else
2945 Name_Buffer (Name_Len) = 's');
2946 end Ada_File_Name;
2947
2948 -- Start of processing for Compile
2949
2950 begin
2951 Enter_Into_Obsoleted (S);
2952
2953 -- By default, Syntax_Only is False
2954
2955 Syntax_Only := False;
2956
2957 for J in Args'Range loop
2958 if Args (J).all = "-gnats" then
2959
2960 -- If we compile with -gnats, the bind step and the link step
2961 -- are inhibited. Also, we set Syntax_Only to True, so that
2962 -- we don't fail when we don't find the ALI file, after
2963 -- compilation.
2964
2965 Do_Bind_Step := False;
2966 Do_Link_Step := False;
2967 Syntax_Only := True;
2968
2969 elsif Args (J).all = "-gnatc" then
2970
2971 -- If we compile with -gnatc, the bind step and the link step
2972 -- are inhibited. We set Syntax_Only to False for the case when
2973 -- -gnats was previously specified.
2974
2975 Do_Bind_Step := False;
2976 Do_Link_Step := False;
2977 Syntax_Only := False;
2978 end if;
2979 end loop;
2980
2981 Comp_Args (Comp_Next) := new String'("-gnatea");
2982 Comp_Next := Comp_Next + 1;
2983
2984 Comp_Args (Comp_Next) := Comp_Flag;
2985 Comp_Next := Comp_Next + 1;
2986
2987 -- Optimize the simple case where the gcc command line looks like
2988 -- gcc -c -I. ... -I- file.adb --into-> gcc -c ... file.adb
2989
2990 if Args (Args'First).all = "-I" & Normalized_CWD
2991 and then Args (Args'Last).all = "-I-"
2992 and then S = Strip_Directory (S)
2993 then
2994 Comp_Last := Comp_Next + Args'Length - 3;
2995 Arg_Index := Args'First + 1;
2996
2997 else
2998 Comp_Last := Comp_Next + Args'Length - 1;
2999 Arg_Index := Args'First;
3000 end if;
3001
3002 -- Make a deep copy of the arguments, because Normalize_Arguments
3003 -- may deallocate some arguments.
3004
3005 for J in Comp_Next .. Comp_Last loop
3006 Comp_Args (J) := new String'(Args (Arg_Index).all);
3007 Arg_Index := Arg_Index + 1;
3008 end loop;
3009
3010 -- Set -gnatpg for predefined files (for this purpose the renamings
3011 -- such as Text_IO do not count as predefined). Note that we strip
3012 -- the directory name from the source file name because the call to
3013 -- Fname.Is_Predefined_File_Name cannot deal with directory prefixes.
3014
3015 declare
3016 Fname : constant File_Name_Type := Strip_Directory (S);
3017
3018 begin
3019 if Is_Predefined_File_Name (Fname, False) then
3020 if Check_Readonly_Files then
3021 Comp_Args (Comp_Args'First + 2 .. Comp_Last + 1) :=
3022 Comp_Args (Comp_Args'First + 1 .. Comp_Last);
3023 Comp_Last := Comp_Last + 1;
3024 Comp_Args (Comp_Args'First + 1) := GNAT_Flag;
3025
3026 else
3027 Make_Failed
3028 ("not allowed to compile """ &
3029 Get_Name_String (Fname) &
3030 """; use -a switch, or compile file with " &
3031 """-gnatg"" switch");
3032 end if;
3033 end if;
3034 end;
3035
3036 -- Now check if the file name has one of the suffixes familiar to
3037 -- the gcc driver. If this is not the case then add the ada flag
3038 -- "-x ada".
3039
3040 if not Ada_File_Name (S) and then not Targparm.AAMP_On_Target then
3041 Comp_Last := Comp_Last + 1;
3042 Comp_Args (Comp_Last) := Ada_Flag_1;
3043 Comp_Last := Comp_Last + 1;
3044 Comp_Args (Comp_Last) := Ada_Flag_2;
3045 end if;
3046
3047 if Source_Index /= 0 then
3048 declare
3049 Num : constant String := Source_Index'Img;
3050 begin
3051 Comp_Last := Comp_Last + 1;
3052 Comp_Args (Comp_Last) :=
3053 new String'("-gnateI" & Num (Num'First + 1 .. Num'Last));
3054 end;
3055 end if;
3056
3057 if Source_Index /= 0
3058 or else L /= Strip_Directory (L)
3059 or else Object_Directory_Path /= null
3060 then
3061 -- Build -o argument
3062
3063 Get_Name_String (L);
3064
3065 for J in reverse 1 .. Name_Len loop
3066 if Name_Buffer (J) = '.' then
3067 Name_Len := J + Object_Suffix'Length - 1;
3068 Name_Buffer (J .. Name_Len) := Object_Suffix;
3069 exit;
3070 end if;
3071 end loop;
3072
3073 Comp_Last := Comp_Last + 1;
3074 Comp_Args (Comp_Last) := Output_Flag;
3075 Comp_Last := Comp_Last + 1;
3076
3077 -- If an object directory was specified, prepend the object file
3078 -- name with this object directory.
3079
3080 if Object_Directory_Path /= null then
3081 Comp_Args (Comp_Last) :=
3082 new String'(Object_Directory_Path.all &
3083 Name_Buffer (1 .. Name_Len));
3084
3085 else
3086 Comp_Args (Comp_Last) :=
3087 new String'(Name_Buffer (1 .. Name_Len));
3088 end if;
3089 end if;
3090
3091 if Create_Mapping_File then
3092 Comp_Last := Comp_Last + 1;
3093 Comp_Args (Comp_Last) := Mapping_File_Arg;
3094 end if;
3095
3096 Get_Name_String (S);
3097
3098 Comp_Last := Comp_Last + 1;
3099 Comp_Args (Comp_Last) := new String'(Name_Buffer (1 .. Name_Len));
3100
3101 GNAT.OS_Lib.Normalize_Arguments (Comp_Args (Args'First .. Comp_Last));
3102
3103 Comp_Last := Comp_Last + 1;
3104 Comp_Args (Comp_Last) := new String'("-gnatez");
3105
3106 Display (Gcc.all, Comp_Args (Args'First .. Comp_Last));
3107
3108 if Gcc_Path = null then
3109 Make_Failed ("error, unable to locate " & Gcc.all);
3110 end if;
3111
3112 return
3113 GNAT.OS_Lib.Non_Blocking_Spawn
3114 (Gcc_Path.all, Comp_Args (Args'First .. Comp_Last));
3115 end Compile;
3116
3117 ----------------------
3118 -- Get_Mapping_File --
3119 ----------------------
3120
3121 procedure Get_Mapping_File (Project : Project_Id) is
3122 Data : Project_Compilation_Access;
3123
3124 begin
3125 Data := Project_Compilation_Htable.Get (Project_Compilation, Project);
3126
3127 -- If there is a mapping file ready to be reused, reuse it
3128
3129 if Data.Last_Free_Indices > 0 then
3130 Mfile := Data.Free_Mapping_File_Indices (Data.Last_Free_Indices);
3131 Data.Last_Free_Indices := Data.Last_Free_Indices - 1;
3132
3133 -- Otherwise, create and initialize a new one
3134
3135 else
3136 Init_Mapping_File
3137 (Project => Project, Data => Data.all, File_Index => Mfile);
3138 end if;
3139
3140 -- Put the name in the mapping file argument for the invocation
3141 -- of the compiler.
3142
3143 Free (Mapping_File_Arg);
3144 Mapping_File_Arg :=
3145 new String'("-gnatem=" &
3146 Get_Name_String (Data.Mapping_File_Names (Mfile)));
3147 end Get_Mapping_File;
3148
3149 -----------------------
3150 -- Get_Next_Good_ALI --
3151 -----------------------
3152
3153 function Get_Next_Good_ALI return ALI_Id is
3154 ALI : ALI_Id;
3155
3156 begin
3157 pragma Assert (Good_ALI_Present);
3158 ALI := Good_ALI.Table (Good_ALI.Last);
3159 Good_ALI.Decrement_Last;
3160 return ALI;
3161 end Get_Next_Good_ALI;
3162
3163 ----------------------
3164 -- Good_ALI_Present --
3165 ----------------------
3166
3167 function Good_ALI_Present return Boolean is
3168 begin
3169 return Good_ALI.First <= Good_ALI.Last;
3170 end Good_ALI_Present;
3171
3172 --------------------
3173 -- Record_Failure --
3174 --------------------
3175
3176 procedure Record_Failure
3177 (File : File_Name_Type;
3178 Unit : Unit_Name_Type;
3179 Found : Boolean := True)
3180 is
3181 begin
3182 Bad_Compilation.Increment_Last;
3183 Bad_Compilation.Table (Bad_Compilation.Last) := (File, Unit, Found);
3184 end Record_Failure;
3185
3186 ---------------------
3187 -- Record_Good_ALI --
3188 ---------------------
3189
3190 procedure Record_Good_ALI (A : ALI_Id) is
3191 begin
3192 Good_ALI.Increment_Last;
3193 Good_ALI.Table (Good_ALI.Last) := A;
3194 end Record_Good_ALI;
3195
3196 -- Start of processing for Compile_Sources
3197
3198 begin
3199 pragma Assert (Args'First = 1);
3200
3201 Outstanding_Compiles := 0;
3202 Running_Compile := new Comp_Data_Arr (1 .. Max_Process);
3203
3204 -- Package and Queue initializations
3205
3206 Good_ALI.Init;
3207
3208 if First_Q_Initialization then
3209 Init_Q;
3210 end if;
3211
3212 if Initialize_ALI_Data then
3213 Initialize_ALI;
3214 Initialize_ALI_Source;
3215 end if;
3216
3217 -- The following two flags affect the behavior of ALI.Set_Source_Table.
3218 -- We set Check_Source_Files to True to ensure that source file
3219 -- time stamps are checked, and we set All_Sources to False to
3220 -- avoid checking the presence of the source files listed in the
3221 -- source dependency section of an ali file (which would be a mistake
3222 -- since the ali file may be obsolete).
3223
3224 Check_Source_Files := True;
3225 All_Sources := False;
3226
3227 -- Only insert in the Q if it is not already done, to avoid simultaneous
3228 -- compilations if -jnnn is used.
3229
3230 if not Is_Marked (Main_Source, Main_Index) then
3231 Insert_Q (Main_Source, Index => Main_Index);
3232 Mark (Main_Source, Main_Index);
3233 end if;
3234
3235 First_Compiled_File := No_File;
3236 Most_Recent_Obj_File := No_File;
3237 Most_Recent_Obj_Stamp := Empty_Time_Stamp;
3238 Main_Unit := False;
3239
3240 -- Keep looping until there is no more work to do (the Q is empty)
3241 -- and all the outstanding compilations have terminated
3242
3243 Make_Loop : while not Empty_Q or else Outstanding_Compiles > 0 loop
3244
3245 -- If the user does not want to keep going in case of errors then
3246 -- wait for the remaining outstanding compiles and then exit.
3247
3248 if Bad_Compilation_Count > 0 and then not Keep_Going then
3249 while Outstanding_Compiles > 0 loop
3250 Await_Compile
3251 (Full_Source_File, Lib_File, Source_Unit, Compilation_OK);
3252
3253 if not Compilation_OK then
3254 Record_Failure (Full_Source_File, Source_Unit);
3255 end if;
3256 end loop;
3257
3258 exit Make_Loop;
3259 end if;
3260
3261 -- PHASE 1: Check if there is more work that we can do (i.e. the Q
3262 -- is non empty). If there is, do it only if we have not yet used
3263 -- up all the available processes.
3264
3265 if not Empty_Q and then Outstanding_Compiles < Max_Process then
3266 declare
3267 Source_Index : Int;
3268 -- Index of the current unit in the current source file
3269
3270 begin
3271 Extract_From_Q (Source_File, Source_Unit, Source_Index);
3272 Full_Source_File := Osint.Full_Source_Name (Source_File);
3273 Lib_File := Osint.Lib_File_Name
3274 (Source_File, Source_Index);
3275 Full_Lib_File := Osint.Full_Lib_File_Name (Lib_File);
3276
3277 -- If this source has already been compiled, the executable is
3278 -- obsolete.
3279
3280 if Is_In_Obsoleted (Source_File) then
3281 Executable_Obsolete := True;
3282 end if;
3283
3284 -- If the library file is an Ada library skip it
3285
3286 if Full_Lib_File /= No_File
3287 and then In_Ada_Lib_Dir (Full_Lib_File)
3288 then
3289 Verbose_Msg
3290 (Lib_File,
3291 "is in an Ada library",
3292 Prefix => " ",
3293 Minimum_Verbosity => Opt.High);
3294
3295 -- If the library file is a read-only library skip it, but
3296 -- only if, when using project files, this library file is
3297 -- in the right object directory (a read-only ALI file
3298 -- in the object directory of a project being extended
3299 -- should not be skipped).
3300
3301 elsif Full_Lib_File /= No_File
3302 and then not Check_Readonly_Files
3303 and then Is_Readonly_Library (Full_Lib_File)
3304 and then Is_In_Object_Directory (Source_File, Full_Lib_File)
3305 then
3306 Verbose_Msg
3307 (Lib_File,
3308 "is a read-only library",
3309 Prefix => " ",
3310 Minimum_Verbosity => Opt.High);
3311
3312 -- The source file that we are checking cannot be located
3313
3314 elsif Full_Source_File = No_File then
3315 Record_Failure (Source_File, Source_Unit, False);
3316
3317 -- Source and library files can be located but are internal
3318 -- files
3319
3320 elsif not Check_Readonly_Files
3321 and then Full_Lib_File /= No_File
3322 and then Is_Internal_File_Name (Source_File, False)
3323 then
3324 if Force_Compilations then
3325 Fail
3326 ("not allowed to compile """ &
3327 Get_Name_String (Source_File) &
3328 """; use -a switch, or compile file with " &
3329 """-gnatg"" switch");
3330 end if;
3331
3332 Verbose_Msg
3333 (Lib_File,
3334 "is an internal library",
3335 Prefix => " ",
3336 Minimum_Verbosity => Opt.High);
3337
3338 -- The source file that we are checking can be located
3339
3340 else
3341 Arguments_Collected := False;
3342
3343 Collect_Arguments (Source_File, Source_Index,
3344 Source_File = Main_Source, Args);
3345
3346 -- Do nothing if project of source is externally built
3347
3348 if Arguments_Project = No_Project
3349 or else not Arguments_Project.Externally_Built
3350 then
3351 -- Don't waste any time if we have to recompile anyway
3352
3353 Obj_Stamp := Empty_Time_Stamp;
3354 Need_To_Compile := Force_Compilations;
3355
3356 if not Force_Compilations then
3357 Read_Only :=
3358 Full_Lib_File /= No_File
3359 and then not Check_Readonly_Files
3360 and then Is_Readonly_Library (Full_Lib_File);
3361 Check (Source_File, Source_Index,
3362 Source_File = Main_Source, Args, Lib_File,
3363 Read_Only, ALI, Obj_File, Obj_Stamp);
3364 Need_To_Compile := (ALI = No_ALI_Id);
3365 end if;
3366
3367 if not Need_To_Compile then
3368 -- The ALI file is up-to-date. Record its Id
3369
3370 Record_Good_ALI (ALI);
3371
3372 -- Record the time stamp of the most recent object
3373 -- file as long as no (re)compilations are needed.
3374
3375 if First_Compiled_File = No_File
3376 and then (Most_Recent_Obj_File = No_File
3377 or else Obj_Stamp > Most_Recent_Obj_Stamp)
3378 then
3379 Most_Recent_Obj_File := Obj_File;
3380 Most_Recent_Obj_Stamp := Obj_Stamp;
3381 end if;
3382
3383 else
3384 -- Check that switch -x has been used if a source
3385 -- outside of project files need to be compiled.
3386
3387 if Main_Project /= No_Project
3388 and then Arguments_Project = No_Project
3389 and then not External_Unit_Compilation_Allowed
3390 then
3391 Make_Failed ("external source ("
3392 & Get_Name_String (Source_File)
3393 & ") is not part of any project;"
3394 & " cannot be compiled without"
3395 & " gnatmake switch -x");
3396 end if;
3397
3398 -- Is this the first file we have to compile?
3399
3400 if First_Compiled_File = No_File then
3401 First_Compiled_File := Full_Source_File;
3402 Most_Recent_Obj_File := No_File;
3403
3404 if Do_Not_Execute then
3405 exit Make_Loop;
3406 end if;
3407 end if;
3408
3409 if In_Place_Mode then
3410
3411 -- If the library file was not found, then save
3412 -- the library file near the source file.
3413
3414 if Full_Lib_File = No_File then
3415 Lib_File := Osint.Lib_File_Name
3416 (Full_Source_File, Source_Index);
3417
3418 -- If the library file was found, then save the
3419 -- library file in the same place.
3420
3421 else
3422 Lib_File := Full_Lib_File;
3423 end if;
3424
3425 end if;
3426
3427 -- Start the compilation and record it. We can do
3428 -- this because there is at least one free process.
3429
3430 Collect_Arguments_And_Compile
3431 (Source_File, Source_Index);
3432
3433 -- Make sure we could successfully start
3434 -- the Compilation.
3435
3436 if Process_Created then
3437 if Pid = Invalid_Pid then
3438 Record_Failure (Full_Source_File, Source_Unit);
3439 else
3440 Add_Process
3441 (Pid,
3442 Full_Source_File,
3443 Lib_File,
3444 Source_Unit,
3445 Mfile);
3446 end if;
3447 end if;
3448 end if;
3449 end if;
3450 end if;
3451 end;
3452 end if;
3453
3454 -- PHASE 2: Now check if we should wait for a compilation to
3455 -- finish. This is the case if all the available processes are
3456 -- busy compiling sources or there is nothing else to do
3457 -- (that is the Q is empty and there are no good ALIs to process).
3458
3459 if Outstanding_Compiles = Max_Process
3460 or else (Empty_Q
3461 and then not Good_ALI_Present
3462 and then Outstanding_Compiles > 0)
3463 then
3464 Await_Compile
3465 (Full_Source_File, Lib_File, Source_Unit, Compilation_OK);
3466
3467 if not Compilation_OK then
3468 Record_Failure (Full_Source_File, Source_Unit);
3469 end if;
3470
3471 if Compilation_OK or else Keep_Going then
3472
3473 -- Re-read the updated library file
3474
3475 declare
3476 Saved_Object_Consistency : constant Boolean :=
3477 Check_Object_Consistency;
3478
3479 begin
3480 -- If compilation was not OK, or if output is not an
3481 -- object file and we don't do the bind step, don't check
3482 -- for object consistency.
3483
3484 Check_Object_Consistency :=
3485 Check_Object_Consistency
3486 and Compilation_OK
3487 and (Output_Is_Object or Do_Bind_Step);
3488 Text := Read_Library_Info (Lib_File);
3489
3490 -- Restore Check_Object_Consistency to its initial value
3491
3492 Check_Object_Consistency := Saved_Object_Consistency;
3493 end;
3494
3495 -- If an ALI file was generated by this compilation, scan
3496 -- the ALI file and record it.
3497
3498 -- If the scan fails, a previous ali file is inconsistent with
3499 -- the unit just compiled.
3500
3501 if Text /= null then
3502 ALI :=
3503 Scan_ALI (Lib_File, Text, Ignore_ED => False, Err => True);
3504
3505 if ALI = No_ALI_Id then
3506
3507 -- Record a failure only if not already done
3508
3509 if Compilation_OK then
3510 Inform
3511 (Lib_File,
3512 "incompatible ALI file, please recompile");
3513 Record_Failure (Full_Source_File, Source_Unit);
3514 end if;
3515 else
3516 Free (Text);
3517 Record_Good_ALI (ALI);
3518 end if;
3519
3520 -- If we could not read the ALI file that was just generated
3521 -- then there could be a problem reading either the ALI or the
3522 -- corresponding object file (if Check_Object_Consistency is
3523 -- set Read_Library_Info checks that the time stamp of the
3524 -- object file is more recent than that of the ALI). However,
3525 -- we record a failure only if not already done.
3526
3527 else
3528 if Compilation_OK and not Syntax_Only then
3529 Inform
3530 (Lib_File,
3531 "WARNING: ALI or object file not found after compile");
3532 Record_Failure (Full_Source_File, Source_Unit);
3533 end if;
3534 end if;
3535 end if;
3536 end if;
3537
3538 -- PHASE 3: Check if we recorded good ALI files. If yes process
3539 -- them now in the order in which they have been recorded. There
3540 -- are two occasions in which we record good ali files. The first is
3541 -- in phase 1 when, after scanning an existing ALI file we realize
3542 -- it is up-to-date, the second instance is after a successful
3543 -- compilation.
3544
3545 while Good_ALI_Present loop
3546 ALI := Get_Next_Good_ALI;
3547
3548 declare
3549 Source_Index : Int := Unit_Index_Of (ALIs.Table (ALI).Afile);
3550
3551 begin
3552 -- If we are processing the library file corresponding to the
3553 -- main source file check if this source can be a main unit.
3554
3555 if ALIs.Table (ALI).Sfile = Main_Source and then
3556 Source_Index = Main_Index
3557 then
3558 Main_Unit := ALIs.Table (ALI).Main_Program /= None;
3559 end if;
3560
3561 -- The following adds the standard library (s-stalib) to the
3562 -- list of files to be handled by gnatmake: this file and any
3563 -- files it depends on are always included in every bind,
3564 -- even if they are not in the explicit dependency list.
3565 -- Of course, it is not added if Suppress_Standard_Library
3566 -- is True.
3567
3568 -- However, to avoid annoying output about s-stalib.ali being
3569 -- read only, when "-v" is used, we add the standard library
3570 -- only when "-a" is used.
3571
3572 if Need_To_Check_Standard_Library then
3573 Check_Standard_Library;
3574 end if;
3575
3576 -- Now insert in the Q the unmarked source files (i.e. those
3577 -- which have never been inserted in the Q and hence never
3578 -- considered). Only do that if Unique_Compile is False.
3579
3580 if not Unique_Compile then
3581 for J in
3582 ALIs.Table (ALI).First_Unit .. ALIs.Table (ALI).Last_Unit
3583 loop
3584 for K in
3585 Units.Table (J).First_With .. Units.Table (J).Last_With
3586 loop
3587 Sfile := Withs.Table (K).Sfile;
3588 Uname := Withs.Table (K).Uname;
3589
3590 -- If project files are used, find the proper source
3591 -- to compile, in case Sfile is the spec, but there
3592 -- is a body.
3593
3594 if Main_Project /= No_Project then
3595 declare
3596 Unit_Name : Name_Id;
3597 Uid : Prj.Unit_Index;
3598 Udata : Unit_Data;
3599
3600 begin
3601 Get_Name_String (Uname);
3602 Name_Len := Name_Len - 2;
3603 Unit_Name := Name_Find;
3604 Uid :=
3605 Units_Htable.Get
3606 (Project_Tree.Units_HT, Unit_Name);
3607
3608 if Uid /= Prj.No_Unit_Index then
3609 Udata := Project_Tree.Units.Table (Uid);
3610
3611 if
3612 Udata.File_Names (Body_Part).Name /=
3613 No_File
3614 and then
3615 Udata.File_Names (Body_Part).Path.Name /=
3616 Slash
3617 then
3618 Sfile := Udata.File_Names (Body_Part).Name;
3619 Source_Index :=
3620 Udata.File_Names (Body_Part).Index;
3621
3622 elsif
3623 Udata.File_Names (Specification).Name /=
3624 No_File
3625 and then
3626 Udata.File_Names
3627 (Specification).Path.Name /= Slash
3628 then
3629 Sfile :=
3630 Udata.File_Names (Specification).Name;
3631 Source_Index :=
3632 Udata.File_Names (Specification).Index;
3633 end if;
3634 end if;
3635 end;
3636 end if;
3637
3638 Dependencies.Append ((ALIs.Table (ALI).Sfile, Sfile));
3639
3640 if Is_In_Obsoleted (Sfile) then
3641 Executable_Obsolete := True;
3642 end if;
3643
3644 if Sfile = No_File then
3645 Debug_Msg
3646 ("Skipping generic:", Withs.Table (K).Uname);
3647
3648 else
3649 Source_Index :=
3650 Unit_Index_Of (Withs.Table (K).Afile);
3651
3652 if Is_Marked (Sfile, Source_Index) then
3653 Debug_Msg ("Skipping marked file:", Sfile);
3654
3655 elsif not Check_Readonly_Files
3656 and then Is_Internal_File_Name (Sfile, False)
3657 then
3658 Debug_Msg ("Skipping internal file:", Sfile);
3659
3660 else
3661 Insert_Q
3662 (Sfile, Withs.Table (K).Uname, Source_Index);
3663 Mark (Sfile, Source_Index);
3664 end if;
3665 end if;
3666 end loop;
3667 end loop;
3668 end if;
3669 end;
3670 end loop;
3671
3672 if Display_Compilation_Progress then
3673 Write_Str ("completed ");
3674 Write_Int (Int (Q_Front));
3675 Write_Str (" out of ");
3676 Write_Int (Int (Q.Last));
3677 Write_Str (" (");
3678 Write_Int (Int ((Q_Front * 100) / (Q.Last - Q.First)));
3679 Write_Str ("%)...");
3680 Write_Eol;
3681 end if;
3682 end loop Make_Loop;
3683
3684 Compilation_Failures := Bad_Compilation_Count;
3685
3686 -- Compilation is finished
3687
3688 -- Delete any temporary configuration pragma file
3689
3690 if not Debug.Debug_Flag_N then
3691 Delete_Temp_Config_Files;
3692 end if;
3693 end Compile_Sources;
3694
3695 ----------------------------------
3696 -- Configuration_Pragmas_Switch --
3697 ----------------------------------
3698
3699 function Configuration_Pragmas_Switch
3700 (For_Project : Project_Id) return Argument_List
3701 is
3702 The_Packages : Package_Id;
3703 Gnatmake : Package_Id;
3704 Compiler : Package_Id;
3705
3706 Global_Attribute : Variable_Value := Nil_Variable_Value;
3707 Local_Attribute : Variable_Value := Nil_Variable_Value;
3708
3709 Global_Attribute_Present : Boolean := False;
3710 Local_Attribute_Present : Boolean := False;
3711
3712 Result : Argument_List (1 .. 3);
3713 Last : Natural := 0;
3714
3715 function Absolute_Path
3716 (Path : Path_Name_Type;
3717 Project : Project_Id) return String;
3718 -- Returns an absolute path for a configuration pragmas file
3719
3720 -------------------
3721 -- Absolute_Path --
3722 -------------------
3723
3724 function Absolute_Path
3725 (Path : Path_Name_Type;
3726 Project : Project_Id) return String
3727 is
3728 begin
3729 Get_Name_String (Path);
3730
3731 declare
3732 Path_Name : constant String := Name_Buffer (1 .. Name_Len);
3733
3734 begin
3735 if Is_Absolute_Path (Path_Name) then
3736 return Path_Name;
3737
3738 else
3739 declare
3740 Parent_Directory : constant String :=
3741 Get_Name_String (Project.Directory.Display_Name);
3742
3743 begin
3744 if Parent_Directory (Parent_Directory'Last) =
3745 Directory_Separator
3746 then
3747 return Parent_Directory & Path_Name;
3748
3749 else
3750 return Parent_Directory & Directory_Separator & Path_Name;
3751 end if;
3752 end;
3753 end if;
3754 end;
3755 end Absolute_Path;
3756
3757 -- Start of processing for Configuration_Pragmas_Switch
3758
3759 begin
3760 Prj.Env.Create_Config_Pragmas_File
3761 (For_Project, Main_Project, Project_Tree);
3762
3763 if For_Project.Config_File_Name /= No_Path then
3764 Temporary_Config_File := For_Project.Config_File_Temp;
3765 Last := 1;
3766 Result (1) :=
3767 new String'
3768 ("-gnatec=" & Get_Name_String (For_Project.Config_File_Name));
3769
3770 else
3771 Temporary_Config_File := False;
3772 end if;
3773
3774 -- Check for attribute Builder'Global_Configuration_Pragmas
3775
3776 The_Packages := Main_Project.Decl.Packages;
3777 Gnatmake :=
3778 Prj.Util.Value_Of
3779 (Name => Name_Builder,
3780 In_Packages => The_Packages,
3781 In_Tree => Project_Tree);
3782
3783 if Gnatmake /= No_Package then
3784 Global_Attribute := Prj.Util.Value_Of
3785 (Variable_Name => Name_Global_Configuration_Pragmas,
3786 In_Variables => Project_Tree.Packages.Table
3787 (Gnatmake).Decl.Attributes,
3788 In_Tree => Project_Tree);
3789 Global_Attribute_Present :=
3790 Global_Attribute /= Nil_Variable_Value
3791 and then Get_Name_String (Global_Attribute.Value) /= "";
3792
3793 if Global_Attribute_Present then
3794 declare
3795 Path : constant String :=
3796 Absolute_Path
3797 (Path_Name_Type (Global_Attribute.Value),
3798 Global_Attribute.Project);
3799 begin
3800 if not Is_Regular_File (Path) then
3801 if Debug.Debug_Flag_F then
3802 Make_Failed
3803 ("cannot find configuration pragmas file "
3804 & File_Name (Path));
3805 else
3806 Make_Failed
3807 ("cannot find configuration pragmas file " & Path);
3808 end if;
3809 end if;
3810
3811 Last := Last + 1;
3812 Result (Last) := new String'("-gnatec=" & Path);
3813 end;
3814 end if;
3815 end if;
3816
3817 -- Check for attribute Compiler'Local_Configuration_Pragmas
3818
3819 The_Packages := For_Project.Decl.Packages;
3820 Compiler :=
3821 Prj.Util.Value_Of
3822 (Name => Name_Compiler,
3823 In_Packages => The_Packages,
3824 In_Tree => Project_Tree);
3825
3826 if Compiler /= No_Package then
3827 Local_Attribute := Prj.Util.Value_Of
3828 (Variable_Name => Name_Local_Configuration_Pragmas,
3829 In_Variables => Project_Tree.Packages.Table
3830 (Compiler).Decl.Attributes,
3831 In_Tree => Project_Tree);
3832 Local_Attribute_Present :=
3833 Local_Attribute /= Nil_Variable_Value
3834 and then Get_Name_String (Local_Attribute.Value) /= "";
3835
3836 if Local_Attribute_Present then
3837 declare
3838 Path : constant String :=
3839 Absolute_Path
3840 (Path_Name_Type (Local_Attribute.Value),
3841 Local_Attribute.Project);
3842 begin
3843 if not Is_Regular_File (Path) then
3844 if Debug.Debug_Flag_F then
3845 Make_Failed
3846 ("cannot find configuration pragmas file "
3847 & File_Name (Path));
3848
3849 else
3850 Make_Failed
3851 ("cannot find configuration pragmas file " & Path);
3852 end if;
3853 end if;
3854
3855 Last := Last + 1;
3856 Result (Last) := new String'("-gnatec=" & Path);
3857 end;
3858 end if;
3859 end if;
3860
3861 return Result (1 .. Last);
3862 end Configuration_Pragmas_Switch;
3863
3864 ---------------
3865 -- Debug_Msg --
3866 ---------------
3867
3868 procedure Debug_Msg (S : String; N : Name_Id) is
3869 begin
3870 if Debug.Debug_Flag_W then
3871 Write_Str (" ... ");
3872 Write_Str (S);
3873 Write_Str (" ");
3874 Write_Name (N);
3875 Write_Eol;
3876 end if;
3877 end Debug_Msg;
3878
3879 procedure Debug_Msg (S : String; N : File_Name_Type) is
3880 begin
3881 Debug_Msg (S, Name_Id (N));
3882 end Debug_Msg;
3883
3884 procedure Debug_Msg (S : String; N : Unit_Name_Type) is
3885 begin
3886 Debug_Msg (S, Name_Id (N));
3887 end Debug_Msg;
3888
3889 ---------------------------
3890 -- Delete_All_Temp_Files --
3891 ---------------------------
3892
3893 procedure Delete_All_Temp_Files is
3894 begin
3895 if not Debug.Debug_Flag_N then
3896 Delete_Mapping_Files;
3897 Delete_Temp_Config_Files;
3898 Prj.Env.Delete_All_Path_Files (Project_Tree);
3899 end if;
3900 end Delete_All_Temp_Files;
3901
3902 --------------------------
3903 -- Delete_Mapping_Files --
3904 --------------------------
3905
3906 procedure Delete_Mapping_Files is
3907 Success : Boolean;
3908 pragma Warnings (Off, Success);
3909
3910 Proj : Project_List;
3911 Data : Project_Compilation_Access;
3912
3913 begin
3914 -- The caller is responsible for ensuring that Debug_Flag_N is False
3915
3916 pragma Assert (not Debug.Debug_Flag_N);
3917
3918 Proj := Project_Tree.Projects;
3919 while Proj /= null loop
3920 Data := Project_Compilation_Htable.Get
3921 (Project_Compilation, Proj.Project);
3922
3923 if Data /= null and then Data.Mapping_File_Names /= null then
3924 for Index in 1 .. Data.Last_Mapping_File_Names loop
3925 Delete_File
3926 (Name => Get_Name_String (Data.Mapping_File_Names (Index)),
3927 Success => Success);
3928 end loop;
3929 end if;
3930
3931 Proj := Proj.Next;
3932 end loop;
3933 end Delete_Mapping_Files;
3934
3935 ------------------------------
3936 -- Delete_Temp_Config_Files --
3937 ------------------------------
3938
3939 procedure Delete_Temp_Config_Files is
3940 Success : Boolean;
3941 Proj : Project_List;
3942 pragma Warnings (Off, Success);
3943
3944 begin
3945 -- The caller is responsible for ensuring that Debug_Flag_N is False
3946
3947 pragma Assert (not Debug.Debug_Flag_N);
3948
3949 if Main_Project /= No_Project then
3950 Proj := Project_Tree.Projects;
3951 while Proj /= null loop
3952 if Proj.Project.Config_File_Temp then
3953 if Verbose_Mode then
3954 Write_Str ("Deleting temp configuration file """);
3955 Write_Str (Get_Name_String (Proj.Project.Config_File_Name));
3956 Write_Line ("""");
3957 end if;
3958
3959 Delete_File
3960 (Name => Get_Name_String (Proj.Project.Config_File_Name),
3961 Success => Success);
3962
3963 -- Make sure that we don't have a config file for this project,
3964 -- in case there are several mains. In this case, we will
3965 -- recreate another config file: we cannot reuse the one that
3966 -- we just deleted!
3967
3968 Proj.Project.Config_Checked := False;
3969 Proj.Project.Config_File_Name := No_Path;
3970 Proj.Project.Config_File_Temp := False;
3971 end if;
3972 Proj := Proj.Next;
3973 end loop;
3974 end if;
3975 end Delete_Temp_Config_Files;
3976
3977 -------------
3978 -- Display --
3979 -------------
3980
3981 procedure Display (Program : String; Args : Argument_List) is
3982 begin
3983 pragma Assert (Args'First = 1);
3984
3985 if Display_Executed_Programs then
3986 Write_Str (Program);
3987
3988 for J in Args'Range loop
3989
3990 -- Never display -gnatea nor -gnatez
3991
3992 if Args (J).all /= "-gnatea"
3993 and then
3994 Args (J).all /= "-gnatez"
3995 then
3996 -- Do not display the mapping file argument automatically
3997 -- created when using a project file.
3998
3999 if Main_Project = No_Project
4000 or else Debug.Debug_Flag_N
4001 or else Args (J)'Length < 8
4002 or else
4003 Args (J) (Args (J)'First .. Args (J)'First + 6) /= "-gnatem"
4004 then
4005 -- When -dn is not specified, do not display the config
4006 -- pragmas switch (-gnatec) for the temporary file created
4007 -- by the project manager (always the first -gnatec switch).
4008 -- Reset Temporary_Config_File to False so that the eventual
4009 -- other -gnatec switches will be displayed.
4010
4011 if (not Debug.Debug_Flag_N)
4012 and then Temporary_Config_File
4013 and then Args (J)'Length > 7
4014 and then Args (J) (Args (J)'First .. Args (J)'First + 6)
4015 = "-gnatec"
4016 then
4017 Temporary_Config_File := False;
4018
4019 -- Do not display the -F=mapping_file switch for
4020 -- gnatbind, if -dn is not specified.
4021
4022 elsif Debug.Debug_Flag_N
4023 or else Args (J)'Length < 4
4024 or else
4025 Args (J) (Args (J)'First .. Args (J)'First + 2) /= "-F="
4026 then
4027 Write_Str (" ");
4028
4029 -- If -df is used, only display file names, not path
4030 -- names.
4031
4032 if Debug.Debug_Flag_F then
4033 declare
4034 Equal_Pos : Natural;
4035 begin
4036 Equal_Pos := Args (J)'First - 1;
4037 for K in Args (J)'Range loop
4038 if Args (J) (K) = '=' then
4039 Equal_Pos := K;
4040 exit;
4041 end if;
4042 end loop;
4043
4044 if Is_Absolute_Path
4045 (Args (J) (Equal_Pos + 1 .. Args (J)'Last))
4046 then
4047 Write_Str
4048 (Args (J) (Args (J)'First .. Equal_Pos));
4049 Write_Str
4050 (File_Name
4051 (Args (J)
4052 (Equal_Pos + 1 .. Args (J)'Last)));
4053
4054 else
4055 Write_Str (Args (J).all);
4056 end if;
4057 end;
4058
4059 else
4060 Write_Str (Args (J).all);
4061 end if;
4062 end if;
4063 end if;
4064 end if;
4065 end loop;
4066
4067 Write_Eol;
4068 end if;
4069 end Display;
4070
4071 ----------------------
4072 -- Display_Commands --
4073 ----------------------
4074
4075 procedure Display_Commands (Display : Boolean := True) is
4076 begin
4077 Display_Executed_Programs := Display;
4078 end Display_Commands;
4079
4080 -------------
4081 -- Empty_Q --
4082 -------------
4083
4084 function Empty_Q return Boolean is
4085 begin
4086 if Debug.Debug_Flag_P then
4087 Write_Str (" Q := [");
4088
4089 for J in Q_Front .. Q.Last - 1 loop
4090 Write_Str (" ");
4091 Write_Name (Q.Table (J).File);
4092 Write_Eol;
4093 Write_Str (" ");
4094 end loop;
4095
4096 Write_Str ("]");
4097 Write_Eol;
4098 end if;
4099
4100 return Q_Front >= Q.Last;
4101 end Empty_Q;
4102
4103 --------------------------
4104 -- Enter_Into_Obsoleted --
4105 --------------------------
4106
4107 procedure Enter_Into_Obsoleted (F : File_Name_Type) is
4108 Name : constant String := Get_Name_String (F);
4109 First : Natural;
4110 F2 : File_Name_Type;
4111
4112 begin
4113 First := Name'Last;
4114 while First > Name'First
4115 and then Name (First - 1) /= Directory_Separator
4116 and then Name (First - 1) /= '/'
4117 loop
4118 First := First - 1;
4119 end loop;
4120
4121 if First /= Name'First then
4122 Name_Len := 0;
4123 Add_Str_To_Name_Buffer (Name (First .. Name'Last));
4124 F2 := Name_Find;
4125
4126 else
4127 F2 := F;
4128 end if;
4129
4130 Debug_Msg ("New entry in Obsoleted table:", F2);
4131 Obsoleted.Set (F2, True);
4132 end Enter_Into_Obsoleted;
4133
4134 --------------------
4135 -- Extract_From_Q --
4136 --------------------
4137
4138 procedure Extract_From_Q
4139 (Source_File : out File_Name_Type;
4140 Source_Unit : out Unit_Name_Type;
4141 Source_Index : out Int)
4142 is
4143 File : constant File_Name_Type := Q.Table (Q_Front).File;
4144 Unit : constant Unit_Name_Type := Q.Table (Q_Front).Unit;
4145 Index : constant Int := Q.Table (Q_Front).Index;
4146
4147 begin
4148 if Debug.Debug_Flag_Q then
4149 Write_Str (" Q := Q - [ ");
4150 Write_Name (File);
4151
4152 if Index /= 0 then
4153 Write_Str (", ");
4154 Write_Int (Index);
4155 end if;
4156
4157 Write_Str (" ]");
4158 Write_Eol;
4159 end if;
4160
4161 Q_Front := Q_Front + 1;
4162 Source_File := File;
4163 Source_Unit := Unit;
4164 Source_Index := Index;
4165 end Extract_From_Q;
4166
4167 --------------
4168 -- Gnatmake --
4169 --------------
4170
4171 procedure Gnatmake is
4172 Main_Source_File : File_Name_Type;
4173 -- The source file containing the main compilation unit
4174
4175 Compilation_Failures : Natural;
4176
4177 Total_Compilation_Failures : Natural := 0;
4178
4179 Is_Main_Unit : Boolean;
4180 -- Set to True by Compile_Sources if the Main_Source_File can be a
4181 -- main unit.
4182
4183 Main_ALI_File : File_Name_Type;
4184 -- The ali file corresponding to Main_Source_File
4185
4186 Executable : File_Name_Type := No_File;
4187 -- The file name of an executable
4188
4189 Non_Std_Executable : Boolean := False;
4190 -- Non_Std_Executable is set to True when there is a possibility
4191 -- that the linker will not choose the correct executable file name.
4192
4193 Current_Work_Dir : constant String_Access :=
4194 new String'(Get_Current_Dir);
4195 -- The current working directory, used to modify some relative path
4196 -- switches on the command line when a project file is used.
4197
4198 Current_Main_Index : Int := 0;
4199 -- If not zero, the index of the current main unit in its source file
4200
4201 Stand_Alone_Libraries : Boolean := False;
4202 -- Set to True when there are Stand-Alone Libraries, so that gnatbind
4203 -- is invoked with the -F switch to force checking of elaboration flags.
4204
4205 Mapping_Path : Path_Name_Type := No_Path;
4206 -- The path name of the mapping file
4207
4208 Discard : Boolean;
4209 pragma Warnings (Off, Discard);
4210
4211 procedure Check_Mains;
4212 -- Check that the main subprograms do exist and that they all
4213 -- belong to the same project file.
4214
4215 procedure Create_Binder_Mapping_File
4216 (Args : in out Argument_List; Last_Arg : in out Natural);
4217 -- Create a binder mapping file and add the necessary switch
4218
4219 -----------------
4220 -- Check_Mains --
4221 -----------------
4222
4223 procedure Check_Mains is
4224 Real_Main_Project : Project_Id := No_Project;
4225 -- The project of the first main
4226
4227 Proj : Project_Id := No_Project;
4228 -- The project of the current main
4229
4230 Real_Path : String_Access;
4231
4232 begin
4233 Mains.Reset;
4234
4235 -- Check each main
4236
4237 loop
4238 declare
4239 Main : constant String := Mains.Next_Main;
4240 -- The name specified on the command line may include
4241 -- directory information.
4242
4243 File_Name : constant String := Base_Name (Main);
4244 -- The simple file name of the current main
4245
4246 begin
4247 exit when Main = "";
4248
4249 -- Get the project of the current main
4250
4251 Proj := Prj.Env.Project_Of
4252 (File_Name, Main_Project, Project_Tree);
4253
4254 -- Fail if the current main is not a source of a
4255 -- project.
4256
4257 if Proj = No_Project then
4258 Make_Failed
4259 ("""" & Main & """ is not a source of any project");
4260
4261 else
4262 -- If there is directory information, check that
4263 -- the source exists and, if it does, that the path
4264 -- is the actual path of a source of a project.
4265
4266 if Main /= File_Name then
4267 Real_Path :=
4268 Locate_Regular_File
4269 (Main &
4270 Body_Suffix_Of
4271 (Project_Tree, "ada", Main_Project.Naming),
4272 "");
4273 if Real_Path = null then
4274 Real_Path :=
4275 Locate_Regular_File
4276 (Main &
4277 Spec_Suffix_Of
4278 (Project_Tree, "ada", Main_Project.Naming),
4279 "");
4280 end if;
4281
4282 if Real_Path = null then
4283 Real_Path := Locate_Regular_File (Main, "");
4284 end if;
4285
4286 -- Fail if the file cannot be found
4287
4288 if Real_Path = null then
4289 Make_Failed ("file """ & Main & """ does not exist");
4290 end if;
4291
4292 declare
4293 Project_Path : constant String :=
4294 Prj.Env.File_Name_Of_Library_Unit_Body
4295 (Name => File_Name,
4296 Project => Main_Project,
4297 In_Tree => Project_Tree,
4298 Main_Project_Only => False,
4299 Full_Path => True);
4300 Normed_Path : constant String :=
4301 Normalize_Pathname
4302 (Real_Path.all,
4303 Case_Sensitive => False);
4304 Proj_Path : constant String :=
4305 Normalize_Pathname
4306 (Project_Path,
4307 Case_Sensitive => False);
4308
4309 begin
4310 Free (Real_Path);
4311
4312 -- Fail if it is not the correct path
4313
4314 if Normed_Path /= Proj_Path then
4315 if Verbose_Mode then
4316 Set_Standard_Error;
4317 Write_Str (Normed_Path);
4318 Write_Str (" /= ");
4319 Write_Line (Proj_Path);
4320 end if;
4321
4322 Make_Failed
4323 ("""" & Main &
4324 """ is not a source of any project");
4325 end if;
4326 end;
4327 end if;
4328
4329 if not Unique_Compile then
4330
4331 -- Record the project, if it is the first main
4332
4333 if Real_Main_Project = No_Project then
4334 Real_Main_Project := Proj;
4335
4336 elsif Proj /= Real_Main_Project then
4337
4338 -- Fail, as the current main is not a source
4339 -- of the same project as the first main.
4340
4341 Make_Failed
4342 ("""" & Main &
4343 """ is not a source of project " &
4344 Get_Name_String (Real_Main_Project.Name));
4345 end if;
4346 end if;
4347 end if;
4348
4349 -- If -u and -U are not used, we may have mains that
4350 -- are sources of a project that is not the one
4351 -- specified with switch -P.
4352
4353 if not Unique_Compile then
4354 Main_Project := Real_Main_Project;
4355 end if;
4356 end;
4357 end loop;
4358 end Check_Mains;
4359
4360 --------------------------------
4361 -- Create_Binder_Mapping_File --
4362 --------------------------------
4363
4364 procedure Create_Binder_Mapping_File
4365 (Args : in out Argument_List; Last_Arg : in out Natural)
4366 is
4367 Mapping_FD : File_Descriptor := Invalid_FD;
4368 -- A File Descriptor for an eventual mapping file
4369
4370 ALI_Unit : Unit_Name_Type := No_Unit_Name;
4371 -- The unit name of an ALI file
4372
4373 ALI_Name : File_Name_Type := No_File;
4374 -- The file name of the ALI file
4375
4376 ALI_Project : Project_Id := No_Project;
4377 -- The project of the ALI file
4378
4379 Bytes : Integer;
4380 OK : Boolean := True;
4381
4382 Status : Boolean;
4383 -- For call to Close
4384
4385 begin
4386 Tempdir.Create_Temp_File (Mapping_FD, Mapping_Path);
4387 Record_Temp_File (Mapping_Path);
4388
4389 if Mapping_FD /= Invalid_FD then
4390
4391 -- Traverse all units
4392
4393 for J in Unit_Table.First ..
4394 Unit_Table.Last (Project_Tree.Units)
4395 loop
4396 declare
4397 Unit : constant Unit_Data := Project_Tree.Units.Table (J);
4398 begin
4399 if Unit.Name /= No_Name then
4400
4401 -- If there is a body, put it in the mapping
4402
4403 if Unit.File_Names (Body_Part).Name /= No_File
4404 and then Unit.File_Names (Body_Part).Project /=
4405 No_Project
4406 then
4407 Get_Name_String (Unit.Name);
4408 Add_Str_To_Name_Buffer ("%b");
4409 ALI_Unit := Name_Find;
4410 ALI_Name :=
4411 Lib_File_Name
4412 (Unit.File_Names (Body_Part).Display_Name);
4413 ALI_Project := Unit.File_Names (Body_Part).Project;
4414
4415 -- Otherwise, if there is a spec, put it in the
4416 -- mapping.
4417
4418 elsif Unit.File_Names (Specification).Name /= No_File
4419 and then Unit.File_Names (Specification).Project /=
4420 No_Project
4421 then
4422 Get_Name_String (Unit.Name);
4423 Add_Str_To_Name_Buffer ("%s");
4424 ALI_Unit := Name_Find;
4425 ALI_Name :=
4426 Lib_File_Name
4427 (Unit.File_Names (Specification).Display_Name);
4428 ALI_Project := Unit.File_Names (Specification).Project;
4429
4430 else
4431 ALI_Name := No_File;
4432 end if;
4433
4434 -- If we have something to put in the mapping then do it
4435 -- now. However, if the project is extended, we don't put
4436 -- anything in the mapping file, because we do not know
4437 -- where the ALI file is: it might be in the extended
4438 -- project obj dir as well as in the extending project
4439 -- obj dir.
4440
4441 if ALI_Name /= No_File
4442 and then ALI_Project.Extended_By = No_Project
4443 and then ALI_Project.Extends = No_Project
4444 then
4445 -- First check if the ALI file exists. If it does not,
4446 -- do not put the unit in the mapping file.
4447
4448 declare
4449 ALI : constant String := Get_Name_String (ALI_Name);
4450
4451 begin
4452 -- For library projects, use the library directory,
4453 -- for other projects, use the object directory.
4454
4455 if ALI_Project.Library then
4456 Get_Name_String (ALI_Project.Library_Dir.Name);
4457 else
4458 Get_Name_String
4459 (ALI_Project.Object_Directory.Name);
4460 end if;
4461
4462 if Name_Buffer (Name_Len) /=
4463 Directory_Separator
4464 then
4465 Add_Char_To_Name_Buffer (Directory_Separator);
4466 end if;
4467
4468 Add_Str_To_Name_Buffer (ALI);
4469 Add_Char_To_Name_Buffer (ASCII.LF);
4470
4471 declare
4472 ALI_Path_Name : constant String :=
4473 Name_Buffer (1 .. Name_Len);
4474
4475 begin
4476 if Is_Regular_File
4477 (ALI_Path_Name (1 .. ALI_Path_Name'Last - 1))
4478 then
4479
4480 -- First line is the unit name
4481
4482 Get_Name_String (ALI_Unit);
4483 Add_Char_To_Name_Buffer (ASCII.LF);
4484 Bytes :=
4485 Write
4486 (Mapping_FD,
4487 Name_Buffer (1)'Address,
4488 Name_Len);
4489 OK := Bytes = Name_Len;
4490
4491 exit when not OK;
4492
4493 -- Second line it the ALI file name
4494
4495 Get_Name_String (ALI_Name);
4496 Add_Char_To_Name_Buffer (ASCII.LF);
4497 Bytes :=
4498 Write
4499 (Mapping_FD,
4500 Name_Buffer (1)'Address,
4501 Name_Len);
4502 OK := Bytes = Name_Len;
4503
4504 exit when not OK;
4505
4506 -- Third line it the ALI path name
4507
4508 Bytes :=
4509 Write
4510 (Mapping_FD,
4511 ALI_Path_Name (1)'Address,
4512 ALI_Path_Name'Length);
4513 OK := Bytes = ALI_Path_Name'Length;
4514
4515 -- If OK is False, it means we were unable
4516 -- to write a line. No point in continuing
4517 -- with the other units.
4518
4519 exit when not OK;
4520 end if;
4521 end;
4522 end;
4523 end if;
4524 end if;
4525 end;
4526 end loop;
4527
4528 Close (Mapping_FD, Status);
4529
4530 OK := OK and Status;
4531
4532 -- If the creation of the mapping file was successful,
4533 -- we add the switch to the arguments of gnatbind.
4534
4535 if OK then
4536 Last_Arg := Last_Arg + 1;
4537 Args (Last_Arg) :=
4538 new String'("-F=" & Get_Name_String (Mapping_Path));
4539 end if;
4540 end if;
4541 end Create_Binder_Mapping_File;
4542
4543 -- Start of processing for Gnatmake
4544
4545 -- This body is very long, should be broken down ???
4546
4547 begin
4548 Install_Int_Handler (Sigint_Intercepted'Access);
4549
4550 Do_Compile_Step := True;
4551 Do_Bind_Step := True;
4552 Do_Link_Step := True;
4553
4554 Obsoleted.Reset;
4555
4556 Make.Initialize;
4557
4558 Bind_Shared := No_Shared_Switch'Access;
4559 Link_With_Shared_Libgcc := No_Shared_Libgcc_Switch'Access;
4560
4561 Failed_Links.Set_Last (0);
4562 Successful_Links.Set_Last (0);
4563
4564 -- Special case when switch -B was specified
4565
4566 if Build_Bind_And_Link_Full_Project then
4567
4568 -- When switch -B is specified, there must be a project file
4569
4570 if Main_Project = No_Project then
4571 Make_Failed ("-B cannot be used without a project file");
4572
4573 -- No main program may be specified on the command line
4574
4575 elsif Osint.Number_Of_Files /= 0 then
4576 Make_Failed ("-B cannot be used with a main specified on " &
4577 "the command line");
4578
4579 -- And the project file cannot be a library project file
4580
4581 elsif Main_Project.Library then
4582 Make_Failed ("-B cannot be used for a library project file");
4583
4584 else
4585 No_Main_Subprogram := True;
4586 Insert_Project_Sources
4587 (The_Project => Main_Project,
4588 All_Projects => Unique_Compile_All_Projects,
4589 Into_Q => False);
4590
4591 -- If there are no sources to compile, we fail
4592
4593 if Osint.Number_Of_Files = 0 then
4594 Make_Failed ("no sources to compile");
4595 end if;
4596
4597 -- Specify -n for gnatbind and add the ALI files of all the
4598 -- sources, except the one which is a fake main subprogram:
4599 -- this is the one for the binder generated file and it will be
4600 -- transmitted to gnatlink. These sources are those that are
4601 -- in the queue.
4602
4603 Add_Switch ("-n", Binder, And_Save => True);
4604
4605 for J in Q.First .. Q.Last - 1 loop
4606 Add_Switch
4607 (Get_Name_String
4608 (Lib_File_Name (Q.Table (J).File)),
4609 Binder, And_Save => True);
4610 end loop;
4611 end if;
4612
4613 elsif Main_Index /= 0 and then Osint.Number_Of_Files > 1 then
4614 Make_Failed ("cannot specify several mains with a multi-unit index");
4615
4616 elsif Main_Project /= No_Project then
4617
4618 -- If the main project file is a library project file, main(s)
4619 -- cannot be specified on the command line.
4620
4621 if Osint.Number_Of_Files /= 0 then
4622 if Main_Project.Library
4623 and then not Unique_Compile
4624 and then ((not Make_Steps) or else Bind_Only or else Link_Only)
4625 then
4626 Make_Failed ("cannot specify a main program " &
4627 "on the command line for a library project file");
4628
4629 else
4630 -- Check that each main on the command line is a source of a
4631 -- project file and, if there are several mains, each of them
4632 -- is a source of the same project file.
4633
4634 Check_Mains;
4635 end if;
4636
4637 -- If no mains have been specified on the command line,
4638 -- and we are using a project file, we either find the main(s)
4639 -- in the attribute Main of the main project, or we put all
4640 -- the sources of the project file as mains.
4641
4642 else
4643 if Main_Index /= 0 then
4644 Make_Failed ("cannot specify a multi-unit index but no main " &
4645 "on the command line");
4646 end if;
4647
4648 declare
4649 Value : String_List_Id := Main_Project.Mains;
4650
4651 begin
4652 -- The attribute Main is an empty list or not specified,
4653 -- or else gnatmake was invoked with the switch "-u".
4654
4655 if Value = Prj.Nil_String or else Unique_Compile then
4656
4657 if (not Make_Steps) or else Compile_Only
4658 or else not Main_Project.Library
4659 then
4660 -- First make sure that the binder and the linker
4661 -- will not be invoked.
4662
4663 Do_Bind_Step := False;
4664 Do_Link_Step := False;
4665
4666 -- Put all the sources in the queue
4667
4668 No_Main_Subprogram := True;
4669 Insert_Project_Sources
4670 (The_Project => Main_Project,
4671 All_Projects => Unique_Compile_All_Projects,
4672 Into_Q => False);
4673
4674 -- If no sources to compile, then there is nothing to do
4675
4676 if Osint.Number_Of_Files = 0 then
4677 if not Quiet_Output then
4678 Osint.Write_Program_Name;
4679 Write_Line (": no sources to compile");
4680 end if;
4681
4682 Delete_All_Temp_Files;
4683 Exit_Program (E_Success);
4684 end if;
4685 end if;
4686
4687 else
4688 -- The attribute Main is not an empty list.
4689 -- Put all the main subprograms in the list as if there
4690 -- were specified on the command line. However, if attribute
4691 -- Languages includes a language other than Ada, only
4692 -- include the Ada mains; if there is no Ada main, compile
4693 -- all the sources of the project.
4694
4695 declare
4696 Languages : constant Variable_Value :=
4697 Prj.Util.Value_Of
4698 (Name_Languages,
4699 Main_Project.Decl.Attributes,
4700 Project_Tree);
4701
4702 Current : String_List_Id;
4703 Element : String_Element;
4704
4705 Foreign_Language : Boolean := False;
4706 At_Least_One_Main : Boolean := False;
4707
4708 begin
4709 -- First, determine if there is a foreign language in
4710 -- attribute Languages.
4711
4712 if not Languages.Default then
4713 Current := Languages.Values;
4714
4715 Look_For_Foreign :
4716 while Current /= Nil_String loop
4717 Element := Project_Tree.String_Elements.
4718 Table (Current);
4719 Get_Name_String (Element.Value);
4720 To_Lower (Name_Buffer (1 .. Name_Len));
4721
4722 if Name_Buffer (1 .. Name_Len) /= "ada" then
4723 Foreign_Language := True;
4724 exit Look_For_Foreign;
4725 end if;
4726
4727 Current := Element.Next;
4728 end loop Look_For_Foreign;
4729 end if;
4730
4731 -- Then, find all mains, or if there is a foreign
4732 -- language, all the Ada mains.
4733
4734 while Value /= Prj.Nil_String loop
4735 Get_Name_String
4736 (Project_Tree.String_Elements.Table (Value).Value);
4737
4738 -- To know if a main is an Ada main, get its project.
4739 -- It should be the project specified on the command
4740 -- line.
4741
4742 if (not Foreign_Language) or else
4743 Prj.Env.Project_Of
4744 (Name_Buffer (1 .. Name_Len),
4745 Main_Project,
4746 Project_Tree) =
4747 Main_Project
4748 then
4749 At_Least_One_Main := True;
4750 Osint.Add_File
4751 (Get_Name_String
4752 (Project_Tree.String_Elements.Table
4753 (Value).Value),
4754 Index =>
4755 Project_Tree.String_Elements.Table
4756 (Value).Index);
4757 end if;
4758
4759 Value := Project_Tree.String_Elements.Table
4760 (Value).Next;
4761 end loop;
4762
4763 -- If we did not get any main, it means that all mains
4764 -- in attribute Mains are in a foreign language and -B
4765 -- was not specified to gnatmake; so, we fail.
4766
4767 if not At_Least_One_Main then
4768 Make_Failed
4769 ("no Ada mains, use -B to build foreign main");
4770 end if;
4771 end;
4772
4773 end if;
4774 end;
4775 end if;
4776 end if;
4777
4778 if Verbose_Mode then
4779 Write_Eol;
4780 Display_Version ("GNATMAKE", "1995");
4781 end if;
4782
4783 if Main_Project /= No_Project
4784 and then Main_Project.Externally_Built
4785 then
4786 Make_Failed
4787 ("nothing to do for a main project that is externally built");
4788 end if;
4789
4790 if Osint.Number_Of_Files = 0 then
4791 if Main_Project /= No_Project
4792 and then Main_Project.Library
4793 then
4794 if Do_Bind_Step
4795 and then not Main_Project.Standalone_Library
4796 then
4797 Make_Failed ("only stand-alone libraries may be bound");
4798 end if;
4799
4800 -- Add the default search directories to be able to find libgnat
4801
4802 Osint.Add_Default_Search_Dirs;
4803
4804 -- Get the target parameters, so that the correct binder generated
4805 -- files are generated if OpenVMS is the target.
4806
4807 begin
4808 Targparm.Get_Target_Parameters;
4809
4810 exception
4811 when Unrecoverable_Error =>
4812 Make_Failed ("*** make failed.");
4813 end;
4814
4815 -- And bind and or link the library
4816
4817 MLib.Prj.Build_Library
4818 (For_Project => Main_Project,
4819 In_Tree => Project_Tree,
4820 Gnatbind => Gnatbind.all,
4821 Gnatbind_Path => Gnatbind_Path,
4822 Gcc => Gcc.all,
4823 Gcc_Path => Gcc_Path,
4824 Bind => Bind_Only,
4825 Link => Link_Only);
4826
4827 Delete_All_Temp_Files;
4828 Exit_Program (E_Success);
4829
4830 else
4831 -- Output usage information if no files to compile
4832
4833 Usage;
4834 Exit_Program (E_Fatal);
4835 end if;
4836 end if;
4837
4838 -- If -M was specified, behave as if -n was specified
4839
4840 if List_Dependencies then
4841 Do_Not_Execute := True;
4842 end if;
4843
4844 -- Note that Osint.M.Next_Main_Source will always return the (possibly
4845 -- abbreviated file) without any directory information.
4846
4847 Main_Source_File := Next_Main_Source;
4848
4849 if Current_File_Index /= No_Index then
4850 Main_Index := Current_File_Index;
4851 end if;
4852
4853 Add_Switch ("-I-", Compiler, And_Save => True);
4854
4855 if Main_Project = No_Project then
4856 if Look_In_Primary_Dir then
4857
4858 Add_Switch
4859 ("-I" &
4860 Normalize_Directory_Name
4861 (Get_Primary_Src_Search_Directory.all).all,
4862 Compiler, Append_Switch => False,
4863 And_Save => False);
4864
4865 end if;
4866
4867 else
4868 -- If we use a project file, we have already checked that a main
4869 -- specified on the command line with directory information has the
4870 -- path name corresponding to a correct source in the project tree.
4871 -- So, we don't need the directory information to be taken into
4872 -- account by Find_File, and in fact it may lead to take the wrong
4873 -- sources for other compilation units, when there are extending
4874 -- projects.
4875
4876 Look_In_Primary_Dir := False;
4877 Add_Switch ("-I-", Binder, And_Save => True);
4878 end if;
4879
4880 -- If the user wants a program without a main subprogram, add the
4881 -- appropriate switch to the binder.
4882
4883 if No_Main_Subprogram then
4884 Add_Switch ("-z", Binder, And_Save => True);
4885 end if;
4886
4887 if Main_Project /= No_Project then
4888
4889 if Main_Project.Object_Directory /= No_Path_Information then
4890 -- Change current directory to object directory of main project
4891
4892 Project_Of_Current_Object_Directory := No_Project;
4893 Change_To_Object_Directory (Main_Project);
4894 end if;
4895
4896 -- Source file lookups should be cached for efficiency.
4897 -- Source files are not supposed to change.
4898
4899 Osint.Source_File_Data (Cache => True);
4900
4901 -- Find the file name of the (first) main unit
4902
4903 declare
4904 Main_Source_File_Name : constant String :=
4905 Get_Name_String (Main_Source_File);
4906 Main_Unit_File_Name : constant String :=
4907 Prj.Env.File_Name_Of_Library_Unit_Body
4908 (Name => Main_Source_File_Name,
4909 Project => Main_Project,
4910 In_Tree => Project_Tree,
4911 Main_Project_Only =>
4912 not Unique_Compile);
4913
4914 The_Packages : constant Package_Id :=
4915 Main_Project.Decl.Packages;
4916
4917 Builder_Package : constant Prj.Package_Id :=
4918 Prj.Util.Value_Of
4919 (Name => Name_Builder,
4920 In_Packages => The_Packages,
4921 In_Tree => Project_Tree);
4922
4923 Binder_Package : constant Prj.Package_Id :=
4924 Prj.Util.Value_Of
4925 (Name => Name_Binder,
4926 In_Packages => The_Packages,
4927 In_Tree => Project_Tree);
4928
4929 Linker_Package : constant Prj.Package_Id :=
4930 Prj.Util.Value_Of
4931 (Name => Name_Linker,
4932 In_Packages => The_Packages,
4933 In_Tree => Project_Tree);
4934
4935 Default_Switches_Array : Array_Id;
4936
4937 Global_Compilation_Array : Array_Element_Id;
4938 Global_Compilation_Elem : Array_Element;
4939 Global_Compilation_Switches : Variable_Value;
4940
4941 begin
4942 -- We fail if we cannot find the main source file
4943
4944 if Main_Unit_File_Name = "" then
4945 Make_Failed ('"' & Main_Source_File_Name
4946 & """ is not a unit of project "
4947 & Project_File_Name.all & ".");
4948 else
4949 -- Remove any directory information from the main
4950 -- source file name.
4951
4952 declare
4953 Pos : Natural := Main_Unit_File_Name'Last;
4954
4955 begin
4956 loop
4957 exit when Pos < Main_Unit_File_Name'First or else
4958 Main_Unit_File_Name (Pos) = Directory_Separator;
4959 Pos := Pos - 1;
4960 end loop;
4961
4962 Name_Len := Main_Unit_File_Name'Last - Pos;
4963
4964 Name_Buffer (1 .. Name_Len) :=
4965 Main_Unit_File_Name
4966 (Pos + 1 .. Main_Unit_File_Name'Last);
4967
4968 Main_Source_File := Name_Find;
4969
4970 -- We only output the main source file if there is only one
4971
4972 if Verbose_Mode and then Osint.Number_Of_Files = 1 then
4973 Write_Str ("Main source file: """);
4974 Write_Str (Main_Unit_File_Name
4975 (Pos + 1 .. Main_Unit_File_Name'Last));
4976 Write_Line (""".");
4977 end if;
4978 end;
4979 end if;
4980
4981 -- If there is a package Builder in the main project file, add
4982 -- the switches from it.
4983
4984 if Builder_Package /= No_Package then
4985
4986 Global_Compilation_Array := Prj.Util.Value_Of
4987 (Name => Name_Global_Compilation_Switches,
4988 In_Arrays => Project_Tree.Packages.Table
4989 (Builder_Package).Decl.Arrays,
4990 In_Tree => Project_Tree);
4991
4992 Default_Switches_Array :=
4993 Project_Tree.Packages.Table
4994 (Builder_Package).Decl.Arrays;
4995
4996 while Default_Switches_Array /= No_Array and then
4997 Project_Tree.Arrays.Table (Default_Switches_Array).Name /=
4998 Name_Default_Switches
4999 loop
5000 Default_Switches_Array :=
5001 Project_Tree.Arrays.Table (Default_Switches_Array).Next;
5002 end loop;
5003
5004 if Global_Compilation_Array /= No_Array_Element and then
5005 Default_Switches_Array /= No_Array
5006 then
5007 Errutil.Error_Msg
5008 ("Default_Switches forbidden in presence of " &
5009 "Global_Compilation_Switches. Use Switches instead.",
5010 Project_Tree.Arrays.Table
5011 (Default_Switches_Array).Location);
5012 Errutil.Finalize;
5013 Make_Failed
5014 ("*** illegal combination of Builder attributes");
5015 end if;
5016
5017 -- If there is only one main, we attempt to get the gnatmake
5018 -- switches for this main (if any). If there are no specific
5019 -- switch for this particular main, get the general gnatmake
5020 -- switches (if any).
5021
5022 if Osint.Number_Of_Files = 1 then
5023 if Verbose_Mode then
5024 Write_Str ("Adding gnatmake switches for """);
5025 Write_Str (Main_Unit_File_Name);
5026 Write_Line (""".");
5027 end if;
5028
5029 Add_Switches
5030 (File_Name => Main_Unit_File_Name,
5031 Index => Main_Index,
5032 The_Package => Builder_Package,
5033 Program => None,
5034 Unknown_Switches_To_The_Compiler =>
5035 Global_Compilation_Array = No_Array_Element);
5036
5037 else
5038 -- If there are several mains, we always get the general
5039 -- gnatmake switches (if any).
5040
5041 -- Warn the user, if necessary, so that he is not surprised
5042 -- that specific switches are not taken into account.
5043
5044 declare
5045 Defaults : constant Variable_Value :=
5046 Prj.Util.Value_Of
5047 (Name => Name_Ada,
5048 Index => 0,
5049 Attribute_Or_Array_Name =>
5050 Name_Default_Switches,
5051 In_Package =>
5052 Builder_Package,
5053 In_Tree => Project_Tree);
5054
5055 Switches : constant Array_Element_Id :=
5056 Prj.Util.Value_Of
5057 (Name => Name_Switches,
5058 In_Arrays =>
5059 Project_Tree.Packages.Table
5060 (Builder_Package).Decl.Arrays,
5061 In_Tree => Project_Tree);
5062
5063 Other_Switches : constant Variable_Value :=
5064 Prj.Util.Value_Of
5065 (Name => All_Other_Names,
5066 Index => 0,
5067 Attribute_Or_Array_Name
5068 => Name_Switches,
5069 In_Package => Builder_Package,
5070 In_Tree => Project_Tree);
5071
5072 begin
5073 if Other_Switches /= Nil_Variable_Value then
5074 if not Quiet_Output
5075 and then Switches /= No_Array_Element
5076 and then Project_Tree.Array_Elements.Table
5077 (Switches).Next /= No_Array_Element
5078 then
5079 Write_Line
5080 ("Warning: using Builder'Switches(others), "
5081 & "as there are several mains");
5082 end if;
5083
5084 Add_Switches
5085 (File_Name => " ",
5086 Index => 0,
5087 The_Package => Builder_Package,
5088 Program => None,
5089 Unknown_Switches_To_The_Compiler => False);
5090
5091 elsif Defaults /= Nil_Variable_Value then
5092 if not Quiet_Output
5093 and then Switches /= No_Array_Element
5094 then
5095 Write_Line
5096 ("Warning: using Builder'Default_Switches"
5097 & "(""Ada""), as there are several mains");
5098 end if;
5099
5100 Add_Switches
5101 (File_Name => " ",
5102 Index => 0,
5103 The_Package => Builder_Package,
5104 Program => None);
5105
5106 elsif not Quiet_Output
5107 and then Switches /= No_Array_Element
5108 then
5109 Write_Line
5110 ("Warning: using no switches from package "
5111 & "Builder, as there are several mains");
5112 end if;
5113 end;
5114 end if;
5115
5116 -- Take into account attribute Global_Compilation_Switches
5117 -- ("Ada").
5118
5119 declare
5120 Index : Name_Id;
5121 List : String_List_Id;
5122 Elem : String_Element;
5123
5124 begin
5125 while Global_Compilation_Array /= No_Array_Element loop
5126 Global_Compilation_Elem :=
5127 Project_Tree.Array_Elements.Table
5128 (Global_Compilation_Array);
5129
5130 Get_Name_String (Global_Compilation_Elem.Index);
5131 To_Lower (Name_Buffer (1 .. Name_Len));
5132 Index := Name_Find;
5133
5134 if Index = Name_Ada then
5135 Global_Compilation_Switches :=
5136 Global_Compilation_Elem.Value;
5137
5138 if Global_Compilation_Switches /= Nil_Variable_Value
5139 and then not Global_Compilation_Switches.Default
5140 then
5141 -- We have found attribute
5142 -- Global_Compilation_Switches ("Ada"): put the
5143 -- switches in the appropriate table.
5144
5145 List := Global_Compilation_Switches.Values;
5146
5147 while List /= Nil_String loop
5148 Elem :=
5149 Project_Tree.String_Elements.Table (List);
5150
5151 if Elem.Value /= No_Name then
5152 Add_Switch
5153 (Get_Name_String (Elem.Value),
5154 Compiler,
5155 And_Save => False);
5156 end if;
5157
5158 List := Elem.Next;
5159 end loop;
5160
5161 exit;
5162 end if;
5163 end if;
5164
5165 Global_Compilation_Array := Global_Compilation_Elem.Next;
5166 end loop;
5167 end;
5168 end if;
5169
5170 Osint.Add_Default_Search_Dirs;
5171
5172 -- Record the current last switch index for table Binder_Switches
5173 -- and Linker_Switches, so that these tables may be reset before
5174 -- for each main, before adding switches from the project file
5175 -- and from the command line.
5176
5177 Last_Binder_Switch := Binder_Switches.Last;
5178 Last_Linker_Switch := Linker_Switches.Last;
5179
5180 Check_Steps;
5181
5182 -- Add binder switches from the project file for the first main
5183
5184 if Do_Bind_Step and Binder_Package /= No_Package then
5185 if Verbose_Mode then
5186 Write_Str ("Adding binder switches for """);
5187 Write_Str (Main_Unit_File_Name);
5188 Write_Line (""".");
5189 end if;
5190
5191 Add_Switches
5192 (File_Name => Main_Unit_File_Name,
5193 Index => Main_Index,
5194 The_Package => Binder_Package,
5195 Program => Binder);
5196 end if;
5197
5198 -- Add linker switches from the project file for the first main
5199
5200 if Do_Link_Step and Linker_Package /= No_Package then
5201 if Verbose_Mode then
5202 Write_Str ("Adding linker switches for""");
5203 Write_Str (Main_Unit_File_Name);
5204 Write_Line (""".");
5205 end if;
5206
5207 Add_Switches
5208 (File_Name => Main_Unit_File_Name,
5209 Index => Main_Index,
5210 The_Package => Linker_Package,
5211 Program => Linker);
5212 end if;
5213 end;
5214 end if;
5215
5216 -- Get the target parameters, which are only needed for a couple of
5217 -- cases in gnatmake. Protect against an exception, such as the case
5218 -- of system.ads missing from the library, and fail gracefully.
5219
5220 begin
5221 Targparm.Get_Target_Parameters;
5222 exception
5223 when Unrecoverable_Error =>
5224 Make_Failed ("*** make failed.");
5225 end;
5226
5227 -- Special processing for VM targets
5228
5229 if Targparm.VM_Target /= No_VM then
5230
5231 -- Set proper processing commands
5232
5233 case Targparm.VM_Target is
5234 when Targparm.JVM_Target =>
5235
5236 -- Do not check for an object file (".o") when compiling to
5237 -- JVM machine since ".class" files are generated instead.
5238
5239 Check_Object_Consistency := False;
5240 Gcc := new String'("jvm-gnatcompile");
5241
5242 when Targparm.CLI_Target =>
5243 Gcc := new String'("dotnet-gnatcompile");
5244
5245 when Targparm.No_VM =>
5246 raise Program_Error;
5247 end case;
5248 end if;
5249
5250 Display_Commands (not Quiet_Output);
5251
5252 Check_Steps;
5253
5254 if Main_Project /= No_Project then
5255
5256 -- For all library project, if the library file does not exist, put
5257 -- all the project sources in the queue, and flag the project so that
5258 -- the library is generated.
5259
5260 if not Unique_Compile
5261 and then MLib.Tgt.Support_For_Libraries /= Prj.None
5262 then
5263 declare
5264 Proj : Project_List;
5265
5266 begin
5267 Proj := Project_Tree.Projects;
5268 while Proj /= null loop
5269 if Proj.Project.Library then
5270 Proj.Project.Need_To_Build_Lib :=
5271 not MLib.Tgt.Library_Exists_For
5272 (Proj.Project, Project_Tree)
5273 and then not Proj.Project.Externally_Built;
5274
5275 if Proj.Project.Need_To_Build_Lib then
5276
5277 -- If there is no object directory, then it will be
5278 -- impossible to build the library. So fail
5279 -- immediately.
5280
5281 if
5282 Proj.Project.Object_Directory = No_Path_Information
5283 then
5284 Make_Failed
5285 ("no object files to build library for project """
5286 & Get_Name_String (Proj.Project.Name)
5287 & """");
5288 Proj.Project.Need_To_Build_Lib := False;
5289
5290 else
5291 if Verbose_Mode then
5292 Write_Str
5293 ("Library file does not exist for project """);
5294 Write_Str (Get_Name_String (Proj.Project.Name));
5295 Write_Line ("""");
5296 end if;
5297
5298 Insert_Project_Sources
5299 (The_Project => Proj.Project,
5300 All_Projects => False,
5301 Into_Q => True);
5302 end if;
5303 end if;
5304 end if;
5305
5306 Proj := Proj.Next;
5307 end loop;
5308 end;
5309 end if;
5310
5311 -- If a relative path output file has been specified, we add
5312 -- the exec directory.
5313
5314 for J in reverse 1 .. Saved_Linker_Switches.Last - 1 loop
5315 if Saved_Linker_Switches.Table (J).all = Output_Flag.all then
5316 declare
5317 Exec_File_Name : constant String :=
5318 Saved_Linker_Switches.Table (J + 1).all;
5319
5320 begin
5321 if not Is_Absolute_Path (Exec_File_Name) then
5322 Get_Name_String (Main_Project.Exec_Directory.Name);
5323
5324 if Name_Buffer (Name_Len) /= Directory_Separator then
5325 Add_Char_To_Name_Buffer (Directory_Separator);
5326 end if;
5327
5328 Add_Str_To_Name_Buffer (Exec_File_Name);
5329 Saved_Linker_Switches.Table (J + 1) :=
5330 new String'(Name_Buffer (1 .. Name_Len));
5331 end if;
5332 end;
5333
5334 exit;
5335 end if;
5336 end loop;
5337
5338 -- If we are using a project file, for relative paths we add the
5339 -- current working directory for any relative path on the command
5340 -- line and the project directory, for any relative path in the
5341 -- project file.
5342
5343 declare
5344 Dir_Path : constant String :=
5345 Get_Name_String (Main_Project.Directory.Name);
5346 begin
5347 for J in 1 .. Binder_Switches.Last loop
5348 Test_If_Relative_Path
5349 (Binder_Switches.Table (J),
5350 Parent => Dir_Path, Including_L_Switch => False);
5351 end loop;
5352
5353 for J in 1 .. Saved_Binder_Switches.Last loop
5354 Test_If_Relative_Path
5355 (Saved_Binder_Switches.Table (J),
5356 Parent => Current_Work_Dir.all, Including_L_Switch => False);
5357 end loop;
5358
5359 for J in 1 .. Linker_Switches.Last loop
5360 Test_If_Relative_Path
5361 (Linker_Switches.Table (J), Parent => Dir_Path);
5362 end loop;
5363
5364 for J in 1 .. Saved_Linker_Switches.Last loop
5365 Test_If_Relative_Path
5366 (Saved_Linker_Switches.Table (J),
5367 Parent => Current_Work_Dir.all);
5368 end loop;
5369
5370 for J in 1 .. Gcc_Switches.Last loop
5371 Test_If_Relative_Path
5372 (Gcc_Switches.Table (J),
5373 Parent => Dir_Path,
5374 Including_Non_Switch => False);
5375 end loop;
5376
5377 for J in 1 .. Saved_Gcc_Switches.Last loop
5378 Test_If_Relative_Path
5379 (Saved_Gcc_Switches.Table (J),
5380 Parent => Current_Work_Dir.all,
5381 Including_Non_Switch => False);
5382 end loop;
5383 end;
5384 end if;
5385
5386 -- We now put in the Binder_Switches and Linker_Switches tables, the
5387 -- binder and linker switches of the command line that have been put in
5388 -- the Saved_ tables. If a project file was used, then the command line
5389 -- switches will follow the project file switches.
5390
5391 for J in 1 .. Saved_Binder_Switches.Last loop
5392 Add_Switch
5393 (Saved_Binder_Switches.Table (J),
5394 Binder,
5395 And_Save => False);
5396 end loop;
5397
5398 for J in 1 .. Saved_Linker_Switches.Last loop
5399 Add_Switch
5400 (Saved_Linker_Switches.Table (J),
5401 Linker,
5402 And_Save => False);
5403 end loop;
5404
5405 -- If no project file is used, we just put the gcc switches
5406 -- from the command line in the Gcc_Switches table.
5407
5408 if Main_Project = No_Project then
5409 for J in 1 .. Saved_Gcc_Switches.Last loop
5410 Add_Switch
5411 (Saved_Gcc_Switches.Table (J), Compiler, And_Save => False);
5412 end loop;
5413
5414 else
5415 -- If there is a project, put the command line gcc switches in the
5416 -- variable The_Saved_Gcc_Switches. They are going to be used later
5417 -- in procedure Compile_Sources.
5418
5419 The_Saved_Gcc_Switches :=
5420 new Argument_List (1 .. Saved_Gcc_Switches.Last + 1);
5421
5422 for J in 1 .. Saved_Gcc_Switches.Last loop
5423 The_Saved_Gcc_Switches (J) := Saved_Gcc_Switches.Table (J);
5424 end loop;
5425
5426 -- We never use gnat.adc when a project file is used
5427
5428 The_Saved_Gcc_Switches (The_Saved_Gcc_Switches'Last) := No_gnat_adc;
5429 end if;
5430
5431 -- If there was a --GCC, --GNATBIND or --GNATLINK switch on
5432 -- the command line, then we have to use it, even if there was
5433 -- another switch in the project file.
5434
5435 if Saved_Gcc /= null then
5436 Gcc := Saved_Gcc;
5437 end if;
5438
5439 if Saved_Gnatbind /= null then
5440 Gnatbind := Saved_Gnatbind;
5441 end if;
5442
5443 if Saved_Gnatlink /= null then
5444 Gnatlink := Saved_Gnatlink;
5445 end if;
5446
5447 Gcc_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gcc.all);
5448 Gnatbind_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gnatbind.all);
5449 Gnatlink_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gnatlink.all);
5450
5451 -- If we have specified -j switch both from the project file
5452 -- and on the command line, the one from the command line takes
5453 -- precedence.
5454
5455 if Saved_Maximum_Processes = 0 then
5456 Saved_Maximum_Processes := Maximum_Processes;
5457 end if;
5458
5459 -- Allocate as many temporary mapping file names as the maximum number
5460 -- of compilations processed, for each possible project.
5461
5462 declare
5463 Data : Project_Compilation_Access;
5464 Proj : Project_List := Project_Tree.Projects;
5465 begin
5466 while Proj /= null loop
5467 Data := new Project_Compilation_Data'
5468 (Mapping_File_Names => new Temp_Path_Names
5469 (1 .. Saved_Maximum_Processes),
5470 Last_Mapping_File_Names => 0,
5471 Free_Mapping_File_Indices => new Free_File_Indices
5472 (1 .. Saved_Maximum_Processes),
5473 Last_Free_Indices => 0);
5474
5475 Project_Compilation_Htable.Set
5476 (Project_Compilation, Proj.Project, Data);
5477 Proj := Proj.Next;
5478 end loop;
5479
5480 Data := new Project_Compilation_Data'
5481 (Mapping_File_Names => new Temp_Path_Names
5482 (1 .. Saved_Maximum_Processes),
5483 Last_Mapping_File_Names => 0,
5484 Free_Mapping_File_Indices => new Free_File_Indices
5485 (1 .. Saved_Maximum_Processes),
5486 Last_Free_Indices => 0);
5487
5488 Project_Compilation_Htable.Set
5489 (Project_Compilation, No_Project, Data);
5490 end;
5491
5492 Bad_Compilation.Init;
5493
5494 -- If project files are used, create the mapping of all the sources, so
5495 -- that the correct paths will be found. Otherwise, if there is a file
5496 -- which is not a source with the same name in a source directory this
5497 -- file may be incorrectly found.
5498
5499 if Main_Project /= No_Project then
5500 Prj.Env.Create_Mapping (Project_Tree);
5501 end if;
5502
5503 Current_Main_Index := Main_Index;
5504
5505 -- Here is where the make process is started
5506
5507 -- We do the same process for each main
5508
5509 Multiple_Main_Loop : for N_File in 1 .. Osint.Number_Of_Files loop
5510
5511 -- First, find the executable name and path
5512
5513 Executable := No_File;
5514 Executable_Obsolete := False;
5515 Non_Std_Executable :=
5516 Targparm.Executable_Extension_On_Target /= No_Name;
5517
5518 -- Look inside the linker switches to see if the name of the final
5519 -- executable program was specified.
5520
5521 for J in reverse Linker_Switches.First .. Linker_Switches.Last loop
5522 if Linker_Switches.Table (J).all = Output_Flag.all then
5523 pragma Assert (J < Linker_Switches.Last);
5524
5525 -- We cannot specify a single executable for several main
5526 -- subprograms
5527
5528 if Osint.Number_Of_Files > 1 then
5529 Fail
5530 ("cannot specify a single executable for several mains");
5531 end if;
5532
5533 Name_Len := 0;
5534 Add_Str_To_Name_Buffer (Linker_Switches.Table (J + 1).all);
5535 Executable := Name_Enter;
5536
5537 Verbose_Msg (Executable, "final executable");
5538 end if;
5539 end loop;
5540
5541 -- If the name of the final executable program was not specified then
5542 -- construct it from the main input file.
5543
5544 if Executable = No_File then
5545 if Main_Project = No_Project then
5546 Executable := Executable_Name (Strip_Suffix (Main_Source_File));
5547
5548 else
5549 -- If we are using a project file, we attempt to remove the
5550 -- body (or spec) termination of the main subprogram. We find
5551 -- it the naming scheme of the project file. This avoids
5552 -- generating an executable "main.2" for a main subprogram
5553 -- "main.2.ada", when the body termination is ".2.ada".
5554
5555 Executable :=
5556 Prj.Util.Executable_Of
5557 (Main_Project, Project_Tree, Main_Source_File, Main_Index);
5558 end if;
5559 end if;
5560
5561 if Main_Project /= No_Project
5562 and then Main_Project.Exec_Directory /= No_Path_Information
5563 then
5564 declare
5565 Exec_File_Name : constant String :=
5566 Get_Name_String (Executable);
5567
5568 begin
5569 if not Is_Absolute_Path (Exec_File_Name) then
5570 Get_Name_String (Main_Project.Exec_Directory.Display_Name);
5571
5572 if Name_Buffer (Name_Len) /= Directory_Separator then
5573 Add_Char_To_Name_Buffer (Directory_Separator);
5574 end if;
5575
5576 Add_Str_To_Name_Buffer (Exec_File_Name);
5577 Executable := Name_Find;
5578 end if;
5579
5580 Non_Std_Executable := True;
5581 end;
5582 end if;
5583
5584 if Do_Compile_Step then
5585 Recursive_Compilation_Step : declare
5586 Args : Argument_List (1 .. Gcc_Switches.Last);
5587
5588 First_Compiled_File : File_Name_Type;
5589 Youngest_Obj_File : File_Name_Type;
5590 Youngest_Obj_Stamp : Time_Stamp_Type;
5591
5592 Executable_Stamp : Time_Stamp_Type;
5593 -- Executable is the final executable program
5594 -- ??? comment seems unrelated to declaration
5595
5596 Library_Rebuilt : Boolean := False;
5597
5598 begin
5599 for J in 1 .. Gcc_Switches.Last loop
5600 Args (J) := Gcc_Switches.Table (J);
5601 end loop;
5602
5603 -- Now we invoke Compile_Sources for the current main
5604
5605 Compile_Sources
5606 (Main_Source => Main_Source_File,
5607 Args => Args,
5608 First_Compiled_File => First_Compiled_File,
5609 Most_Recent_Obj_File => Youngest_Obj_File,
5610 Most_Recent_Obj_Stamp => Youngest_Obj_Stamp,
5611 Main_Unit => Is_Main_Unit,
5612 Main_Index => Current_Main_Index,
5613 Compilation_Failures => Compilation_Failures,
5614 Check_Readonly_Files => Check_Readonly_Files,
5615 Do_Not_Execute => Do_Not_Execute,
5616 Force_Compilations => Force_Compilations,
5617 In_Place_Mode => In_Place_Mode,
5618 Keep_Going => Keep_Going,
5619 Initialize_ALI_Data => True,
5620 Max_Process => Saved_Maximum_Processes);
5621
5622 if Verbose_Mode then
5623 Write_Str ("End of compilation");
5624 Write_Eol;
5625 end if;
5626
5627 -- Make sure the queue will be reinitialized for the next round
5628
5629 First_Q_Initialization := True;
5630
5631 Total_Compilation_Failures :=
5632 Total_Compilation_Failures + Compilation_Failures;
5633
5634 if Total_Compilation_Failures /= 0 then
5635 if Keep_Going then
5636 goto Next_Main;
5637
5638 else
5639 List_Bad_Compilations;
5640 Report_Compilation_Failed;
5641 end if;
5642 end if;
5643
5644 -- Regenerate libraries, if there are any and if object files
5645 -- have been regenerated.
5646
5647 if Main_Project /= No_Project
5648 and then MLib.Tgt.Support_For_Libraries /= Prj.None
5649 and then (Do_Bind_Step
5650 or Unique_Compile_All_Projects
5651 or not Compile_Only)
5652 and then (Do_Link_Step or N_File = Osint.Number_Of_Files)
5653 then
5654 Library_Projs.Init;
5655
5656 declare
5657 Depth : Natural;
5658 Current : Natural;
5659 Proj1 : Project_List;
5660
5661 procedure Add_To_Library_Projs (Proj : Project_Id);
5662 -- Add project Project to table Library_Projs in
5663 -- decreasing depth order.
5664
5665 --------------------------
5666 -- Add_To_Library_Projs --
5667 --------------------------
5668
5669 procedure Add_To_Library_Projs (Proj : Project_Id) is
5670 Prj : Project_Id;
5671
5672 begin
5673 Library_Projs.Increment_Last;
5674 Depth := Proj.Depth;
5675
5676 -- Put the projects in decreasing depth order, so that
5677 -- if libA depends on libB, libB is first in order.
5678
5679 Current := Library_Projs.Last;
5680 while Current > 1 loop
5681 Prj := Library_Projs.Table (Current - 1);
5682 exit when Prj.Depth >= Depth;
5683 Library_Projs.Table (Current) := Prj;
5684 Current := Current - 1;
5685 end loop;
5686
5687 Library_Projs.Table (Current) := Proj;
5688 end Add_To_Library_Projs;
5689
5690 -- Start of processing for ??? (should name declare block
5691 -- or probably better, break this out as a nested proc).
5692
5693 begin
5694 -- Put in Library_Projs table all library project file
5695 -- ids when the library need to be rebuilt.
5696
5697 Proj1 := Project_Tree.Projects;
5698 while Proj1 /= null loop
5699 if Proj1.Project.Standalone_Library then
5700 Stand_Alone_Libraries := True;
5701 end if;
5702
5703 if Proj1.Project.Library then
5704 MLib.Prj.Check_Library
5705 (Proj1.Project, Project_Tree);
5706 end if;
5707
5708 if Proj1.Project.Need_To_Build_Lib then
5709 Add_To_Library_Projs (Proj1.Project);
5710 end if;
5711
5712 Proj1 := Proj1.Next;
5713 end loop;
5714
5715 -- Check if importing libraries should be regenerated
5716 -- because at least an imported library will be
5717 -- regenerated or is more recent.
5718
5719 Proj1 := Project_Tree.Projects;
5720 while Proj1 /= null loop
5721 if Proj1.Project.Library
5722 and then Proj1.Project.Library_Kind /= Static
5723 and then not Proj1.Project.Need_To_Build_Lib
5724 and then not Proj1.Project.Externally_Built
5725 then
5726 declare
5727 List : Project_List;
5728 Proj2 : Project_Id;
5729 Rebuild : Boolean := False;
5730
5731 Lib_Timestamp1 : constant Time_Stamp_Type :=
5732 Proj1.Project.Library_TS;
5733
5734 begin
5735 List := Proj1.Project.All_Imported_Projects;
5736 while List /= null loop
5737 Proj2 := List.Project;
5738
5739 if Proj2.Library then
5740 if Proj2.Need_To_Build_Lib
5741 or else
5742 (Lib_Timestamp1 < Proj2.Library_TS)
5743 then
5744 Rebuild := True;
5745 exit;
5746 end if;
5747 end if;
5748
5749 List := List.Next;
5750 end loop;
5751
5752 if Rebuild then
5753 Proj1.Project.Need_To_Build_Lib := True;
5754 Add_To_Library_Projs (Proj1.Project);
5755 end if;
5756 end;
5757 end if;
5758
5759 Proj1 := Proj1.Next;
5760 end loop;
5761
5762 -- Reset the flags Need_To_Build_Lib for the next main,
5763 -- to avoid rebuilding libraries uselessly.
5764
5765 Proj1 := Project_Tree.Projects;
5766 while Proj1 /= null loop
5767 Proj1.Project.Need_To_Build_Lib := False;
5768 Proj1 := Proj1.Next;
5769 end loop;
5770 end;
5771
5772 -- Build the libraries, if any need to be built
5773
5774 for J in 1 .. Library_Projs.Last loop
5775 Library_Rebuilt := True;
5776
5777 -- If a library is rebuilt, then executables are obsolete
5778
5779 Executable_Obsolete := True;
5780
5781 MLib.Prj.Build_Library
5782 (For_Project => Library_Projs.Table (J),
5783 In_Tree => Project_Tree,
5784 Gnatbind => Gnatbind.all,
5785 Gnatbind_Path => Gnatbind_Path,
5786 Gcc => Gcc.all,
5787 Gcc_Path => Gcc_Path);
5788 end loop;
5789 end if;
5790
5791 if List_Dependencies then
5792 if First_Compiled_File /= No_File then
5793 Inform
5794 (First_Compiled_File,
5795 "must be recompiled. Can't generate dependence list.");
5796 else
5797 List_Depend;
5798 end if;
5799
5800 elsif First_Compiled_File = No_File
5801 and then not Do_Bind_Step
5802 and then not Quiet_Output
5803 and then not Library_Rebuilt
5804 and then Osint.Number_Of_Files = 1
5805 then
5806 Inform (Msg => "objects up to date.");
5807
5808 elsif Do_Not_Execute
5809 and then First_Compiled_File /= No_File
5810 then
5811 Write_Name (First_Compiled_File);
5812 Write_Eol;
5813 end if;
5814
5815 -- Stop after compile step if any of:
5816
5817 -- 1) -n (Do_Not_Execute) specified
5818
5819 -- 2) -M (List_Dependencies) specified (also sets
5820 -- Do_Not_Execute above, so this is probably superfluous).
5821
5822 -- 3) -c (Compile_Only) specified, but not -b (Bind_Only)
5823
5824 -- 4) Made unit cannot be a main unit
5825
5826 if ((Do_Not_Execute
5827 or List_Dependencies
5828 or not Do_Bind_Step
5829 or not Is_Main_Unit)
5830 and then not No_Main_Subprogram
5831 and then not Build_Bind_And_Link_Full_Project)
5832 or else Unique_Compile
5833 then
5834 if Osint.Number_Of_Files = 1 then
5835 exit Multiple_Main_Loop;
5836
5837 else
5838 goto Next_Main;
5839 end if;
5840 end if;
5841
5842 -- If the objects were up-to-date check if the executable file
5843 -- is also up-to-date. For now always bind and link on the JVM
5844 -- since there is currently no simple way to check whether
5845 -- objects are up-to-date.
5846
5847 if Targparm.VM_Target /= JVM_Target
5848 and then First_Compiled_File = No_File
5849 then
5850 Executable_Stamp := File_Stamp (Executable);
5851
5852 if not Executable_Obsolete then
5853 Executable_Obsolete :=
5854 Youngest_Obj_Stamp > Executable_Stamp;
5855 end if;
5856
5857 if not Executable_Obsolete then
5858 for Index in reverse 1 .. Dependencies.Last loop
5859 if Is_In_Obsoleted
5860 (Dependencies.Table (Index).Depends_On)
5861 then
5862 Enter_Into_Obsoleted
5863 (Dependencies.Table (Index).This);
5864 end if;
5865 end loop;
5866
5867 Executable_Obsolete := Is_In_Obsoleted (Main_Source_File);
5868 Dependencies.Init;
5869 end if;
5870
5871 if not Executable_Obsolete then
5872
5873 -- If no Ada object files obsolete the executable, check
5874 -- for younger or missing linker files.
5875
5876 Check_Linker_Options
5877 (Executable_Stamp,
5878 Youngest_Obj_File,
5879 Youngest_Obj_Stamp);
5880
5881 Executable_Obsolete := Youngest_Obj_File /= No_File;
5882 end if;
5883
5884 -- Check if any library file is more recent than the
5885 -- executable: there may be an externally built library
5886 -- file that has been modified.
5887
5888 if (not Executable_Obsolete)
5889 and then Main_Project /= No_Project
5890 then
5891 declare
5892 Proj1 : Project_List;
5893 begin
5894 Proj1 := Project_Tree.Projects;
5895 while Proj1 /= null loop
5896 if Proj1.Project.Library and then
5897 Proj1.Project.Library_TS > Executable_Stamp
5898 then
5899 Executable_Obsolete := True;
5900 Youngest_Obj_Stamp := Proj1.Project.Library_TS;
5901 Name_Len := 0;
5902 Add_Str_To_Name_Buffer ("library ");
5903 Add_Str_To_Name_Buffer
5904 (Get_Name_String (Proj1.Project.Library_Name));
5905 Youngest_Obj_File := Name_Find;
5906 exit;
5907 end if;
5908
5909 Proj1 := Proj1.Next;
5910 end loop;
5911 end;
5912 end if;
5913
5914 -- Return if the executable is up to date and otherwise
5915 -- motivate the relink/rebind.
5916
5917 if not Executable_Obsolete then
5918 if not Quiet_Output then
5919 Inform (Executable, "up to date.");
5920 end if;
5921
5922 if Osint.Number_Of_Files = 1 then
5923 exit Multiple_Main_Loop;
5924
5925 else
5926 goto Next_Main;
5927 end if;
5928 end if;
5929
5930 if Executable_Stamp (1) = ' ' then
5931 if not No_Main_Subprogram then
5932 Verbose_Msg (Executable, "missing.", Prefix => " ");
5933 end if;
5934
5935 elsif Youngest_Obj_Stamp (1) = ' ' then
5936 Verbose_Msg
5937 (Youngest_Obj_File, "missing.", Prefix => " ");
5938
5939 elsif Youngest_Obj_Stamp > Executable_Stamp then
5940 Verbose_Msg
5941 (Youngest_Obj_File,
5942 "(" & String (Youngest_Obj_Stamp) & ") newer than",
5943 Executable,
5944 "(" & String (Executable_Stamp) & ")");
5945
5946 else
5947 Verbose_Msg
5948 (Executable, "needs to be rebuilt", Prefix => " ");
5949
5950 end if;
5951 end if;
5952 end Recursive_Compilation_Step;
5953 end if;
5954
5955 -- For binding and linking, we need to be in the object directory of
5956 -- the main project.
5957
5958 if Main_Project /= No_Project then
5959 Change_To_Object_Directory (Main_Project);
5960 end if;
5961
5962 -- If we are here, it means that we need to rebuilt the current main,
5963 -- so we set Executable_Obsolete to True to make sure that subsequent
5964 -- mains will be rebuilt.
5965
5966 Main_ALI_In_Place_Mode_Step : declare
5967 ALI_File : File_Name_Type;
5968 Src_File : File_Name_Type;
5969
5970 begin
5971 Src_File := Strip_Directory (Main_Source_File);
5972 ALI_File := Lib_File_Name (Src_File, Current_Main_Index);
5973 Main_ALI_File := Full_Lib_File_Name (ALI_File);
5974
5975 -- When In_Place_Mode, the library file can be located in the
5976 -- Main_Source_File directory which may not be present in the
5977 -- library path. If it is not present then use the corresponding
5978 -- library file name.
5979
5980 if Main_ALI_File = No_File and then In_Place_Mode then
5981 Get_Name_String (Get_Directory (Full_Source_Name (Src_File)));
5982 Get_Name_String_And_Append (ALI_File);
5983 Main_ALI_File := Name_Find;
5984 Main_ALI_File := Full_Lib_File_Name (Main_ALI_File);
5985 end if;
5986
5987 if Main_ALI_File = No_File then
5988 Make_Failed ("could not find the main ALI file");
5989 end if;
5990 end Main_ALI_In_Place_Mode_Step;
5991
5992 if Do_Bind_Step then
5993 Bind_Step : declare
5994 Args : Argument_List
5995 (Binder_Switches.First .. Binder_Switches.Last + 2);
5996 -- The arguments for the invocation of gnatbind
5997
5998 Last_Arg : Natural := Binder_Switches.Last;
5999 -- Index of the last argument in Args
6000
6001 Shared_Libs : Boolean := False;
6002 -- Set to True when there are shared library project files or
6003 -- when gnatbind is invoked with -shared.
6004
6005 Proj : Project_List;
6006
6007 begin
6008 -- Check if there are shared libraries, so that gnatbind is
6009 -- called with -shared. Check also if gnatbind is called with
6010 -- -shared, so that gnatlink is called with -shared-libgcc
6011 -- ensuring that the shared version of libgcc will be used.
6012
6013 if Main_Project /= No_Project
6014 and then MLib.Tgt.Support_For_Libraries /= Prj.None
6015 then
6016 Proj := Project_Tree.Projects;
6017 while Proj /= null loop
6018 if Proj.Project.Library
6019 and then Proj.Project.Library_Kind /= Static
6020 then
6021 Shared_Libs := True;
6022 Bind_Shared := Shared_Switch'Access;
6023 exit;
6024 end if;
6025 Proj := Proj.Next;
6026 end loop;
6027 end if;
6028
6029 -- Check now for switch -shared
6030
6031 if not Shared_Libs then
6032 for J in Binder_Switches.First .. Last_Arg loop
6033 if Binder_Switches.Table (J).all = "-shared" then
6034 Shared_Libs := True;
6035 exit;
6036 end if;
6037 end loop;
6038 end if;
6039
6040 -- If shared libraries present, invoke gnatlink with
6041 -- -shared-libgcc.
6042
6043 if Shared_Libs then
6044 Link_With_Shared_Libgcc := Shared_Libgcc_Switch'Access;
6045 end if;
6046
6047 -- Get all the binder switches
6048
6049 for J in Binder_Switches.First .. Last_Arg loop
6050 Args (J) := Binder_Switches.Table (J);
6051 end loop;
6052
6053 if Stand_Alone_Libraries then
6054 Last_Arg := Last_Arg + 1;
6055 Args (Last_Arg) := Force_Elab_Flags_String'Access;
6056 end if;
6057
6058 if Main_Project /= No_Project then
6059
6060 -- Put all the source directories in ADA_INCLUDE_PATH,
6061 -- and all the object directories in ADA_OBJECTS_PATH.
6062
6063 Prj.Env.Set_Ada_Paths (Main_Project, Project_Tree, True);
6064
6065 -- If switch -C was specified, create a binder mapping file
6066
6067 if Create_Mapping_File then
6068 Create_Binder_Mapping_File (Args, Last_Arg);
6069 end if;
6070
6071 end if;
6072
6073 begin
6074 Bind (Main_ALI_File,
6075 Bind_Shared.all & Args (Args'First .. Last_Arg));
6076
6077 exception
6078 when others =>
6079
6080 -- If -dn was not specified, delete the temporary mapping
6081 -- file, if one was created.
6082
6083 if not Debug.Debug_Flag_N
6084 and then Mapping_Path /= No_Path
6085 then
6086 Delete_File (Get_Name_String (Mapping_Path), Discard);
6087 end if;
6088
6089 -- And reraise the exception
6090
6091 raise;
6092 end;
6093
6094 -- If -dn was not specified, delete the temporary mapping file,
6095 -- if one was created.
6096
6097 if not Debug.Debug_Flag_N and then Mapping_Path /= No_Path then
6098 Delete_File (Get_Name_String (Mapping_Path), Discard);
6099 end if;
6100 end Bind_Step;
6101 end if;
6102
6103 if Do_Link_Step then
6104 Link_Step : declare
6105 Linker_Switches_Last : constant Integer := Linker_Switches.Last;
6106 Path_Option : constant String_Access :=
6107 MLib.Linker_Library_Path_Option;
6108 Libraries_Present : Boolean := False;
6109 Current : Natural;
6110 Proj2 : Project_Id;
6111 Depth : Natural;
6112 Proj1 : Project_List;
6113
6114 begin
6115 if not Run_Path_Option then
6116 Linker_Switches.Increment_Last;
6117 Linker_Switches.Table (Linker_Switches.Last) :=
6118 new String'("-R");
6119 end if;
6120
6121 if Main_Project /= No_Project then
6122 Library_Paths.Set_Last (0);
6123 Library_Projs.Init;
6124
6125 if MLib.Tgt.Support_For_Libraries /= Prj.None then
6126
6127 -- Check for library projects
6128
6129 Proj1 := Project_Tree.Projects;
6130 while Proj1 /= null loop
6131 if Proj1.Project /= Main_Project
6132 and then Proj1.Project.Library
6133 then
6134 -- Add this project to table Library_Projs
6135
6136 Libraries_Present := True;
6137 Depth := Proj1.Project.Depth;
6138 Library_Projs.Increment_Last;
6139 Current := Library_Projs.Last;
6140
6141 -- Any project with a greater depth should be
6142 -- after this project in the list.
6143
6144 while Current > 1 loop
6145 Proj2 := Library_Projs.Table (Current - 1);
6146 exit when Proj2.Depth <= Depth;
6147 Library_Projs.Table (Current) := Proj2;
6148 Current := Current - 1;
6149 end loop;
6150
6151 Library_Projs.Table (Current) := Proj1.Project;
6152
6153 -- If it is not a static library and path option
6154 -- is set, add it to the Library_Paths table.
6155
6156 if Proj1.Project.Library_Kind /= Static
6157 and then Path_Option /= null
6158 then
6159 Library_Paths.Increment_Last;
6160 Library_Paths.Table (Library_Paths.Last) :=
6161 new String'
6162 (Get_Name_String
6163 (Proj1.Project.Library_Dir.Display_Name));
6164 end if;
6165 end if;
6166
6167 Proj1 := Proj1.Next;
6168 end loop;
6169
6170 for Index in 1 .. Library_Projs.Last loop
6171
6172 -- Add the -L switch
6173
6174 Linker_Switches.Increment_Last;
6175 Linker_Switches.Table (Linker_Switches.Last) :=
6176 new String'("-L" &
6177 Get_Name_String
6178 (Library_Projs.Table (Index).
6179 Library_Dir.Display_Name));
6180
6181 -- Add the -l switch
6182
6183 Linker_Switches.Increment_Last;
6184 Linker_Switches.Table (Linker_Switches.Last) :=
6185 new String'("-l" &
6186 Get_Name_String
6187 (Library_Projs.Table (Index).
6188 Library_Name));
6189 end loop;
6190 end if;
6191
6192 if Libraries_Present then
6193
6194 -- If Path_Option is not null, create the switch
6195 -- ("-Wl,-rpath," or equivalent) with all the non static
6196 -- library dirs plus the standard GNAT library dir.
6197 -- We do that only if Run_Path_Option is True
6198 -- (not disabled by -R switch).
6199
6200 if Run_Path_Option and Path_Option /= null then
6201 declare
6202 Option : String_Access;
6203 Length : Natural := Path_Option'Length;
6204 Current : Natural;
6205
6206 begin
6207 if MLib.Separate_Run_Path_Options then
6208
6209 -- We are going to create one switch of the form
6210 -- "-Wl,-rpath,dir_N" for each directory to
6211 -- consider.
6212
6213 -- One switch for each library directory
6214
6215 for Index in
6216 Library_Paths.First .. Library_Paths.Last
6217 loop
6218 Linker_Switches.Increment_Last;
6219 Linker_Switches.Table
6220 (Linker_Switches.Last) := new String'
6221 (Path_Option.all &
6222 Library_Paths.Table (Index).all);
6223 end loop;
6224
6225 -- One switch for the standard GNAT library dir
6226
6227 Linker_Switches.Increment_Last;
6228 Linker_Switches.Table
6229 (Linker_Switches.Last) := new String'
6230 (Path_Option.all & MLib.Utl.Lib_Directory);
6231
6232 else
6233 -- We are going to create one switch of the form
6234 -- "-Wl,-rpath,dir_1:dir_2:dir_3"
6235
6236 for Index in
6237 Library_Paths.First .. Library_Paths.Last
6238 loop
6239 -- Add the length of the library dir plus one
6240 -- for the directory separator.
6241
6242 Length :=
6243 Length +
6244 Library_Paths.Table (Index)'Length + 1;
6245 end loop;
6246
6247 -- Finally, add the length of the standard GNAT
6248 -- library dir.
6249
6250 Length := Length + MLib.Utl.Lib_Directory'Length;
6251 Option := new String (1 .. Length);
6252 Option (1 .. Path_Option'Length) :=
6253 Path_Option.all;
6254 Current := Path_Option'Length;
6255
6256 -- Put each library dir followed by a dir
6257 -- separator.
6258
6259 for Index in
6260 Library_Paths.First .. Library_Paths.Last
6261 loop
6262 Option
6263 (Current + 1 ..
6264 Current +
6265 Library_Paths.Table (Index)'Length) :=
6266 Library_Paths.Table (Index).all;
6267 Current :=
6268 Current +
6269 Library_Paths.Table (Index)'Length + 1;
6270 Option (Current) := Path_Separator;
6271 end loop;
6272
6273 -- Finally put the standard GNAT library dir
6274
6275 Option
6276 (Current + 1 ..
6277 Current + MLib.Utl.Lib_Directory'Length) :=
6278 MLib.Utl.Lib_Directory;
6279
6280 -- And add the switch to the linker switches
6281
6282 Linker_Switches.Increment_Last;
6283 Linker_Switches.Table (Linker_Switches.Last) :=
6284 Option;
6285 end if;
6286 end;
6287 end if;
6288
6289 end if;
6290
6291 -- Put the object directories in ADA_OBJECTS_PATH
6292
6293 Prj.Env.Set_Ada_Paths (Main_Project, Project_Tree, False);
6294
6295 -- Check for attributes Linker'Linker_Options in projects
6296 -- other than the main project
6297
6298 declare
6299 Linker_Options : constant String_List :=
6300 Linker_Options_Switches
6301 (Main_Project, Project_Tree);
6302 begin
6303 for Option in Linker_Options'Range loop
6304 Linker_Switches.Increment_Last;
6305 Linker_Switches.Table (Linker_Switches.Last) :=
6306 Linker_Options (Option);
6307 end loop;
6308 end;
6309 end if;
6310
6311 declare
6312 Args : Argument_List
6313 (Linker_Switches.First .. Linker_Switches.Last + 2);
6314
6315 Last_Arg : Integer := Linker_Switches.First - 1;
6316 Skip : Boolean := False;
6317
6318 begin
6319 -- Get all the linker switches
6320
6321 for J in Linker_Switches.First .. Linker_Switches.Last loop
6322 if Skip then
6323 Skip := False;
6324
6325 elsif Non_Std_Executable
6326 and then Linker_Switches.Table (J).all = "-o"
6327 then
6328 Skip := True;
6329
6330 -- Here we capture and duplicate the linker argument. We
6331 -- need to do the duplication since the arguments will
6332 -- get normalized. Not doing so will result in calling
6333 -- normalized two times for the same set of arguments if
6334 -- gnatmake is passed multiple mains. This can result in
6335 -- the wrong argument being passed to the linker.
6336
6337 else
6338 Last_Arg := Last_Arg + 1;
6339 Args (Last_Arg) :=
6340 new String'(Linker_Switches.Table (J).all);
6341 end if;
6342 end loop;
6343
6344 -- If need be, add the -o switch
6345
6346 if Non_Std_Executable then
6347 Last_Arg := Last_Arg + 1;
6348 Args (Last_Arg) := new String'("-o");
6349 Last_Arg := Last_Arg + 1;
6350 Args (Last_Arg) :=
6351 new String'(Get_Name_String (Executable));
6352 end if;
6353
6354 -- And invoke the linker
6355
6356 declare
6357 Success : Boolean := False;
6358 begin
6359 Link (Main_ALI_File,
6360 Link_With_Shared_Libgcc.all &
6361 Args (Args'First .. Last_Arg),
6362 Success);
6363
6364 if Success then
6365 Successful_Links.Increment_Last;
6366 Successful_Links.Table (Successful_Links.Last) :=
6367 Main_ALI_File;
6368
6369 elsif Osint.Number_Of_Files = 1 or not Keep_Going then
6370 Make_Failed ("*** link failed.");
6371
6372 else
6373 Set_Standard_Error;
6374 Write_Line ("*** link failed");
6375
6376 if Commands_To_Stdout then
6377 Set_Standard_Output;
6378 end if;
6379
6380 Failed_Links.Increment_Last;
6381 Failed_Links.Table (Failed_Links.Last) :=
6382 Main_ALI_File;
6383 end if;
6384 end;
6385 end;
6386
6387 Linker_Switches.Set_Last (Linker_Switches_Last);
6388 end Link_Step;
6389 end if;
6390
6391 -- We go to here when we skip the bind and link steps
6392
6393 <<Next_Main>>
6394
6395 -- We go to the next main, if we did not process the last one
6396
6397 if N_File < Osint.Number_Of_Files then
6398 Main_Source_File := Next_Main_Source;
6399
6400 if Current_File_Index /= No_Index then
6401 Main_Index := Current_File_Index;
6402 end if;
6403
6404 if Main_Project /= No_Project then
6405
6406 -- Find the file name of the main unit
6407
6408 declare
6409 Main_Source_File_Name : constant String :=
6410 Get_Name_String (Main_Source_File);
6411
6412 Main_Unit_File_Name : constant String :=
6413 Prj.Env.
6414 File_Name_Of_Library_Unit_Body
6415 (Name => Main_Source_File_Name,
6416 Project => Main_Project,
6417 In_Tree => Project_Tree,
6418 Main_Project_Only =>
6419 not Unique_Compile);
6420
6421 The_Packages : constant Package_Id :=
6422 Main_Project.Decl.Packages;
6423
6424 Binder_Package : constant Prj.Package_Id :=
6425 Prj.Util.Value_Of
6426 (Name => Name_Binder,
6427 In_Packages => The_Packages,
6428 In_Tree => Project_Tree);
6429
6430 Linker_Package : constant Prj.Package_Id :=
6431 Prj.Util.Value_Of
6432 (Name => Name_Linker,
6433 In_Packages => The_Packages,
6434 In_Tree => Project_Tree);
6435
6436 begin
6437 -- We fail if we cannot find the main source file
6438 -- as an immediate source of the main project file.
6439
6440 if Main_Unit_File_Name = "" then
6441 Make_Failed ('"' & Main_Source_File_Name
6442 & """ is not a unit of project "
6443 & Project_File_Name.all & ".");
6444
6445 else
6446 -- Remove any directory information from the main
6447 -- source file name.
6448
6449 declare
6450 Pos : Natural := Main_Unit_File_Name'Last;
6451
6452 begin
6453 loop
6454 exit when Pos < Main_Unit_File_Name'First
6455 or else
6456 Main_Unit_File_Name (Pos) = Directory_Separator;
6457 Pos := Pos - 1;
6458 end loop;
6459
6460 Name_Len := Main_Unit_File_Name'Last - Pos;
6461
6462 Name_Buffer (1 .. Name_Len) :=
6463 Main_Unit_File_Name
6464 (Pos + 1 .. Main_Unit_File_Name'Last);
6465
6466 Main_Source_File := Name_Find;
6467 end;
6468 end if;
6469
6470 -- We now deal with the binder and linker switches.
6471 -- If no project file is used, there is nothing to do
6472 -- because the binder and linker switches are the same
6473 -- for all mains.
6474
6475 -- Reset the tables Binder_Switches and Linker_Switches
6476
6477 Binder_Switches.Set_Last (Last_Binder_Switch);
6478 Linker_Switches.Set_Last (Last_Linker_Switch);
6479
6480 -- Add binder switches from the project file for this main,
6481 -- if any.
6482
6483 if Do_Bind_Step and Binder_Package /= No_Package then
6484 if Verbose_Mode then
6485 Write_Str ("Adding binder switches for """);
6486 Write_Str (Main_Unit_File_Name);
6487 Write_Line (""".");
6488 end if;
6489
6490 Add_Switches
6491 (File_Name => Main_Unit_File_Name,
6492 Index => Main_Index,
6493 The_Package => Binder_Package,
6494 Program => Binder);
6495 end if;
6496
6497 -- Add linker switches from the project file for this main,
6498 -- if any.
6499
6500 if Do_Link_Step and Linker_Package /= No_Package then
6501 if Verbose_Mode then
6502 Write_Str ("Adding linker switches for""");
6503 Write_Str (Main_Unit_File_Name);
6504 Write_Line (""".");
6505 end if;
6506
6507 Add_Switches
6508 (File_Name => Main_Unit_File_Name,
6509 Index => Main_Index,
6510 The_Package => Linker_Package,
6511 Program => Linker);
6512 end if;
6513
6514 -- As we are using a project file, for relative paths we add
6515 -- the current working directory for any relative path on
6516 -- the command line and the project directory, for any
6517 -- relative path in the project file.
6518
6519 declare
6520 Dir_Path : constant String :=
6521 Get_Name_String
6522 (Main_Project.Directory.Name);
6523
6524 begin
6525 for
6526 J in Last_Binder_Switch + 1 .. Binder_Switches.Last
6527 loop
6528 Test_If_Relative_Path
6529 (Binder_Switches.Table (J),
6530 Parent => Dir_Path, Including_L_Switch => False);
6531 end loop;
6532
6533 for
6534 J in Last_Linker_Switch + 1 .. Linker_Switches.Last
6535 loop
6536 Test_If_Relative_Path
6537 (Linker_Switches.Table (J), Parent => Dir_Path);
6538 end loop;
6539 end;
6540
6541 -- We now put in the Binder_Switches and Linker_Switches
6542 -- tables, the binder and linker switches of the command
6543 -- line that have been put in the Saved_ tables.
6544 -- These switches will follow the project file switches.
6545
6546 for J in 1 .. Saved_Binder_Switches.Last loop
6547 Add_Switch
6548 (Saved_Binder_Switches.Table (J),
6549 Binder,
6550 And_Save => False);
6551 end loop;
6552
6553 for J in 1 .. Saved_Linker_Switches.Last loop
6554 Add_Switch
6555 (Saved_Linker_Switches.Table (J),
6556 Linker,
6557 And_Save => False);
6558 end loop;
6559 end;
6560 end if;
6561 end if;
6562
6563 -- Remove all marks to be sure to check sources for all executables,
6564 -- as the switches may be different and -s may be in use.
6565
6566 Delete_All_Marks;
6567 end loop Multiple_Main_Loop;
6568
6569 if Failed_Links.Last > 0 then
6570 for Index in 1 .. Successful_Links.Last loop
6571 Write_Str ("Linking of """);
6572 Write_Str (Get_Name_String (Successful_Links.Table (Index)));
6573 Write_Line (""" succeeded.");
6574 end loop;
6575
6576 Set_Standard_Error;
6577
6578 for Index in 1 .. Failed_Links.Last loop
6579 Write_Str ("Linking of """);
6580 Write_Str (Get_Name_String (Failed_Links.Table (Index)));
6581 Write_Line (""" failed.");
6582 end loop;
6583
6584 if Commands_To_Stdout then
6585 Set_Standard_Output;
6586 end if;
6587
6588 if Total_Compilation_Failures = 0 then
6589 Report_Compilation_Failed;
6590 end if;
6591 end if;
6592
6593 if Total_Compilation_Failures /= 0 then
6594 List_Bad_Compilations;
6595 Report_Compilation_Failed;
6596 end if;
6597
6598 -- Delete the temporary mapping file that was created if we are
6599 -- using project files.
6600
6601 Delete_All_Temp_Files;
6602
6603 exception
6604 when X : others =>
6605 Set_Standard_Error;
6606 Write_Line (Exception_Information (X));
6607 Make_Failed ("INTERNAL ERROR. Please report.");
6608 end Gnatmake;
6609
6610 ----------
6611 -- Hash --
6612 ----------
6613
6614 function Hash (F : File_Name_Type) return Header_Num is
6615 begin
6616 return Header_Num (1 + F mod Max_Header);
6617 end Hash;
6618
6619 --------------------
6620 -- In_Ada_Lib_Dir --
6621 --------------------
6622
6623 function In_Ada_Lib_Dir (File : File_Name_Type) return Boolean is
6624 D : constant File_Name_Type := Get_Directory (File);
6625 B : constant Byte := Get_Name_Table_Byte (D);
6626 begin
6627 return (B and Ada_Lib_Dir) /= 0;
6628 end In_Ada_Lib_Dir;
6629
6630 -----------------------
6631 -- Init_Mapping_File --
6632 -----------------------
6633
6634 procedure Init_Mapping_File
6635 (Project : Project_Id;
6636 Data : in out Project_Compilation_Data;
6637 File_Index : in out Natural)
6638 is
6639 FD : File_Descriptor;
6640 Status : Boolean;
6641 -- For call to Close
6642
6643 begin
6644 -- Increase the index of the last mapping file for this project
6645
6646 Data.Last_Mapping_File_Names := Data.Last_Mapping_File_Names + 1;
6647
6648 -- If there is a project file, call Create_Mapping_File with
6649 -- the project id.
6650
6651 if Project /= No_Project then
6652 Prj.Env.Create_Mapping_File
6653 (Project,
6654 In_Tree => Project_Tree,
6655 Language => No_Name,
6656 Name => Data.Mapping_File_Names
6657 (Data.Last_Mapping_File_Names));
6658
6659 -- Otherwise, just create an empty file
6660
6661 else
6662 Tempdir.Create_Temp_File
6663 (FD,
6664 Data.Mapping_File_Names (Data.Last_Mapping_File_Names));
6665
6666 if FD = Invalid_FD then
6667 Make_Failed ("disk full");
6668
6669 else
6670 Record_Temp_File
6671 (Data.Mapping_File_Names (Data.Last_Mapping_File_Names));
6672 end if;
6673
6674 Close (FD, Status);
6675
6676 if not Status then
6677 Make_Failed ("disk full");
6678 end if;
6679 end if;
6680
6681 -- And return the index of the newly created file
6682
6683 File_Index := Data.Last_Mapping_File_Names;
6684 end Init_Mapping_File;
6685
6686 ------------
6687 -- Init_Q --
6688 ------------
6689
6690 procedure Init_Q is
6691 begin
6692 First_Q_Initialization := False;
6693 Q_Front := Q.First;
6694 Q.Set_Last (Q.First);
6695 end Init_Q;
6696
6697 ----------------
6698 -- Initialize --
6699 ----------------
6700
6701 procedure Initialize is
6702
6703 procedure Check_Version_And_Help is
6704 new Check_Version_And_Help_G (Makeusg);
6705
6706 -- Start of processing for Initialize
6707
6708 begin
6709 Prj.Set_Mode (Ada_Only);
6710
6711 -- Override default initialization of Check_Object_Consistency since
6712 -- this is normally False for GNATBIND, but is True for GNATMAKE since
6713 -- we do not need to check source consistency again once GNATMAKE has
6714 -- looked at the sources to check.
6715
6716 Check_Object_Consistency := True;
6717
6718 -- Package initializations. The order of calls is important here
6719
6720 Output.Set_Standard_Error;
6721
6722 Gcc_Switches.Init;
6723 Binder_Switches.Init;
6724 Linker_Switches.Init;
6725
6726 Csets.Initialize;
6727 Namet.Initialize;
6728
6729 Snames.Initialize;
6730
6731 Prj.Initialize (Project_Tree);
6732
6733 Dependencies.Init;
6734
6735 RTS_Specified := null;
6736
6737 Mains.Delete;
6738
6739 -- Add the directory where gnatmake is invoked in front of the
6740 -- path, if gnatmake is invoked from a bin directory or with directory
6741 -- information. Only do this if the platform is not VMS, where the
6742 -- notion of path does not really exist.
6743
6744 if not OpenVMS then
6745 declare
6746 Prefix : constant String := Executable_Prefix_Path;
6747 Command : constant String := Command_Name;
6748
6749 begin
6750 if Prefix'Length > 0 then
6751 declare
6752 PATH : constant String :=
6753 Prefix & Directory_Separator & "bin" &
6754 Path_Separator &
6755 Getenv ("PATH").all;
6756 begin
6757 Setenv ("PATH", PATH);
6758 end;
6759
6760 else
6761 for Index in reverse Command'Range loop
6762 if Command (Index) = Directory_Separator then
6763 declare
6764 Absolute_Dir : constant String :=
6765 Normalize_Pathname
6766 (Command (Command'First .. Index));
6767 PATH : constant String :=
6768 Absolute_Dir &
6769 Path_Separator &
6770 Getenv ("PATH").all;
6771 begin
6772 Setenv ("PATH", PATH);
6773 end;
6774
6775 exit;
6776 end if;
6777 end loop;
6778 end if;
6779 end;
6780 end if;
6781
6782 -- Scan the switches and arguments
6783
6784 -- First, scan to detect --version and/or --help
6785
6786 Check_Version_And_Help ("GNATMAKE", "1995");
6787
6788 -- Scan again the switch and arguments, now that we are sure that they
6789 -- do not include --version or --help.
6790
6791 Scan_Args : for Next_Arg in 1 .. Argument_Count loop
6792 Scan_Make_Arg (Argument (Next_Arg), And_Save => True);
6793 end loop Scan_Args;
6794
6795 if Commands_To_Stdout then
6796 Set_Standard_Output;
6797 end if;
6798
6799 if Usage_Requested then
6800 Usage;
6801 end if;
6802
6803 -- Test for trailing -P switch
6804
6805 if Project_File_Name_Present and then Project_File_Name = null then
6806 Make_Failed ("project file name missing after -P");
6807
6808 -- Test for trailing -o switch
6809
6810 elsif Output_File_Name_Present
6811 and then not Output_File_Name_Seen
6812 then
6813 Make_Failed ("output file name missing after -o");
6814
6815 -- Test for trailing -D switch
6816
6817 elsif Object_Directory_Present
6818 and then not Object_Directory_Seen then
6819 Make_Failed ("object directory missing after -D");
6820 end if;
6821
6822 -- Test for simultaneity of -i and -D
6823
6824 if Object_Directory_Path /= null and then In_Place_Mode then
6825 Make_Failed ("-i and -D cannot be used simultaneously");
6826 end if;
6827
6828 -- Deal with -C= switch
6829
6830 if Gnatmake_Mapping_File /= null then
6831
6832 -- First, check compatibility with other switches
6833
6834 if Project_File_Name /= null then
6835 Make_Failed ("-C= switch is not compatible with -P switch");
6836
6837 elsif Saved_Maximum_Processes > 1 then
6838 Make_Failed ("-C= switch is not compatible with -jnnn switch");
6839 end if;
6840
6841 Fmap.Initialize (Gnatmake_Mapping_File.all);
6842 Add_Switch
6843 ("-gnatem=" & Gnatmake_Mapping_File.all,
6844 Compiler,
6845 And_Save => True);
6846 end if;
6847
6848 if Project_File_Name /= null then
6849
6850 -- A project file was specified by a -P switch
6851
6852 if Verbose_Mode then
6853 Write_Eol;
6854 Write_Str ("Parsing project file """);
6855 Write_Str (Project_File_Name.all);
6856 Write_Str (""".");
6857 Write_Eol;
6858 end if;
6859
6860 -- Avoid looking in the current directory for ALI files
6861
6862 -- Look_In_Primary_Dir := False;
6863
6864 -- Set the project parsing verbosity to whatever was specified
6865 -- by a possible -vP switch.
6866
6867 Prj.Pars.Set_Verbosity (To => Current_Verbosity);
6868
6869 -- Parse the project file.
6870 -- If there is an error, Main_Project will still be No_Project.
6871
6872 Prj.Pars.Parse
6873 (Project => Main_Project,
6874 In_Tree => Project_Tree,
6875 Project_File_Name => Project_File_Name.all,
6876 Packages_To_Check => Packages_To_Check_By_Gnatmake,
6877 Is_Config_File => False);
6878
6879 -- The parsing of project files may have changed the current output
6880
6881 if Commands_To_Stdout then
6882 Set_Standard_Output;
6883 else
6884 Set_Standard_Error;
6885 end if;
6886
6887 if Main_Project = No_Project then
6888 Make_Failed
6889 ("""" & Project_File_Name.all & """ processing failed");
6890 end if;
6891
6892 Create_Mapping_File := True;
6893
6894 if Verbose_Mode then
6895 Write_Eol;
6896 Write_Str ("Parsing of project file """);
6897 Write_Str (Project_File_Name.all);
6898 Write_Str (""" is finished.");
6899 Write_Eol;
6900 end if;
6901
6902 -- We add the source directories and the object directories
6903 -- to the search paths.
6904
6905 Add_Source_Directories (Main_Project, Project_Tree);
6906 Add_Object_Directories (Main_Project);
6907
6908 Recursive_Compute_Depth (Main_Project);
6909
6910 -- For each project compute the list of the projects it imports
6911 -- directly or indirectly.
6912
6913 declare
6914 Proj : Project_List;
6915 begin
6916 Proj := Project_Tree.Projects;
6917 while Proj /= null loop
6918 Compute_All_Imported_Projects (Proj.Project);
6919 Proj := Proj.Next;
6920 end loop;
6921 end;
6922
6923 else
6924
6925 Osint.Add_Default_Search_Dirs;
6926
6927 -- Source file lookups should be cached for efficiency. Source files
6928 -- are not supposed to change. However, we do that now only if no
6929 -- project file is used; if a project file is used, we do it just
6930 -- after changing the directory to the object directory.
6931
6932 Osint.Source_File_Data (Cache => True);
6933
6934 -- Read gnat.adc file to initialize Fname.UF
6935
6936 Fname.UF.Initialize;
6937
6938 begin
6939 Fname.SF.Read_Source_File_Name_Pragmas;
6940
6941 exception
6942 when Err : SFN_Scan.Syntax_Error_In_GNAT_ADC =>
6943 Make_Failed (Exception_Message (Err));
6944 end;
6945 end if;
6946
6947 -- Make sure no project object directory is recorded
6948
6949 Project_Of_Current_Object_Directory := No_Project;
6950
6951 end Initialize;
6952
6953 ----------------------------
6954 -- Insert_Project_Sources --
6955 ----------------------------
6956
6957 procedure Insert_Project_Sources
6958 (The_Project : Project_Id;
6959 All_Projects : Boolean;
6960 Into_Q : Boolean)
6961 is
6962 Put_In_Q : Boolean := Into_Q;
6963 Unit : Unit_Data;
6964 Sfile : File_Name_Type;
6965 Index : Int;
6966
6967 Extending : constant Boolean := The_Project.Extends /= No_Project;
6968
6969 function Check_Project (P : Project_Id) return Boolean;
6970 -- Returns True if P is The_Project or a project extended by The_Project
6971
6972 -------------------
6973 -- Check_Project --
6974 -------------------
6975
6976 function Check_Project (P : Project_Id) return Boolean is
6977 begin
6978 if All_Projects or P = The_Project then
6979 return True;
6980
6981 elsif Extending then
6982 declare
6983 Proj : Project_Id;
6984
6985 begin
6986 Proj := The_Project;
6987 while Proj /= null loop
6988 if P = Proj.Extends then
6989 return True;
6990 end if;
6991
6992 Proj := Proj.Extends;
6993 end loop;
6994 end;
6995 end if;
6996
6997 return False;
6998 end Check_Project;
6999
7000 -- Start of processing for Insert_Project_Sources
7001
7002 begin
7003 -- For all the sources in the project files,
7004
7005 for Id in Unit_Table.First ..
7006 Unit_Table.Last (Project_Tree.Units)
7007 loop
7008 Unit := Project_Tree.Units.Table (Id);
7009 Sfile := No_File;
7010 Index := 0;
7011
7012 -- If there is a source for the body, and the body has not been
7013 -- locally removed.
7014
7015 if Unit.File_Names (Body_Part).Name /= No_File
7016 and then Unit.File_Names (Body_Part).Path.Name /= Slash
7017 then
7018 -- And it is a source for the specified project
7019
7020 if Check_Project (Unit.File_Names (Body_Part).Project) then
7021
7022 -- If we don't have a spec, we cannot consider the source
7023 -- if it is a subunit.
7024
7025 if Unit.File_Names (Specification).Name = No_File then
7026 declare
7027 Src_Ind : Source_File_Index;
7028
7029 -- Here we are cheating a little bit: we don't want to
7030 -- use Sinput.L, because it depends on the GNAT tree
7031 -- (Atree, Sinfo, ...). So, we pretend that it is a
7032 -- project file, and we use Sinput.P.
7033
7034 -- Source_File_Is_Subunit is just scanning through the
7035 -- file until it finds one of the reserved words
7036 -- separate, procedure, function, generic or package.
7037 -- Fortunately, these Ada reserved words are also
7038 -- reserved for project files.
7039
7040 begin
7041 Src_Ind := Sinput.P.Load_Project_File
7042 (Get_Name_String
7043 (Unit.File_Names (Body_Part).Path.Name));
7044
7045 -- If it is a subunit, discard it
7046
7047 if Sinput.P.Source_File_Is_Subunit (Src_Ind) then
7048 Sfile := No_File;
7049 Index := 0;
7050 else
7051 Sfile := Unit.File_Names (Body_Part).Display_Name;
7052 Index := Unit.File_Names (Body_Part).Index;
7053 end if;
7054 end;
7055
7056 else
7057 Sfile := Unit.File_Names (Body_Part).Display_Name;
7058 Index := Unit.File_Names (Body_Part).Index;
7059 end if;
7060 end if;
7061
7062 elsif Unit.File_Names (Specification).Name /= No_File
7063 and then Unit.File_Names (Specification).Path.Name /= Slash
7064 and then Check_Project (Unit.File_Names (Specification).Project)
7065 then
7066 -- If there is no source for the body, but there is a source
7067 -- for the spec which has not been locally removed, then we take
7068 -- this one.
7069
7070 Sfile := Unit.File_Names (Specification).Display_Name;
7071 Index := Unit.File_Names (Specification).Index;
7072 end if;
7073
7074 -- If Put_In_Q is True, we insert into the Q
7075
7076 if Put_In_Q then
7077
7078 -- For the first source inserted into the Q, we need to initialize
7079 -- the Q, but not for the subsequent sources.
7080
7081 if First_Q_Initialization then
7082 Init_Q;
7083 end if;
7084
7085 -- And of course, only insert in the Q if the source is not marked
7086
7087 if Sfile /= No_File and then not Is_Marked (Sfile, Index) then
7088 if Verbose_Mode then
7089 Write_Str ("Adding """);
7090 Write_Str (Get_Name_String (Sfile));
7091 Write_Line (""" to the queue");
7092 end if;
7093
7094 Insert_Q (Sfile, Index => Index);
7095 Mark (Sfile, Index);
7096 end if;
7097
7098 elsif Sfile /= No_File then
7099
7100 -- If Put_In_Q is False, we add the source as if it were specified
7101 -- on the command line, and we set Put_In_Q to True, so that the
7102 -- following sources will be put directly in the queue. This will
7103 -- allow parallel compilation processes if -jx switch is used.
7104
7105 if Verbose_Mode then
7106 Write_Str ("Adding """);
7107 Write_Str (Get_Name_String (Sfile));
7108 Write_Line (""" as if on the command line");
7109 end if;
7110
7111 Osint.Add_File (Get_Name_String (Sfile), Index);
7112 Put_In_Q := True;
7113
7114 -- As we may look into the Q later, ensure the Q has been
7115 -- initialized to avoid errors.
7116
7117 if First_Q_Initialization then
7118 Init_Q;
7119 end if;
7120 end if;
7121 end loop;
7122 end Insert_Project_Sources;
7123
7124 --------------
7125 -- Insert_Q --
7126 --------------
7127
7128 procedure Insert_Q
7129 (Source_File : File_Name_Type;
7130 Source_Unit : Unit_Name_Type := No_Unit_Name;
7131 Index : Int := 0)
7132 is
7133 begin
7134 if Debug.Debug_Flag_Q then
7135 Write_Str (" Q := Q + [ ");
7136 Write_Name (Source_File);
7137
7138 if Index /= 0 then
7139 Write_Str (", ");
7140 Write_Int (Index);
7141 end if;
7142
7143 Write_Str (" ] ");
7144 Write_Eol;
7145 end if;
7146
7147 Q.Table (Q.Last) :=
7148 (File => Source_File,
7149 Unit => Source_Unit,
7150 Index => Index);
7151 Q.Increment_Last;
7152 end Insert_Q;
7153
7154 ---------------------
7155 -- Is_In_Obsoleted --
7156 ---------------------
7157
7158 function Is_In_Obsoleted (F : File_Name_Type) return Boolean is
7159 begin
7160 if F = No_File then
7161 return False;
7162
7163 else
7164 declare
7165 Name : constant String := Get_Name_String (F);
7166 First : Natural;
7167 F2 : File_Name_Type;
7168
7169 begin
7170 First := Name'Last;
7171 while First > Name'First
7172 and then Name (First - 1) /= Directory_Separator
7173 and then Name (First - 1) /= '/'
7174 loop
7175 First := First - 1;
7176 end loop;
7177
7178 if First /= Name'First then
7179 Name_Len := 0;
7180 Add_Str_To_Name_Buffer (Name (First .. Name'Last));
7181 F2 := Name_Find;
7182
7183 else
7184 F2 := F;
7185 end if;
7186
7187 return Obsoleted.Get (F2);
7188 end;
7189 end if;
7190 end Is_In_Obsoleted;
7191
7192 ----------------------------
7193 -- Is_In_Object_Directory --
7194 ----------------------------
7195
7196 function Is_In_Object_Directory
7197 (Source_File : File_Name_Type;
7198 Full_Lib_File : File_Name_Type) return Boolean
7199 is
7200 begin
7201 -- There is something to check only when using project files. Otherwise,
7202 -- this function returns True (last line of the function).
7203
7204 if Main_Project /= No_Project then
7205 declare
7206 Source_File_Name : constant String :=
7207 Get_Name_String (Source_File);
7208 Saved_Verbosity : constant Verbosity := Current_Verbosity;
7209 Project : Project_Id := No_Project;
7210
7211 Path_Name : Path_Name_Type := No_Path;
7212 pragma Warnings (Off, Path_Name);
7213
7214 begin
7215 -- Call Get_Reference to know the ultimate extending project of
7216 -- the source. Call it with verbosity default to avoid verbose
7217 -- messages.
7218
7219 Current_Verbosity := Default;
7220 Prj.Env.Get_Reference
7221 (Source_File_Name => Source_File_Name,
7222 Project => Project,
7223 In_Tree => Project_Tree,
7224 Path => Path_Name);
7225 Current_Verbosity := Saved_Verbosity;
7226
7227 -- If this source is in a project, check that the ALI file is in
7228 -- its object directory. If it is not, return False, so that the
7229 -- ALI file will not be skipped.
7230
7231 if Project /= No_Project then
7232 declare
7233 Object_Directory : constant String :=
7234 Normalize_Pathname
7235 (Get_Name_String
7236 (Project.
7237 Object_Directory.Display_Name));
7238
7239 Olast : Natural := Object_Directory'Last;
7240
7241 Lib_File_Directory : constant String :=
7242 Normalize_Pathname (Dir_Name
7243 (Get_Name_String (Full_Lib_File)));
7244
7245 Llast : Natural := Lib_File_Directory'Last;
7246
7247 begin
7248 -- For directories, Normalize_Pathname may or may not put
7249 -- a directory separator at the end, depending on its input.
7250 -- Remove any last directory separator before comparison.
7251 -- Returns True only if the two directories are the same.
7252
7253 if Object_Directory (Olast) = Directory_Separator then
7254 Olast := Olast - 1;
7255 end if;
7256
7257 if Lib_File_Directory (Llast) = Directory_Separator then
7258 Llast := Llast - 1;
7259 end if;
7260
7261 return Object_Directory (Object_Directory'First .. Olast) =
7262 Lib_File_Directory (Lib_File_Directory'First .. Llast);
7263 end;
7264 end if;
7265 end;
7266 end if;
7267
7268 -- When the source is not in a project file, always return True
7269
7270 return True;
7271 end Is_In_Object_Directory;
7272
7273 ----------
7274 -- Link --
7275 ----------
7276
7277 procedure Link
7278 (ALI_File : File_Name_Type;
7279 Args : Argument_List;
7280 Success : out Boolean)
7281 is
7282 Link_Args : Argument_List (1 .. Args'Length + 1);
7283
7284 begin
7285 Get_Name_String (ALI_File);
7286 Link_Args (1) := new String'(Name_Buffer (1 .. Name_Len));
7287
7288 Link_Args (2 .. Args'Length + 1) := Args;
7289
7290 GNAT.OS_Lib.Normalize_Arguments (Link_Args);
7291
7292 Display (Gnatlink.all, Link_Args);
7293
7294 if Gnatlink_Path = null then
7295 Make_Failed ("error, unable to locate " & Gnatlink.all);
7296 end if;
7297
7298 GNAT.OS_Lib.Spawn (Gnatlink_Path.all, Link_Args, Success);
7299 end Link;
7300
7301 ---------------------------
7302 -- List_Bad_Compilations --
7303 ---------------------------
7304
7305 procedure List_Bad_Compilations is
7306 begin
7307 for J in Bad_Compilation.First .. Bad_Compilation.Last loop
7308 if Bad_Compilation.Table (J).File = No_File then
7309 null;
7310 elsif not Bad_Compilation.Table (J).Found then
7311 Inform (Bad_Compilation.Table (J).File, "not found");
7312 else
7313 Inform (Bad_Compilation.Table (J).File, "compilation error");
7314 end if;
7315 end loop;
7316 end List_Bad_Compilations;
7317
7318 -----------------
7319 -- List_Depend --
7320 -----------------
7321
7322 procedure List_Depend is
7323 Lib_Name : File_Name_Type;
7324 Obj_Name : File_Name_Type;
7325 Src_Name : File_Name_Type;
7326
7327 Len : Natural;
7328 Line_Pos : Natural;
7329 Line_Size : constant := 77;
7330
7331 begin
7332 Set_Standard_Output;
7333
7334 for A in ALIs.First .. ALIs.Last loop
7335 Lib_Name := ALIs.Table (A).Afile;
7336
7337 -- We have to provide the full library file name in In_Place_Mode
7338
7339 if In_Place_Mode then
7340 Lib_Name := Full_Lib_File_Name (Lib_Name);
7341 end if;
7342
7343 Obj_Name := Object_File_Name (Lib_Name);
7344 Write_Name (Obj_Name);
7345 Write_Str (" :");
7346
7347 Get_Name_String (Obj_Name);
7348 Len := Name_Len;
7349 Line_Pos := Len + 2;
7350
7351 for D in ALIs.Table (A).First_Sdep .. ALIs.Table (A).Last_Sdep loop
7352 Src_Name := Sdep.Table (D).Sfile;
7353
7354 if Is_Internal_File_Name (Src_Name)
7355 and then not Check_Readonly_Files
7356 then
7357 null;
7358 else
7359 if not Quiet_Output then
7360 Src_Name := Full_Source_Name (Src_Name);
7361 end if;
7362
7363 Get_Name_String (Src_Name);
7364 Len := Name_Len;
7365
7366 if Line_Pos + Len + 1 > Line_Size then
7367 Write_Str (" \");
7368 Write_Eol;
7369 Line_Pos := 0;
7370 end if;
7371
7372 Line_Pos := Line_Pos + Len + 1;
7373
7374 Write_Str (" ");
7375 Write_Name (Src_Name);
7376 end if;
7377 end loop;
7378
7379 Write_Eol;
7380 end loop;
7381
7382 if not Commands_To_Stdout then
7383 Set_Standard_Error;
7384 end if;
7385 end List_Depend;
7386
7387 -----------------
7388 -- Make_Failed --
7389 -----------------
7390
7391 procedure Make_Failed (S : String) is
7392 begin
7393 Delete_All_Temp_Files;
7394 Osint.Fail (S);
7395 end Make_Failed;
7396
7397 --------------------
7398 -- Mark_Directory --
7399 --------------------
7400
7401 procedure Mark_Directory
7402 (Dir : String;
7403 Mark : Lib_Mark_Type;
7404 On_Command_Line : Boolean)
7405 is
7406 N : Name_Id;
7407 B : Byte;
7408
7409 function Base_Directory return String;
7410 -- If Dir comes from the command line, empty string (relative paths
7411 -- are resolved with respect to the current directory), else return
7412 -- the main project's directory.
7413
7414 --------------------
7415 -- Base_Directory --
7416 --------------------
7417
7418 function Base_Directory return String is
7419 begin
7420 if On_Command_Line then
7421 return "";
7422 else
7423 return Get_Name_String (Main_Project.Directory.Display_Name);
7424 end if;
7425 end Base_Directory;
7426
7427 Real_Path : constant String := Normalize_Pathname (Dir, Base_Directory);
7428
7429 -- Start of processing for Mark_Directory
7430
7431 begin
7432 Name_Len := 0;
7433
7434 if Real_Path'Length = 0 then
7435 Add_Str_To_Name_Buffer (Dir);
7436
7437 else
7438 Add_Str_To_Name_Buffer (Real_Path);
7439 end if;
7440
7441 -- Last character is supposed to be a directory separator
7442
7443 if not Is_Directory_Separator (Name_Buffer (Name_Len)) then
7444 Add_Char_To_Name_Buffer (Directory_Separator);
7445 end if;
7446
7447 -- Add flags to the already existing flags
7448
7449 N := Name_Find;
7450 B := Get_Name_Table_Byte (N);
7451 Set_Name_Table_Byte (N, B or Mark);
7452 end Mark_Directory;
7453
7454 -----------------------------
7455 -- Recursive_Compute_Depth --
7456 -----------------------------
7457
7458 procedure Recursive_Compute_Depth (Project : Project_Id) is
7459 use Project_Boolean_Htable;
7460 Seen : Project_Boolean_Htable.Instance := Project_Boolean_Htable.Nil;
7461
7462 procedure Recurse (Prj : Project_Id; Depth : Natural);
7463
7464 -------------
7465 -- Recurse --
7466 -------------
7467
7468 procedure Recurse (Prj : Project_Id; Depth : Natural) is
7469 List : Project_List;
7470 Proj : Project_Id;
7471
7472 begin
7473 if Prj.Depth >= Depth or else Get (Seen, Prj) then
7474 return;
7475 end if;
7476
7477 -- We need a test to avoid infinite recursions with limited withs:
7478 -- If we have A -> B -> A, then when set level of A to n, we try and
7479 -- set level of B to n+1, and then level of A to n + 2, ...
7480
7481 Set (Seen, Prj, True);
7482
7483 Prj.Depth := Depth;
7484
7485 -- Visit each imported project
7486
7487 List := Prj.Imported_Projects;
7488 while List /= null loop
7489 Proj := List.Project;
7490 List := List.Next;
7491 Recurse (Prj => Proj, Depth => Depth + 1);
7492 end loop;
7493
7494 -- We again allow changing the depth of this project later on if it
7495 -- is in fact imported by a lower-level project.
7496
7497 Set (Seen, Prj, False);
7498 end Recurse;
7499
7500 Proj : Project_List;
7501
7502 -- Start of processing for Recursive_Compute_Depth
7503
7504 begin
7505 Proj := Project_Tree.Projects;
7506 while Proj /= null loop
7507 Proj.Project.Depth := 0;
7508 Proj := Proj.Next;
7509 end loop;
7510
7511 Recurse (Project, Depth => 1);
7512 Reset (Seen);
7513 end Recursive_Compute_Depth;
7514
7515 -------------------------------
7516 -- Report_Compilation_Failed --
7517 -------------------------------
7518
7519 procedure Report_Compilation_Failed is
7520 begin
7521 Delete_All_Temp_Files;
7522 Exit_Program (E_Fatal);
7523 end Report_Compilation_Failed;
7524
7525 ------------------------
7526 -- Sigint_Intercepted --
7527 ------------------------
7528
7529 procedure Sigint_Intercepted is
7530 SIGINT : constant := 2;
7531
7532 begin
7533 Set_Standard_Error;
7534 Write_Line ("*** Interrupted ***");
7535
7536 -- Send SIGINT to all outstanding compilation processes spawned
7537
7538 for J in 1 .. Outstanding_Compiles loop
7539 Kill (Running_Compile (J).Pid, SIGINT, 1);
7540 end loop;
7541
7542 Delete_All_Temp_Files;
7543 OS_Exit (1);
7544 -- ??? OS_Exit (1) is equivalent to Exit_Program (E_No_Compile),
7545 -- shouldn't that be Exit_Program (E_Abort) instead?
7546 end Sigint_Intercepted;
7547
7548 -------------------
7549 -- Scan_Make_Arg --
7550 -------------------
7551
7552 procedure Scan_Make_Arg (Argv : String; And_Save : Boolean) is
7553 Success : Boolean;
7554
7555 begin
7556 Gnatmake_Switch_Found := True;
7557
7558 pragma Assert (Argv'First = 1);
7559
7560 if Argv'Length = 0 then
7561 return;
7562 end if;
7563
7564 -- If the previous switch has set the Project_File_Name_Present flag
7565 -- (that is we have seen a -P alone), then the next argument is the name
7566 -- of the project file.
7567
7568 if Project_File_Name_Present and then Project_File_Name = null then
7569 if Argv (1) = '-' then
7570 Make_Failed ("project file name missing after -P");
7571
7572 else
7573 Project_File_Name_Present := False;
7574 Project_File_Name := new String'(Argv);
7575 end if;
7576
7577 -- If the previous switch has set the Output_File_Name_Present flag
7578 -- (that is we have seen a -o), then the next argument is the name of
7579 -- the output executable.
7580
7581 elsif Output_File_Name_Present
7582 and then not Output_File_Name_Seen
7583 then
7584 Output_File_Name_Seen := True;
7585
7586 if Argv (1) = '-' then
7587 Make_Failed ("output file name missing after -o");
7588
7589 else
7590 Add_Switch ("-o", Linker, And_Save => And_Save);
7591 Add_Switch (Executable_Name (Argv), Linker, And_Save => And_Save);
7592 end if;
7593
7594 -- If the previous switch has set the Object_Directory_Present flag
7595 -- (that is we have seen a -D), then the next argument is the path name
7596 -- of the object directory..
7597
7598 elsif Object_Directory_Present
7599 and then not Object_Directory_Seen
7600 then
7601 Object_Directory_Seen := True;
7602
7603 if Argv (1) = '-' then
7604 Make_Failed ("object directory path name missing after -D");
7605
7606 elsif not Is_Directory (Argv) then
7607 Make_Failed ("cannot find object directory """ & Argv & """");
7608
7609 else
7610 Add_Lib_Search_Dir (Argv);
7611
7612 -- Specify the object directory to the binder
7613
7614 Add_Switch ("-aO" & Argv, Binder, And_Save => And_Save);
7615
7616 -- Record the object directory. Make sure it ends with a directory
7617 -- separator.
7618
7619 if Argv (Argv'Last) = Directory_Separator then
7620 Object_Directory_Path :=
7621 new String'(Argv);
7622 else
7623 Object_Directory_Path :=
7624 new String'(Argv & Directory_Separator);
7625 end if;
7626 end if;
7627
7628 -- Then check if we are dealing with -cargs/-bargs/-largs/-margs
7629
7630 elsif Argv = "-bargs"
7631 or else
7632 Argv = "-cargs"
7633 or else
7634 Argv = "-largs"
7635 or else
7636 Argv = "-margs"
7637 then
7638 case Argv (2) is
7639 when 'c' => Program_Args := Compiler;
7640 when 'b' => Program_Args := Binder;
7641 when 'l' => Program_Args := Linker;
7642 when 'm' => Program_Args := None;
7643
7644 when others =>
7645 raise Program_Error;
7646 end case;
7647
7648 -- A special test is needed for the -o switch within a -largs
7649 -- since that is another way to specify the name of the final
7650 -- executable.
7651
7652 elsif Program_Args = Linker
7653 and then Argv = "-o"
7654 then
7655 Make_Failed ("switch -o not allowed within a -largs. " &
7656 "Use -o directly.");
7657
7658 -- Check to see if we are reading switches after a -cargs,
7659 -- -bargs or -largs switch. If yes save it.
7660
7661 elsif Program_Args /= None then
7662
7663 -- Check to see if we are reading -I switches in order
7664 -- to take into account in the src & lib search directories.
7665
7666 if Argv'Length > 2 and then Argv (1 .. 2) = "-I" then
7667 if Argv (3 .. Argv'Last) = "-" then
7668 Look_In_Primary_Dir := False;
7669
7670 elsif Program_Args = Compiler then
7671 if Argv (3 .. Argv'Last) /= "-" then
7672 Add_Source_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7673 end if;
7674
7675 elsif Program_Args = Binder then
7676 Add_Library_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7677 end if;
7678 end if;
7679
7680 Add_Switch (Argv, Program_Args, And_Save => And_Save);
7681
7682 -- Handle non-default compiler, binder, linker, and handle --RTS switch
7683
7684 elsif Argv'Length > 2 and then Argv (1 .. 2) = "--" then
7685 if Argv'Length > 6
7686 and then Argv (1 .. 6) = "--GCC="
7687 then
7688 declare
7689 Program_Args : constant Argument_List_Access :=
7690 Argument_String_To_List
7691 (Argv (7 .. Argv'Last));
7692
7693 begin
7694 if And_Save then
7695 Saved_Gcc := new String'(Program_Args.all (1).all);
7696 else
7697 Gcc := new String'(Program_Args.all (1).all);
7698 end if;
7699
7700 for J in 2 .. Program_Args.all'Last loop
7701 Add_Switch
7702 (Program_Args.all (J).all,
7703 Compiler,
7704 And_Save => And_Save);
7705 end loop;
7706 end;
7707
7708 elsif Argv'Length > 11
7709 and then Argv (1 .. 11) = "--GNATBIND="
7710 then
7711 declare
7712 Program_Args : constant Argument_List_Access :=
7713 Argument_String_To_List
7714 (Argv (12 .. Argv'Last));
7715
7716 begin
7717 if And_Save then
7718 Saved_Gnatbind := new String'(Program_Args.all (1).all);
7719 else
7720 Gnatbind := new String'(Program_Args.all (1).all);
7721 end if;
7722
7723 for J in 2 .. Program_Args.all'Last loop
7724 Add_Switch
7725 (Program_Args.all (J).all, Binder, And_Save => And_Save);
7726 end loop;
7727 end;
7728
7729 elsif Argv'Length > 11
7730 and then Argv (1 .. 11) = "--GNATLINK="
7731 then
7732 declare
7733 Program_Args : constant Argument_List_Access :=
7734 Argument_String_To_List
7735 (Argv (12 .. Argv'Last));
7736 begin
7737 if And_Save then
7738 Saved_Gnatlink := new String'(Program_Args.all (1).all);
7739 else
7740 Gnatlink := new String'(Program_Args.all (1).all);
7741 end if;
7742
7743 for J in 2 .. Program_Args.all'Last loop
7744 Add_Switch (Program_Args.all (J).all, Linker);
7745 end loop;
7746 end;
7747
7748 elsif Argv'Length >= 5 and then
7749 Argv (1 .. 5) = "--RTS"
7750 then
7751 Add_Switch (Argv, Compiler, And_Save => And_Save);
7752 Add_Switch (Argv, Binder, And_Save => And_Save);
7753
7754 if Argv'Length <= 6 or else Argv (6) /= '=' then
7755 Make_Failed ("missing path for --RTS");
7756
7757 else
7758 -- Check that this is the first time we see this switch or
7759 -- if it is not the first time, the same path is specified.
7760
7761 if RTS_Specified = null then
7762 RTS_Specified := new String'(Argv (7 .. Argv'Last));
7763
7764 elsif RTS_Specified.all /= Argv (7 .. Argv'Last) then
7765 Make_Failed ("--RTS cannot be specified multiple times");
7766 end if;
7767
7768 -- Valid --RTS switch
7769
7770 No_Stdinc := True;
7771 No_Stdlib := True;
7772 RTS_Switch := True;
7773
7774 declare
7775 Src_Path_Name : constant String_Ptr :=
7776 Get_RTS_Search_Dir
7777 (Argv (7 .. Argv'Last), Include);
7778
7779 Lib_Path_Name : constant String_Ptr :=
7780 Get_RTS_Search_Dir
7781 (Argv (7 .. Argv'Last), Objects);
7782
7783 begin
7784 if Src_Path_Name /= null
7785 and then Lib_Path_Name /= null
7786 then
7787 -- Set RTS_*_Path_Name variables, so that correct direct-
7788 -- ories will be set when Osint.Add_Default_Search_Dirs
7789 -- is called later.
7790
7791 RTS_Src_Path_Name := Src_Path_Name;
7792 RTS_Lib_Path_Name := Lib_Path_Name;
7793
7794 elsif Src_Path_Name = null
7795 and Lib_Path_Name = null
7796 then
7797 Make_Failed ("RTS path not valid: missing " &
7798 "adainclude and adalib directories");
7799
7800 elsif Src_Path_Name = null then
7801 Make_Failed ("RTS path not valid: missing adainclude " &
7802 "directory");
7803
7804 elsif Lib_Path_Name = null then
7805 Make_Failed ("RTS path not valid: missing adalib " &
7806 "directory");
7807 end if;
7808 end;
7809 end if;
7810
7811 elsif Argv'Length >= 8 and then
7812 Argv (1 .. 8) = "--param="
7813 then
7814 Add_Switch (Argv, Compiler, And_Save => And_Save);
7815 Add_Switch (Argv, Linker, And_Save => And_Save);
7816
7817 else
7818 Scan_Make_Switches (Argv, Success);
7819 end if;
7820
7821 -- If we have seen a regular switch process it
7822
7823 elsif Argv (1) = '-' then
7824 if Argv'Length = 1 then
7825 Make_Failed ("switch character cannot be followed by a blank");
7826
7827 -- Incorrect switches that should start with "--"
7828
7829 elsif (Argv'Length > 5 and then Argv (1 .. 5) = "-RTS=")
7830 or else (Argv'Length > 5 and then Argv (1 .. 5) = "-GCC=")
7831 or else (Argv'Length > 8 and then Argv (1 .. 7) = "-param=")
7832 or else (Argv'Length > 10 and then Argv (1 .. 10) = "-GNATLINK=")
7833 or else (Argv'Length > 10 and then Argv (1 .. 10) = "-GNATBIND=")
7834 then
7835 Make_Failed ("option " & Argv & " should start with '--'");
7836
7837 -- -I-
7838
7839 elsif Argv (2 .. Argv'Last) = "I-" then
7840 Look_In_Primary_Dir := False;
7841
7842 -- Forbid -?- or -??- where ? is any character
7843
7844 elsif (Argv'Length = 3 and then Argv (3) = '-')
7845 or else (Argv'Length = 4 and then Argv (4) = '-')
7846 then
7847 Make_Failed
7848 ("trailing ""-"" at the end of " & Argv & " forbidden.");
7849
7850 -- -Idir
7851
7852 elsif Argv (2) = 'I' then
7853 Add_Source_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7854 Add_Library_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7855 Add_Switch (Argv, Compiler, And_Save => And_Save);
7856 Add_Switch (Argv, Binder, And_Save => And_Save);
7857
7858 -- -aIdir (to gcc this is like a -I switch)
7859
7860 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aI" then
7861 Add_Source_Search_Dir (Argv (4 .. Argv'Last), And_Save);
7862 Add_Switch ("-I" & Argv (4 .. Argv'Last),
7863 Compiler,
7864 And_Save => And_Save);
7865 Add_Switch (Argv, Binder, And_Save => And_Save);
7866
7867 -- -aOdir
7868
7869 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aO" then
7870 Add_Library_Search_Dir (Argv (4 .. Argv'Last), And_Save);
7871 Add_Switch (Argv, Binder, And_Save => And_Save);
7872
7873 -- -aLdir (to gnatbind this is like a -aO switch)
7874
7875 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aL" then
7876 Mark_Directory (Argv (4 .. Argv'Last), Ada_Lib_Dir, And_Save);
7877 Add_Library_Search_Dir (Argv (4 .. Argv'Last), And_Save);
7878 Add_Switch ("-aO" & Argv (4 .. Argv'Last),
7879 Binder,
7880 And_Save => And_Save);
7881
7882 -- -aamp_target=...
7883
7884 elsif Argv'Length >= 13 and then Argv (2 .. 13) = "aamp_target=" then
7885 Add_Switch (Argv, Compiler, And_Save => And_Save);
7886
7887 -- Set the aamp_target environment variable so that the binder and
7888 -- linker will use the proper target library. This is consistent
7889 -- with how things work when -aamp_target is passed on the command
7890 -- line to gnaampmake.
7891
7892 Setenv ("aamp_target", Argv (14 .. Argv'Last));
7893
7894 -- -Adir (to gnatbind this is like a -aO switch, to gcc like a -I)
7895
7896 elsif Argv (2) = 'A' then
7897 Mark_Directory (Argv (3 .. Argv'Last), Ada_Lib_Dir, And_Save);
7898 Add_Source_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7899 Add_Library_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7900 Add_Switch ("-I" & Argv (3 .. Argv'Last),
7901 Compiler,
7902 And_Save => And_Save);
7903 Add_Switch ("-aO" & Argv (3 .. Argv'Last),
7904 Binder,
7905 And_Save => And_Save);
7906
7907 -- -Ldir
7908
7909 elsif Argv (2) = 'L' then
7910 Add_Switch (Argv, Linker, And_Save => And_Save);
7911
7912 -- For -gxxxxx, -pg, -mxxx, -fxxx: give the switch to both the
7913 -- compiler and the linker (except for -gnatxxx which is only for
7914 -- the compiler). Some of the -mxxx (for example -m64) and -fxxx
7915 -- (for example -ftest-coverage for gcov) need to be used when
7916 -- compiling the binder generated files, and using all these gcc
7917 -- switches for the binder generated files should not be a problem.
7918
7919 elsif
7920 (Argv (2) = 'g' and then (Argv'Last < 5
7921 or else Argv (2 .. 5) /= "gnat"))
7922 or else Argv (2 .. Argv'Last) = "pg"
7923 or else (Argv (2) = 'm' and then Argv'Last > 2)
7924 or else (Argv (2) = 'f' and then Argv'Last > 2)
7925 then
7926 Add_Switch (Argv, Compiler, And_Save => And_Save);
7927 Add_Switch (Argv, Linker, And_Save => And_Save);
7928
7929 -- -C=<mapping file>
7930
7931 elsif Argv'Last > 2 and then Argv (2) = 'C' then
7932 if And_Save then
7933 if Argv (3) /= '=' or else Argv'Last <= 3 then
7934 Make_Failed ("illegal switch " & Argv);
7935 end if;
7936
7937 Gnatmake_Mapping_File := new String'(Argv (4 .. Argv'Last));
7938 end if;
7939
7940 -- -D
7941
7942 elsif Argv'Last = 2 and then Argv (2) = 'D' then
7943 if Project_File_Name /= null then
7944 Make_Failed ("-D cannot be used in conjunction with a " &
7945 "project file");
7946
7947 else
7948 Scan_Make_Switches (Argv, Success);
7949 end if;
7950
7951 -- -d
7952
7953 elsif Argv (2) = 'd'
7954 and then Argv'Last = 2
7955 then
7956 Display_Compilation_Progress := True;
7957
7958 -- -i
7959
7960 elsif Argv'Last = 2 and then Argv (2) = 'i' then
7961 if Project_File_Name /= null then
7962 Make_Failed ("-i cannot be used in conjunction with a " &
7963 "project file");
7964 else
7965 Scan_Make_Switches (Argv, Success);
7966 end if;
7967
7968 -- -j (need to save the result)
7969
7970 elsif Argv (2) = 'j' then
7971 Scan_Make_Switches (Argv, Success);
7972
7973 if And_Save then
7974 Saved_Maximum_Processes := Maximum_Processes;
7975 end if;
7976
7977 -- -m
7978
7979 elsif Argv (2) = 'm'
7980 and then Argv'Last = 2
7981 then
7982 Minimal_Recompilation := True;
7983
7984 -- -u
7985
7986 elsif Argv (2) = 'u'
7987 and then Argv'Last = 2
7988 then
7989 Unique_Compile := True;
7990 Compile_Only := True;
7991 Do_Bind_Step := False;
7992 Do_Link_Step := False;
7993
7994 -- -U
7995
7996 elsif Argv (2) = 'U'
7997 and then Argv'Last = 2
7998 then
7999 Unique_Compile_All_Projects := True;
8000 Unique_Compile := True;
8001 Compile_Only := True;
8002 Do_Bind_Step := False;
8003 Do_Link_Step := False;
8004
8005 -- -Pprj or -P prj (only once, and only on the command line)
8006
8007 elsif Argv (2) = 'P' then
8008 if Project_File_Name /= null then
8009 Make_Failed ("cannot have several project files specified");
8010
8011 elsif Object_Directory_Path /= null then
8012 Make_Failed ("-D cannot be used in conjunction with a " &
8013 "project file");
8014
8015 elsif In_Place_Mode then
8016 Make_Failed ("-i cannot be used in conjunction with a " &
8017 "project file");
8018
8019 elsif not And_Save then
8020
8021 -- It could be a tool other than gnatmake (i.e, gnatdist)
8022 -- or a -P switch inside a project file.
8023
8024 Fail
8025 ("either the tool is not ""project-aware"" or " &
8026 "a project file is specified inside a project file");
8027
8028 elsif Argv'Last = 2 then
8029
8030 -- -P is used alone: the project file name is the next option
8031
8032 Project_File_Name_Present := True;
8033
8034 else
8035 Project_File_Name := new String'(Argv (3 .. Argv'Last));
8036 end if;
8037
8038 -- -vPx (verbosity of the parsing of the project files)
8039
8040 elsif Argv'Last = 4
8041 and then Argv (2 .. 3) = "vP"
8042 and then Argv (4) in '0' .. '2'
8043 then
8044 if And_Save then
8045 case Argv (4) is
8046 when '0' =>
8047 Current_Verbosity := Prj.Default;
8048 when '1' =>
8049 Current_Verbosity := Prj.Medium;
8050 when '2' =>
8051 Current_Verbosity := Prj.High;
8052 when others =>
8053 null;
8054 end case;
8055 end if;
8056
8057 -- -Xext=val (External assignment)
8058
8059 elsif Argv (2) = 'X'
8060 and then Is_External_Assignment (Argv)
8061 then
8062 -- Is_External_Assignment has side effects
8063 -- when it returns True;
8064
8065 null;
8066
8067 -- If -gnath is present, then generate the usage information
8068 -- right now and do not pass this option on to the compiler calls.
8069
8070 elsif Argv = "-gnath" then
8071 Usage;
8072
8073 -- If -gnatc is specified, make sure the bind step and the link
8074 -- step are not executed.
8075
8076 elsif Argv'Length >= 6 and then Argv (2 .. 6) = "gnatc" then
8077
8078 -- If -gnatc is specified, make sure the bind step and the link
8079 -- step are not executed.
8080
8081 Add_Switch (Argv, Compiler, And_Save => And_Save);
8082 Operating_Mode := Check_Semantics;
8083 Check_Object_Consistency := False;
8084 Compile_Only := True;
8085 Do_Bind_Step := False;
8086 Do_Link_Step := False;
8087
8088 elsif Argv (2 .. Argv'Last) = "nostdlib" then
8089
8090 -- Don't pass -nostdlib to gnatlink, it will disable
8091 -- linking with all standard library files.
8092
8093 No_Stdlib := True;
8094
8095 Add_Switch (Argv, Compiler, And_Save => And_Save);
8096 Add_Switch (Argv, Binder, And_Save => And_Save);
8097
8098 elsif Argv (2 .. Argv'Last) = "nostdinc" then
8099
8100 -- Pass -nostdinc to the Compiler and to gnatbind
8101
8102 No_Stdinc := True;
8103 Add_Switch (Argv, Compiler, And_Save => And_Save);
8104 Add_Switch (Argv, Binder, And_Save => And_Save);
8105
8106 -- All other switches are processed by Scan_Make_Switches. If the
8107 -- call returns with Gnatmake_Switch_Found = False, then the switch
8108 -- is passed to the compiler.
8109
8110 else
8111 Scan_Make_Switches (Argv, Gnatmake_Switch_Found);
8112
8113 if not Gnatmake_Switch_Found then
8114 Add_Switch (Argv, Compiler, And_Save => And_Save);
8115 end if;
8116 end if;
8117
8118 -- If not a switch it must be a file name
8119
8120 else
8121 Add_File (Argv);
8122 Mains.Add_Main (Argv);
8123 end if;
8124 end Scan_Make_Arg;
8125
8126 -----------------
8127 -- Switches_Of --
8128 -----------------
8129
8130 function Switches_Of
8131 (Source_File : File_Name_Type;
8132 Source_File_Name : String;
8133 Source_Index : Int;
8134 Naming : Naming_Data;
8135 In_Package : Package_Id;
8136 Allow_ALI : Boolean) return Variable_Value
8137 is
8138 Switches : Variable_Value;
8139
8140 Defaults : constant Array_Element_Id :=
8141 Prj.Util.Value_Of
8142 (Name => Name_Default_Switches,
8143 In_Arrays =>
8144 Project_Tree.Packages.Table
8145 (In_Package).Decl.Arrays,
8146 In_Tree => Project_Tree);
8147
8148 Switches_Array : constant Array_Element_Id :=
8149 Prj.Util.Value_Of
8150 (Name => Name_Switches,
8151 In_Arrays =>
8152 Project_Tree.Packages.Table
8153 (In_Package).Decl.Arrays,
8154 In_Tree => Project_Tree);
8155
8156 begin
8157 -- First, try Switches (<file name>)
8158
8159 Switches :=
8160 Prj.Util.Value_Of
8161 (Index => Name_Id (Source_File),
8162 Src_Index => Source_Index,
8163 In_Array => Switches_Array,
8164 In_Tree => Project_Tree);
8165
8166 -- Check also without the suffix
8167
8168 if Switches = Nil_Variable_Value then
8169 declare
8170 Name : String (1 .. Source_File_Name'Length + 3);
8171 Last : Positive := Source_File_Name'Length;
8172 Spec_Suffix : constant String :=
8173 Spec_Suffix_Of (Project_Tree, "ada", Naming);
8174 Body_Suffix : constant String :=
8175 Body_Suffix_Of (Project_Tree, "ada", Naming);
8176 Truncated : Boolean := False;
8177
8178 begin
8179 Name (1 .. Last) := Source_File_Name;
8180
8181 if Last > Body_Suffix'Length
8182 and then Name (Last - Body_Suffix'Length + 1 .. Last) =
8183 Body_Suffix
8184 then
8185 Truncated := True;
8186 Last := Last - Body_Suffix'Length;
8187 end if;
8188
8189 if not Truncated
8190 and then Last > Spec_Suffix'Length
8191 and then Name (Last - Spec_Suffix'Length + 1 .. Last) =
8192 Spec_Suffix
8193 then
8194 Truncated := True;
8195 Last := Last - Spec_Suffix'Length;
8196 end if;
8197
8198 if Truncated then
8199 Name_Len := 0;
8200 Add_Str_To_Name_Buffer (Name (1 .. Last));
8201 Switches :=
8202 Prj.Util.Value_Of
8203 (Index => Name_Find,
8204 Src_Index => 0,
8205 In_Array => Switches_Array,
8206 In_Tree => Project_Tree);
8207
8208 if Switches = Nil_Variable_Value and then Allow_ALI then
8209 Last := Source_File_Name'Length;
8210
8211 while Name (Last) /= '.' loop
8212 Last := Last - 1;
8213 end loop;
8214
8215 Name_Len := 0;
8216 Add_Str_To_Name_Buffer (Name (1 .. Last));
8217 Add_Str_To_Name_Buffer ("ali");
8218
8219 Switches :=
8220 Prj.Util.Value_Of
8221 (Index => Name_Find,
8222 Src_Index => 0,
8223 In_Array => Switches_Array,
8224 In_Tree => Project_Tree);
8225 end if;
8226 end if;
8227 end;
8228 end if;
8229
8230 -- Next, try Switches ("Ada")
8231
8232 if Switches = Nil_Variable_Value then
8233 Switches :=
8234 Prj.Util.Value_Of
8235 (Index => Name_Ada,
8236 Src_Index => 0,
8237 In_Array => Switches_Array,
8238 In_Tree => Project_Tree,
8239 Force_Lower_Case_Index => True);
8240
8241 if Switches /= Nil_Variable_Value then
8242 Switch_May_Be_Passed_To_The_Compiler := False;
8243 end if;
8244 end if;
8245
8246 -- Next, try Switches (others)
8247
8248 if Switches = Nil_Variable_Value then
8249 Switches :=
8250 Prj.Util.Value_Of
8251 (Index => All_Other_Names,
8252 Src_Index => 0,
8253 In_Array => Switches_Array,
8254 In_Tree => Project_Tree);
8255
8256 if Switches /= Nil_Variable_Value then
8257 Switch_May_Be_Passed_To_The_Compiler := False;
8258 end if;
8259 end if;
8260
8261 -- And finally, Default_Switches ("Ada")
8262
8263 if Switches = Nil_Variable_Value then
8264 Switches :=
8265 Prj.Util.Value_Of
8266 (Index => Name_Ada,
8267 Src_Index => 0,
8268 In_Array => Defaults,
8269 In_Tree => Project_Tree);
8270 end if;
8271
8272 return Switches;
8273 end Switches_Of;
8274
8275 -----------
8276 -- Usage --
8277 -----------
8278
8279 procedure Usage is
8280 begin
8281 if Usage_Needed then
8282 Usage_Needed := False;
8283 Makeusg;
8284 end if;
8285 end Usage;
8286
8287 -----------------
8288 -- Verbose_Msg --
8289 -----------------
8290
8291 procedure Verbose_Msg
8292 (N1 : Name_Id;
8293 S1 : String;
8294 N2 : Name_Id := No_Name;
8295 S2 : String := "";
8296 Prefix : String := " -> ";
8297 Minimum_Verbosity : Verbosity_Level_Type := Opt.Low)
8298 is
8299 begin
8300 if (not Verbose_Mode) or else (Minimum_Verbosity > Verbosity_Level) then
8301 return;
8302 end if;
8303
8304 Write_Str (Prefix);
8305 Write_Str ("""");
8306 Write_Name (N1);
8307 Write_Str (""" ");
8308 Write_Str (S1);
8309
8310 if N2 /= No_Name then
8311 Write_Str (" """);
8312 Write_Name (N2);
8313 Write_Str (""" ");
8314 end if;
8315
8316 Write_Str (S2);
8317 Write_Eol;
8318 end Verbose_Msg;
8319
8320 procedure Verbose_Msg
8321 (N1 : File_Name_Type;
8322 S1 : String;
8323 N2 : File_Name_Type := No_File;
8324 S2 : String := "";
8325 Prefix : String := " -> ";
8326 Minimum_Verbosity : Verbosity_Level_Type := Opt.Low)
8327 is
8328 begin
8329 Verbose_Msg
8330 (Name_Id (N1), S1, Name_Id (N2), S2, Prefix, Minimum_Verbosity);
8331 end Verbose_Msg;
8332
8333 begin
8334 -- Make sure that in case of failure, the temp files will be deleted
8335
8336 Prj.Com.Fail := Make_Failed'Access;
8337 MLib.Fail := Make_Failed'Access;
8338 Makeutl.Do_Fail := Make_Failed'Access;
8339 end Make;