Make build_check_stmt accept an SSA_NAME for its base
[official-gcc.git] / gcc / ada / make.adb
blob28674251b1700d3e0d8e125c04972ebc4f41fa6b
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- M A K E --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2012, 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 ------------------------------------------------------------------------------
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.Tree; use Prj.Tree;
53 with Prj.Util;
54 with Sdefault;
55 with SFN_Scan;
56 with Sinput.P;
57 with Snames; use Snames;
59 pragma Warnings (Off);
60 with System.HTable;
61 pragma Warnings (On);
63 with Switch; use Switch;
64 with Switch.M; use Switch.M;
65 with Table;
66 with Targparm; use Targparm;
67 with Tempdir;
68 with Types; use Types;
70 with Ada.Command_Line; use Ada.Command_Line;
71 with Ada.Directories;
72 with Ada.Exceptions; use Ada.Exceptions;
74 with GNAT.Case_Util; use GNAT.Case_Util;
75 with GNAT.Directory_Operations; use GNAT.Directory_Operations;
76 with GNAT.Dynamic_HTables; use GNAT.Dynamic_HTables;
77 with GNAT.OS_Lib; use GNAT.OS_Lib;
79 package body Make is
81 use ASCII;
82 -- Make control characters visible
84 Standard_Library_Package_Body_Name : constant String := "s-stalib.adb";
85 -- Every program depends on this package, that must then be checked,
86 -- especially when -f and -a are used.
88 procedure Kill (Pid : Process_Id; Sig_Num : Integer; Close : Integer);
89 pragma Import (C, Kill, "__gnat_kill");
90 -- Called by Sigint_Intercepted to kill all spawned compilation processes
92 type Sigint_Handler is access procedure;
93 pragma Convention (C, Sigint_Handler);
95 procedure Install_Int_Handler (Handler : Sigint_Handler);
96 pragma Import (C, Install_Int_Handler, "__gnat_install_int_handler");
97 -- Called by Gnatmake to install the SIGINT handler below
99 procedure Sigint_Intercepted;
100 pragma Convention (C, Sigint_Intercepted);
101 -- Called when the program is interrupted by Ctrl-C to delete the
102 -- temporary mapping files and configuration pragmas files.
104 No_Mapping_File : constant Natural := 0;
106 type Compilation_Data is record
107 Pid : Process_Id;
108 Full_Source_File : File_Name_Type;
109 Lib_File : File_Name_Type;
110 Source_Unit : Unit_Name_Type;
111 Full_Lib_File : File_Name_Type;
112 Lib_File_Attr : aliased File_Attributes;
113 Mapping_File : Natural := No_Mapping_File;
114 Project : Project_Id := No_Project;
115 end record;
116 -- Data recorded for each compilation process spawned
118 No_Compilation_Data : constant Compilation_Data :=
119 (Invalid_Pid, No_File, No_File, No_Unit_Name, No_File, Unknown_Attributes,
120 No_Mapping_File, No_Project);
122 type Comp_Data_Arr is array (Positive range <>) of Compilation_Data;
123 type Comp_Data_Ptr is access Comp_Data_Arr;
124 Running_Compile : Comp_Data_Ptr;
125 -- Used to save information about outstanding compilations
127 Outstanding_Compiles : Natural := 0;
128 -- Current number of outstanding compiles
130 -------------------------
131 -- Note on terminology --
132 -------------------------
134 -- In this program, we use the phrase "termination" of a file name to refer
135 -- to the suffix that appears after the unit name portion. Very often this
136 -- is simply the extension, but in some cases, the sequence may be more
137 -- complex, for example in main.1.ada, the termination in this name is
138 -- ".1.ada" and in main_.ada the termination is "_.ada".
140 procedure Insert_Project_Sources
141 (The_Project : Project_Id;
142 All_Projects : Boolean;
143 Into_Q : Boolean);
144 -- If Into_Q is True, insert all sources of the project file(s) that are
145 -- not already marked into the Q. If Into_Q is False, call Osint.Add_File
146 -- for the first source, then insert all other sources that are not already
147 -- marked into the Q. If All_Projects is True, all sources of all projects
148 -- are concerned; otherwise, only sources of The_Project are concerned,
149 -- including, if The_Project is an extending project, sources inherited
150 -- from projects being extended.
152 Unique_Compile : Boolean := False;
153 -- Set to True if -u or -U or a project file with no main is used
155 Unique_Compile_All_Projects : Boolean := False;
156 -- Set to True if -U is used
158 Must_Compile : Boolean := False;
159 -- True if gnatmake is invoked with -f -u and one or several mains on the
160 -- command line.
162 Project_Tree : constant Project_Tree_Ref :=
163 new Project_Tree_Data (Is_Root_Tree => True);
164 -- The project tree
166 Main_On_Command_Line : Boolean := False;
167 -- True if gnatmake is invoked with one or several mains on the command
168 -- line.
170 RTS_Specified : String_Access := null;
171 -- Used to detect multiple --RTS= switches
173 N_M_Switch : Natural := 0;
174 -- Used to count -mxxx switches that can affect multilib
176 -- The 3 following packages are used to store gcc, gnatbind and gnatlink
177 -- switches found in the project files.
179 package Gcc_Switches is new Table.Table (
180 Table_Component_Type => String_Access,
181 Table_Index_Type => Integer,
182 Table_Low_Bound => 1,
183 Table_Initial => 20,
184 Table_Increment => 100,
185 Table_Name => "Make.Gcc_Switches");
187 package Binder_Switches is new Table.Table (
188 Table_Component_Type => String_Access,
189 Table_Index_Type => Integer,
190 Table_Low_Bound => 1,
191 Table_Initial => 20,
192 Table_Increment => 100,
193 Table_Name => "Make.Binder_Switches");
195 package Linker_Switches is new Table.Table (
196 Table_Component_Type => String_Access,
197 Table_Index_Type => Integer,
198 Table_Low_Bound => 1,
199 Table_Initial => 20,
200 Table_Increment => 100,
201 Table_Name => "Make.Linker_Switches");
203 -- The following instantiations and variables are necessary to save what
204 -- is found on the command line, in case there is a project file specified.
206 package Saved_Gcc_Switches is new Table.Table (
207 Table_Component_Type => String_Access,
208 Table_Index_Type => Integer,
209 Table_Low_Bound => 1,
210 Table_Initial => 20,
211 Table_Increment => 100,
212 Table_Name => "Make.Saved_Gcc_Switches");
214 package Saved_Binder_Switches is new Table.Table (
215 Table_Component_Type => String_Access,
216 Table_Index_Type => Integer,
217 Table_Low_Bound => 1,
218 Table_Initial => 20,
219 Table_Increment => 100,
220 Table_Name => "Make.Saved_Binder_Switches");
222 package Saved_Linker_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.Saved_Linker_Switches");
230 package Switches_To_Check 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.Switches_To_Check");
238 package Library_Paths 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.Library_Paths");
246 package Failed_Links is new Table.Table (
247 Table_Component_Type => File_Name_Type,
248 Table_Index_Type => Integer,
249 Table_Low_Bound => 1,
250 Table_Initial => 10,
251 Table_Increment => 100,
252 Table_Name => "Make.Failed_Links");
254 package Successful_Links is new Table.Table (
255 Table_Component_Type => File_Name_Type,
256 Table_Index_Type => Integer,
257 Table_Low_Bound => 1,
258 Table_Initial => 10,
259 Table_Increment => 100,
260 Table_Name => "Make.Successful_Links");
262 package Library_Projs is new Table.Table (
263 Table_Component_Type => Project_Id,
264 Table_Index_Type => Integer,
265 Table_Low_Bound => 1,
266 Table_Initial => 10,
267 Table_Increment => 100,
268 Table_Name => "Make.Library_Projs");
270 -- Two variables to keep the last binder and linker switch index in tables
271 -- Binder_Switches and Linker_Switches, before adding switches from the
272 -- project file (if any) and switches from the command line (if any).
274 Last_Binder_Switch : Integer := 0;
275 Last_Linker_Switch : Integer := 0;
277 Normalized_Switches : Argument_List_Access := new Argument_List (1 .. 10);
278 Last_Norm_Switch : Natural := 0;
280 Saved_Maximum_Processes : Natural := 0;
282 Gnatmake_Switch_Found : Boolean;
283 -- Set by Scan_Make_Arg. True when the switch is a gnatmake switch.
284 -- Tested by Add_Switches when switches in package Builder must all be
285 -- gnatmake switches.
287 Switch_May_Be_Passed_To_The_Compiler : Boolean;
288 -- Set by Add_Switches and Switches_Of. True when unrecognized switches
289 -- are passed to the Ada compiler.
291 type Arg_List_Ref is access Argument_List;
292 The_Saved_Gcc_Switches : Arg_List_Ref;
294 Project_File_Name : String_Access := null;
295 -- The path name of the main project file, if any
297 Project_File_Name_Present : Boolean := False;
298 -- True when -P is used with a space between -P and the project file name
300 Current_Verbosity : Prj.Verbosity := Prj.Default;
301 -- Verbosity to parse the project files
303 Main_Project : Prj.Project_Id := No_Project;
304 -- The project id of the main project file, if any
306 Project_Of_Current_Object_Directory : Project_Id := No_Project;
307 -- The object directory of the project for the last compilation. Avoid
308 -- calling Change_Dir if the current working directory is already this
309 -- directory.
311 Map_File : String_Access := null;
312 -- Value of switch --create-map-file
314 -- Packages of project files where unknown attributes are errors
316 Naming_String : aliased String := "naming";
317 Builder_String : aliased String := "builder";
318 Compiler_String : aliased String := "compiler";
319 Binder_String : aliased String := "binder";
320 Linker_String : aliased String := "linker";
322 Gnatmake_Packages : aliased String_List :=
323 (Naming_String 'Access,
324 Builder_String 'Access,
325 Compiler_String 'Access,
326 Binder_String 'Access,
327 Linker_String 'Access);
329 Packages_To_Check_By_Gnatmake : constant String_List_Access :=
330 Gnatmake_Packages'Access;
332 procedure Add_Library_Search_Dir
333 (Path : String;
334 On_Command_Line : Boolean);
335 -- Call Add_Lib_Search_Dir with an absolute directory path. If Path is
336 -- relative path, when On_Command_Line is True, it is relative to the
337 -- current working directory. When On_Command_Line is False, it is relative
338 -- to the project directory of the main project.
340 procedure Add_Source_Search_Dir
341 (Path : String;
342 On_Command_Line : Boolean);
343 -- Call Add_Src_Search_Dir with an absolute directory path. If Path is a
344 -- relative path, when On_Command_Line is True, it is relative to the
345 -- current working directory. When On_Command_Line is False, it is relative
346 -- to the project directory of the main project.
348 procedure Add_Source_Dir (N : String);
349 -- Call Add_Src_Search_Dir (output one line when in verbose mode)
351 procedure Add_Source_Directories is
352 new Prj.Env.For_All_Source_Dirs (Action => Add_Source_Dir);
354 procedure Add_Object_Dir (N : String);
355 -- Call Add_Lib_Search_Dir (output one line when in verbose mode)
357 procedure Add_Object_Directories is
358 new Prj.Env.For_All_Object_Dirs (Action => Add_Object_Dir);
360 procedure Change_To_Object_Directory (Project : Project_Id);
361 -- Change to the object directory of project Project, if this is not
362 -- already the current working directory.
364 type Bad_Compilation_Info is record
365 File : File_Name_Type;
366 Unit : Unit_Name_Type;
367 Found : Boolean;
368 end record;
369 -- File is the name of the file for which a compilation failed. Unit is for
370 -- gnatdist use in order to easily get the unit name of a file when its
371 -- name is krunched or declared in gnat.adc. Found is False if the
372 -- compilation failed because the file could not be found.
374 package Bad_Compilation is new Table.Table (
375 Table_Component_Type => Bad_Compilation_Info,
376 Table_Index_Type => Natural,
377 Table_Low_Bound => 1,
378 Table_Initial => 20,
379 Table_Increment => 100,
380 Table_Name => "Make.Bad_Compilation");
381 -- Full name of all the source files for which compilation fails
383 Do_Compile_Step : Boolean := True;
384 Do_Bind_Step : Boolean := True;
385 Do_Link_Step : Boolean := True;
386 -- Flags to indicate what step should be executed. Can be set to False
387 -- with the switches -c, -b and -l. These flags are reset to True for
388 -- each invocation of procedure Gnatmake.
390 Shared_String : aliased String := "-shared";
391 Force_Elab_Flags_String : aliased String := "-F";
392 CodePeer_Mode_String : aliased String := "-P";
394 No_Shared_Switch : aliased Argument_List := (1 .. 0 => null);
395 Shared_Switch : aliased Argument_List := (1 => Shared_String'Access);
396 Bind_Shared : Argument_List_Access := No_Shared_Switch'Access;
397 -- Switch to added in front of gnatbind switches. By default no switch is
398 -- added. Switch "-shared" is added if there is a non-static Library
399 -- Project File.
401 Shared_Libgcc : aliased String := "-shared-libgcc";
403 No_Shared_Libgcc_Switch : aliased Argument_List := (1 .. 0 => null);
404 Shared_Libgcc_Switch : aliased Argument_List :=
405 (1 => Shared_Libgcc'Access);
406 Link_With_Shared_Libgcc : Argument_List_Access :=
407 No_Shared_Libgcc_Switch'Access;
409 procedure Make_Failed (S : String);
410 -- Delete all temp files created by Gnatmake and call Osint.Fail, with the
411 -- parameter S (see osint.ads). This is called from the Prj hierarchy and
412 -- the MLib hierarchy. This subprogram also prints current error messages
413 -- (i.e. finalizes Errutil).
415 --------------------------
416 -- Obsolete Executables --
417 --------------------------
419 Executable_Obsolete : Boolean := False;
420 -- Executable_Obsolete is initially set to False for each executable,
421 -- and is set to True whenever one of the source of the executable is
422 -- compiled, or has already been compiled for another executable.
424 Max_Header : constant := 200;
425 -- This needs a proper comment, it used to say "arbitrary" that's not an
426 -- adequate comment ???
428 type Header_Num is range 1 .. Max_Header;
429 -- Header_Num for the hash table Obsoleted below
431 function Hash (F : File_Name_Type) return Header_Num;
432 -- Hash function for the hash table Obsoleted below
434 package Obsoleted is new System.HTable.Simple_HTable
435 (Header_Num => Header_Num,
436 Element => Boolean,
437 No_Element => False,
438 Key => File_Name_Type,
439 Hash => Hash,
440 Equal => "=");
441 -- A hash table to keep all files that have been compiled, to detect
442 -- if an executable is up to date or not.
444 procedure Enter_Into_Obsoleted (F : File_Name_Type);
445 -- Enter a file name, without directory information, into the hash table
446 -- Obsoleted.
448 function Is_In_Obsoleted (F : File_Name_Type) return Boolean;
449 -- Check if a file name, without directory information, has already been
450 -- entered into the hash table Obsoleted.
452 type Dependency is record
453 This : File_Name_Type;
454 Depends_On : File_Name_Type;
455 end record;
456 -- Components of table Dependencies below
458 package Dependencies is new Table.Table (
459 Table_Component_Type => Dependency,
460 Table_Index_Type => Integer,
461 Table_Low_Bound => 1,
462 Table_Initial => 20,
463 Table_Increment => 100,
464 Table_Name => "Make.Dependencies");
465 -- A table to keep dependencies, to be able to decide if an executable
466 -- is obsolete. More explanation needed ???
468 ----------------------------
469 -- Arguments and Switches --
470 ----------------------------
472 Arguments : Argument_List_Access;
473 -- Used to gather the arguments for invocation of the compiler
475 Last_Argument : Natural := 0;
476 -- Last index of arguments in Arguments above
478 Arguments_Project : Project_Id;
479 -- Project id, if any, of the source to be compiled
481 Arguments_Path_Name : Path_Name_Type;
482 -- Full path of the source to be compiled, when Arguments_Project is not
483 -- No_Project.
485 Dummy_Switch : constant String_Access := new String'("- ");
486 -- Used to initialized Prev_Switch in procedure Check
488 procedure Add_Arguments (Args : Argument_List);
489 -- Add arguments to global variable Arguments, increasing its size
490 -- if necessary and adjusting Last_Argument.
492 function Configuration_Pragmas_Switch
493 (For_Project : Project_Id) return Argument_List;
494 -- Return an argument list of one element, if there is a configuration
495 -- pragmas file to be specified for For_Project,
496 -- otherwise return an empty argument list.
498 -------------------
499 -- Misc Routines --
500 -------------------
502 procedure List_Depend;
503 -- Prints to standard output the list of object dependencies. This list
504 -- can be used directly in a Makefile. A call to Compile_Sources must
505 -- precede the call to List_Depend. Also because this routine uses the
506 -- ALI files that were originally loaded and scanned by Compile_Sources,
507 -- no additional ALI files should be scanned between the two calls (i.e.
508 -- between the call to Compile_Sources and List_Depend.)
510 procedure List_Bad_Compilations;
511 -- Prints out the list of all files for which the compilation failed
513 Usage_Needed : Boolean := True;
514 -- Flag used to make sure Makeusg is call at most once
516 procedure Usage;
517 -- Call Makeusg, if Usage_Needed is True.
518 -- Set Usage_Needed to False.
520 procedure Debug_Msg (S : String; N : Name_Id);
521 procedure Debug_Msg (S : String; N : File_Name_Type);
522 procedure Debug_Msg (S : String; N : Unit_Name_Type);
523 -- If Debug.Debug_Flag_W is set outputs string S followed by name N
525 procedure Recursive_Compute_Depth (Project : Project_Id);
526 -- Compute depth of Project and of the projects it depends on
528 -----------------------
529 -- Gnatmake Routines --
530 -----------------------
532 subtype Lib_Mark_Type is Byte;
533 -- Used in Mark_Directory
535 Ada_Lib_Dir : constant Lib_Mark_Type := 1;
536 -- Used to mark a directory as a GNAT lib dir
538 -- Note that the notion of GNAT lib dir is no longer used. The code related
539 -- to it has not been removed to give an idea on how to use the directory
540 -- prefix marking mechanism.
542 -- An Ada library directory is a directory containing ali and object files
543 -- but no source files for the bodies (the specs can be in the same or some
544 -- other directory). These directories are specified in the Gnatmake
545 -- command line with the switch "-Adir" (to specify the spec location -Idir
546 -- cab be used). Gnatmake skips the missing sources whose ali are in Ada
547 -- library directories. For an explanation of why Gnatmake behaves that
548 -- way, see the spec of Make.Compile_Sources. The directory lookup penalty
549 -- is incurred every single time this routine is called.
551 procedure Check_Steps;
552 -- Check what steps (Compile, Bind, Link) must be executed.
553 -- Set the step flags accordingly.
555 function In_Ada_Lib_Dir (File : File_Name_Type) return Boolean;
556 -- Get directory prefix of this file and get lib mark stored in name
557 -- table for this directory. Then check if an Ada lib mark has been set.
559 procedure Mark_Directory
560 (Dir : String;
561 Mark : Lib_Mark_Type;
562 On_Command_Line : Boolean);
563 -- Store the absolute path from Dir in name table and set lib mark as name
564 -- info to identify Ada libraries.
566 -- If Dir is a relative path, when On_Command_Line is True, it is relative
567 -- to the current working directory; when On_Command_Line is False, it is
568 -- relative to the project directory of the main project.
570 Output_Is_Object : Boolean := True;
571 -- Set to False when using a switch -S for the compiler
573 procedure Check_For_S_Switch;
574 -- Set Output_Is_Object to False when the -S switch is used for the
575 -- compiler.
577 function Switches_Of
578 (Source_File : File_Name_Type;
579 Project : Project_Id;
580 In_Package : Package_Id;
581 Allow_ALI : Boolean) return Variable_Value;
582 -- Return the switches for the source file in the specified package of a
583 -- project file. If the Source_File ends with a standard GNAT extension
584 -- (".ads" or ".adb"), try first the full name, then the name without the
585 -- extension, then, if Allow_ALI is True, the name with the extension
586 -- ".ali". If there is no switches for either names, try first Switches
587 -- (others) then the default switches for Ada. If all failed, return
588 -- No_Variable_Value.
590 function Is_In_Object_Directory
591 (Source_File : File_Name_Type;
592 Full_Lib_File : File_Name_Type) return Boolean;
593 -- Check if, when using a project file, the ALI file is in the project
594 -- directory of the ultimate extending project. If it is not, we ignore
595 -- the fact that this ALI file is read-only.
597 procedure Process_Multilib (Env : in out Prj.Tree.Environment);
598 -- Add appropriate --RTS argument to handle multilib
600 procedure Resolve_Relative_Names_In_Switches (Current_Work_Dir : String);
601 -- Resolve all relative paths found in the linker and binder switches,
602 -- when using project files.
604 procedure Queue_Library_Project_Sources;
605 -- For all library project, if the library file does not exist, put all the
606 -- project sources in the queue, and flag the project so that the library
607 -- is generated.
609 procedure Compute_Switches_For_Main
610 (Main_Source_File : in out File_Name_Type;
611 Root_Environment : in out Prj.Tree.Environment;
612 Compute_Builder : Boolean;
613 Current_Work_Dir : String);
614 -- Find compiler, binder and linker switches to use for the given main
616 procedure Compute_Executable
617 (Main_Source_File : File_Name_Type;
618 Executable : out File_Name_Type;
619 Non_Std_Executable : out Boolean);
620 -- Parse the linker switches and project file to compute the name of the
621 -- executable to generate.
622 -- ??? What is the meaning of Non_Std_Executable
624 procedure Compilation_Phase
625 (Main_Source_File : File_Name_Type;
626 Current_Main_Index : Int := 0;
627 Total_Compilation_Failures : in out Natural;
628 Stand_Alone_Libraries : in out Boolean;
629 Executable : File_Name_Type := No_File;
630 Is_Last_Main : Boolean;
631 Stop_Compile : out Boolean);
632 -- Build all source files for a given main file
634 -- Current_Main_Index, if not zero, is the index of the current main unit
635 -- in its source file.
637 -- Stand_Alone_Libraries is set to True when there are Stand-Alone
638 -- Libraries, so that gnatbind is invoked with the -F switch to force
639 -- checking of elaboration flags.
641 -- Stop_Compile is set to true if we should not try to compile any more
642 -- of the main units
644 procedure Binding_Phase
645 (Stand_Alone_Libraries : Boolean := False;
646 Main_ALI_File : File_Name_Type);
647 -- Stand_Alone_Libraries should be set to True when there are Stand-Alone
648 -- Libraries, so that gnatbind is invoked with the -F switch to force
649 -- checking of elaboration flags.
651 procedure Library_Phase
652 (Stand_Alone_Libraries : in out Boolean;
653 Library_Rebuilt : in out Boolean);
654 -- Build libraries.
655 -- Stand_Alone_Libraries is set to True when there are Stand-Alone
656 -- Libraries, so that gnatbind is invoked with the -F switch to force
657 -- checking of elaboration flags.
659 procedure Linking_Phase
660 (Non_Std_Executable : Boolean := False;
661 Executable : File_Name_Type := No_File;
662 Main_ALI_File : File_Name_Type);
663 -- Perform the link of a single executable. The ali file corresponds
664 -- to Main_ALI_File. Executable is the file name of an executable.
665 -- Non_Std_Executable is set to True when there is a possibility that
666 -- the linker will not choose the correct executable file name.
668 ----------------------------------------------------
669 -- Compiler, Binder & Linker Data and Subprograms --
670 ----------------------------------------------------
672 Gcc : String_Access := Program_Name ("gcc", "gnatmake");
673 Original_Gcc : constant String_Access := Gcc;
674 -- Original_Gcc is used to check if Gcc has been modified by a switch
675 -- --GCC=, so that for VM platforms, it is not modified again, as it can
676 -- result in incorrect error messages if the compiler cannot be found.
678 Gnatbind : String_Access := Program_Name ("gnatbind", "gnatmake");
679 Gnatlink : String_Access := Program_Name ("gnatlink", "gnatmake");
680 -- Default compiler, binder, linker programs
682 Globalizer : constant String := "codepeer_globalizer";
683 -- CodePeer globalizer executable name
685 Saved_Gcc : String_Access := null;
686 Saved_Gnatbind : String_Access := null;
687 Saved_Gnatlink : String_Access := null;
688 -- Given by the command line. Will be used, if non null
690 Gcc_Path : String_Access :=
691 GNAT.OS_Lib.Locate_Exec_On_Path (Gcc.all);
692 Gnatbind_Path : String_Access :=
693 GNAT.OS_Lib.Locate_Exec_On_Path (Gnatbind.all);
694 Gnatlink_Path : String_Access :=
695 GNAT.OS_Lib.Locate_Exec_On_Path (Gnatlink.all);
696 -- Path for compiler, binder, linker programs, defaulted now for gnatdist.
697 -- Changed later if overridden on command line.
699 Globalizer_Path : constant String_Access :=
700 GNAT.OS_Lib.Locate_Exec_On_Path (Globalizer);
701 -- Path for CodePeer globalizer
703 Comp_Flag : constant String_Access := new String'("-c");
704 Output_Flag : constant String_Access := new String'("-o");
705 Ada_Flag_1 : constant String_Access := new String'("-x");
706 Ada_Flag_2 : constant String_Access := new String'("ada");
707 No_gnat_adc : constant String_Access := new String'("-gnatA");
708 GNAT_Flag : constant String_Access := new String'("-gnatpg");
709 Do_Not_Check_Flag : constant String_Access := new String'("-x");
711 Object_Suffix : constant String := Get_Target_Object_Suffix.all;
713 Syntax_Only : Boolean := False;
714 -- Set to True when compiling with -gnats
716 Display_Executed_Programs : Boolean := True;
717 -- Set to True if name of commands should be output on stderr (or on stdout
718 -- if the Commands_To_Stdout flag was set by use of the -eS switch).
720 Output_File_Name_Seen : Boolean := False;
721 -- Set to True after having scanned the file_name for
722 -- switch "-o file_name"
724 Object_Directory_Seen : Boolean := False;
725 -- Set to True after having scanned the object directory for
726 -- switch "-D obj_dir".
728 Object_Directory_Path : String_Access := null;
729 -- The path name of the object directory, set with switch -D
731 type Make_Program_Type is (None, Compiler, Binder, Linker);
733 Program_Args : Make_Program_Type := None;
734 -- Used to indicate if we are scanning gnatmake, gcc, gnatbind, or gnatbind
735 -- options within the gnatmake command line. Used in Scan_Make_Arg only,
736 -- but must be global since value preserved from one call to another.
738 Temporary_Config_File : Boolean := False;
739 -- Set to True when there is a temporary config file used for a project
740 -- file, to avoid displaying the -gnatec switch for a temporary file.
742 procedure Add_Switches
743 (The_Package : Package_Id;
744 File_Name : String;
745 Program : Make_Program_Type;
746 Unknown_Switches_To_The_Compiler : Boolean := True;
747 Env : in out Prj.Tree.Environment);
748 procedure Add_Switch
749 (S : String_Access;
750 Program : Make_Program_Type;
751 Append_Switch : Boolean := True;
752 And_Save : Boolean := True);
753 procedure Add_Switch
754 (S : String;
755 Program : Make_Program_Type;
756 Append_Switch : Boolean := True;
757 And_Save : Boolean := True);
758 -- Make invokes one of three programs (the compiler, the binder or the
759 -- linker). For the sake of convenience, some program specific switches
760 -- can be passed directly on the gnatmake command line. This procedure
761 -- records these switches so that gnatmake can pass them to the right
762 -- program. S is the switch to be added at the end of the command line
763 -- for Program if Append_Switch is True. If Append_Switch is False S is
764 -- added at the beginning of the command line.
766 procedure Check
767 (Source_File : File_Name_Type;
768 Is_Main_Source : Boolean;
769 The_Args : Argument_List;
770 Lib_File : File_Name_Type;
771 Full_Lib_File : File_Name_Type;
772 Lib_File_Attr : access File_Attributes;
773 Read_Only : Boolean;
774 ALI : out ALI_Id;
775 O_File : out File_Name_Type;
776 O_Stamp : out Time_Stamp_Type);
777 -- Determines whether the library file Lib_File is up-to-date or not. The
778 -- full name (with path information) of the object file corresponding to
779 -- Lib_File is returned in O_File. Its time stamp is saved in O_Stamp.
780 -- ALI is the ALI_Id corresponding to Lib_File. If Lib_File in not
781 -- up-to-date, then the corresponding source file needs to be recompiled.
782 -- In this case ALI = No_ALI_Id.
783 -- Full_Lib_File must be the result of calling Osint.Full_Lib_File_Name on
784 -- Lib_File. Precomputing it saves system calls. Lib_File_Attr is the
785 -- initialized attributes of that file, which is also used to save on
786 -- system calls (it can safely be initialized to Unknown_Attributes).
788 procedure Check_Linker_Options
789 (E_Stamp : Time_Stamp_Type;
790 O_File : out File_Name_Type;
791 O_Stamp : out Time_Stamp_Type);
792 -- Checks all linker options for linker files that are newer
793 -- than E_Stamp. If such objects are found, the youngest object
794 -- is returned in O_File and its stamp in O_Stamp.
796 -- If no obsolete linker files were found, the first missing
797 -- linker file is returned in O_File and O_Stamp is empty.
798 -- Otherwise O_File is No_File.
800 procedure Collect_Arguments
801 (Source_File : File_Name_Type;
802 Is_Main_Source : Boolean;
803 Args : Argument_List);
804 -- Collect all arguments for a source to be compiled, including those
805 -- that come from a project file.
807 procedure Display (Program : String; Args : Argument_List);
808 -- Displays Program followed by the arguments in Args if variable
809 -- Display_Executed_Programs is set. The lower bound of Args must be 1.
811 procedure Report_Compilation_Failed;
812 -- Delete all temporary files and fail graciously
814 -----------------
815 -- Mapping files
816 -----------------
818 type Temp_Path_Names is array (Positive range <>) of Path_Name_Type;
819 type Temp_Path_Ptr is access Temp_Path_Names;
821 type Free_File_Indexes is array (Positive range <>) of Positive;
822 type Free_Indexes_Ptr is access Free_File_Indexes;
824 type Project_Compilation_Data is record
825 Mapping_File_Names : Temp_Path_Ptr;
826 -- The name ids of the temporary mapping files used. This is indexed
827 -- on the maximum number of compilation processes we will be spawning
828 -- (-j parameter)
830 Last_Mapping_File_Names : Natural;
831 -- Index of the last mapping file created for this project
833 Free_Mapping_File_Indexes : Free_Indexes_Ptr;
834 -- Indexes in Mapping_File_Names of the mapping file names that can be
835 -- reused for subsequent compilations.
837 Last_Free_Indexes : Natural;
838 -- Number of mapping files that can be reused
839 end record;
840 -- Information necessary when compiling a project
842 type Project_Compilation_Access is access Project_Compilation_Data;
844 package Project_Compilation_Htable is new Simple_HTable
845 (Header_Num => Prj.Header_Num,
846 Element => Project_Compilation_Access,
847 No_Element => null,
848 Key => Project_Id,
849 Hash => Prj.Hash,
850 Equal => "=");
852 Project_Compilation : Project_Compilation_Htable.Instance;
854 Gnatmake_Mapping_File : String_Access := null;
855 -- The path name of a mapping file specified by switch -C=
857 procedure Init_Mapping_File
858 (Project : Project_Id;
859 Data : in out Project_Compilation_Data;
860 File_Index : in out Natural);
861 -- Create a new temporary mapping file, and fill it with the project file
862 -- mappings, when using project file(s). The out parameter File_Index is
863 -- the index to the name of the file in the array The_Mapping_File_Names.
865 -------------------------------------------------
866 -- Subprogram declarations moved from the spec --
867 -------------------------------------------------
869 procedure Bind (ALI_File : File_Name_Type; Args : Argument_List);
870 -- Binds ALI_File. Args are the arguments to pass to the binder.
871 -- Args must have a lower bound of 1.
873 procedure Display_Commands (Display : Boolean := True);
874 -- The default behavior of Make commands (Compile_Sources, Bind, Link)
875 -- is to display them on stderr. This behavior can be changed repeatedly
876 -- by invoking this procedure.
878 -- If a compilation, bind or link failed one of the following 3 exceptions
879 -- is raised. These need to be handled by the calling routines.
881 procedure Compile_Sources
882 (Main_Source : File_Name_Type;
883 Args : Argument_List;
884 First_Compiled_File : out File_Name_Type;
885 Most_Recent_Obj_File : out File_Name_Type;
886 Most_Recent_Obj_Stamp : out Time_Stamp_Type;
887 Main_Unit : out Boolean;
888 Compilation_Failures : out Natural;
889 Main_Index : Int := 0;
890 Check_Readonly_Files : Boolean := False;
891 Do_Not_Execute : Boolean := False;
892 Force_Compilations : Boolean := False;
893 Keep_Going : Boolean := False;
894 In_Place_Mode : Boolean := False;
895 Initialize_ALI_Data : Boolean := True;
896 Max_Process : Positive := 1);
897 -- Compile_Sources will recursively compile all the sources needed by
898 -- Main_Source. Before calling this routine make sure Namet has been
899 -- initialized. This routine can be called repeatedly with different
900 -- Main_Source file as long as all the source (-I flags), library
901 -- (-B flags) and ada library (-A flags) search paths between calls are
902 -- *exactly* the same. The default directory must also be the same.
904 -- Args contains the arguments to use during the compilations.
905 -- The lower bound of Args must be 1.
907 -- First_Compiled_File is set to the name of the first file that is
908 -- compiled or that needs to be compiled. This is set to No_Name if no
909 -- compilations were needed.
911 -- Most_Recent_Obj_File is set to the full name of the most recent
912 -- object file found when no compilations are needed, that is when
913 -- First_Compiled_File is set to No_Name. When First_Compiled_File
914 -- is set then Most_Recent_Obj_File is set to No_Name.
916 -- Most_Recent_Obj_Stamp is the time stamp of Most_Recent_Obj_File.
918 -- Main_Unit is set to True if Main_Source can be a main unit.
919 -- If Do_Not_Execute is False and First_Compiled_File /= No_Name
920 -- the value of Main_Unit is always False.
921 -- Is this used any more??? It is certainly not used by gnatmake???
923 -- Compilation_Failures is a count of compilation failures. This count
924 -- is used to extract compilation failure reports with Extract_Failure.
926 -- Main_Index, when not zero, is the index of the main unit in source
927 -- file Main_Source which is a multi-unit source.
928 -- Zero indicates that Main_Source is a single unit source file.
930 -- Check_Readonly_Files set it to True to compile source files
931 -- which library files are read-only. When compiling GNAT predefined
932 -- files the "-gnatg" flag is used.
934 -- Do_Not_Execute set it to True to find out the first source that
935 -- needs to be recompiled, but without recompiling it. This file is
936 -- saved in First_Compiled_File.
938 -- Force_Compilations forces all compilations no matter what but
939 -- recompiles read-only files only if Check_Readonly_Files
940 -- is set.
942 -- Keep_Going when True keep compiling even in the presence of
943 -- compilation errors.
945 -- In_Place_Mode when True save library/object files in their object
946 -- directory if they already exist; otherwise, in the source directory.
948 -- Initialize_ALI_Data set it to True when you want to initialize ALI
949 -- data-structures. This is what you should do most of the time.
950 -- (especially the first time around when you call this routine).
951 -- This parameter is set to False to preserve previously recorded
952 -- ALI file data.
954 -- Max_Process is the maximum number of processes that should be spawned
955 -- to carry out compilations.
957 -- Flags in Package Opt Affecting Compile_Sources
958 -- -----------------------------------------------
960 -- Check_Object_Consistency set it to False to omit all consistency
961 -- checks between an .ali file and its corresponding object file.
962 -- When this flag is set to true, every time an .ali is read,
963 -- package Osint checks that the corresponding object file
964 -- exists and is more recent than the .ali.
966 -- Use of Name Table Info
967 -- ----------------------
969 -- All file names manipulated by Compile_Sources are entered into the
970 -- Names table. The Byte field of a source file is used to mark it.
972 -- Calling Compile_Sources Several Times
973 -- -------------------------------------
975 -- Upon return from Compile_Sources all the ALI data structures are left
976 -- intact for further browsing. HOWEVER upon entry to this routine ALI
977 -- data structures are re-initialized if parameter Initialize_ALI_Data
978 -- above is set to true. Typically this is what you want the first time
979 -- you call Compile_Sources. You should not load an ali file, call this
980 -- routine with flag Initialize_ALI_Data set to True and then expect
981 -- that ALI information to be around after the call. Note that the first
982 -- time you call Compile_Sources you better set Initialize_ALI_Data to
983 -- True unless you have called Initialize_ALI yourself.
985 -- Compile_Sources ALGORITHM : Compile_Sources (Main_Source)
986 -- -------------------------
988 -- 1. Insert Main_Source in a Queue (Q) and mark it.
990 -- 2. Let unit.adb be the file at the head of the Q. If unit.adb is
991 -- missing but its corresponding ali file is in an Ada library directory
992 -- (see below) then, remove unit.adb from the Q and goto step 4.
993 -- Otherwise, look at the files under the D (dependency) section of
994 -- unit.ali. If unit.ali does not exist or some of the time stamps do
995 -- not match, (re)compile unit.adb.
997 -- An Ada library directory is a directory containing Ada specs, ali
998 -- and object files but no source files for the bodies. An Ada library
999 -- directory is communicated to gnatmake by means of some switch so that
1000 -- gnatmake can skip the sources whole ali are in that directory.
1001 -- There are two reasons for skipping the sources in this case. Firstly,
1002 -- Ada libraries typically come without full sources but binding and
1003 -- linking against those libraries is still possible. Secondly, it would
1004 -- be very wasteful for gnatmake to systematically check the consistency
1005 -- of every external Ada library used in a program. The binder is
1006 -- already in charge of catching any potential inconsistencies.
1008 -- 3. Look into the W section of unit.ali and insert into the Q all
1009 -- unmarked source files. Mark all files newly inserted in the Q.
1010 -- Specifically, assuming that the W section looks like
1012 -- W types%s types.adb types.ali
1013 -- W unchecked_deallocation%s
1014 -- W xref_tab%s xref_tab.adb xref_tab.ali
1016 -- Then xref_tab.adb and types.adb are inserted in the Q if they are not
1017 -- already marked.
1018 -- Note that there is no file listed under W unchecked_deallocation%s
1019 -- so no generic body should ever be explicitly compiled (unless the
1020 -- Main_Source at the start was a generic body).
1022 -- 4. Repeat steps 2 and 3 above until the Q is empty
1024 -- Note that the above algorithm works because the units withed in
1025 -- subunits are transitively included in the W section (with section) of
1026 -- the main unit. Likewise the withed units in a generic body needed
1027 -- during a compilation are also transitively included in the W section
1028 -- of the originally compiled file.
1030 procedure Globalize (Success : out Boolean);
1031 -- Call the CodePeer globalizer on all the project's object directories,
1032 -- or on the current directory if no projects.
1034 procedure Initialize
1035 (Project_Node_Tree : out Project_Node_Tree_Ref;
1036 Env : out Prj.Tree.Environment);
1037 -- Performs default and package initialization. Therefore,
1038 -- Compile_Sources can be called by an external unit.
1040 procedure Link
1041 (ALI_File : File_Name_Type;
1042 Args : Argument_List;
1043 Success : out Boolean);
1044 -- Links ALI_File. Args are the arguments to pass to the linker.
1045 -- Args must have a lower bound of 1. Success indicates if the link
1046 -- succeeded or not.
1048 procedure Scan_Make_Arg
1049 (Env : in out Prj.Tree.Environment;
1050 Argv : String;
1051 And_Save : Boolean);
1052 -- Scan make arguments. Argv is a single argument to be processed.
1053 -- Project_Node_Tree will be used to initialize external references. It
1054 -- must have been initialized.
1056 -------------------
1057 -- Add_Arguments --
1058 -------------------
1060 procedure Add_Arguments (Args : Argument_List) is
1061 begin
1062 if Arguments = null then
1063 Arguments := new Argument_List (1 .. Args'Length + 10);
1065 else
1066 while Last_Argument + Args'Length > Arguments'Last loop
1067 declare
1068 New_Arguments : constant Argument_List_Access :=
1069 new Argument_List (1 .. Arguments'Last * 2);
1070 begin
1071 New_Arguments (1 .. Last_Argument) :=
1072 Arguments (1 .. Last_Argument);
1073 Arguments := New_Arguments;
1074 end;
1075 end loop;
1076 end if;
1078 Arguments (Last_Argument + 1 .. Last_Argument + Args'Length) := Args;
1079 Last_Argument := Last_Argument + Args'Length;
1080 end Add_Arguments;
1082 -- --------------------
1083 -- -- Add_Dependency --
1084 -- --------------------
1086 -- procedure Add_Dependency (S : File_Name_Type; On : File_Name_Type) is
1087 -- begin
1088 -- Dependencies.Increment_Last;
1089 -- Dependencies.Table (Dependencies.Last) := (S, On);
1090 -- end Add_Dependency;
1092 ----------------------------
1093 -- Add_Library_Search_Dir --
1094 ----------------------------
1096 procedure Add_Library_Search_Dir
1097 (Path : String;
1098 On_Command_Line : Boolean)
1100 begin
1101 if On_Command_Line then
1102 Add_Lib_Search_Dir (Normalize_Pathname (Path));
1104 else
1105 Get_Name_String (Main_Project.Directory.Display_Name);
1106 Add_Lib_Search_Dir
1107 (Normalize_Pathname (Path, Name_Buffer (1 .. Name_Len)));
1108 end if;
1109 end Add_Library_Search_Dir;
1111 --------------------
1112 -- Add_Object_Dir --
1113 --------------------
1115 procedure Add_Object_Dir (N : String) is
1116 begin
1117 Add_Lib_Search_Dir (N);
1119 if Verbose_Mode then
1120 Write_Str ("Adding object directory """);
1121 Write_Str (N);
1122 Write_Str (""".");
1123 Write_Eol;
1124 end if;
1125 end Add_Object_Dir;
1127 --------------------
1128 -- Add_Source_Dir --
1129 --------------------
1131 procedure Add_Source_Dir (N : String) is
1132 begin
1133 Add_Src_Search_Dir (N);
1135 if Verbose_Mode then
1136 Write_Str ("Adding source directory """);
1137 Write_Str (N);
1138 Write_Str (""".");
1139 Write_Eol;
1140 end if;
1141 end Add_Source_Dir;
1143 ---------------------------
1144 -- Add_Source_Search_Dir --
1145 ---------------------------
1147 procedure Add_Source_Search_Dir
1148 (Path : String;
1149 On_Command_Line : Boolean)
1151 begin
1152 if On_Command_Line then
1153 Add_Src_Search_Dir (Normalize_Pathname (Path));
1155 else
1156 Get_Name_String (Main_Project.Directory.Display_Name);
1157 Add_Src_Search_Dir
1158 (Normalize_Pathname (Path, Name_Buffer (1 .. Name_Len)));
1159 end if;
1160 end Add_Source_Search_Dir;
1162 ----------------
1163 -- Add_Switch --
1164 ----------------
1166 procedure Add_Switch
1167 (S : String_Access;
1168 Program : Make_Program_Type;
1169 Append_Switch : Boolean := True;
1170 And_Save : Boolean := True)
1172 generic
1173 with package T is new Table.Table (<>);
1174 procedure Generic_Position (New_Position : out Integer);
1175 -- Generic procedure that chooses a position for S in T at the
1176 -- beginning or the end, depending on the boolean Append_Switch.
1177 -- Calling this procedure may expand the table.
1179 ----------------------
1180 -- Generic_Position --
1181 ----------------------
1183 procedure Generic_Position (New_Position : out Integer) is
1184 begin
1185 T.Increment_Last;
1187 if Append_Switch then
1188 New_Position := Integer (T.Last);
1189 else
1190 for J in reverse T.Table_Index_Type'Succ (T.First) .. T.Last loop
1191 T.Table (J) := T.Table (T.Table_Index_Type'Pred (J));
1192 end loop;
1194 New_Position := Integer (T.First);
1195 end if;
1196 end Generic_Position;
1198 procedure Gcc_Switches_Pos is new Generic_Position (Gcc_Switches);
1199 procedure Binder_Switches_Pos is new Generic_Position (Binder_Switches);
1200 procedure Linker_Switches_Pos is new Generic_Position (Linker_Switches);
1202 procedure Saved_Gcc_Switches_Pos is new
1203 Generic_Position (Saved_Gcc_Switches);
1205 procedure Saved_Binder_Switches_Pos is new
1206 Generic_Position (Saved_Binder_Switches);
1208 procedure Saved_Linker_Switches_Pos is new
1209 Generic_Position (Saved_Linker_Switches);
1211 New_Position : Integer;
1213 -- Start of processing for Add_Switch
1215 begin
1216 if And_Save then
1217 case Program is
1218 when Compiler =>
1219 Saved_Gcc_Switches_Pos (New_Position);
1220 Saved_Gcc_Switches.Table (New_Position) := S;
1222 when Binder =>
1223 Saved_Binder_Switches_Pos (New_Position);
1224 Saved_Binder_Switches.Table (New_Position) := S;
1226 when Linker =>
1227 Saved_Linker_Switches_Pos (New_Position);
1228 Saved_Linker_Switches.Table (New_Position) := S;
1230 when None =>
1231 raise Program_Error;
1232 end case;
1234 else
1235 case Program is
1236 when Compiler =>
1237 Gcc_Switches_Pos (New_Position);
1238 Gcc_Switches.Table (New_Position) := S;
1240 when Binder =>
1241 Binder_Switches_Pos (New_Position);
1242 Binder_Switches.Table (New_Position) := S;
1244 when Linker =>
1245 Linker_Switches_Pos (New_Position);
1246 Linker_Switches.Table (New_Position) := S;
1248 when None =>
1249 raise Program_Error;
1250 end case;
1251 end if;
1252 end Add_Switch;
1254 procedure Add_Switch
1255 (S : String;
1256 Program : Make_Program_Type;
1257 Append_Switch : Boolean := True;
1258 And_Save : Boolean := True)
1260 begin
1261 Add_Switch (S => new String'(S),
1262 Program => Program,
1263 Append_Switch => Append_Switch,
1264 And_Save => And_Save);
1265 end Add_Switch;
1267 ------------------
1268 -- Add_Switches --
1269 ------------------
1271 procedure Add_Switches
1272 (The_Package : Package_Id;
1273 File_Name : String;
1274 Program : Make_Program_Type;
1275 Unknown_Switches_To_The_Compiler : Boolean := True;
1276 Env : in out Prj.Tree.Environment)
1278 Switches : Variable_Value;
1279 Switch_List : String_List_Id;
1280 Element : String_Element;
1282 begin
1283 Switch_May_Be_Passed_To_The_Compiler :=
1284 Unknown_Switches_To_The_Compiler;
1286 if File_Name'Length > 0 then
1287 Name_Len := 0;
1288 Add_Str_To_Name_Buffer (File_Name);
1289 Switches :=
1290 Switches_Of
1291 (Source_File => Name_Find,
1292 Project => Main_Project,
1293 In_Package => The_Package,
1294 Allow_ALI => Program = Binder or else Program = Linker);
1296 if Switches.Kind = List then
1297 Program_Args := Program;
1299 Switch_List := Switches.Values;
1300 while Switch_List /= Nil_String loop
1301 Element :=
1302 Project_Tree.Shared.String_Elements.Table (Switch_List);
1303 Get_Name_String (Element.Value);
1305 if Name_Len > 0 then
1306 declare
1307 Argv : constant String := Name_Buffer (1 .. Name_Len);
1308 -- We need a copy, because Name_Buffer may be modified
1310 begin
1311 if Verbose_Mode then
1312 Write_Str (" Adding ");
1313 Write_Line (Argv);
1314 end if;
1316 Scan_Make_Arg (Env, Argv, And_Save => False);
1318 if not Gnatmake_Switch_Found
1319 and then not Switch_May_Be_Passed_To_The_Compiler
1320 then
1321 Errutil.Error_Msg
1322 ('"' & Argv &
1323 """ is not a gnatmake switch. Consider moving " &
1324 "it to Global_Compilation_Switches.",
1325 Element.Location);
1326 Make_Failed ("*** illegal switch """ & Argv & """");
1327 end if;
1328 end;
1329 end if;
1331 Switch_List := Element.Next;
1332 end loop;
1333 end if;
1334 end if;
1335 end Add_Switches;
1337 ----------
1338 -- Bind --
1339 ----------
1341 procedure Bind (ALI_File : File_Name_Type; Args : Argument_List) is
1342 Bind_Args : Argument_List (1 .. Args'Last + 2);
1343 Bind_Last : Integer;
1344 Success : Boolean;
1346 begin
1347 pragma Assert (Args'First = 1);
1349 -- Optimize the simple case where the gnatbind command line looks like
1350 -- gnatbind -aO. -I- file.ali
1351 -- into
1352 -- gnatbind file.adb
1354 if Args'Length = 2
1355 and then Args (Args'First).all = "-aO" & Normalized_CWD
1356 and then Args (Args'Last).all = "-I-"
1357 and then ALI_File = Strip_Directory (ALI_File)
1358 then
1359 Bind_Last := Args'First - 1;
1361 else
1362 Bind_Last := Args'Last;
1363 Bind_Args (Args'Range) := Args;
1364 end if;
1366 -- It is completely pointless to re-check source file time stamps. This
1367 -- has been done already by gnatmake
1369 Bind_Last := Bind_Last + 1;
1370 Bind_Args (Bind_Last) := Do_Not_Check_Flag;
1372 Get_Name_String (ALI_File);
1374 Bind_Last := Bind_Last + 1;
1375 Bind_Args (Bind_Last) := new String'(Name_Buffer (1 .. Name_Len));
1377 GNAT.OS_Lib.Normalize_Arguments (Bind_Args (Args'First .. Bind_Last));
1379 Display (Gnatbind.all, Bind_Args (Args'First .. Bind_Last));
1381 if Gnatbind_Path = null then
1382 Make_Failed ("error, unable to locate " & Gnatbind.all);
1383 end if;
1385 GNAT.OS_Lib.Spawn
1386 (Gnatbind_Path.all, Bind_Args (Args'First .. Bind_Last), Success);
1388 if not Success then
1389 Make_Failed ("*** bind failed.");
1390 end if;
1391 end Bind;
1393 --------------------------------
1394 -- Change_To_Object_Directory --
1395 --------------------------------
1397 procedure Change_To_Object_Directory (Project : Project_Id) is
1398 Object_Directory : Path_Name_Type;
1400 begin
1401 pragma Assert (Project /= No_Project);
1403 -- Nothing to do if the current working directory is already the correct
1404 -- object directory.
1406 if Project_Of_Current_Object_Directory /= Project then
1407 Project_Of_Current_Object_Directory := Project;
1408 Object_Directory := Project.Object_Directory.Display_Name;
1410 -- Set the working directory to the object directory of the actual
1411 -- project.
1413 if Verbose_Mode then
1414 Write_Str ("Changing to object directory of """);
1415 Write_Name (Project.Display_Name);
1416 Write_Str (""": """);
1417 Write_Name (Object_Directory);
1418 Write_Line ("""");
1419 end if;
1421 Change_Dir (Get_Name_String (Object_Directory));
1422 end if;
1424 exception
1425 -- Fail if unable to change to the object directory
1427 when Directory_Error =>
1428 Make_Failed ("unable to change to object directory """ &
1429 Path_Or_File_Name
1430 (Project.Object_Directory.Display_Name) &
1431 """ of project " &
1432 Get_Name_String (Project.Display_Name));
1433 end Change_To_Object_Directory;
1435 -----------
1436 -- Check --
1437 -----------
1439 procedure Check
1440 (Source_File : File_Name_Type;
1441 Is_Main_Source : Boolean;
1442 The_Args : Argument_List;
1443 Lib_File : File_Name_Type;
1444 Full_Lib_File : File_Name_Type;
1445 Lib_File_Attr : access File_Attributes;
1446 Read_Only : Boolean;
1447 ALI : out ALI_Id;
1448 O_File : out File_Name_Type;
1449 O_Stamp : out Time_Stamp_Type)
1451 function First_New_Spec (A : ALI_Id) return File_Name_Type;
1452 -- Looks in the with table entries of A and returns the spec file name
1453 -- of the first withed unit (subprogram) for which no spec existed when
1454 -- A was generated but for which there exists one now, implying that A
1455 -- is now obsolete. If no such unit is found No_File is returned.
1456 -- Otherwise the spec file name of the unit is returned.
1458 -- **WARNING** in the event of Uname format modifications, one *MUST*
1459 -- make sure this function is also updated.
1461 -- Note: This function should really be in ali.adb and use Uname
1462 -- services, but this causes the whole compiler to be dragged along
1463 -- for gnatbind and gnatmake.
1465 --------------------
1466 -- First_New_Spec --
1467 --------------------
1469 function First_New_Spec (A : ALI_Id) return File_Name_Type is
1470 Spec_File_Name : File_Name_Type := No_File;
1472 function New_Spec (Uname : Unit_Name_Type) return Boolean;
1473 -- Uname is the name of the spec or body of some ada unit. This
1474 -- function returns True if the Uname is the name of a body which has
1475 -- a spec not mentioned in ALI file A. If True is returned
1476 -- Spec_File_Name above is set to the name of this spec file.
1478 --------------
1479 -- New_Spec --
1480 --------------
1482 function New_Spec (Uname : Unit_Name_Type) return Boolean is
1483 Spec_Name : Unit_Name_Type;
1484 File_Name : File_Name_Type;
1486 begin
1487 -- Test whether Uname is the name of a body unit (i.e. ends
1488 -- with %b).
1490 Get_Name_String (Uname);
1491 pragma
1492 Assert (Name_Len > 2 and then Name_Buffer (Name_Len - 1) = '%');
1494 if Name_Buffer (Name_Len) /= 'b' then
1495 return False;
1496 end if;
1498 -- Convert unit name into spec name
1500 -- ??? this code seems dubious in presence of pragma
1501 -- Source_File_Name since there is no more direct relationship
1502 -- between unit name and file name.
1504 -- ??? Further, what about alternative subunit naming
1506 Name_Buffer (Name_Len) := 's';
1507 Spec_Name := Name_Find;
1508 File_Name := Get_File_Name (Spec_Name, Subunit => False);
1510 -- Look if File_Name is mentioned in A's sdep list.
1511 -- If not look if the file exists. If it does return True.
1513 for D in
1514 ALIs.Table (A).First_Sdep .. ALIs.Table (A).Last_Sdep
1515 loop
1516 if Sdep.Table (D).Sfile = File_Name then
1517 return False;
1518 end if;
1519 end loop;
1521 if Full_Source_Name (File_Name) /= No_File then
1522 Spec_File_Name := File_Name;
1523 return True;
1524 end if;
1526 return False;
1527 end New_Spec;
1529 -- Start of processing for First_New_Spec
1531 begin
1532 U_Chk : for U in
1533 ALIs.Table (A).First_Unit .. ALIs.Table (A).Last_Unit
1534 loop
1535 exit U_Chk when Units.Table (U).Utype = Is_Body_Only
1536 and then New_Spec (Units.Table (U).Uname);
1538 for W in Units.Table (U).First_With
1540 Units.Table (U).Last_With
1541 loop
1542 exit U_Chk when
1543 Withs.Table (W).Afile /= No_File
1544 and then New_Spec (Withs.Table (W).Uname);
1545 end loop;
1546 end loop U_Chk;
1548 return Spec_File_Name;
1549 end First_New_Spec;
1551 ---------------------------------
1552 -- Data declarations for Check --
1553 ---------------------------------
1555 Full_Obj_File : File_Name_Type;
1556 -- Full name of the object file corresponding to Lib_File
1558 Lib_Stamp : Time_Stamp_Type;
1559 -- Time stamp of the current ada library file
1561 Obj_Stamp : Time_Stamp_Type;
1562 -- Time stamp of the current object file
1564 Modified_Source : File_Name_Type;
1565 -- The first source in Lib_File whose current time stamp differs from
1566 -- that stored in Lib_File.
1568 New_Spec : File_Name_Type;
1569 -- If Lib_File contains in its W (with) section a body (for a
1570 -- subprogram) for which there exists a spec, and the spec did not
1571 -- appear in the Sdep section of Lib_File, New_Spec contains the file
1572 -- name of this new spec.
1574 Source_Name : File_Name_Type;
1575 Text : Text_Buffer_Ptr;
1577 Prev_Switch : String_Access;
1578 -- Previous switch processed
1580 Arg : Arg_Id := Arg_Id'First;
1581 -- Current index in Args.Table for a given unit (init to stop warning)
1583 Switch_Found : Boolean;
1584 -- True if a given switch has been found
1586 ALI_Project : Project_Id;
1587 -- If the ALI file is in the object directory of a project, this is
1588 -- the project id.
1590 -- Start of processing for Check
1592 begin
1593 pragma Assert (Lib_File /= No_File);
1595 -- If ALI file is read-only, temporarily set Check_Object_Consistency to
1596 -- False. We don't care if the object file is not there (presumably a
1597 -- library will be used for linking.)
1599 if Read_Only then
1600 declare
1601 Saved_Check_Object_Consistency : constant Boolean :=
1602 Check_Object_Consistency;
1603 begin
1604 Check_Object_Consistency := False;
1605 Text := Read_Library_Info_From_Full (Full_Lib_File, Lib_File_Attr);
1606 Check_Object_Consistency := Saved_Check_Object_Consistency;
1607 end;
1609 else
1610 Text := Read_Library_Info_From_Full (Full_Lib_File, Lib_File_Attr);
1611 end if;
1613 Full_Obj_File := Full_Object_File_Name;
1614 Lib_Stamp := Current_Library_File_Stamp;
1615 Obj_Stamp := Current_Object_File_Stamp;
1617 if Full_Lib_File = No_File then
1618 Verbose_Msg
1619 (Lib_File,
1620 "being checked ...",
1621 Prefix => " ",
1622 Minimum_Verbosity => Opt.Medium);
1623 else
1624 Verbose_Msg
1625 (Full_Lib_File,
1626 "being checked ...",
1627 Prefix => " ",
1628 Minimum_Verbosity => Opt.Medium);
1629 end if;
1631 ALI := No_ALI_Id;
1632 O_File := Full_Obj_File;
1633 O_Stamp := Obj_Stamp;
1635 if Text = null then
1636 if Full_Lib_File = No_File then
1637 Verbose_Msg (Lib_File, "missing.");
1639 elsif Obj_Stamp (Obj_Stamp'First) = ' ' then
1640 Verbose_Msg (Full_Obj_File, "missing.");
1642 else
1643 Verbose_Msg
1644 (Full_Lib_File, "(" & String (Lib_Stamp) & ") newer than",
1645 Full_Obj_File, "(" & String (Obj_Stamp) & ")");
1646 end if;
1648 else
1649 ALI := Scan_ALI (Lib_File, Text, Ignore_ED => False, Err => True);
1650 Free (Text);
1652 if ALI = No_ALI_Id then
1653 Verbose_Msg (Full_Lib_File, "incorrectly formatted ALI file");
1654 return;
1656 elsif ALIs.Table (ALI).Ver (1 .. ALIs.Table (ALI).Ver_Len) /=
1657 Verbose_Library_Version
1658 then
1659 Verbose_Msg (Full_Lib_File, "compiled with old GNAT version");
1660 ALI := No_ALI_Id;
1661 return;
1662 end if;
1664 -- Don't take ALI file into account if it was generated with errors
1666 if ALIs.Table (ALI).Compile_Errors then
1667 Verbose_Msg (Full_Lib_File, "had errors, must be recompiled");
1668 ALI := No_ALI_Id;
1669 return;
1670 end if;
1672 -- Don't take ALI file into account if no object was generated
1674 if Operating_Mode /= Check_Semantics
1675 and then ALIs.Table (ALI).No_Object
1676 then
1677 Verbose_Msg (Full_Lib_File, "has no corresponding object");
1678 ALI := No_ALI_Id;
1679 return;
1680 end if;
1682 -- When compiling with -gnatc, don't take ALI file into account if
1683 -- it has not been generated for the current source, for example if
1684 -- it has been generated for the spec, but we are compiling the body.
1686 if Operating_Mode = Check_Semantics then
1687 declare
1688 File_Name : String := Get_Name_String (Source_File);
1689 OK : Boolean := False;
1691 begin
1692 -- In the ALI file, the source file names are in canonical case
1694 Canonical_Case_File_Name (File_Name);
1696 for U in ALIs.Table (ALI).First_Unit ..
1697 ALIs.Table (ALI).Last_Unit
1698 loop
1699 OK := Get_Name_String (Units.Table (U).Sfile) = File_Name;
1700 exit when OK;
1701 end loop;
1703 if not OK then
1704 Verbose_Msg
1705 (Full_Lib_File, "not generated for the same source");
1706 ALI := No_ALI_Id;
1707 return;
1708 end if;
1709 end;
1710 end if;
1712 -- Check for matching compiler switches if needed
1714 if Check_Switches then
1716 -- First, collect all the switches
1718 Collect_Arguments (Source_File, Is_Main_Source, The_Args);
1719 Prev_Switch := Dummy_Switch;
1720 Get_Name_String (ALIs.Table (ALI).Sfile);
1721 Switches_To_Check.Set_Last (0);
1723 for J in 1 .. Last_Argument loop
1725 -- Skip non switches -c, -I and -o switches
1727 if Arguments (J) (1) = '-'
1728 and then Arguments (J) (2) /= 'c'
1729 and then Arguments (J) (2) /= 'o'
1730 and then Arguments (J) (2) /= 'I'
1731 then
1732 Normalize_Compiler_Switches
1733 (Arguments (J).all,
1734 Normalized_Switches,
1735 Last_Norm_Switch);
1737 for K in 1 .. Last_Norm_Switch loop
1738 Switches_To_Check.Increment_Last;
1739 Switches_To_Check.Table (Switches_To_Check.Last) :=
1740 Normalized_Switches (K);
1741 end loop;
1742 end if;
1743 end loop;
1745 for J in 1 .. Switches_To_Check.Last loop
1747 -- Comparing switches is delicate because gcc reorders a number
1748 -- of switches, according to lang-specs.h, but gnatmake doesn't
1749 -- have sufficient knowledge to perform the same reordering.
1750 -- Instead, we ignore orders between different "first letter"
1751 -- switches, but keep orders between same switches, e.g -O -O2
1752 -- is different than -O2 -O, but -g -O is equivalent to -O -g.
1754 if Switches_To_Check.Table (J) (2) /= Prev_Switch (2) or else
1755 (Prev_Switch'Length >= 6 and then
1756 Prev_Switch (2 .. 5) = "gnat" and then
1757 Switches_To_Check.Table (J)'Length >= 6 and then
1758 Switches_To_Check.Table (J) (2 .. 5) = "gnat" and then
1759 Prev_Switch (6) /= Switches_To_Check.Table (J) (6))
1760 then
1761 Prev_Switch := Switches_To_Check.Table (J);
1762 Arg :=
1763 Units.Table (ALIs.Table (ALI).First_Unit).First_Arg;
1764 end if;
1766 Switch_Found := False;
1768 for K in Arg ..
1769 Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg
1770 loop
1772 Switches_To_Check.Table (J).all = Args.Table (K).all
1773 then
1774 Arg := K + 1;
1775 Switch_Found := True;
1776 exit;
1777 end if;
1778 end loop;
1780 if not Switch_Found then
1781 if Verbose_Mode then
1782 Verbose_Msg (ALIs.Table (ALI).Sfile,
1783 "switch mismatch """ &
1784 Switches_To_Check.Table (J).all & '"');
1785 end if;
1787 ALI := No_ALI_Id;
1788 return;
1789 end if;
1790 end loop;
1792 if Switches_To_Check.Last /=
1793 Integer (Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg -
1794 Units.Table (ALIs.Table (ALI).First_Unit).First_Arg + 1)
1795 then
1796 if Verbose_Mode then
1797 Verbose_Msg (ALIs.Table (ALI).Sfile,
1798 "different number of switches");
1800 for K in Units.Table (ALIs.Table (ALI).First_Unit).First_Arg
1801 .. Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg
1802 loop
1803 Write_Str (Args.Table (K).all);
1804 Write_Char (' ');
1805 end loop;
1807 Write_Eol;
1809 for J in 1 .. Switches_To_Check.Last loop
1810 Write_Str (Switches_To_Check.Table (J).all);
1811 Write_Char (' ');
1812 end loop;
1814 Write_Eol;
1815 end if;
1817 ALI := No_ALI_Id;
1818 return;
1819 end if;
1820 end if;
1822 -- Get the source files and their message digests. Note that some
1823 -- sources may be missing if ALI is out-of-date.
1825 Set_Source_Table (ALI);
1827 Modified_Source := Time_Stamp_Mismatch (ALI, Read_Only);
1829 -- To avoid using too much memory when switch -m is used, free the
1830 -- memory allocated for the source file when computing the checksum.
1832 if Minimal_Recompilation then
1833 Sinput.P.Clear_Source_File_Table;
1834 end if;
1836 if Modified_Source /= No_File then
1837 ALI := No_ALI_Id;
1839 if Verbose_Mode then
1840 Source_Name := Full_Source_Name (Modified_Source);
1842 if Source_Name /= No_File then
1843 Verbose_Msg (Source_Name, "time stamp mismatch");
1844 else
1845 Verbose_Msg (Modified_Source, "missing");
1846 end if;
1847 end if;
1849 else
1850 New_Spec := First_New_Spec (ALI);
1852 if New_Spec /= No_File then
1853 ALI := No_ALI_Id;
1855 if Verbose_Mode then
1856 Source_Name := Full_Source_Name (New_Spec);
1858 if Source_Name /= No_File then
1859 Verbose_Msg (Source_Name, "new spec");
1860 else
1861 Verbose_Msg (New_Spec, "old spec missing");
1862 end if;
1863 end if;
1865 elsif not Read_Only and then Main_Project /= No_Project then
1866 declare
1867 Uname : constant Name_Id :=
1868 Check_Source_Info_In_ALI (ALI, Project_Tree);
1870 Udata : Prj.Unit_Index;
1872 begin
1873 if Uname = No_Name then
1874 ALI := No_ALI_Id;
1875 return;
1876 end if;
1878 -- Check that ALI file is in the correct object directory.
1879 -- If it is in the object directory of a project that is
1880 -- extended and it depends on a source that is in one of
1881 -- its extending projects, then the ALI file is not in the
1882 -- correct object directory.
1884 -- First, find the project of this ALI file. As there may be
1885 -- several projects with the same object directory, we first
1886 -- need to find the project of the source.
1888 ALI_Project := No_Project;
1890 Udata := Units_Htable.Get (Project_Tree.Units_HT, Uname);
1892 if Udata /= No_Unit_Index then
1893 if Udata.File_Names (Impl) /= null
1894 and then Udata.File_Names (Impl).File = Source_File
1895 then
1896 ALI_Project := Udata.File_Names (Impl).Project;
1898 elsif Udata.File_Names (Spec) /= null
1899 and then Udata.File_Names (Spec).File = Source_File
1900 then
1901 ALI_Project := Udata.File_Names (Spec).Project;
1902 end if;
1903 end if;
1904 end;
1906 if ALI_Project = No_Project then
1907 return;
1908 end if;
1910 declare
1911 Obj_Dir : Path_Name_Type;
1912 Res_Obj_Dir : constant String :=
1913 Normalize_Pathname
1914 (Dir_Name
1915 (Get_Name_String (Full_Lib_File)),
1916 Resolve_Links =>
1917 Opt.Follow_Links_For_Dirs,
1918 Case_Sensitive => False);
1920 begin
1921 Name_Len := 0;
1922 Add_Str_To_Name_Buffer (Res_Obj_Dir);
1924 if not Is_Directory_Separator (Name_Buffer (Name_Len)) then
1925 Add_Char_To_Name_Buffer (Directory_Separator);
1926 end if;
1928 Obj_Dir := Name_Find;
1930 while ALI_Project /= No_Project
1931 and then Obj_Dir /= ALI_Project.Object_Directory.Name
1932 loop
1933 ALI_Project := ALI_Project.Extended_By;
1934 end loop;
1935 end;
1937 if ALI_Project = No_Project then
1938 ALI := No_ALI_Id;
1940 Verbose_Msg (Lib_File, " wrong object directory");
1941 return;
1942 end if;
1944 -- If the ALI project is not extended, then it must be in
1945 -- the correct object directory.
1947 if ALI_Project.Extended_By = No_Project then
1948 return;
1949 end if;
1951 -- Count the extending projects
1953 declare
1954 Num_Ext : Natural;
1955 Proj : Project_Id;
1957 begin
1958 Num_Ext := 0;
1959 Proj := ALI_Project;
1960 loop
1961 Proj := Proj.Extended_By;
1962 exit when Proj = No_Project;
1963 Num_Ext := Num_Ext + 1;
1964 end loop;
1966 -- Make a list of the extending projects
1968 declare
1969 Projects : array (1 .. Num_Ext) of Project_Id;
1970 Dep : Sdep_Record;
1971 OK : Boolean := True;
1972 UID : Unit_Index;
1974 begin
1975 Proj := ALI_Project;
1976 for J in Projects'Range loop
1977 Proj := Proj.Extended_By;
1978 Projects (J) := Proj;
1979 end loop;
1981 -- Now check if any of the dependant sources are in any
1982 -- of these extending projects.
1984 D_Chk :
1985 for D in ALIs.Table (ALI).First_Sdep ..
1986 ALIs.Table (ALI).Last_Sdep
1987 loop
1988 Dep := Sdep.Table (D);
1989 UID := Units_Htable.Get_First (Project_Tree.Units_HT);
1990 Proj := No_Project;
1992 Unit_Loop :
1993 while UID /= null loop
1994 if UID.File_Names (Impl) /= null
1995 and then UID.File_Names (Impl).File = Dep.Sfile
1996 then
1997 Proj := UID.File_Names (Impl).Project;
1999 elsif UID.File_Names (Spec) /= null
2000 and then UID.File_Names (Spec).File = Dep.Sfile
2001 then
2002 Proj := UID.File_Names (Spec).Project;
2003 end if;
2005 -- If a source is in a project, check if it is one
2006 -- in the list.
2008 if Proj /= No_Project then
2009 for J in Projects'Range loop
2010 if Proj = Projects (J) then
2011 OK := False;
2012 exit D_Chk;
2013 end if;
2014 end loop;
2016 exit Unit_Loop;
2017 end if;
2019 UID :=
2020 Units_Htable.Get_Next (Project_Tree.Units_HT);
2021 end loop Unit_Loop;
2022 end loop D_Chk;
2024 -- If one of the dependent sources is in one project of
2025 -- the list, then we must recompile.
2027 if not OK then
2028 ALI := No_ALI_Id;
2029 Verbose_Msg (Lib_File, " wrong object directory");
2030 end if;
2031 end;
2032 end;
2033 end if;
2034 end if;
2035 end if;
2036 end Check;
2038 ------------------------
2039 -- Check_For_S_Switch --
2040 ------------------------
2042 procedure Check_For_S_Switch is
2043 begin
2044 -- By default, we generate an object file
2046 Output_Is_Object := True;
2048 for Arg in 1 .. Last_Argument loop
2049 if Arguments (Arg).all = "-S" then
2050 Output_Is_Object := False;
2052 elsif Arguments (Arg).all = "-c" then
2053 Output_Is_Object := True;
2054 end if;
2055 end loop;
2056 end Check_For_S_Switch;
2058 --------------------------
2059 -- Check_Linker_Options --
2060 --------------------------
2062 procedure Check_Linker_Options
2063 (E_Stamp : Time_Stamp_Type;
2064 O_File : out File_Name_Type;
2065 O_Stamp : out Time_Stamp_Type)
2067 procedure Check_File (File : File_Name_Type);
2068 -- Update O_File and O_Stamp if the given file is younger than E_Stamp
2069 -- and O_Stamp, or if O_File is No_File and File does not exist.
2071 function Get_Library_File (Name : String) return File_Name_Type;
2072 -- Return the full file name including path of a library based
2073 -- on the name specified with the -l linker option, using the
2074 -- Ada object path. Return No_File if no such file can be found.
2076 type Char_Array is array (Natural) of Character;
2077 type Char_Array_Access is access constant Char_Array;
2079 Template : Char_Array_Access;
2080 pragma Import (C, Template, "__gnat_library_template");
2082 ----------------
2083 -- Check_File --
2084 ----------------
2086 procedure Check_File (File : File_Name_Type) is
2087 Stamp : Time_Stamp_Type;
2088 Name : File_Name_Type := File;
2090 begin
2091 Get_Name_String (Name);
2093 -- Remove any trailing NUL characters
2095 while Name_Len >= Name_Buffer'First
2096 and then Name_Buffer (Name_Len) = NUL
2097 loop
2098 Name_Len := Name_Len - 1;
2099 end loop;
2101 if Name_Len = 0 then
2102 return;
2104 elsif Name_Buffer (1) = '-' then
2106 -- Do not check if File is a switch other than "-l"
2108 if Name_Buffer (2) /= 'l' then
2109 return;
2110 end if;
2112 -- The argument is a library switch, get actual name. It
2113 -- is necessary to make a copy of the relevant part of
2114 -- Name_Buffer as Get_Library_Name uses Name_Buffer as well.
2116 declare
2117 Base_Name : constant String := Name_Buffer (3 .. Name_Len);
2119 begin
2120 Name := Get_Library_File (Base_Name);
2121 end;
2123 if Name = No_File then
2124 return;
2125 end if;
2126 end if;
2128 Stamp := File_Stamp (Name);
2130 -- Find the youngest object file that is younger than the
2131 -- executable. If no such file exist, record the first object
2132 -- file that is not found.
2134 if (O_Stamp < Stamp and then E_Stamp < Stamp)
2135 or else (O_File = No_File and then Stamp (Stamp'First) = ' ')
2136 then
2137 O_Stamp := Stamp;
2138 O_File := Name;
2140 -- Strip the trailing NUL if present
2142 Get_Name_String (O_File);
2144 if Name_Buffer (Name_Len) = NUL then
2145 Name_Len := Name_Len - 1;
2146 O_File := Name_Find;
2147 end if;
2148 end if;
2149 end Check_File;
2151 ----------------------
2152 -- Get_Library_Name --
2153 ----------------------
2155 -- See comments in a-adaint.c about template syntax
2157 function Get_Library_File (Name : String) return File_Name_Type is
2158 File : File_Name_Type := No_File;
2160 begin
2161 Name_Len := 0;
2163 for Ptr in Template'Range loop
2164 case Template (Ptr) is
2165 when '*' =>
2166 Add_Str_To_Name_Buffer (Name);
2168 when ';' =>
2169 File := Full_Lib_File_Name (Name_Find);
2170 exit when File /= No_File;
2171 Name_Len := 0;
2173 when NUL =>
2174 exit;
2176 when others =>
2177 Add_Char_To_Name_Buffer (Template (Ptr));
2178 end case;
2179 end loop;
2181 -- The for loop exited because the end of the template
2182 -- was reached. File contains the last possible file name
2183 -- for the library.
2185 if File = No_File and then Name_Len > 0 then
2186 File := Full_Lib_File_Name (Name_Find);
2187 end if;
2189 return File;
2190 end Get_Library_File;
2192 -- Start of processing for Check_Linker_Options
2194 begin
2195 O_File := No_File;
2196 O_Stamp := (others => ' ');
2198 -- Process linker options from the ALI files
2200 for Opt in 1 .. Linker_Options.Last loop
2201 Check_File (File_Name_Type (Linker_Options.Table (Opt).Name));
2202 end loop;
2204 -- Process options given on the command line
2206 for Opt in Linker_Switches.First .. Linker_Switches.Last loop
2208 -- Check if the previous Opt has one of the two switches
2209 -- that take an extra parameter. (See GCC manual.)
2211 if Opt = Linker_Switches.First
2212 or else (Linker_Switches.Table (Opt - 1).all /= "-u"
2213 and then
2214 Linker_Switches.Table (Opt - 1).all /= "-Xlinker"
2215 and then
2216 Linker_Switches.Table (Opt - 1).all /= "-L")
2217 then
2218 Name_Len := 0;
2219 Add_Str_To_Name_Buffer (Linker_Switches.Table (Opt).all);
2220 Check_File (Name_Find);
2221 end if;
2222 end loop;
2223 end Check_Linker_Options;
2225 -----------------
2226 -- Check_Steps --
2227 -----------------
2229 procedure Check_Steps is
2230 begin
2231 -- If either -c, -b or -l has been specified, we will not necessarily
2232 -- execute all steps.
2234 if Make_Steps then
2235 Do_Compile_Step := Do_Compile_Step and Compile_Only;
2236 Do_Bind_Step := Do_Bind_Step and Bind_Only;
2237 Do_Link_Step := Do_Link_Step and Link_Only;
2239 -- If -c has been specified, but not -b, ignore any potential -l
2241 if Do_Compile_Step and then not Do_Bind_Step then
2242 Do_Link_Step := False;
2243 end if;
2244 end if;
2245 end Check_Steps;
2247 -----------------------
2248 -- Collect_Arguments --
2249 -----------------------
2251 procedure Collect_Arguments
2252 (Source_File : File_Name_Type;
2253 Is_Main_Source : Boolean;
2254 Args : Argument_List)
2256 begin
2257 Arguments_Project := No_Project;
2258 Last_Argument := 0;
2259 Add_Arguments (Args);
2261 if Main_Project /= No_Project then
2262 declare
2263 Source_File_Name : constant String :=
2264 Get_Name_String (Source_File);
2265 Compiler_Package : Prj.Package_Id;
2266 Switches : Prj.Variable_Value;
2268 begin
2269 Prj.Env.
2270 Get_Reference
2271 (Source_File_Name => Source_File_Name,
2272 Project => Arguments_Project,
2273 Path => Arguments_Path_Name,
2274 In_Tree => Project_Tree);
2276 -- If the source is not a source of a project file, add the
2277 -- recorded arguments. Check will be done later if the source
2278 -- need to be compiled that the switch -x has been used.
2280 if Arguments_Project = No_Project then
2281 Add_Arguments (The_Saved_Gcc_Switches.all);
2283 elsif not Arguments_Project.Externally_Built
2284 or else Must_Compile
2285 then
2286 -- We get the project directory for the relative path
2287 -- switches and arguments.
2289 Arguments_Project :=
2290 Ultimate_Extending_Project_Of (Arguments_Project);
2292 -- If building a dynamic or relocatable library, compile with
2293 -- PIC option, if it exists.
2295 if Arguments_Project.Library
2296 and then Arguments_Project.Library_Kind /= Static
2297 then
2298 declare
2299 PIC : constant String := MLib.Tgt.PIC_Option;
2300 begin
2301 if PIC /= "" then
2302 Add_Arguments ((1 => new String'(PIC)));
2303 end if;
2304 end;
2305 end if;
2307 -- We now look for package Compiler and get the switches from
2308 -- this package.
2310 Compiler_Package :=
2311 Prj.Util.Value_Of
2312 (Name => Name_Compiler,
2313 In_Packages => Arguments_Project.Decl.Packages,
2314 Shared => Project_Tree.Shared);
2316 if Compiler_Package /= No_Package then
2318 -- If package Gnatmake.Compiler exists, we get the specific
2319 -- switches for the current source, or the global switches,
2320 -- if any.
2322 Switches :=
2323 Switches_Of
2324 (Source_File => Source_File,
2325 Project => Arguments_Project,
2326 In_Package => Compiler_Package,
2327 Allow_ALI => False);
2329 end if;
2331 case Switches.Kind is
2333 -- We have a list of switches. We add these switches,
2334 -- plus the saved gcc switches.
2336 when List =>
2338 declare
2339 Current : String_List_Id := Switches.Values;
2340 Element : String_Element;
2341 Number : Natural := 0;
2343 begin
2344 while Current /= Nil_String loop
2345 Element := Project_Tree.Shared.String_Elements.
2346 Table (Current);
2347 Number := Number + 1;
2348 Current := Element.Next;
2349 end loop;
2351 declare
2352 New_Args : Argument_List (1 .. Number);
2353 Last_New : Natural := 0;
2354 Dir_Path : constant String := Get_Name_String
2355 (Arguments_Project.Directory.Display_Name);
2357 begin
2358 Current := Switches.Values;
2360 for Index in New_Args'Range loop
2361 Element := Project_Tree.Shared.String_Elements.
2362 Table (Current);
2363 Get_Name_String (Element.Value);
2365 if Name_Len > 0 then
2366 Last_New := Last_New + 1;
2367 New_Args (Last_New) :=
2368 new String'(Name_Buffer (1 .. Name_Len));
2369 Ensure_Absolute_Path
2370 (New_Args (Last_New),
2371 Do_Fail => Make_Failed'Access,
2372 Parent => Dir_Path,
2373 Including_Non_Switch => False);
2374 end if;
2376 Current := Element.Next;
2377 end loop;
2379 Add_Arguments
2380 (Configuration_Pragmas_Switch (Arguments_Project)
2381 & New_Args (1 .. Last_New)
2382 & The_Saved_Gcc_Switches.all);
2383 end;
2384 end;
2386 -- We have a single switch. We add this switch,
2387 -- plus the saved gcc switches.
2389 when Single =>
2390 Get_Name_String (Switches.Value);
2392 declare
2393 New_Args : Argument_List :=
2394 (1 => new String'
2395 (Name_Buffer (1 .. Name_Len)));
2396 Dir_Path : constant String :=
2397 Get_Name_String
2398 (Arguments_Project.
2399 Directory.Display_Name);
2401 begin
2402 Ensure_Absolute_Path
2403 (New_Args (1),
2404 Do_Fail => Make_Failed'Access,
2405 Parent => Dir_Path,
2406 Including_Non_Switch => False);
2407 Add_Arguments
2408 (Configuration_Pragmas_Switch (Arguments_Project) &
2409 New_Args & The_Saved_Gcc_Switches.all);
2410 end;
2412 -- We have no switches from Gnatmake.Compiler.
2413 -- We add the saved gcc switches.
2415 when Undefined =>
2416 Add_Arguments
2417 (Configuration_Pragmas_Switch (Arguments_Project) &
2418 The_Saved_Gcc_Switches.all);
2419 end case;
2420 end if;
2421 end;
2422 end if;
2424 -- For VMS, when compiling the main source, add switch
2425 -- -mdebug-main=_ada_ so that the executable can be debugged
2426 -- by the standard VMS debugger.
2428 if not No_Main_Subprogram
2429 and then Targparm.OpenVMS_On_Target
2430 and then Is_Main_Source
2431 then
2432 -- First, check if compilation will be invoked with -g
2434 for J in 1 .. Last_Argument loop
2435 if Arguments (J)'Length >= 2
2436 and then Arguments (J) (1 .. 2) = "-g"
2437 and then (Arguments (J)'Length < 5
2438 or else Arguments (J) (1 .. 5) /= "-gnat")
2439 then
2440 Add_Arguments
2441 ((1 => new String'("-mdebug-main=_ada_")));
2442 exit;
2443 end if;
2444 end loop;
2445 end if;
2447 -- Set Output_Is_Object, depending if there is a -S switch.
2448 -- If the bind step is not performed, and there is a -S switch,
2449 -- then we will not check for a valid object file.
2451 Check_For_S_Switch;
2452 end Collect_Arguments;
2454 ---------------------
2455 -- Compile_Sources --
2456 ---------------------
2458 procedure Compile_Sources
2459 (Main_Source : File_Name_Type;
2460 Args : Argument_List;
2461 First_Compiled_File : out File_Name_Type;
2462 Most_Recent_Obj_File : out File_Name_Type;
2463 Most_Recent_Obj_Stamp : out Time_Stamp_Type;
2464 Main_Unit : out Boolean;
2465 Compilation_Failures : out Natural;
2466 Main_Index : Int := 0;
2467 Check_Readonly_Files : Boolean := False;
2468 Do_Not_Execute : Boolean := False;
2469 Force_Compilations : Boolean := False;
2470 Keep_Going : Boolean := False;
2471 In_Place_Mode : Boolean := False;
2472 Initialize_ALI_Data : Boolean := True;
2473 Max_Process : Positive := 1)
2475 Mfile : Natural := No_Mapping_File;
2476 Mapping_File_Arg : String_Access;
2477 -- Info on the mapping file
2479 Need_To_Check_Standard_Library : Boolean :=
2480 (Check_Readonly_Files or Must_Compile)
2481 and not Unique_Compile;
2483 procedure Add_Process
2484 (Pid : Process_Id;
2485 Sfile : File_Name_Type;
2486 Afile : File_Name_Type;
2487 Uname : Unit_Name_Type;
2488 Full_Lib_File : File_Name_Type;
2489 Lib_File_Attr : File_Attributes;
2490 Mfile : Natural := No_Mapping_File);
2491 -- Adds process Pid to the current list of outstanding compilation
2492 -- processes and record the full name of the source file Sfile that
2493 -- we are compiling, the name of its library file Afile and the
2494 -- name of its unit Uname. If Mfile is not equal to No_Mapping_File,
2495 -- it is the index of the mapping file used during compilation in the
2496 -- array The_Mapping_File_Names.
2498 procedure Await_Compile
2499 (Data : out Compilation_Data;
2500 OK : out Boolean);
2501 -- Awaits that an outstanding compilation process terminates. When it
2502 -- does set Data to the information registered for the corresponding
2503 -- call to Add_Process. Note that this time stamp can be used to check
2504 -- whether the compilation did generate an object file. OK is set to
2505 -- True if the compilation succeeded. Data could be No_Compilation_Data
2506 -- if there was no compilation to wait for.
2508 function Bad_Compilation_Count return Natural;
2509 -- Returns the number of compilation failures
2511 procedure Check_Standard_Library;
2512 -- Check if s-stalib.adb needs to be compiled
2514 procedure Collect_Arguments_And_Compile
2515 (Full_Source_File : File_Name_Type;
2516 Lib_File : File_Name_Type;
2517 Source_Index : Int;
2518 Pid : out Process_Id;
2519 Process_Created : out Boolean);
2520 -- Collect arguments from project file (if any) and compile. If no
2521 -- compilation was attempted, Processed_Created is set to False, and the
2522 -- value of Pid is unknown.
2524 function Compile
2525 (Project : Project_Id;
2526 S : File_Name_Type;
2527 L : File_Name_Type;
2528 Source_Index : Int;
2529 Args : Argument_List) return Process_Id;
2530 -- Compiles S using Args. If S is a GNAT predefined source "-gnatpg" is
2531 -- added to Args. Non blocking call. L corresponds to the expected
2532 -- library file name. Process_Id of the process spawned to execute the
2533 -- compilation.
2535 type ALI_Project is record
2536 ALI : ALI_Id;
2537 Project : Project_Id;
2538 end record;
2540 package Good_ALI is new Table.Table (
2541 Table_Component_Type => ALI_Project,
2542 Table_Index_Type => Natural,
2543 Table_Low_Bound => 1,
2544 Table_Initial => 50,
2545 Table_Increment => 100,
2546 Table_Name => "Make.Good_ALI");
2547 -- Contains the set of valid ALI files that have not yet been scanned
2549 function Good_ALI_Present return Boolean;
2550 -- Returns True if any ALI file was recorded in the previous set
2552 procedure Get_Mapping_File (Project : Project_Id);
2553 -- Get a mapping file name. If there is one to be reused, reuse it.
2554 -- Otherwise, create a new mapping file.
2556 function Get_Next_Good_ALI return ALI_Project;
2557 -- Returns the next good ALI_Id record
2559 procedure Record_Failure
2560 (File : File_Name_Type;
2561 Unit : Unit_Name_Type;
2562 Found : Boolean := True);
2563 -- Records in the previous table that the compilation for File failed.
2564 -- If Found is False then the compilation of File failed because we
2565 -- could not find it. Records also Unit when possible.
2567 procedure Record_Good_ALI (A : ALI_Id; Project : Project_Id);
2568 -- Records in the previous set the Id of an ALI file
2570 function Must_Exit_Because_Of_Error return Boolean;
2571 -- Return True if there were errors and the user decided to exit in such
2572 -- a case. This waits for any outstanding compilation.
2574 function Start_Compile_If_Possible (Args : Argument_List) return Boolean;
2575 -- Check if there is more work that we can do (i.e. the Queue is non
2576 -- empty). If there is, do it only if we have not yet used up all the
2577 -- available processes.
2578 -- Returns True if we should exit the main loop
2580 procedure Wait_For_Available_Slot;
2581 -- Check if we should wait for a compilation to finish. This is the case
2582 -- if all the available processes are busy compiling sources or there is
2583 -- nothing else to do (that is the Q is empty and there are no good ALIs
2584 -- to process).
2586 procedure Fill_Queue_From_ALI_Files;
2587 -- Check if we recorded good ALI files. If yes process them now in the
2588 -- order in which they have been recorded. There are two occasions in
2589 -- which we record good ali files. The first is in phase 1 when, after
2590 -- scanning an existing ALI file we realize it is up-to-date, the second
2591 -- instance is after a successful compilation.
2593 -----------------
2594 -- Add_Process --
2595 -----------------
2597 procedure Add_Process
2598 (Pid : Process_Id;
2599 Sfile : File_Name_Type;
2600 Afile : File_Name_Type;
2601 Uname : Unit_Name_Type;
2602 Full_Lib_File : File_Name_Type;
2603 Lib_File_Attr : File_Attributes;
2604 Mfile : Natural := No_Mapping_File)
2606 OC1 : constant Positive := Outstanding_Compiles + 1;
2608 begin
2609 pragma Assert (OC1 <= Max_Process);
2610 pragma Assert (Pid /= Invalid_Pid);
2612 Running_Compile (OC1) :=
2613 (Pid => Pid,
2614 Full_Source_File => Sfile,
2615 Lib_File => Afile,
2616 Full_Lib_File => Full_Lib_File,
2617 Lib_File_Attr => Lib_File_Attr,
2618 Source_Unit => Uname,
2619 Mapping_File => Mfile,
2620 Project => Arguments_Project);
2622 Outstanding_Compiles := OC1;
2624 if Arguments_Project /= No_Project then
2625 Queue.Set_Obj_Dir_Busy (Arguments_Project.Object_Directory.Name);
2626 end if;
2627 end Add_Process;
2629 --------------------
2630 -- Await_Compile --
2631 -------------------
2633 procedure Await_Compile
2634 (Data : out Compilation_Data;
2635 OK : out Boolean)
2637 Pid : Process_Id;
2638 Project : Project_Id;
2639 Comp_Data : Project_Compilation_Access;
2641 begin
2642 pragma Assert (Outstanding_Compiles > 0);
2644 Data := No_Compilation_Data;
2645 OK := False;
2647 -- The loop here is a work-around for a problem on VMS; in some
2648 -- circumstances (shared library and several executables, for
2649 -- example), there are child processes other than compilation
2650 -- processes that are received. Until this problem is resolved,
2651 -- we will ignore such processes.
2653 loop
2654 Wait_Process (Pid, OK);
2656 if Pid = Invalid_Pid then
2657 return;
2658 end if;
2660 for J in Running_Compile'First .. Outstanding_Compiles loop
2661 if Pid = Running_Compile (J).Pid then
2662 Data := Running_Compile (J);
2663 Project := Running_Compile (J).Project;
2665 if Project /= No_Project then
2666 Queue.Set_Obj_Dir_Free (Project.Object_Directory.Name);
2667 end if;
2669 -- If a mapping file was used by this compilation, get its
2670 -- file name for reuse by a subsequent compilation.
2672 if Running_Compile (J).Mapping_File /= No_Mapping_File then
2673 Comp_Data :=
2674 Project_Compilation_Htable.Get
2675 (Project_Compilation, Project);
2676 Comp_Data.Last_Free_Indexes :=
2677 Comp_Data.Last_Free_Indexes + 1;
2678 Comp_Data.Free_Mapping_File_Indexes
2679 (Comp_Data.Last_Free_Indexes) :=
2680 Running_Compile (J).Mapping_File;
2681 end if;
2683 -- To actually remove this Pid and related info from
2684 -- Running_Compile replace its entry with the last valid
2685 -- entry in Running_Compile.
2687 if J = Outstanding_Compiles then
2688 null;
2689 else
2690 Running_Compile (J) :=
2691 Running_Compile (Outstanding_Compiles);
2692 end if;
2694 Outstanding_Compiles := Outstanding_Compiles - 1;
2695 return;
2696 end if;
2697 end loop;
2699 -- This child process was not one of our compilation processes;
2700 -- just ignore it for now.
2702 -- Why is this commented out code sitting here???
2704 -- raise Program_Error;
2705 end loop;
2706 end Await_Compile;
2708 ---------------------------
2709 -- Bad_Compilation_Count --
2710 ---------------------------
2712 function Bad_Compilation_Count return Natural is
2713 begin
2714 return Bad_Compilation.Last - Bad_Compilation.First + 1;
2715 end Bad_Compilation_Count;
2717 ----------------------------
2718 -- Check_Standard_Library --
2719 ----------------------------
2721 procedure Check_Standard_Library is
2722 begin
2723 Need_To_Check_Standard_Library := False;
2725 if not Targparm.Suppress_Standard_Library_On_Target then
2726 declare
2727 Sfile : File_Name_Type;
2728 Add_It : Boolean := True;
2730 begin
2731 Name_Len := 0;
2732 Add_Str_To_Name_Buffer (Standard_Library_Package_Body_Name);
2733 Sfile := Name_Enter;
2735 -- If we have a special runtime, we add the standard
2736 -- library only if we can find it.
2738 if RTS_Switch then
2739 Add_It := Full_Source_Name (Sfile) /= No_File;
2740 end if;
2742 if Add_It then
2743 if not Queue.Insert
2744 ((Format => Format_Gnatmake,
2745 File => Sfile,
2746 Unit => No_Unit_Name,
2747 Project => No_Project,
2748 Index => 0))
2749 then
2750 if Is_In_Obsoleted (Sfile) then
2751 Executable_Obsolete := True;
2752 end if;
2753 end if;
2754 end if;
2755 end;
2756 end if;
2757 end Check_Standard_Library;
2759 -----------------------------------
2760 -- Collect_Arguments_And_Compile --
2761 -----------------------------------
2763 procedure Collect_Arguments_And_Compile
2764 (Full_Source_File : File_Name_Type;
2765 Lib_File : File_Name_Type;
2766 Source_Index : Int;
2767 Pid : out Process_Id;
2768 Process_Created : out Boolean) is
2769 begin
2770 Process_Created := False;
2772 -- If we use mapping file (-P or -C switches), then get one
2774 if Create_Mapping_File then
2775 Get_Mapping_File (Arguments_Project);
2776 end if;
2778 -- If the source is part of a project file, we set the ADA_*_PATHs,
2779 -- check for an eventual library project, and use the full path.
2781 if Arguments_Project /= No_Project then
2782 if not Arguments_Project.Externally_Built
2783 or else Must_Compile
2784 then
2785 Prj.Env.Set_Ada_Paths
2786 (Arguments_Project,
2787 Project_Tree,
2788 Including_Libraries => True,
2789 Include_Path => Use_Include_Path_File);
2791 if not Unique_Compile
2792 and then MLib.Tgt.Support_For_Libraries /= Prj.None
2793 then
2794 declare
2795 Prj : constant Project_Id :=
2796 Ultimate_Extending_Project_Of (Arguments_Project);
2798 begin
2799 if Prj.Library
2800 and then (not Prj.Externally_Built or else Must_Compile)
2801 and then not Prj.Need_To_Build_Lib
2802 then
2803 -- Add to the Q all sources of the project that have
2804 -- not been marked.
2806 Insert_Project_Sources
2807 (The_Project => Prj,
2808 All_Projects => False,
2809 Into_Q => True);
2811 -- Now mark the project as processed
2813 Prj.Need_To_Build_Lib := True;
2814 end if;
2815 end;
2816 end if;
2818 Pid :=
2819 Compile
2820 (Project => Arguments_Project,
2821 S => File_Name_Type (Arguments_Path_Name),
2822 L => Lib_File,
2823 Source_Index => Source_Index,
2824 Args => Arguments (1 .. Last_Argument));
2825 Process_Created := True;
2826 end if;
2828 else
2829 -- If this is a source outside of any project file, make sure it
2830 -- will be compiled in object directory of the main project file.
2832 Pid :=
2833 Compile
2834 (Project => Main_Project,
2835 S => Full_Source_File,
2836 L => Lib_File,
2837 Source_Index => Source_Index,
2838 Args => Arguments (1 .. Last_Argument));
2839 Process_Created := True;
2840 end if;
2841 end Collect_Arguments_And_Compile;
2843 -------------
2844 -- Compile --
2845 -------------
2847 function Compile
2848 (Project : Project_Id;
2849 S : File_Name_Type;
2850 L : File_Name_Type;
2851 Source_Index : Int;
2852 Args : Argument_List) return Process_Id
2854 Comp_Args : Argument_List (Args'First .. Args'Last + 10);
2855 Comp_Next : Integer := Args'First;
2856 Comp_Last : Integer;
2857 Arg_Index : Integer;
2859 function Ada_File_Name (Name : File_Name_Type) return Boolean;
2860 -- Returns True if Name is the name of an ada source file
2861 -- (i.e. suffix is .ads or .adb)
2863 -------------------
2864 -- Ada_File_Name --
2865 -------------------
2867 function Ada_File_Name (Name : File_Name_Type) return Boolean is
2868 begin
2869 Get_Name_String (Name);
2870 return
2871 Name_Len > 4
2872 and then Name_Buffer (Name_Len - 3 .. Name_Len - 1) = ".ad"
2873 and then (Name_Buffer (Name_Len) = 'b'
2874 or else
2875 Name_Buffer (Name_Len) = 's');
2876 end Ada_File_Name;
2878 -- Start of processing for Compile
2880 begin
2881 Enter_Into_Obsoleted (S);
2883 -- By default, Syntax_Only is False
2885 Syntax_Only := False;
2887 for J in Args'Range loop
2888 if Args (J).all = "-gnats" then
2890 -- If we compile with -gnats, the bind step and the link step
2891 -- are inhibited. Also, we set Syntax_Only to True, so that
2892 -- we don't fail when we don't find the ALI file, after
2893 -- compilation.
2895 Do_Bind_Step := False;
2896 Do_Link_Step := False;
2897 Syntax_Only := True;
2899 elsif Args (J).all = "-gnatc" then
2901 -- If we compile with -gnatc, the bind step and the link step
2902 -- are inhibited. We set Syntax_Only to False for the case when
2903 -- -gnats was previously specified.
2905 Do_Bind_Step := False;
2906 Do_Link_Step := False;
2907 Syntax_Only := False;
2908 end if;
2909 end loop;
2911 Comp_Args (Comp_Next) := new String'("-gnatea");
2912 Comp_Next := Comp_Next + 1;
2914 Comp_Args (Comp_Next) := Comp_Flag;
2915 Comp_Next := Comp_Next + 1;
2917 -- Optimize the simple case where the gcc command line looks like
2918 -- gcc -c -I. ... -I- file.adb
2919 -- into
2920 -- gcc -c ... file.adb
2922 if Args (Args'First).all = "-I" & Normalized_CWD
2923 and then Args (Args'Last).all = "-I-"
2924 and then S = Strip_Directory (S)
2925 then
2926 Comp_Last := Comp_Next + Args'Length - 3;
2927 Arg_Index := Args'First + 1;
2929 else
2930 Comp_Last := Comp_Next + Args'Length - 1;
2931 Arg_Index := Args'First;
2932 end if;
2934 -- Make a deep copy of the arguments, because Normalize_Arguments
2935 -- may deallocate some arguments. Also strip target specific -mxxx
2936 -- switches in CodePeer mode.
2938 declare
2939 Index : Natural;
2940 Last : constant Natural := Comp_Last;
2942 begin
2943 Index := Comp_Next;
2944 for J in Comp_Next .. Last loop
2945 declare
2946 Str : String renames Args (Arg_Index).all;
2947 begin
2948 if CodePeer_Mode
2949 and then Str'Length > 2
2950 and then Str (Str'First .. Str'First + 1) = "-m"
2951 then
2952 Comp_Last := Comp_Last - 1;
2953 else
2954 Comp_Args (Index) := new String'(Str);
2955 Index := Index + 1;
2956 end if;
2957 end;
2959 Arg_Index := Arg_Index + 1;
2960 end loop;
2961 end;
2963 -- Set -gnatpg for predefined files (for this purpose the renamings
2964 -- such as Text_IO do not count as predefined). Note that we strip
2965 -- the directory name from the source file name because the call to
2966 -- Fname.Is_Predefined_File_Name cannot deal with directory prefixes.
2968 declare
2969 Fname : constant File_Name_Type := Strip_Directory (S);
2971 begin
2972 if Is_Predefined_File_Name (Fname, False) then
2973 if Check_Readonly_Files or else Must_Compile then
2974 Comp_Args (Comp_Args'First + 2 .. Comp_Last + 1) :=
2975 Comp_Args (Comp_Args'First + 1 .. Comp_Last);
2976 Comp_Last := Comp_Last + 1;
2977 Comp_Args (Comp_Args'First + 1) := GNAT_Flag;
2979 else
2980 Make_Failed
2981 ("not allowed to compile """ &
2982 Get_Name_String (Fname) &
2983 """; use -a switch, or compile file with " &
2984 """-gnatg"" switch");
2985 end if;
2986 end if;
2987 end;
2989 -- Now check if the file name has one of the suffixes familiar to
2990 -- the gcc driver. If this is not the case then add the ada flag
2991 -- "-x ada".
2993 if not Ada_File_Name (S) and then not Targparm.AAMP_On_Target then
2994 Comp_Last := Comp_Last + 1;
2995 Comp_Args (Comp_Last) := Ada_Flag_1;
2996 Comp_Last := Comp_Last + 1;
2997 Comp_Args (Comp_Last) := Ada_Flag_2;
2998 end if;
3000 if Source_Index /= 0 then
3001 declare
3002 Num : constant String := Source_Index'Img;
3003 begin
3004 Comp_Last := Comp_Last + 1;
3005 Comp_Args (Comp_Last) :=
3006 new String'("-gnateI" & Num (Num'First + 1 .. Num'Last));
3007 end;
3008 end if;
3010 if Source_Index /= 0
3011 or else L /= Strip_Directory (L)
3012 or else Object_Directory_Path /= null
3013 then
3014 -- Build -o argument
3016 Get_Name_String (L);
3018 for J in reverse 1 .. Name_Len loop
3019 if Name_Buffer (J) = '.' then
3020 Name_Len := J + Object_Suffix'Length - 1;
3021 Name_Buffer (J .. Name_Len) := Object_Suffix;
3022 exit;
3023 end if;
3024 end loop;
3026 Comp_Last := Comp_Last + 1;
3027 Comp_Args (Comp_Last) := Output_Flag;
3028 Comp_Last := Comp_Last + 1;
3030 -- If an object directory was specified, prepend the object file
3031 -- name with this object directory.
3033 if Object_Directory_Path /= null then
3034 Comp_Args (Comp_Last) :=
3035 new String'(Object_Directory_Path.all &
3036 Name_Buffer (1 .. Name_Len));
3038 else
3039 Comp_Args (Comp_Last) :=
3040 new String'(Name_Buffer (1 .. Name_Len));
3041 end if;
3042 end if;
3044 if Create_Mapping_File and then Mapping_File_Arg /= null then
3045 Comp_Last := Comp_Last + 1;
3046 Comp_Args (Comp_Last) := new String'(Mapping_File_Arg.all);
3047 end if;
3049 Get_Name_String (S);
3051 Comp_Last := Comp_Last + 1;
3052 Comp_Args (Comp_Last) := new String'(Name_Buffer (1 .. Name_Len));
3054 -- Change to object directory of the project file, if necessary
3056 if Project /= No_Project then
3057 Change_To_Object_Directory (Project);
3058 end if;
3060 GNAT.OS_Lib.Normalize_Arguments (Comp_Args (Args'First .. Comp_Last));
3062 Comp_Last := Comp_Last + 1;
3063 Comp_Args (Comp_Last) := new String'("-gnatez");
3065 Display (Gcc.all, Comp_Args (Args'First .. Comp_Last));
3067 if Gcc_Path = null then
3068 Make_Failed ("error, unable to locate " & Gcc.all);
3069 end if;
3071 return
3072 GNAT.OS_Lib.Non_Blocking_Spawn
3073 (Gcc_Path.all, Comp_Args (Args'First .. Comp_Last));
3074 end Compile;
3076 -------------------------------
3077 -- Fill_Queue_From_ALI_Files --
3078 -------------------------------
3080 procedure Fill_Queue_From_ALI_Files is
3081 ALI_P : ALI_Project;
3082 ALI : ALI_Id;
3083 Source_Index : Int;
3084 Sfile : File_Name_Type;
3085 Uname : Unit_Name_Type;
3086 Unit_Name : Name_Id;
3087 Uid : Prj.Unit_Index;
3089 begin
3090 while Good_ALI_Present loop
3091 ALI_P := Get_Next_Good_ALI;
3092 ALI := ALI_P.ALI;
3093 Source_Index := Unit_Index_Of (ALIs.Table (ALI_P.ALI).Afile);
3095 -- If we are processing the library file corresponding to the
3096 -- main source file check if this source can be a main unit.
3098 if ALIs.Table (ALI).Sfile = Main_Source
3099 and then Source_Index = Main_Index
3100 then
3101 Main_Unit := ALIs.Table (ALI).Main_Program /= None;
3102 end if;
3104 -- The following adds the standard library (s-stalib) to the list
3105 -- of files to be handled by gnatmake: this file and any files it
3106 -- depends on are always included in every bind, even if they are
3107 -- not in the explicit dependency list. Of course, it is not added
3108 -- if Suppress_Standard_Library is True.
3110 -- However, to avoid annoying output about s-stalib.ali being read
3111 -- only, when "-v" is used, we add the standard library only when
3112 -- "-a" is used.
3114 if Need_To_Check_Standard_Library then
3115 Check_Standard_Library;
3116 end if;
3118 -- Now insert in the Q the unmarked source files (i.e. those which
3119 -- have never been inserted in the Q and hence never considered).
3120 -- Only do that if Unique_Compile is False.
3122 if not Unique_Compile then
3123 for J in
3124 ALIs.Table (ALI).First_Unit .. ALIs.Table (ALI).Last_Unit
3125 loop
3126 for K in
3127 Units.Table (J).First_With .. Units.Table (J).Last_With
3128 loop
3129 Sfile := Withs.Table (K).Sfile;
3130 Uname := Withs.Table (K).Uname;
3132 -- If project files are used, find the proper source to
3133 -- compile in case Sfile is the spec but there is a body.
3135 if Main_Project /= No_Project then
3136 Get_Name_String (Uname);
3137 Name_Len := Name_Len - 2;
3138 Unit_Name := Name_Find;
3139 Uid :=
3140 Units_Htable.Get (Project_Tree.Units_HT, Unit_Name);
3142 if Uid /= Prj.No_Unit_Index then
3143 if Uid.File_Names (Impl) /= null
3144 and then not Uid.File_Names (Impl).Locally_Removed
3145 then
3146 Sfile := Uid.File_Names (Impl).File;
3147 Source_Index := Uid.File_Names (Impl).Index;
3149 elsif Uid.File_Names (Spec) /= null
3150 and then not Uid.File_Names (Spec).Locally_Removed
3151 then
3152 Sfile := Uid.File_Names (Spec).File;
3153 Source_Index := Uid.File_Names (Spec).Index;
3154 end if;
3155 end if;
3156 end if;
3158 Dependencies.Append ((ALIs.Table (ALI).Sfile, Sfile));
3160 if Is_In_Obsoleted (Sfile) then
3161 Executable_Obsolete := True;
3162 end if;
3164 if Sfile = No_File then
3165 Debug_Msg ("Skipping generic:", Withs.Table (K).Uname);
3167 else
3168 Source_Index := Unit_Index_Of (Withs.Table (K).Afile);
3170 if not (Check_Readonly_Files or Must_Compile)
3171 and then Is_Internal_File_Name (Sfile, False)
3172 then
3173 Debug_Msg ("Skipping internal file:", Sfile);
3175 else
3176 Queue.Insert
3177 ((Format => Format_Gnatmake,
3178 File => Sfile,
3179 Project => ALI_P.Project,
3180 Unit => Withs.Table (K).Uname,
3181 Index => Source_Index));
3182 end if;
3183 end if;
3184 end loop;
3185 end loop;
3186 end if;
3187 end loop;
3188 end Fill_Queue_From_ALI_Files;
3190 ----------------------
3191 -- Get_Mapping_File --
3192 ----------------------
3194 procedure Get_Mapping_File (Project : Project_Id) is
3195 Data : Project_Compilation_Access;
3197 begin
3198 Data := Project_Compilation_Htable.Get (Project_Compilation, Project);
3200 -- If there is a mapping file ready to be reused, reuse it
3202 if Data.Last_Free_Indexes > 0 then
3203 Mfile := Data.Free_Mapping_File_Indexes (Data.Last_Free_Indexes);
3204 Data.Last_Free_Indexes := Data.Last_Free_Indexes - 1;
3206 -- Otherwise, create and initialize a new one
3208 else
3209 Init_Mapping_File
3210 (Project => Project, Data => Data.all, File_Index => Mfile);
3211 end if;
3213 -- Put the name in the mapping file argument for the invocation
3214 -- of the compiler.
3216 Free (Mapping_File_Arg);
3217 Mapping_File_Arg :=
3218 new String'("-gnatem=" &
3219 Get_Name_String (Data.Mapping_File_Names (Mfile)));
3220 end Get_Mapping_File;
3222 -----------------------
3223 -- Get_Next_Good_ALI --
3224 -----------------------
3226 function Get_Next_Good_ALI return ALI_Project is
3227 ALIP : ALI_Project;
3229 begin
3230 pragma Assert (Good_ALI_Present);
3231 ALIP := Good_ALI.Table (Good_ALI.Last);
3232 Good_ALI.Decrement_Last;
3233 return ALIP;
3234 end Get_Next_Good_ALI;
3236 ----------------------
3237 -- Good_ALI_Present --
3238 ----------------------
3240 function Good_ALI_Present return Boolean is
3241 begin
3242 return Good_ALI.First <= Good_ALI.Last;
3243 end Good_ALI_Present;
3245 --------------------------------
3246 -- Must_Exit_Because_Of_Error --
3247 --------------------------------
3249 function Must_Exit_Because_Of_Error return Boolean is
3250 Data : Compilation_Data;
3251 Success : Boolean;
3253 begin
3254 if Bad_Compilation_Count > 0 and then not Keep_Going then
3255 while Outstanding_Compiles > 0 loop
3256 Await_Compile (Data, Success);
3258 if not Success then
3259 Record_Failure (Data.Full_Source_File, Data.Source_Unit);
3260 end if;
3261 end loop;
3263 return True;
3264 end if;
3266 return False;
3267 end Must_Exit_Because_Of_Error;
3269 --------------------
3270 -- Record_Failure --
3271 --------------------
3273 procedure Record_Failure
3274 (File : File_Name_Type;
3275 Unit : Unit_Name_Type;
3276 Found : Boolean := True)
3278 begin
3279 Bad_Compilation.Increment_Last;
3280 Bad_Compilation.Table (Bad_Compilation.Last) := (File, Unit, Found);
3281 end Record_Failure;
3283 ---------------------
3284 -- Record_Good_ALI --
3285 ---------------------
3287 procedure Record_Good_ALI (A : ALI_Id; Project : Project_Id) is
3288 begin
3289 Good_ALI.Increment_Last;
3290 Good_ALI.Table (Good_ALI.Last) := (A, Project);
3291 end Record_Good_ALI;
3293 -------------------------------
3294 -- Start_Compile_If_Possible --
3295 -------------------------------
3297 function Start_Compile_If_Possible
3298 (Args : Argument_List) return Boolean
3300 In_Lib_Dir : Boolean;
3301 Need_To_Compile : Boolean;
3302 Pid : Process_Id;
3303 Process_Created : Boolean;
3305 Source : Queue.Source_Info;
3306 Full_Source_File : File_Name_Type;
3307 Source_File_Attr : aliased File_Attributes;
3308 -- The full name of the source file and its attributes (size, ...)
3310 Lib_File : File_Name_Type;
3311 Full_Lib_File : File_Name_Type;
3312 Lib_File_Attr : aliased File_Attributes;
3313 Read_Only : Boolean := False;
3314 ALI : ALI_Id;
3315 -- The ALI file and its attributes (size, stamp, ...)
3317 Obj_File : File_Name_Type;
3318 Obj_Stamp : Time_Stamp_Type;
3319 -- The object file
3321 Found : Boolean;
3323 begin
3324 if not Queue.Is_Virtually_Empty and then
3325 Outstanding_Compiles < Max_Process
3326 then
3327 Queue.Extract (Found, Source);
3329 Osint.Full_Source_Name
3330 (Source.File,
3331 Full_File => Full_Source_File,
3332 Attr => Source_File_Attr'Access);
3334 Lib_File := Osint.Lib_File_Name (Source.File, Source.Index);
3336 -- ??? This call could be avoided when using projects, since we
3337 -- know where the ALI file is supposed to be. That would avoid
3338 -- searches in the object directories, including in the runtime
3339 -- dir. However, that would require getting access to the
3340 -- Source_Id.
3342 Osint.Full_Lib_File_Name
3343 (Lib_File,
3344 Lib_File => Full_Lib_File,
3345 Attr => Lib_File_Attr);
3347 -- If source has already been compiled, executable is obsolete
3349 if Is_In_Obsoleted (Source.File) then
3350 Executable_Obsolete := True;
3351 end if;
3353 In_Lib_Dir := Full_Lib_File /= No_File
3354 and then In_Ada_Lib_Dir (Full_Lib_File);
3356 -- Since the following requires a system call, we precompute it
3357 -- when needed.
3359 if not In_Lib_Dir then
3360 if Full_Lib_File /= No_File
3361 and then not (Check_Readonly_Files or else Must_Compile)
3362 then
3363 Get_Name_String (Full_Lib_File);
3364 Name_Buffer (Name_Len + 1) := ASCII.NUL;
3365 Read_Only := not Is_Writable_File
3366 (Name_Buffer'Address, Lib_File_Attr'Access);
3367 else
3368 Read_Only := False;
3369 end if;
3370 end if;
3372 -- If the library file is an Ada library skip it
3374 if In_Lib_Dir then
3375 Verbose_Msg
3376 (Lib_File,
3377 "is in an Ada library",
3378 Prefix => " ",
3379 Minimum_Verbosity => Opt.High);
3381 -- If the library file is a read-only library skip it, but only
3382 -- if, when using project files, this library file is in the
3383 -- right object directory (a read-only ALI file in the object
3384 -- directory of a project being extended must not be skipped).
3386 elsif Read_Only
3387 and then Is_In_Object_Directory (Source.File, Full_Lib_File)
3388 then
3389 Verbose_Msg
3390 (Lib_File,
3391 "is a read-only library",
3392 Prefix => " ",
3393 Minimum_Verbosity => Opt.High);
3395 -- The source file that we are checking cannot be located
3397 elsif Full_Source_File = No_File then
3398 Record_Failure (Source.File, Source.Unit, False);
3400 -- Source and library files can be located but are internal
3401 -- files.
3403 elsif not (Check_Readonly_Files or else Must_Compile)
3404 and then Full_Lib_File /= No_File
3405 and then Is_Internal_File_Name (Source.File, False)
3406 then
3407 if Force_Compilations then
3408 Fail
3409 ("not allowed to compile """ &
3410 Get_Name_String (Source.File) &
3411 """; use -a switch, or compile file with " &
3412 """-gnatg"" switch");
3413 end if;
3415 Verbose_Msg
3416 (Lib_File,
3417 "is an internal library",
3418 Prefix => " ",
3419 Minimum_Verbosity => Opt.High);
3421 -- The source file that we are checking can be located
3423 else
3424 Collect_Arguments
3425 (Source.File, Source.File = Main_Source, Args);
3427 -- Do nothing if project of source is externally built
3429 if Arguments_Project = No_Project
3430 or else not Arguments_Project.Externally_Built
3431 or else Must_Compile
3432 then
3433 -- Don't waste any time if we have to recompile anyway
3435 Obj_Stamp := Empty_Time_Stamp;
3436 Need_To_Compile := Force_Compilations;
3438 if not Force_Compilations then
3439 Check (Source_File => Source.File,
3440 Is_Main_Source => Source.File = Main_Source,
3441 The_Args => Args,
3442 Lib_File => Lib_File,
3443 Full_Lib_File => Full_Lib_File,
3444 Lib_File_Attr => Lib_File_Attr'Access,
3445 Read_Only => Read_Only,
3446 ALI => ALI,
3447 O_File => Obj_File,
3448 O_Stamp => Obj_Stamp);
3449 Need_To_Compile := (ALI = No_ALI_Id);
3450 end if;
3452 if not Need_To_Compile then
3454 -- The ALI file is up-to-date; record its Id
3456 Record_Good_ALI (ALI, Arguments_Project);
3458 -- Record the time stamp of the most recent object
3459 -- file as long as no (re)compilations are needed.
3461 if First_Compiled_File = No_File
3462 and then (Most_Recent_Obj_File = No_File
3463 or else Obj_Stamp > Most_Recent_Obj_Stamp)
3464 then
3465 Most_Recent_Obj_File := Obj_File;
3466 Most_Recent_Obj_Stamp := Obj_Stamp;
3467 end if;
3469 else
3470 -- Check that switch -x has been used if a source outside
3471 -- of project files need to be compiled.
3473 if Main_Project /= No_Project
3474 and then Arguments_Project = No_Project
3475 and then not External_Unit_Compilation_Allowed
3476 then
3477 Make_Failed ("external source ("
3478 & Get_Name_String (Source.File)
3479 & ") is not part of any project;"
3480 & " cannot be compiled without"
3481 & " gnatmake switch -x");
3482 end if;
3484 -- Is this the first file we have to compile?
3486 if First_Compiled_File = No_File then
3487 First_Compiled_File := Full_Source_File;
3488 Most_Recent_Obj_File := No_File;
3490 if Do_Not_Execute then
3492 -- Exit the main loop
3494 return True;
3495 end if;
3496 end if;
3498 -- Compute where the ALI file must be generated in
3499 -- In_Place_Mode (this does not require to know the
3500 -- location of the object directory).
3502 if In_Place_Mode then
3503 if Full_Lib_File = No_File then
3505 -- If the library file was not found, then save
3506 -- the library file near the source file.
3508 Lib_File :=
3509 Osint.Lib_File_Name
3510 (Full_Source_File, Source.Index);
3511 Full_Lib_File := Lib_File;
3513 else
3514 -- If the library file was found, then save the
3515 -- library file in the same place.
3517 Lib_File := Full_Lib_File;
3518 end if;
3519 end if;
3521 -- Start the compilation and record it. We can do this
3522 -- because there is at least one free process. This might
3523 -- change the current directory.
3525 Collect_Arguments_And_Compile
3526 (Full_Source_File => Full_Source_File,
3527 Lib_File => Lib_File,
3528 Source_Index => Source.Index,
3529 Pid => Pid,
3530 Process_Created => Process_Created);
3532 -- Compute where the ALI file will be generated (for
3533 -- cases that might require to know the current
3534 -- directory). The current directory might be changed
3535 -- when compiling other files so we cannot rely on it
3536 -- being the same to find the resulting ALI file.
3538 if not In_Place_Mode then
3540 -- Compute the expected location of the ALI file. This
3541 -- can be from several places:
3542 -- -i => in place mode. In such a case,
3543 -- Full_Lib_File has already been set above
3544 -- -D => if specified
3545 -- or defaults in current dir
3546 -- We could simply use a call similar to
3547 -- Osint.Full_Lib_File_Name (Lib_File)
3548 -- but that involves system calls and is thus slower
3550 if Object_Directory_Path /= null then
3551 Name_Len := 0;
3552 Add_Str_To_Name_Buffer (Object_Directory_Path.all);
3553 Add_Str_To_Name_Buffer (Get_Name_String (Lib_File));
3554 Full_Lib_File := Name_Find;
3556 else
3557 if Project_Of_Current_Object_Directory /=
3558 No_Project
3559 then
3560 Get_Name_String
3561 (Project_Of_Current_Object_Directory
3562 .Object_Directory.Display_Name);
3563 Add_Str_To_Name_Buffer
3564 (Get_Name_String (Lib_File));
3565 Full_Lib_File := Name_Find;
3567 else
3568 Full_Lib_File := Lib_File;
3569 end if;
3570 end if;
3572 end if;
3574 Lib_File_Attr := Unknown_Attributes;
3576 -- Make sure we could successfully start the compilation
3578 if Process_Created then
3579 if Pid = Invalid_Pid then
3580 Record_Failure (Full_Source_File, Source.Unit);
3581 else
3582 Add_Process
3583 (Pid => Pid,
3584 Sfile => Full_Source_File,
3585 Afile => Lib_File,
3586 Uname => Source.Unit,
3587 Mfile => Mfile,
3588 Full_Lib_File => Full_Lib_File,
3589 Lib_File_Attr => Lib_File_Attr);
3590 end if;
3591 end if;
3592 end if;
3593 end if;
3594 end if;
3595 end if;
3596 return False;
3597 end Start_Compile_If_Possible;
3599 -----------------------------
3600 -- Wait_For_Available_Slot --
3601 -----------------------------
3603 procedure Wait_For_Available_Slot is
3604 Compilation_OK : Boolean;
3605 Text : Text_Buffer_Ptr;
3606 ALI : ALI_Id;
3607 Data : Compilation_Data;
3609 begin
3610 if Outstanding_Compiles = Max_Process
3611 or else (Queue.Is_Virtually_Empty
3612 and then not Good_ALI_Present
3613 and then Outstanding_Compiles > 0)
3614 then
3615 Await_Compile (Data, Compilation_OK);
3617 if not Compilation_OK then
3618 Record_Failure (Data.Full_Source_File, Data.Source_Unit);
3619 end if;
3621 if Compilation_OK or else Keep_Going then
3623 -- Re-read the updated library file
3625 declare
3626 Saved_Object_Consistency : constant Boolean :=
3627 Check_Object_Consistency;
3629 begin
3630 -- If compilation was not OK, or if output is not an object
3631 -- file and we don't do the bind step, don't check for
3632 -- object consistency.
3634 Check_Object_Consistency :=
3635 Check_Object_Consistency
3636 and Compilation_OK
3637 and (Output_Is_Object or Do_Bind_Step);
3639 Text :=
3640 Read_Library_Info_From_Full
3641 (Data.Full_Lib_File, Data.Lib_File_Attr'Access);
3643 -- Restore Check_Object_Consistency to its initial value
3645 Check_Object_Consistency := Saved_Object_Consistency;
3646 end;
3648 -- If an ALI file was generated by this compilation, scan the
3649 -- ALI file and record it.
3651 -- If the scan fails, a previous ali file is inconsistent with
3652 -- the unit just compiled.
3654 if Text /= null then
3655 ALI :=
3656 Scan_ALI
3657 (Data.Lib_File, Text, Ignore_ED => False, Err => True);
3659 if ALI = No_ALI_Id then
3661 -- Record a failure only if not already done
3663 if Compilation_OK then
3664 Inform
3665 (Data.Lib_File,
3666 "incompatible ALI file, please recompile");
3667 Record_Failure
3668 (Data.Full_Source_File, Data.Source_Unit);
3669 end if;
3671 else
3672 Record_Good_ALI (ALI, Data.Project);
3673 end if;
3675 Free (Text);
3677 -- If we could not read the ALI file that was just generated
3678 -- then there could be a problem reading either the ALI or the
3679 -- corresponding object file (if Check_Object_Consistency is
3680 -- set Read_Library_Info checks that the time stamp of the
3681 -- object file is more recent than that of the ALI). However,
3682 -- we record a failure only if not already done.
3684 else
3685 if Compilation_OK and not Syntax_Only then
3686 Inform
3687 (Data.Lib_File,
3688 "WARNING: ALI or object file not found after compile");
3689 Record_Failure (Data.Full_Source_File, Data.Source_Unit);
3690 end if;
3691 end if;
3692 end if;
3693 end if;
3694 end Wait_For_Available_Slot;
3696 -- Start of processing for Compile_Sources
3698 begin
3699 pragma Assert (Args'First = 1);
3701 Outstanding_Compiles := 0;
3702 Running_Compile := new Comp_Data_Arr (1 .. Max_Process);
3704 -- Package and Queue initializations
3706 Good_ALI.Init;
3708 if Initialize_ALI_Data then
3709 Initialize_ALI;
3710 Initialize_ALI_Source;
3711 end if;
3713 -- The following two flags affect the behavior of ALI.Set_Source_Table.
3714 -- We set Check_Source_Files to True to ensure that source file time
3715 -- stamps are checked, and we set All_Sources to False to avoid checking
3716 -- the presence of the source files listed in the source dependency
3717 -- section of an ali file (which would be a mistake since the ali file
3718 -- may be obsolete).
3720 Check_Source_Files := True;
3721 All_Sources := False;
3723 Queue.Insert
3724 ((Format => Format_Gnatmake,
3725 File => Main_Source,
3726 Project => Main_Project,
3727 Unit => No_Unit_Name,
3728 Index => Main_Index));
3730 First_Compiled_File := No_File;
3731 Most_Recent_Obj_File := No_File;
3732 Most_Recent_Obj_Stamp := Empty_Time_Stamp;
3733 Main_Unit := False;
3735 -- Keep looping until there is no more work to do (the Q is empty)
3736 -- and all the outstanding compilations have terminated.
3738 Make_Loop :
3739 while not Queue.Is_Empty or else Outstanding_Compiles > 0 loop
3740 exit Make_Loop when Must_Exit_Because_Of_Error;
3741 exit Make_Loop when Start_Compile_If_Possible (Args);
3743 Wait_For_Available_Slot;
3745 -- ??? Should be done as soon as we add a Good_ALI, wouldn't it avoid
3746 -- the need for a list of good ALI?
3748 Fill_Queue_From_ALI_Files;
3750 if Display_Compilation_Progress then
3751 Write_Str ("completed ");
3752 Write_Int (Int (Queue.Processed));
3753 Write_Str (" out of ");
3754 Write_Int (Int (Queue.Size));
3755 Write_Str (" (");
3756 Write_Int (Int ((Queue.Processed * 100) / Queue.Size));
3757 Write_Str ("%)...");
3758 Write_Eol;
3759 end if;
3760 end loop Make_Loop;
3762 Compilation_Failures := Bad_Compilation_Count;
3764 -- Compilation is finished
3766 -- Delete any temporary configuration pragma file
3768 if not Debug.Debug_Flag_N then
3769 Delete_Temp_Config_Files (Project_Tree);
3770 end if;
3771 end Compile_Sources;
3773 ----------------------------------
3774 -- Configuration_Pragmas_Switch --
3775 ----------------------------------
3777 function Configuration_Pragmas_Switch
3778 (For_Project : Project_Id) return Argument_List
3780 The_Packages : Package_Id;
3781 Gnatmake : Package_Id;
3782 Compiler : Package_Id;
3784 Global_Attribute : Variable_Value := Nil_Variable_Value;
3785 Local_Attribute : Variable_Value := Nil_Variable_Value;
3787 Global_Attribute_Present : Boolean := False;
3788 Local_Attribute_Present : Boolean := False;
3790 Result : Argument_List (1 .. 3);
3791 Last : Natural := 0;
3793 begin
3794 Prj.Env.Create_Config_Pragmas_File
3795 (For_Project, Project_Tree);
3797 if For_Project.Config_File_Name /= No_Path then
3798 Temporary_Config_File := For_Project.Config_File_Temp;
3799 Last := 1;
3800 Result (1) :=
3801 new String'
3802 ("-gnatec=" & Get_Name_String (For_Project.Config_File_Name));
3804 else
3805 Temporary_Config_File := False;
3806 end if;
3808 -- Check for attribute Builder'Global_Configuration_Pragmas
3810 The_Packages := Main_Project.Decl.Packages;
3811 Gnatmake :=
3812 Prj.Util.Value_Of
3813 (Name => Name_Builder,
3814 In_Packages => The_Packages,
3815 Shared => Project_Tree.Shared);
3817 if Gnatmake /= No_Package then
3818 Global_Attribute := Prj.Util.Value_Of
3819 (Variable_Name => Name_Global_Configuration_Pragmas,
3820 In_Variables => Project_Tree.Shared.Packages.Table
3821 (Gnatmake).Decl.Attributes,
3822 Shared => Project_Tree.Shared);
3823 Global_Attribute_Present :=
3824 Global_Attribute /= Nil_Variable_Value
3825 and then Get_Name_String (Global_Attribute.Value) /= "";
3827 if Global_Attribute_Present then
3828 declare
3829 Path : constant String :=
3830 Absolute_Path
3831 (Path_Name_Type (Global_Attribute.Value),
3832 Global_Attribute.Project);
3833 begin
3834 if not Is_Regular_File (Path) then
3835 if Debug.Debug_Flag_F then
3836 Make_Failed
3837 ("cannot find configuration pragmas file "
3838 & File_Name (Path));
3839 else
3840 Make_Failed
3841 ("cannot find configuration pragmas file " & Path);
3842 end if;
3843 end if;
3845 Last := Last + 1;
3846 Result (Last) := new String'("-gnatec=" & Path);
3847 end;
3848 end if;
3849 end if;
3851 -- Check for attribute Compiler'Local_Configuration_Pragmas
3853 The_Packages := For_Project.Decl.Packages;
3854 Compiler :=
3855 Prj.Util.Value_Of
3856 (Name => Name_Compiler,
3857 In_Packages => The_Packages,
3858 Shared => Project_Tree.Shared);
3860 if Compiler /= No_Package then
3861 Local_Attribute := Prj.Util.Value_Of
3862 (Variable_Name => Name_Local_Configuration_Pragmas,
3863 In_Variables => Project_Tree.Shared.Packages.Table
3864 (Compiler).Decl.Attributes,
3865 Shared => Project_Tree.Shared);
3866 Local_Attribute_Present :=
3867 Local_Attribute /= Nil_Variable_Value
3868 and then Get_Name_String (Local_Attribute.Value) /= "";
3870 if Local_Attribute_Present then
3871 declare
3872 Path : constant String :=
3873 Absolute_Path
3874 (Path_Name_Type (Local_Attribute.Value),
3875 Local_Attribute.Project);
3876 begin
3877 if not Is_Regular_File (Path) then
3878 if Debug.Debug_Flag_F then
3879 Make_Failed
3880 ("cannot find configuration pragmas file "
3881 & File_Name (Path));
3883 else
3884 Make_Failed
3885 ("cannot find configuration pragmas file " & Path);
3886 end if;
3887 end if;
3889 Last := Last + 1;
3890 Result (Last) := new String'("-gnatec=" & Path);
3891 end;
3892 end if;
3893 end if;
3895 return Result (1 .. Last);
3896 end Configuration_Pragmas_Switch;
3898 ---------------
3899 -- Debug_Msg --
3900 ---------------
3902 procedure Debug_Msg (S : String; N : Name_Id) is
3903 begin
3904 if Debug.Debug_Flag_W then
3905 Write_Str (" ... ");
3906 Write_Str (S);
3907 Write_Str (" ");
3908 Write_Name (N);
3909 Write_Eol;
3910 end if;
3911 end Debug_Msg;
3913 procedure Debug_Msg (S : String; N : File_Name_Type) is
3914 begin
3915 Debug_Msg (S, Name_Id (N));
3916 end Debug_Msg;
3918 procedure Debug_Msg (S : String; N : Unit_Name_Type) is
3919 begin
3920 Debug_Msg (S, Name_Id (N));
3921 end Debug_Msg;
3923 -------------
3924 -- Display --
3925 -------------
3927 procedure Display (Program : String; Args : Argument_List) is
3928 begin
3929 pragma Assert (Args'First = 1);
3931 if Display_Executed_Programs then
3932 Write_Str (Program);
3934 for J in Args'Range loop
3936 -- Never display -gnatea nor -gnatez
3938 if Args (J).all /= "-gnatea"
3939 and then
3940 Args (J).all /= "-gnatez"
3941 then
3942 -- Do not display the mapping file argument automatically
3943 -- created when using a project file.
3945 if Main_Project = No_Project
3946 or else Debug.Debug_Flag_N
3947 or else Args (J)'Length < 8
3948 or else
3949 Args (J) (Args (J)'First .. Args (J)'First + 6) /= "-gnatem"
3950 then
3951 -- When -dn is not specified, do not display the config
3952 -- pragmas switch (-gnatec) for the temporary file created
3953 -- by the project manager (always the first -gnatec switch).
3954 -- Reset Temporary_Config_File to False so that the eventual
3955 -- other -gnatec switches will be displayed.
3957 if (not Debug.Debug_Flag_N)
3958 and then Temporary_Config_File
3959 and then Args (J)'Length > 7
3960 and then Args (J) (Args (J)'First .. Args (J)'First + 6)
3961 = "-gnatec"
3962 then
3963 Temporary_Config_File := False;
3965 -- Do not display the -F=mapping_file switch for gnatbind
3966 -- if -dn is not specified.
3968 elsif Debug.Debug_Flag_N
3969 or else Args (J)'Length < 4
3970 or else
3971 Args (J) (Args (J)'First .. Args (J)'First + 2) /= "-F="
3972 then
3973 Write_Str (" ");
3975 -- If -df is used, only display file names, not path
3976 -- names.
3978 if Debug.Debug_Flag_F then
3979 declare
3980 Equal_Pos : Natural;
3981 begin
3982 Equal_Pos := Args (J)'First - 1;
3983 for K in Args (J)'Range loop
3984 if Args (J) (K) = '=' then
3985 Equal_Pos := K;
3986 exit;
3987 end if;
3988 end loop;
3990 if Is_Absolute_Path
3991 (Args (J) (Equal_Pos + 1 .. Args (J)'Last))
3992 then
3993 Write_Str
3994 (Args (J) (Args (J)'First .. Equal_Pos));
3995 Write_Str
3996 (File_Name
3997 (Args (J)
3998 (Equal_Pos + 1 .. Args (J)'Last)));
4000 else
4001 Write_Str (Args (J).all);
4002 end if;
4003 end;
4005 else
4006 Write_Str (Args (J).all);
4007 end if;
4008 end if;
4009 end if;
4010 end if;
4011 end loop;
4013 Write_Eol;
4014 end if;
4015 end Display;
4017 ----------------------
4018 -- Display_Commands --
4019 ----------------------
4021 procedure Display_Commands (Display : Boolean := True) is
4022 begin
4023 Display_Executed_Programs := Display;
4024 end Display_Commands;
4026 --------------------------
4027 -- Enter_Into_Obsoleted --
4028 --------------------------
4030 procedure Enter_Into_Obsoleted (F : File_Name_Type) is
4031 Name : constant String := Get_Name_String (F);
4032 First : Natural;
4033 F2 : File_Name_Type;
4035 begin
4036 First := Name'Last;
4037 while First > Name'First
4038 and then Name (First - 1) /= Directory_Separator
4039 and then Name (First - 1) /= '/'
4040 loop
4041 First := First - 1;
4042 end loop;
4044 if First /= Name'First then
4045 Name_Len := 0;
4046 Add_Str_To_Name_Buffer (Name (First .. Name'Last));
4047 F2 := Name_Find;
4049 else
4050 F2 := F;
4051 end if;
4053 Debug_Msg ("New entry in Obsoleted table:", F2);
4054 Obsoleted.Set (F2, True);
4055 end Enter_Into_Obsoleted;
4057 ---------------
4058 -- Globalize --
4059 ---------------
4061 procedure Globalize (Success : out Boolean) is
4062 Quiet_Str : aliased String := "-quiet";
4063 Globalizer_Args : constant Argument_List :=
4064 (1 => Quiet_Str'Unchecked_Access);
4065 Previous_Dir : String_Access;
4067 procedure Globalize_Dir (Dir : String);
4068 -- Call CodePeer globalizer on Dir
4070 -------------------
4071 -- Globalize_Dir --
4072 -------------------
4074 procedure Globalize_Dir (Dir : String) is
4075 Result : Boolean;
4076 begin
4077 if Previous_Dir = null or else Dir /= Previous_Dir.all then
4078 Free (Previous_Dir);
4079 Previous_Dir := new String'(Dir);
4080 Change_Dir (Dir);
4081 GNAT.OS_Lib.Spawn (Globalizer_Path.all, Globalizer_Args, Result);
4082 Success := Success and Result;
4083 end if;
4084 end Globalize_Dir;
4086 procedure Globalize_Dirs is new
4087 Prj.Env.For_All_Object_Dirs (Globalize_Dir);
4089 begin
4090 Success := True;
4091 Display (Globalizer, Globalizer_Args);
4093 if Globalizer_Path = null then
4094 Make_Failed ("error, unable to locate " & Globalizer);
4095 end if;
4097 if Main_Project = No_Project then
4098 GNAT.OS_Lib.Spawn (Globalizer_Path.all, Globalizer_Args, Success);
4099 else
4100 Globalize_Dirs (Main_Project, Project_Tree);
4101 end if;
4102 end Globalize;
4104 -------------------
4105 -- Linking_Phase --
4106 -------------------
4108 procedure Linking_Phase
4109 (Non_Std_Executable : Boolean := False;
4110 Executable : File_Name_Type := No_File;
4111 Main_ALI_File : File_Name_Type)
4113 Linker_Switches_Last : constant Integer := Linker_Switches.Last;
4114 Path_Option : constant String_Access :=
4115 MLib.Linker_Library_Path_Option;
4116 Libraries_Present : Boolean := False;
4117 Current : Natural;
4118 Proj2 : Project_Id;
4119 Depth : Natural;
4120 Proj1 : Project_List;
4122 begin
4123 if not Run_Path_Option then
4124 Linker_Switches.Increment_Last;
4125 Linker_Switches.Table (Linker_Switches.Last) :=
4126 new String'("-R");
4127 end if;
4129 if Main_Project /= No_Project then
4130 Library_Paths.Set_Last (0);
4131 Library_Projs.Init;
4133 if MLib.Tgt.Support_For_Libraries /= Prj.None then
4135 -- Check for library projects
4137 Proj1 := Project_Tree.Projects;
4138 while Proj1 /= null loop
4139 if Proj1.Project /= Main_Project
4140 and then Proj1.Project.Library
4141 then
4142 -- Add this project to table Library_Projs
4144 Libraries_Present := True;
4145 Depth := Proj1.Project.Depth;
4146 Library_Projs.Increment_Last;
4147 Current := Library_Projs.Last;
4149 -- Any project with a greater depth should be after this
4150 -- project in the list.
4152 while Current > 1 loop
4153 Proj2 := Library_Projs.Table (Current - 1);
4154 exit when Proj2.Depth <= Depth;
4155 Library_Projs.Table (Current) := Proj2;
4156 Current := Current - 1;
4157 end loop;
4159 Library_Projs.Table (Current) := Proj1.Project;
4161 -- If it is not a static library and path option is set, add
4162 -- it to the Library_Paths table.
4164 if Proj1.Project.Library_Kind /= Static
4165 and then Proj1.Project.Extended_By = No_Project
4166 and then Path_Option /= null
4167 then
4168 Library_Paths.Increment_Last;
4169 Library_Paths.Table (Library_Paths.Last) :=
4170 new String'
4171 (Get_Name_String
4172 (Proj1.Project.Library_Dir.Display_Name));
4173 end if;
4174 end if;
4176 Proj1 := Proj1.Next;
4177 end loop;
4179 for Index in 1 .. Library_Projs.Last loop
4181 Library_Projs.Table (Index).Extended_By = No_Project
4182 then
4183 if Library_Projs.Table (Index).Library_Kind = Static
4184 and then not Targparm.OpenVMS_On_Target
4185 then
4186 Linker_Switches.Increment_Last;
4187 Linker_Switches.Table (Linker_Switches.Last) :=
4188 new String'
4189 (Get_Name_String
4190 (Library_Projs.Table
4191 (Index).Library_Dir.Display_Name) &
4192 "lib" &
4193 Get_Name_String
4194 (Library_Projs.Table
4195 (Index).Library_Name) &
4196 "." &
4197 MLib.Tgt.Archive_Ext);
4199 else
4200 -- Add the -L switch
4202 Linker_Switches.Increment_Last;
4203 Linker_Switches.Table (Linker_Switches.Last) :=
4204 new String'("-L" &
4205 Get_Name_String
4206 (Library_Projs.Table (Index).
4207 Library_Dir.Display_Name));
4209 -- Add the -l switch
4211 Linker_Switches.Increment_Last;
4212 Linker_Switches.Table (Linker_Switches.Last) :=
4213 new String'("-l" &
4214 Get_Name_String
4215 (Library_Projs.Table (Index).
4216 Library_Name));
4217 end if;
4218 end if;
4219 end loop;
4220 end if;
4222 if Libraries_Present then
4224 -- If Path_Option is not null, create the switch ("-Wl,-rpath,"
4225 -- or equivalent) with all the non-static library dirs plus the
4226 -- standard GNAT library dir. We do that only if Run_Path_Option
4227 -- is True (not disabled by -R switch).
4229 if Run_Path_Option and then Path_Option /= null then
4230 declare
4231 Option : String_Access;
4232 Length : Natural := Path_Option'Length;
4233 Current : Natural;
4235 begin
4236 if MLib.Separate_Run_Path_Options then
4238 -- We are going to create one switch of the form
4239 -- "-Wl,-rpath,dir_N" for each directory to
4240 -- consider.
4242 -- One switch for each library directory
4244 for Index in
4245 Library_Paths.First .. Library_Paths.Last
4246 loop
4247 Linker_Switches.Increment_Last;
4248 Linker_Switches.Table (Linker_Switches.Last) :=
4249 new String'
4250 (Path_Option.all &
4251 Library_Paths.Table (Index).all);
4252 end loop;
4254 -- One switch for the standard GNAT library dir
4256 Linker_Switches.Increment_Last;
4257 Linker_Switches.Table (Linker_Switches.Last) :=
4258 new String'(Path_Option.all & MLib.Utl.Lib_Directory);
4260 else
4261 -- We are going to create one switch of the form
4262 -- "-Wl,-rpath,dir_1:dir_2:dir_3"
4264 for Index in
4265 Library_Paths.First .. Library_Paths.Last
4266 loop
4267 -- Add the length of the library dir plus one for the
4268 -- directory separator.
4270 Length :=
4271 Length + Library_Paths.Table (Index)'Length + 1;
4272 end loop;
4274 -- Finally, add the length of the standard GNAT
4275 -- library dir.
4277 Length := Length + MLib.Utl.Lib_Directory'Length;
4278 Option := new String (1 .. Length);
4279 Option (1 .. Path_Option'Length) := Path_Option.all;
4280 Current := Path_Option'Length;
4282 -- Put each library dir followed by a dir
4283 -- separator.
4285 for Index in
4286 Library_Paths.First .. Library_Paths.Last
4287 loop
4288 Option
4289 (Current + 1 ..
4290 Current + Library_Paths.Table (Index)'Length) :=
4291 Library_Paths.Table (Index).all;
4292 Current :=
4293 Current + Library_Paths.Table (Index)'Length + 1;
4294 Option (Current) := Path_Separator;
4295 end loop;
4297 -- Finally put the standard GNAT library dir
4299 Option
4300 (Current + 1 ..
4301 Current + MLib.Utl.Lib_Directory'Length) :=
4302 MLib.Utl.Lib_Directory;
4304 -- And add the switch to the linker switches
4306 Linker_Switches.Increment_Last;
4307 Linker_Switches.Table (Linker_Switches.Last) := Option;
4308 end if;
4309 end;
4310 end if;
4311 end if;
4313 -- Put the object directories in ADA_OBJECTS_PATH
4315 Prj.Env.Set_Ada_Paths
4316 (Main_Project,
4317 Project_Tree,
4318 Including_Libraries => False,
4319 Include_Path => False);
4321 -- Check for attributes Linker'Linker_Options in projects other than
4322 -- the main project
4324 declare
4325 Linker_Options : constant String_List :=
4326 Linker_Options_Switches
4327 (Main_Project,
4328 Do_Fail => Make_Failed'Access,
4329 In_Tree => Project_Tree);
4330 begin
4331 for Option in Linker_Options'Range loop
4332 Linker_Switches.Increment_Last;
4333 Linker_Switches.Table (Linker_Switches.Last) :=
4334 Linker_Options (Option);
4335 end loop;
4336 end;
4337 end if;
4339 if CodePeer_Mode then
4340 Linker_Switches.Increment_Last;
4341 Linker_Switches.Table (Linker_Switches.Last) :=
4342 new String'(CodePeer_Mode_String);
4343 end if;
4345 -- Add switch -M to gnatlink if builder switch --create-map-file
4346 -- has been specified.
4348 if Map_File /= null then
4349 Linker_Switches.Increment_Last;
4350 Linker_Switches.Table (Linker_Switches.Last) :=
4351 new String'("-M" & Map_File.all);
4352 end if;
4354 declare
4355 Args : Argument_List
4356 (Linker_Switches.First .. Linker_Switches.Last + 2);
4358 Last_Arg : Integer := Linker_Switches.First - 1;
4359 Skip : Boolean := False;
4361 begin
4362 -- Get all the linker switches
4364 for J in Linker_Switches.First .. Linker_Switches.Last loop
4365 if Skip then
4366 Skip := False;
4368 elsif Non_Std_Executable
4369 and then Linker_Switches.Table (J).all = "-o"
4370 then
4371 Skip := True;
4373 -- Here we capture and duplicate the linker argument. We
4374 -- need to do the duplication since the arguments will get
4375 -- normalized. Not doing so will result in calling normalized
4376 -- two times for the same set of arguments if gnatmake is
4377 -- passed multiple mains. This can result in the wrong argument
4378 -- being passed to the linker.
4380 else
4381 Last_Arg := Last_Arg + 1;
4382 Args (Last_Arg) := new String'(Linker_Switches.Table (J).all);
4383 end if;
4384 end loop;
4386 -- If need be, add the -o switch
4388 if Non_Std_Executable then
4389 Last_Arg := Last_Arg + 1;
4390 Args (Last_Arg) := new String'("-o");
4391 Last_Arg := Last_Arg + 1;
4392 Args (Last_Arg) := new String'(Get_Name_String (Executable));
4393 end if;
4395 -- And invoke the linker
4397 declare
4398 Success : Boolean := False;
4399 begin
4400 -- If gnatmake was invoked with --subdirs and no project file,
4401 -- put the executable in the subdirectory specified.
4403 if Prj.Subdirs /= null and then Main_Project = No_Project then
4404 Change_Dir (Object_Directory_Path.all);
4405 end if;
4407 Link (Main_ALI_File,
4408 Link_With_Shared_Libgcc.all &
4409 Args (Args'First .. Last_Arg),
4410 Success);
4412 if Success then
4413 Successful_Links.Increment_Last;
4414 Successful_Links.Table (Successful_Links.Last) := Main_ALI_File;
4416 elsif Osint.Number_Of_Files = 1
4417 or else not Keep_Going
4418 then
4419 Make_Failed ("*** link failed.");
4421 else
4422 Set_Standard_Error;
4423 Write_Line ("*** link failed");
4425 if Commands_To_Stdout then
4426 Set_Standard_Output;
4427 end if;
4429 Failed_Links.Increment_Last;
4430 Failed_Links.Table (Failed_Links.Last) := Main_ALI_File;
4431 end if;
4432 end;
4433 end;
4435 Linker_Switches.Set_Last (Linker_Switches_Last);
4436 end Linking_Phase;
4438 -------------------
4439 -- Binding_Phase --
4440 -------------------
4442 procedure Binding_Phase
4443 (Stand_Alone_Libraries : Boolean := False;
4444 Main_ALI_File : File_Name_Type)
4446 Args : Argument_List (Binder_Switches.First .. Binder_Switches.Last + 2);
4447 -- The arguments for the invocation of gnatbind
4449 Last_Arg : Natural := Binder_Switches.Last;
4450 -- Index of the last argument in Args
4452 Shared_Libs : Boolean := False;
4453 -- Set to True when there are shared library project files or
4454 -- when gnatbind is invoked with -shared.
4456 Proj : Project_List;
4458 Mapping_Path : Path_Name_Type := No_Path;
4459 -- The path name of the mapping file
4461 begin
4462 -- Check if there are shared libraries, so that gnatbind is called with
4463 -- -shared. Check also if gnatbind is called with -shared, so that
4464 -- gnatlink is called with -shared-libgcc ensuring that the shared
4465 -- version of libgcc will be used.
4467 if Main_Project /= No_Project
4468 and then MLib.Tgt.Support_For_Libraries /= Prj.None
4469 then
4470 Proj := Project_Tree.Projects;
4471 while Proj /= null loop
4472 if Proj.Project.Library
4473 and then Proj.Project.Library_Kind /= Static
4474 then
4475 Shared_Libs := True;
4476 Bind_Shared := Shared_Switch'Access;
4477 exit;
4478 end if;
4480 Proj := Proj.Next;
4481 end loop;
4482 end if;
4484 -- Check now for switch -shared
4486 if not Shared_Libs then
4487 for J in Binder_Switches.First .. Last_Arg loop
4488 if Binder_Switches.Table (J).all = "-shared" then
4489 Shared_Libs := True;
4490 exit;
4491 end if;
4492 end loop;
4493 end if;
4495 -- If shared libraries present, invoke gnatlink with
4496 -- -shared-libgcc.
4498 if Shared_Libs then
4499 Link_With_Shared_Libgcc := Shared_Libgcc_Switch'Access;
4500 end if;
4502 -- Get all the binder switches
4504 for J in Binder_Switches.First .. Last_Arg loop
4505 Args (J) := Binder_Switches.Table (J);
4506 end loop;
4508 if Stand_Alone_Libraries then
4509 Last_Arg := Last_Arg + 1;
4510 Args (Last_Arg) := Force_Elab_Flags_String'Access;
4511 end if;
4513 if CodePeer_Mode then
4514 Last_Arg := Last_Arg + 1;
4515 Args (Last_Arg) := CodePeer_Mode_String'Access;
4516 end if;
4518 if Main_Project /= No_Project then
4520 -- Put all the source directories in ADA_INCLUDE_PATH,
4521 -- and all the object directories in ADA_OBJECTS_PATH,
4522 -- except those of library projects.
4524 Prj.Env.Set_Ada_Paths
4525 (Project => Main_Project,
4526 In_Tree => Project_Tree,
4527 Including_Libraries => False,
4528 Include_Path => Use_Include_Path_File);
4530 -- If switch -C was specified, create a binder mapping file
4532 if Create_Mapping_File then
4533 Mapping_Path := Create_Binder_Mapping_File (Project_Tree);
4535 if Mapping_Path /= No_Path 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 if;
4543 -- If gnatmake was invoked with --subdirs and no project file, put the
4544 -- binder generated files in the subdirectory specified.
4546 if Main_Project = No_Project and then Prj.Subdirs /= null then
4547 Change_Dir (Object_Directory_Path.all);
4548 end if;
4550 begin
4551 Bind (Main_ALI_File,
4552 Bind_Shared.all & Args (Args'First .. Last_Arg));
4554 exception
4555 when others =>
4557 -- Delete the temporary mapping file if one was created
4559 if Mapping_Path /= No_Path then
4560 Delete_Temporary_File (Project_Tree.Shared, Mapping_Path);
4561 end if;
4563 -- And reraise the exception
4565 raise;
4566 end;
4568 -- If -dn was not specified, delete the temporary mapping file
4569 -- if one was created.
4571 if Mapping_Path /= No_Path then
4572 Delete_Temporary_File (Project_Tree.Shared, Mapping_Path);
4573 end if;
4574 end Binding_Phase;
4576 -------------------
4577 -- Library_Phase --
4578 -------------------
4580 procedure Library_Phase
4581 (Stand_Alone_Libraries : in out Boolean;
4582 Library_Rebuilt : in out Boolean)
4584 Depth : Natural;
4585 Current : Natural;
4586 Proj1 : Project_List;
4588 procedure Add_To_Library_Projs (Proj : Project_Id);
4589 -- Add project Project to table Library_Projs in
4590 -- decreasing depth order.
4592 --------------------------
4593 -- Add_To_Library_Projs --
4594 --------------------------
4596 procedure Add_To_Library_Projs (Proj : Project_Id) is
4597 Prj : Project_Id;
4599 begin
4600 Library_Projs.Increment_Last;
4601 Depth := Proj.Depth;
4603 -- Put the projects in decreasing depth order, so that
4604 -- if libA depends on libB, libB is first in order.
4606 Current := Library_Projs.Last;
4607 while Current > 1 loop
4608 Prj := Library_Projs.Table (Current - 1);
4609 exit when Prj.Depth >= Depth;
4610 Library_Projs.Table (Current) := Prj;
4611 Current := Current - 1;
4612 end loop;
4614 Library_Projs.Table (Current) := Proj;
4615 end Add_To_Library_Projs;
4617 begin
4618 Library_Projs.Init;
4620 -- Put in Library_Projs table all library project file
4621 -- ids when the library need to be rebuilt.
4623 Proj1 := Project_Tree.Projects;
4624 while Proj1 /= null loop
4625 if Proj1.Project.Extended_By = No_Project then
4626 if Proj1.Project.Standalone_Library /= No then
4627 Stand_Alone_Libraries := True;
4628 end if;
4630 if Proj1.Project.Library then
4631 MLib.Prj.Check_Library
4632 (Proj1.Project, Project_Tree);
4633 end if;
4635 if Proj1.Project.Need_To_Build_Lib then
4636 Add_To_Library_Projs (Proj1.Project);
4637 end if;
4638 end if;
4640 Proj1 := Proj1.Next;
4641 end loop;
4643 -- Check if importing libraries should be regenerated
4644 -- because at least an imported library will be
4645 -- regenerated or is more recent.
4647 Proj1 := Project_Tree.Projects;
4648 while Proj1 /= null loop
4649 if Proj1.Project.Library
4650 and then Proj1.Project.Extended_By = No_Project
4651 and then Proj1.Project.Library_Kind /= Static
4652 and then not Proj1.Project.Need_To_Build_Lib
4653 and then not Proj1.Project.Externally_Built
4654 then
4655 declare
4656 List : Project_List;
4657 Proj2 : Project_Id;
4658 Rebuild : Boolean := False;
4660 Lib_Timestamp1 : constant Time_Stamp_Type :=
4661 Proj1.Project.Library_TS;
4663 begin
4664 List := Proj1.Project.All_Imported_Projects;
4665 while List /= null loop
4666 Proj2 := List.Project;
4668 if Proj2.Library then
4669 if Proj2.Need_To_Build_Lib
4670 or else
4671 (Lib_Timestamp1 < Proj2.Library_TS)
4672 then
4673 Rebuild := True;
4674 exit;
4675 end if;
4676 end if;
4678 List := List.Next;
4679 end loop;
4681 if Rebuild then
4682 Proj1.Project.Need_To_Build_Lib := True;
4683 Add_To_Library_Projs (Proj1.Project);
4684 end if;
4685 end;
4686 end if;
4688 Proj1 := Proj1.Next;
4689 end loop;
4691 -- Reset the flags Need_To_Build_Lib for the next main, to avoid
4692 -- rebuilding libraries uselessly.
4694 Proj1 := Project_Tree.Projects;
4695 while Proj1 /= null loop
4696 Proj1.Project.Need_To_Build_Lib := False;
4697 Proj1 := Proj1.Next;
4698 end loop;
4700 -- Build the libraries, if any need to be built
4702 for J in 1 .. Library_Projs.Last loop
4703 Library_Rebuilt := True;
4705 -- If a library is rebuilt, then executables are obsolete
4707 Executable_Obsolete := True;
4709 MLib.Prj.Build_Library
4710 (For_Project => Library_Projs.Table (J),
4711 In_Tree => Project_Tree,
4712 Gnatbind => Gnatbind.all,
4713 Gnatbind_Path => Gnatbind_Path,
4714 Gcc => Gcc.all,
4715 Gcc_Path => Gcc_Path);
4716 end loop;
4717 end Library_Phase;
4719 -----------------------
4720 -- Compilation_Phase --
4721 -----------------------
4723 procedure Compilation_Phase
4724 (Main_Source_File : File_Name_Type;
4725 Current_Main_Index : Int := 0;
4726 Total_Compilation_Failures : in out Natural;
4727 Stand_Alone_Libraries : in out Boolean;
4728 Executable : File_Name_Type := No_File;
4729 Is_Last_Main : Boolean;
4730 Stop_Compile : out Boolean)
4732 Args : Argument_List (1 .. Gcc_Switches.Last);
4734 First_Compiled_File : File_Name_Type;
4735 Youngest_Obj_File : File_Name_Type;
4736 Youngest_Obj_Stamp : Time_Stamp_Type;
4738 Is_Main_Unit : Boolean;
4739 -- Set True by Compile_Sources if Main_Source_File can be a main unit
4741 Compilation_Failures : Natural;
4743 Executable_Stamp : Time_Stamp_Type;
4745 Library_Rebuilt : Boolean := False;
4747 begin
4748 Stop_Compile := False;
4750 for J in 1 .. Gcc_Switches.Last loop
4751 Args (J) := Gcc_Switches.Table (J);
4752 end loop;
4754 -- Now we invoke Compile_Sources for the current main
4756 Compile_Sources
4757 (Main_Source => Main_Source_File,
4758 Args => Args,
4759 First_Compiled_File => First_Compiled_File,
4760 Most_Recent_Obj_File => Youngest_Obj_File,
4761 Most_Recent_Obj_Stamp => Youngest_Obj_Stamp,
4762 Main_Unit => Is_Main_Unit,
4763 Main_Index => Current_Main_Index,
4764 Compilation_Failures => Compilation_Failures,
4765 Check_Readonly_Files => Check_Readonly_Files,
4766 Do_Not_Execute => Do_Not_Execute,
4767 Force_Compilations => Force_Compilations,
4768 In_Place_Mode => In_Place_Mode,
4769 Keep_Going => Keep_Going,
4770 Initialize_ALI_Data => True,
4771 Max_Process => Saved_Maximum_Processes);
4773 if Verbose_Mode then
4774 Write_Str ("End of compilation");
4775 Write_Eol;
4776 end if;
4778 Total_Compilation_Failures :=
4779 Total_Compilation_Failures + Compilation_Failures;
4781 if Total_Compilation_Failures /= 0 then
4782 Stop_Compile := True;
4783 return;
4784 end if;
4786 -- Regenerate libraries, if there are any and if object files have been
4787 -- regenerated. Note that we skip this in CodePeer mode because we don't
4788 -- need libraries in this case, and more importantly, the object files
4789 -- may not be present.
4791 if Main_Project /= No_Project
4792 and then not CodePeer_Mode
4793 and then MLib.Tgt.Support_For_Libraries /= Prj.None
4794 and then (Do_Bind_Step
4795 or Unique_Compile_All_Projects
4796 or not Compile_Only)
4797 and then (Do_Link_Step or Is_Last_Main)
4798 then
4799 Library_Phase
4800 (Stand_Alone_Libraries => Stand_Alone_Libraries,
4801 Library_Rebuilt => Library_Rebuilt);
4802 end if;
4804 if List_Dependencies then
4805 if First_Compiled_File /= No_File then
4806 Inform
4807 (First_Compiled_File,
4808 "must be recompiled. Can't generate dependence list.");
4809 else
4810 List_Depend;
4811 end if;
4813 elsif First_Compiled_File = No_File
4814 and then not Do_Bind_Step
4815 and then not Quiet_Output
4816 and then not Library_Rebuilt
4817 and then Osint.Number_Of_Files = 1
4818 then
4819 Inform (Msg => "objects up to date.");
4820 Stop_Compile := True;
4821 return;
4823 elsif Do_Not_Execute and then First_Compiled_File /= No_File then
4824 Write_Name (First_Compiled_File);
4825 Write_Eol;
4826 end if;
4828 -- Stop after compile step if any of:
4830 -- 1) -n (Do_Not_Execute) specified
4832 -- 2) -M (List_Dependencies) specified (also sets
4833 -- Do_Not_Execute above, so this is probably superfluous).
4835 -- 3) -c (Compile_Only) specified, but not -b (Bind_Only)
4837 -- 4) Made unit cannot be a main unit
4839 if ((Do_Not_Execute
4840 or List_Dependencies
4841 or not Do_Bind_Step
4842 or not Is_Main_Unit)
4843 and not No_Main_Subprogram
4844 and not Build_Bind_And_Link_Full_Project)
4845 or Unique_Compile
4846 then
4847 Stop_Compile := True;
4848 return;
4849 end if;
4851 -- If the objects were up-to-date check if the executable file is also
4852 -- up-to-date. For now always bind and link on the JVM since there is
4853 -- currently no simple way to check whether objects are up to date wrt
4854 -- the executable. Same in CodePeer mode where there is no executable.
4856 if Targparm.VM_Target /= JVM_Target
4857 and then not CodePeer_Mode
4858 and then First_Compiled_File = No_File
4859 then
4860 Executable_Stamp := File_Stamp (Executable);
4862 if not Executable_Obsolete then
4863 Executable_Obsolete := Youngest_Obj_Stamp > Executable_Stamp;
4864 end if;
4866 if not Executable_Obsolete then
4867 for Index in reverse 1 .. Dependencies.Last loop
4868 if Is_In_Obsoleted (Dependencies.Table (Index).Depends_On) then
4869 Enter_Into_Obsoleted (Dependencies.Table (Index).This);
4870 end if;
4871 end loop;
4873 Executable_Obsolete := Is_In_Obsoleted (Main_Source_File);
4874 Dependencies.Init;
4875 end if;
4877 if not Executable_Obsolete then
4879 -- If no Ada object files obsolete the executable, check
4880 -- for younger or missing linker files.
4882 Check_Linker_Options
4883 (Executable_Stamp,
4884 Youngest_Obj_File,
4885 Youngest_Obj_Stamp);
4887 Executable_Obsolete := Youngest_Obj_File /= No_File;
4888 end if;
4890 -- Check if any library file is more recent than the
4891 -- executable: there may be an externally built library
4892 -- file that has been modified.
4894 if not Executable_Obsolete and then Main_Project /= No_Project then
4895 declare
4896 Proj1 : Project_List;
4898 begin
4899 Proj1 := Project_Tree.Projects;
4900 while Proj1 /= null loop
4901 if Proj1.Project.Library
4902 and then Proj1.Project.Library_TS > Executable_Stamp
4903 then
4904 Executable_Obsolete := True;
4905 Youngest_Obj_Stamp := Proj1.Project.Library_TS;
4906 Name_Len := 0;
4907 Add_Str_To_Name_Buffer ("library ");
4908 Add_Str_To_Name_Buffer
4909 (Get_Name_String (Proj1.Project.Library_Name));
4910 Youngest_Obj_File := Name_Find;
4911 exit;
4912 end if;
4914 Proj1 := Proj1.Next;
4915 end loop;
4916 end;
4917 end if;
4919 -- Return if the executable is up to date and otherwise
4920 -- motivate the relink/rebind.
4922 if not Executable_Obsolete then
4923 if not Quiet_Output then
4924 Inform (Executable, "up to date.");
4925 end if;
4927 Stop_Compile := True;
4928 return;
4929 end if;
4931 if Executable_Stamp (1) = ' ' then
4932 if not No_Main_Subprogram then
4933 Verbose_Msg (Executable, "missing.", Prefix => " ");
4934 end if;
4936 elsif Youngest_Obj_Stamp (1) = ' ' then
4937 Verbose_Msg
4938 (Youngest_Obj_File, "missing.", Prefix => " ");
4940 elsif Youngest_Obj_Stamp > Executable_Stamp then
4941 Verbose_Msg
4942 (Youngest_Obj_File,
4943 "(" & String (Youngest_Obj_Stamp) & ") newer than",
4944 Executable,
4945 "(" & String (Executable_Stamp) & ")");
4947 else
4948 Verbose_Msg
4949 (Executable, "needs to be rebuilt", Prefix => " ");
4951 end if;
4952 end if;
4953 end Compilation_Phase;
4955 ----------------------------------------
4956 -- Resolve_Relative_Names_In_Switches --
4957 ----------------------------------------
4959 procedure Resolve_Relative_Names_In_Switches (Current_Work_Dir : String) is
4960 begin
4961 -- If a relative path output file has been specified, we add the
4962 -- exec directory.
4964 for J in reverse 1 .. Saved_Linker_Switches.Last - 1 loop
4965 if Saved_Linker_Switches.Table (J).all = Output_Flag.all then
4966 declare
4967 Exec_File_Name : constant String :=
4968 Saved_Linker_Switches.Table (J + 1).all;
4970 begin
4971 if not Is_Absolute_Path (Exec_File_Name) then
4972 Get_Name_String (Main_Project.Exec_Directory.Display_Name);
4973 Add_Str_To_Name_Buffer (Exec_File_Name);
4974 Saved_Linker_Switches.Table (J + 1) :=
4975 new String'(Name_Buffer (1 .. Name_Len));
4976 end if;
4977 end;
4979 exit;
4980 end if;
4981 end loop;
4983 -- If we are using a project file, for relative paths we add the
4984 -- current working directory for any relative path on the command
4985 -- line and the project directory, for any relative path in the
4986 -- project file.
4988 declare
4989 Dir_Path : constant String :=
4990 Get_Name_String (Main_Project.Directory.Display_Name);
4991 begin
4992 for J in 1 .. Binder_Switches.Last loop
4993 Ensure_Absolute_Path
4994 (Binder_Switches.Table (J),
4995 Do_Fail => Make_Failed'Access,
4996 Parent => Dir_Path, For_Gnatbind => True);
4997 end loop;
4999 for J in 1 .. Saved_Binder_Switches.Last loop
5000 Ensure_Absolute_Path
5001 (Saved_Binder_Switches.Table (J),
5002 Do_Fail => Make_Failed'Access,
5003 Parent => Current_Work_Dir,
5004 For_Gnatbind => True);
5005 end loop;
5007 for J in 1 .. Linker_Switches.Last loop
5008 Ensure_Absolute_Path
5009 (Linker_Switches.Table (J),
5010 Parent => Dir_Path,
5011 Do_Fail => Make_Failed'Access);
5012 end loop;
5014 for J in 1 .. Saved_Linker_Switches.Last loop
5015 Ensure_Absolute_Path
5016 (Saved_Linker_Switches.Table (J),
5017 Do_Fail => Make_Failed'Access,
5018 Parent => Current_Work_Dir);
5019 end loop;
5021 for J in 1 .. Gcc_Switches.Last loop
5022 Ensure_Absolute_Path
5023 (Gcc_Switches.Table (J),
5024 Do_Fail => Make_Failed'Access,
5025 Parent => Dir_Path,
5026 Including_Non_Switch => False);
5027 end loop;
5029 for J in 1 .. Saved_Gcc_Switches.Last loop
5030 Ensure_Absolute_Path
5031 (Saved_Gcc_Switches.Table (J),
5032 Parent => Current_Work_Dir,
5033 Do_Fail => Make_Failed'Access,
5034 Including_Non_Switch => False);
5035 end loop;
5036 end;
5037 end Resolve_Relative_Names_In_Switches;
5039 -----------------------------------
5040 -- Queue_Library_Project_Sources --
5041 -----------------------------------
5043 procedure Queue_Library_Project_Sources is
5044 begin
5045 if not Unique_Compile
5046 and then MLib.Tgt.Support_For_Libraries /= Prj.None
5047 then
5048 declare
5049 Proj : Project_List;
5051 begin
5052 Proj := Project_Tree.Projects;
5053 while Proj /= null loop
5054 if Proj.Project.Library then
5055 Proj.Project.Need_To_Build_Lib :=
5056 not MLib.Tgt.Library_Exists_For
5057 (Proj.Project, Project_Tree)
5058 and then not Proj.Project.Externally_Built;
5060 if Proj.Project.Need_To_Build_Lib then
5062 -- If there is no object directory, then it will be
5063 -- impossible to build the library, so fail immediately.
5065 if Proj.Project.Object_Directory =
5066 No_Path_Information
5067 then
5068 Make_Failed
5069 ("no object files to build library for"
5070 & " project """
5071 & Get_Name_String (Proj.Project.Name)
5072 & """");
5073 Proj.Project.Need_To_Build_Lib := False;
5075 else
5076 if Verbose_Mode then
5077 Write_Str
5078 ("Library file does not exist for "
5079 & "project """);
5080 Write_Str
5081 (Get_Name_String (Proj.Project.Name));
5082 Write_Line ("""");
5083 end if;
5085 Insert_Project_Sources
5086 (The_Project => Proj.Project,
5087 All_Projects => False,
5088 Into_Q => True);
5089 end if;
5090 end if;
5091 end if;
5093 Proj := Proj.Next;
5094 end loop;
5095 end;
5096 end if;
5097 end Queue_Library_Project_Sources;
5099 ------------------------
5100 -- Compute_Executable --
5101 ------------------------
5103 procedure Compute_Executable
5104 (Main_Source_File : File_Name_Type;
5105 Executable : out File_Name_Type;
5106 Non_Std_Executable : out Boolean)
5108 begin
5109 Executable := No_File;
5110 Non_Std_Executable :=
5111 Targparm.Executable_Extension_On_Target /= No_Name;
5113 -- Look inside the linker switches to see if the name of the final
5114 -- executable program was specified.
5116 for J in reverse Linker_Switches.First .. Linker_Switches.Last loop
5117 if Linker_Switches.Table (J).all = Output_Flag.all then
5118 pragma Assert (J < Linker_Switches.Last);
5120 -- We cannot specify a single executable for several main
5121 -- subprograms
5123 if Osint.Number_Of_Files > 1 then
5124 Fail ("cannot specify a single executable for several mains");
5125 end if;
5127 Name_Len := 0;
5128 Add_Str_To_Name_Buffer (Linker_Switches.Table (J + 1).all);
5129 Executable := Name_Enter;
5131 Verbose_Msg (Executable, "final executable");
5132 end if;
5133 end loop;
5135 -- If the name of the final executable program was not specified then
5136 -- construct it from the main input file.
5138 if Executable = No_File then
5139 if Main_Project = No_Project then
5140 Executable := Executable_Name (Strip_Suffix (Main_Source_File));
5142 else
5143 -- If we are using a project file, we attempt to remove the body
5144 -- (or spec) termination of the main subprogram. We find it the
5145 -- naming scheme of the project file. This avoids generating an
5146 -- executable "main.2" for a main subprogram "main.2.ada", when
5147 -- the body termination is ".2.ada".
5149 Executable :=
5150 Prj.Util.Executable_Of
5151 (Main_Project, Project_Tree.Shared,
5152 Main_Source_File, Main_Index);
5153 end if;
5154 end if;
5156 if Main_Project /= No_Project
5157 and then Main_Project.Exec_Directory /= No_Path_Information
5158 then
5159 declare
5160 Exec_File_Name : constant String := Get_Name_String (Executable);
5161 begin
5162 if not Is_Absolute_Path (Exec_File_Name) then
5163 Get_Name_String (Main_Project.Exec_Directory.Display_Name);
5164 Add_Str_To_Name_Buffer (Exec_File_Name);
5165 Executable := Name_Find;
5166 end if;
5168 Non_Std_Executable := True;
5169 end;
5170 end if;
5171 end Compute_Executable;
5173 -------------------------------
5174 -- Compute_Switches_For_Main --
5175 -------------------------------
5177 procedure Compute_Switches_For_Main
5178 (Main_Source_File : in out File_Name_Type;
5179 Root_Environment : in out Prj.Tree.Environment;
5180 Compute_Builder : Boolean;
5181 Current_Work_Dir : String)
5183 function Add_Global_Switches
5184 (Switch : String;
5185 For_Lang : Name_Id;
5186 For_Builder : Boolean;
5187 Has_Global_Compilation_Switches : Boolean) return Boolean;
5188 -- Handles builder and global compilation switches, as read from the
5189 -- project file.
5191 function Add_Global_Switches
5192 (Switch : String;
5193 For_Lang : Name_Id;
5194 For_Builder : Boolean;
5195 Has_Global_Compilation_Switches : Boolean) return Boolean
5197 pragma Unreferenced (For_Lang);
5198 begin
5199 if For_Builder then
5200 Program_Args := None;
5201 Switch_May_Be_Passed_To_The_Compiler :=
5202 not Has_Global_Compilation_Switches;
5203 Scan_Make_Arg (Root_Environment, Switch, And_Save => False);
5205 return Gnatmake_Switch_Found
5206 or else Switch_May_Be_Passed_To_The_Compiler;
5207 else
5208 Add_Switch (Switch, Compiler, And_Save => False);
5209 return True;
5210 end if;
5211 end Add_Global_Switches;
5213 procedure Do_Compute_Builder_Switches
5214 is new Makeutl.Compute_Builder_Switches (Add_Global_Switches);
5215 begin
5216 if Main_Project /= No_Project then
5217 declare
5218 Main_Source_File_Name : constant String :=
5219 Get_Name_String (Main_Source_File);
5221 Main_Unit_File_Name : constant String :=
5222 Prj.Env.File_Name_Of_Library_Unit_Body
5223 (Name => Main_Source_File_Name,
5224 Project => Main_Project,
5225 In_Tree => Project_Tree,
5226 Main_Project_Only => not Unique_Compile);
5228 The_Packages : constant Package_Id := Main_Project.Decl.Packages;
5230 Binder_Package : constant Prj.Package_Id :=
5231 Prj.Util.Value_Of
5232 (Name => Name_Binder,
5233 In_Packages => The_Packages,
5234 Shared => Project_Tree.Shared);
5236 Linker_Package : constant Prj.Package_Id :=
5237 Prj.Util.Value_Of
5238 (Name => Name_Linker,
5239 In_Packages => The_Packages,
5240 Shared => Project_Tree.Shared);
5242 begin
5243 -- We fail if we cannot find the main source file
5245 if Main_Unit_File_Name = "" then
5246 Make_Failed ('"' & Main_Source_File_Name
5247 & """ is not a unit of project "
5248 & Project_File_Name.all & ".");
5249 end if;
5251 -- Remove any directory information from the main source file
5252 -- file name.
5254 declare
5255 Pos : Natural := Main_Unit_File_Name'Last;
5257 begin
5258 loop
5259 exit when Pos < Main_Unit_File_Name'First
5260 or else Main_Unit_File_Name (Pos) = Directory_Separator;
5261 Pos := Pos - 1;
5262 end loop;
5264 Name_Len := Main_Unit_File_Name'Last - Pos;
5266 Name_Buffer (1 .. Name_Len) :=
5267 Main_Unit_File_Name (Pos + 1 .. Main_Unit_File_Name'Last);
5269 Main_Source_File := Name_Find;
5271 -- We only output the main source file if there is only one
5273 if Verbose_Mode and then Osint.Number_Of_Files = 1 then
5274 Write_Str ("Main source file: """);
5275 Write_Str (Main_Unit_File_Name
5276 (Pos + 1 .. Main_Unit_File_Name'Last));
5277 Write_Line (""".");
5278 end if;
5279 end;
5281 if Compute_Builder then
5282 Do_Compute_Builder_Switches
5283 (Project_Tree => Project_Tree,
5284 Root_Environment => Root_Environment,
5285 Main_Project => Main_Project,
5286 Only_For_Lang => Name_Ada);
5288 Resolve_Relative_Names_In_Switches
5289 (Current_Work_Dir => Current_Work_Dir);
5291 -- Record current last switch index for tables Binder_Switches
5292 -- and Linker_Switches, so that these tables may be reset
5293 -- before each main, before adding switches from the project
5294 -- file and from the command line.
5296 Last_Binder_Switch := Binder_Switches.Last;
5297 Last_Linker_Switch := Linker_Switches.Last;
5299 else
5300 -- Reset the tables Binder_Switches and Linker_Switches
5302 Binder_Switches.Set_Last (Last_Binder_Switch);
5303 Linker_Switches.Set_Last (Last_Linker_Switch);
5304 end if;
5306 -- We now deal with the binder and linker switches. If no project
5307 -- file is used, there is nothing to do because the binder and
5308 -- linker switches are the same for all mains.
5310 -- Add binder switches from the project file for the first main
5312 if Do_Bind_Step and then Binder_Package /= No_Package then
5313 if Verbose_Mode then
5314 Write_Str ("Adding binder switches for """);
5315 Write_Str (Main_Unit_File_Name);
5316 Write_Line (""".");
5317 end if;
5319 Add_Switches
5320 (Env => Root_Environment,
5321 File_Name => Main_Unit_File_Name,
5322 The_Package => Binder_Package,
5323 Program => Binder);
5324 end if;
5326 -- Add linker switches from the project file for the first main
5328 if Do_Link_Step and then Linker_Package /= No_Package then
5329 if Verbose_Mode then
5330 Write_Str ("Adding linker switches for""");
5331 Write_Str (Main_Unit_File_Name);
5332 Write_Line (""".");
5333 end if;
5335 Add_Switches
5336 (Env => Root_Environment,
5337 File_Name => Main_Unit_File_Name,
5338 The_Package => Linker_Package,
5339 Program => Linker);
5340 end if;
5342 -- As we are using a project file, for relative paths we add the
5343 -- current working directory for any relative path on the command
5344 -- line and the project directory, for any relative path in the
5345 -- project file.
5347 declare
5348 Dir_Path : constant String :=
5349 Get_Name_String (Main_Project.Directory.Display_Name);
5350 begin
5351 for J in Last_Binder_Switch + 1 .. Binder_Switches.Last loop
5352 Ensure_Absolute_Path
5353 (Binder_Switches.Table (J),
5354 Do_Fail => Make_Failed'Access,
5355 Parent => Dir_Path, For_Gnatbind => True);
5356 end loop;
5358 for J in Last_Linker_Switch + 1 .. Linker_Switches.Last loop
5359 Ensure_Absolute_Path
5360 (Linker_Switches.Table (J),
5361 Parent => Dir_Path,
5362 Do_Fail => Make_Failed'Access);
5363 end loop;
5364 end;
5365 end;
5367 else
5368 if not Compute_Builder then
5370 -- Reset the tables Binder_Switches and Linker_Switches
5372 Binder_Switches.Set_Last (Last_Binder_Switch);
5373 Linker_Switches.Set_Last (Last_Linker_Switch);
5374 end if;
5375 end if;
5377 Check_Steps;
5379 if Compute_Builder then
5380 Display_Commands (not Quiet_Output);
5381 end if;
5383 -- We now put in the Binder_Switches and Linker_Switches tables, the
5384 -- binder and linker switches of the command line that have been put in
5385 -- the Saved_ tables. If a project file was used, then the command line
5386 -- switches will follow the project file switches.
5388 for J in 1 .. Saved_Binder_Switches.Last loop
5389 Add_Switch
5390 (Saved_Binder_Switches.Table (J),
5391 Binder,
5392 And_Save => False);
5393 end loop;
5395 for J in 1 .. Saved_Linker_Switches.Last loop
5396 Add_Switch
5397 (Saved_Linker_Switches.Table (J),
5398 Linker,
5399 And_Save => False);
5400 end loop;
5401 end Compute_Switches_For_Main;
5403 --------------
5404 -- Gnatmake --
5405 --------------
5407 procedure Gnatmake is
5408 Main_Source_File : File_Name_Type;
5409 -- The source file containing the main compilation unit
5411 Total_Compilation_Failures : Natural := 0;
5413 Main_ALI_File : File_Name_Type;
5414 -- The ali file corresponding to Main_Source_File
5416 Executable : File_Name_Type := No_File;
5417 -- The file name of an executable
5419 Non_Std_Executable : Boolean := False;
5420 -- Non_Std_Executable is set to True when there is a possibility that
5421 -- the linker will not choose the correct executable file name.
5423 Current_Work_Dir : constant String_Access :=
5424 new String'(Get_Current_Dir);
5425 -- The current working directory, used to modify some relative path
5426 -- switches on the command line when a project file is used.
5428 Current_Main_Index : Int := 0;
5429 -- If not zero, the index of the current main unit in its source file
5431 Is_First_Main : Boolean;
5432 -- Whether we are processing the first main
5434 Stand_Alone_Libraries : Boolean := False;
5435 -- Set to True when there are Stand-Alone Libraries, so that gnatbind
5436 -- is invoked with the -F switch to force checking of elaboration flags.
5438 Project_Node_Tree : Project_Node_Tree_Ref;
5439 Root_Environment : Prj.Tree.Environment;
5441 Stop_Compile : Boolean;
5443 Discard : Boolean;
5444 pragma Warnings (Off, Discard);
5446 procedure Check_Mains;
5447 -- Check that the main subprograms do exist and that they all
5448 -- belong to the same project file.
5450 -----------------
5451 -- Check_Mains --
5452 -----------------
5454 procedure Check_Mains is
5455 Real_Main_Project : Project_Id := No_Project;
5456 Info : Main_Info;
5457 Proj : Project_Id;
5458 begin
5459 if Mains.Number_Of_Mains (Project_Tree) = 0
5460 and then not Unique_Compile
5461 then
5462 Mains.Fill_From_Project (Main_Project, Project_Tree);
5463 end if;
5465 Mains.Complete_Mains
5466 (Root_Environment.Flags, Main_Project, Project_Tree);
5468 -- If we have multiple mains on the command line, they need not
5469 -- belong to the root project, but they must all belong to the same
5470 -- project.
5472 if not Unique_Compile then
5473 Mains.Reset;
5474 loop
5475 Info := Mains.Next_Main;
5476 exit when Info = No_Main_Info;
5478 Proj := Ultimate_Extending_Project_Of (Info.Project);
5480 if Real_Main_Project = No_Project then
5481 Real_Main_Project := Proj;
5482 elsif Real_Main_Project /= Proj then
5483 Make_Failed
5484 ("""" & Get_Name_String (Info.File) &
5485 """ is not a source of project " &
5486 Get_Name_String (Real_Main_Project.Name));
5487 end if;
5488 end loop;
5490 if Real_Main_Project /= No_Project then
5491 Main_Project := Real_Main_Project;
5492 end if;
5494 Debug_Output ("After checking mains, main project is",
5495 Main_Project.Name);
5497 else
5498 -- For all mains on the command line, make sure they were in
5499 -- osint. In particular, if the user has specified a multi-unit
5500 -- source file, the call to Complete_Mains will have expanded
5501 -- the list of mains to all its units, and we must now put them
5502 -- back on the command line.
5503 -- ??? This will not be necessary when gnatmake shares the same
5504 -- queue as gprbuild and processes the file directly on the queue.
5506 Mains.Reset;
5507 loop
5508 Info := Mains.Next_Main;
5509 exit when Info = No_Main_Info;
5511 if Info.Index /= 0 then
5512 Debug_Output ("Add to command line index="
5513 & Info.Index'Img, Name_Id (Info.File));
5514 Osint.Add_File (Get_Name_String (Info.File), Info.Index);
5515 end if;
5516 end loop;
5517 end if;
5518 end Check_Mains;
5520 -- Start of processing for Gnatmake
5522 -- This body is very long, should be broken down???
5524 begin
5525 Install_Int_Handler (Sigint_Intercepted'Access);
5527 Do_Compile_Step := True;
5528 Do_Bind_Step := True;
5529 Do_Link_Step := True;
5531 Obsoleted.Reset;
5533 Make.Initialize (Project_Node_Tree, Root_Environment);
5535 Bind_Shared := No_Shared_Switch'Access;
5536 Link_With_Shared_Libgcc := No_Shared_Libgcc_Switch'Access;
5538 Failed_Links.Set_Last (0);
5539 Successful_Links.Set_Last (0);
5541 -- Special case when switch -B was specified
5543 if Build_Bind_And_Link_Full_Project then
5545 -- When switch -B is specified, there must be a project file
5547 if Main_Project = No_Project then
5548 Make_Failed ("-B cannot be used without a project file");
5550 -- No main program may be specified on the command line
5552 elsif Osint.Number_Of_Files /= 0 then
5553 Make_Failed ("-B cannot be used with a main specified on " &
5554 "the command line");
5556 -- And the project file cannot be a library project file
5558 elsif Main_Project.Library then
5559 Make_Failed ("-B cannot be used for a library project file");
5561 else
5562 No_Main_Subprogram := True;
5563 Insert_Project_Sources
5564 (The_Project => Main_Project,
5565 All_Projects => Unique_Compile_All_Projects,
5566 Into_Q => False);
5568 -- If there are no sources to compile, we fail
5570 if Osint.Number_Of_Files = 0 then
5571 Make_Failed ("no sources to compile");
5572 end if;
5574 -- Specify -n for gnatbind and add the ALI files of all the
5575 -- sources, except the one which is a fake main subprogram: this
5576 -- is the one for the binder generated file and it will be
5577 -- transmitted to gnatlink. These sources are those that are in
5578 -- the queue.
5580 Add_Switch ("-n", Binder, And_Save => True);
5582 for J in 1 .. Queue.Size loop
5583 Add_Switch
5584 (Get_Name_String (Lib_File_Name (Queue.Element (J))),
5585 Binder, And_Save => True);
5586 end loop;
5587 end if;
5589 elsif Main_Index /= 0 and then Osint.Number_Of_Files > 1 then
5590 Make_Failed ("cannot specify several mains with a multi-unit index");
5592 elsif Main_Project /= No_Project then
5594 -- If the main project file is a library project file, main(s) cannot
5595 -- be specified on the command line.
5597 if Osint.Number_Of_Files /= 0 then
5598 if Main_Project.Library
5599 and then not Unique_Compile
5600 and then ((not Make_Steps) or else Bind_Only or else Link_Only)
5601 then
5602 Make_Failed ("cannot specify a main program " &
5603 "on the command line for a library project file");
5604 end if;
5606 -- If no mains have been specified on the command line, and we are
5607 -- using a project file, we either find the main(s) in attribute Main
5608 -- of the main project, or we put all the sources of the project file
5609 -- as mains.
5611 else
5612 if Main_Index /= 0 then
5613 Make_Failed ("cannot specify a multi-unit index but no main " &
5614 "on the command line");
5615 end if;
5617 declare
5618 Value : String_List_Id := Main_Project.Mains;
5620 begin
5621 -- The attribute Main is an empty list or not specified, or
5622 -- else gnatmake was invoked with the switch "-u".
5624 if Value = Prj.Nil_String or else Unique_Compile then
5626 if not Make_Steps
5627 or Compile_Only
5628 or not Main_Project.Library
5629 then
5630 -- First make sure that the binder and the linker will
5631 -- not be invoked.
5633 Do_Bind_Step := False;
5634 Do_Link_Step := False;
5636 -- Put all the sources in the queue
5638 No_Main_Subprogram := True;
5639 Insert_Project_Sources
5640 (The_Project => Main_Project,
5641 All_Projects => Unique_Compile_All_Projects,
5642 Into_Q => False);
5644 -- If no sources to compile, then there is nothing to do
5646 if Osint.Number_Of_Files = 0 then
5647 if not Quiet_Output then
5648 Osint.Write_Program_Name;
5649 Write_Line (": no sources to compile");
5650 end if;
5652 Finish_Program (Project_Tree, E_Success);
5653 end if;
5654 end if;
5656 else
5657 -- The attribute Main is not an empty list. Put all the main
5658 -- subprograms in the list as if they were specified on the
5659 -- command line. However, if attribute Languages includes a
5660 -- language other than Ada, only include the Ada mains; if
5661 -- there is no Ada main, compile all sources of the project.
5663 declare
5664 Languages : constant Variable_Value :=
5665 Prj.Util.Value_Of
5666 (Name_Languages,
5667 Main_Project.Decl.Attributes,
5668 Project_Tree.Shared);
5670 Current : String_List_Id;
5671 Element : String_Element;
5673 Foreign_Language : Boolean := False;
5674 At_Least_One_Main : Boolean := False;
5676 begin
5677 -- First, determine if there is a foreign language in
5678 -- attribute Languages.
5680 if not Languages.Default then
5681 Current := Languages.Values;
5682 Look_For_Foreign :
5683 while Current /= Nil_String loop
5684 Element := Project_Tree.Shared.String_Elements.
5685 Table (Current);
5686 Get_Name_String (Element.Value);
5687 To_Lower (Name_Buffer (1 .. Name_Len));
5689 if Name_Buffer (1 .. Name_Len) /= "ada" then
5690 Foreign_Language := True;
5691 exit Look_For_Foreign;
5692 end if;
5694 Current := Element.Next;
5695 end loop Look_For_Foreign;
5696 end if;
5698 -- Then, find all mains, or if there is a foreign
5699 -- language, all the Ada mains.
5701 while Value /= Prj.Nil_String loop
5702 -- To know if a main is an Ada main, get its project.
5703 -- It should be the project specified on the command
5704 -- line.
5706 Get_Name_String
5707 (Project_Tree.Shared.String_Elements.Table
5708 (Value).Value);
5710 declare
5711 Main_Name : constant String :=
5712 Get_Name_String
5713 (Project_Tree.Shared.
5714 String_Elements.
5715 Table (Value).Value);
5717 Proj : constant Project_Id :=
5718 Prj.Env.Project_Of
5719 (Main_Name, Main_Project, Project_Tree);
5721 begin
5722 if Proj = Main_Project then
5723 At_Least_One_Main := True;
5724 Osint.Add_File
5725 (Get_Name_String
5726 (Project_Tree.Shared.String_Elements.Table
5727 (Value).Value),
5728 Index =>
5729 Project_Tree.Shared.String_Elements.Table
5730 (Value).Index);
5732 elsif not Foreign_Language then
5733 Make_Failed
5734 ("""" & Main_Name &
5735 """ is not a source of project " &
5736 Get_Name_String (Main_Project.Display_Name));
5737 end if;
5738 end;
5740 Value := Project_Tree.Shared.String_Elements.Table
5741 (Value).Next;
5742 end loop;
5744 -- If we did not get any main, it means that all mains
5745 -- in attribute Mains are in a foreign language and -B
5746 -- was not specified to gnatmake; so, we fail.
5748 if not At_Least_One_Main then
5749 Make_Failed
5750 ("no Ada mains, use -B to build foreign main");
5751 end if;
5752 end;
5754 end if;
5755 end;
5756 end if;
5758 -- Check that each main on the command line is a source of a
5759 -- project file and, if there are several mains, each of them
5760 -- is a source of the same project file.
5762 Check_Mains;
5763 end if;
5765 if Verbose_Mode then
5766 Write_Eol;
5767 Display_Version ("GNATMAKE", "1995");
5768 end if;
5770 if Osint.Number_Of_Files = 0 then
5771 if Main_Project /= No_Project and then Main_Project.Library then
5772 if Do_Bind_Step
5773 and then Main_Project.Standalone_Library = No
5774 then
5775 Make_Failed ("only stand-alone libraries may be bound");
5776 end if;
5778 -- Add the default search directories to be able to find libgnat
5780 Osint.Add_Default_Search_Dirs;
5782 -- Get the target parameters, so that the correct binder generated
5783 -- files are generated if OpenVMS is the target.
5785 begin
5786 Targparm.Get_Target_Parameters;
5788 exception
5789 when Unrecoverable_Error =>
5790 Make_Failed ("*** make failed.");
5791 end;
5793 -- And bind and or link the library
5795 MLib.Prj.Build_Library
5796 (For_Project => Main_Project,
5797 In_Tree => Project_Tree,
5798 Gnatbind => Gnatbind.all,
5799 Gnatbind_Path => Gnatbind_Path,
5800 Gcc => Gcc.all,
5801 Gcc_Path => Gcc_Path,
5802 Bind => Bind_Only,
5803 Link => Link_Only);
5805 Finish_Program (Project_Tree, E_Success);
5807 else
5808 -- Call Get_Target_Parameters to ensure that VM_Target and
5809 -- AAMP_On_Target get set before calling Usage.
5811 Targparm.Get_Target_Parameters;
5813 -- Output usage information if no files to compile
5815 Usage;
5816 Finish_Program (Project_Tree, E_Success);
5817 end if;
5818 end if;
5820 -- Get the first executable.
5821 -- ??? This needs to be done early, because Osint.Next_Main_File also
5822 -- initializes the primary search directory, used below to initialize
5823 -- the "-I" parameter
5825 Main_Source_File := Next_Main_Source; -- No directory information
5827 -- If -M was specified, behave as if -n was specified
5829 if List_Dependencies then
5830 Do_Not_Execute := True;
5831 end if;
5833 Add_Switch ("-I-", Compiler, And_Save => True);
5835 if Main_Project = No_Project then
5836 if Look_In_Primary_Dir then
5837 Add_Switch
5838 ("-I" &
5839 Normalize_Directory_Name
5840 (Get_Primary_Src_Search_Directory.all).all,
5841 Compiler, Append_Switch => False,
5842 And_Save => False);
5844 end if;
5846 else
5847 -- If we use a project file, we have already checked that a main
5848 -- specified on the command line with directory information has the
5849 -- path name corresponding to a correct source in the project tree.
5850 -- So, we don't need the directory information to be taken into
5851 -- account by Find_File, and in fact it may lead to take the wrong
5852 -- sources for other compilation units, when there are extending
5853 -- projects.
5855 Look_In_Primary_Dir := False;
5856 Add_Switch ("-I-", Binder, And_Save => True);
5857 end if;
5859 -- If the user wants a program without a main subprogram, add the
5860 -- appropriate switch to the binder.
5862 if No_Main_Subprogram then
5863 Add_Switch ("-z", Binder, And_Save => True);
5864 end if;
5866 if Main_Project /= No_Project then
5868 if Main_Project.Object_Directory /= No_Path_Information then
5870 -- Change current directory to object directory of main project
5872 Project_Of_Current_Object_Directory := No_Project;
5873 Change_To_Object_Directory (Main_Project);
5874 end if;
5876 -- Source file lookups should be cached for efficiency. Source files
5877 -- are not supposed to change.
5879 Osint.Source_File_Data (Cache => True);
5881 Queue_Library_Project_Sources;
5882 end if;
5884 -- The combination of -f -u and one or several mains on the command line
5885 -- implies -a.
5887 if Force_Compilations
5888 and then Unique_Compile
5889 and then not Unique_Compile_All_Projects
5890 and then Main_On_Command_Line
5891 then
5892 Must_Compile := True;
5893 end if;
5895 if Main_Project /= No_Project
5896 and then not Must_Compile
5897 and then Main_Project.Externally_Built
5898 then
5899 Make_Failed
5900 ("nothing to do for a main project that is externally built");
5901 end if;
5903 -- If no project file is used, we just put the gcc switches
5904 -- from the command line in the Gcc_Switches table.
5906 if Main_Project = No_Project then
5907 for J in 1 .. Saved_Gcc_Switches.Last loop
5908 Add_Switch
5909 (Saved_Gcc_Switches.Table (J), Compiler, And_Save => False);
5910 end loop;
5912 else
5913 -- If there is a project, put the command line gcc switches in the
5914 -- variable The_Saved_Gcc_Switches. They are going to be used later
5915 -- in procedure Compile_Sources.
5917 The_Saved_Gcc_Switches :=
5918 new Argument_List (1 .. Saved_Gcc_Switches.Last + 1);
5920 for J in 1 .. Saved_Gcc_Switches.Last loop
5921 The_Saved_Gcc_Switches (J) := Saved_Gcc_Switches.Table (J);
5922 end loop;
5924 -- We never use gnat.adc when a project file is used
5926 The_Saved_Gcc_Switches (The_Saved_Gcc_Switches'Last) := No_gnat_adc;
5927 end if;
5929 -- If there was a --GCC, --GNATBIND or --GNATLINK switch on the command
5930 -- line, then we have to use it, even if there was another switch in
5931 -- the project file.
5933 if Saved_Gcc /= null then
5934 Gcc := Saved_Gcc;
5935 end if;
5937 if Saved_Gnatbind /= null then
5938 Gnatbind := Saved_Gnatbind;
5939 end if;
5941 if Saved_Gnatlink /= null then
5942 Gnatlink := Saved_Gnatlink;
5943 end if;
5945 Bad_Compilation.Init;
5947 -- If project files are used, create the mapping of all the sources, so
5948 -- that the correct paths will be found. Otherwise, if there is a file
5949 -- which is not a source with the same name in a source directory this
5950 -- file may be incorrectly found.
5952 if Main_Project /= No_Project then
5953 Prj.Env.Create_Mapping (Project_Tree);
5954 end if;
5956 -- Here is where the make process is started
5958 Queue.Initialize
5959 (Main_Project /= No_Project and then One_Compilation_Per_Obj_Dir);
5961 Is_First_Main := True;
5963 Multiple_Main_Loop : for N_File in 1 .. Osint.Number_Of_Files loop
5964 if Current_File_Index /= No_Index then
5965 Main_Index := Current_File_Index;
5966 end if;
5968 Current_Main_Index := Main_Index;
5970 if Current_Main_Index = 0
5971 and then Unique_Compile
5972 and then Main_Project /= No_Project
5973 then
5974 -- If this is a multi-unit source, do not compile it as is (ie
5975 -- without specifying which unit to compile)
5976 -- Insert_Project_Sources has added each of the unit separately.
5978 declare
5979 Source : constant Prj.Source_Id := Find_Source
5980 (In_Tree => Project_Tree,
5981 Project => Main_Project,
5982 Base_Name => Main_Source_File,
5983 Index => Current_Main_Index,
5984 In_Imported_Only => True);
5985 begin
5986 if Source /= No_Source
5987 and then Source.Index /= 0
5988 then
5989 goto Next_Main;
5990 end if;
5991 end;
5992 end if;
5994 Compute_Switches_For_Main
5995 (Main_Source_File,
5996 Root_Environment,
5997 Compute_Builder => Is_First_Main,
5998 Current_Work_Dir => Current_Work_Dir.all);
6000 if Is_First_Main then
6002 -- Put the default source dirs in the source path only now, so
6003 -- that we take the correct ones in the case where --RTS= is
6004 -- specified in the Builder switches.
6006 Osint.Add_Default_Search_Dirs;
6008 -- Get the target parameters, which are only needed for a couple
6009 -- of cases in gnatmake. Protect against an exception, such as the
6010 -- case of system.ads missing from the library, and fail
6011 -- gracefully.
6013 begin
6014 Targparm.Get_Target_Parameters;
6015 exception
6016 when Unrecoverable_Error =>
6017 Make_Failed ("*** make failed.");
6018 end;
6020 -- Special processing for VM targets
6022 if Targparm.VM_Target /= No_VM then
6024 -- Set proper processing commands
6026 case Targparm.VM_Target is
6027 when Targparm.JVM_Target =>
6029 -- Do not check for an object file (".o") when compiling
6030 -- to JVM machine since ".class" files are generated
6031 -- instead.
6033 Check_Object_Consistency := False;
6035 -- Do not modify Gcc is --GCC= was specified
6037 if Gcc = Original_Gcc then
6038 Gcc := new String'("jvm-gnatcompile");
6039 end if;
6041 when Targparm.CLI_Target =>
6042 -- Do not modify Gcc is --GCC= was specified
6044 if Gcc = Original_Gcc then
6045 Gcc := new String'("dotnet-gnatcompile");
6046 end if;
6048 when Targparm.No_VM =>
6049 raise Program_Error;
6050 end case;
6051 end if;
6053 Gcc_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gcc.all);
6054 Gnatbind_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gnatbind.all);
6055 Gnatlink_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gnatlink.all);
6057 -- If we have specified -j switch both from the project file
6058 -- and on the command line, the one from the command line takes
6059 -- precedence.
6061 if Saved_Maximum_Processes = 0 then
6062 Saved_Maximum_Processes := Maximum_Processes;
6063 end if;
6065 if Debug.Debug_Flag_M then
6066 Write_Line ("Maximum number of simultaneous compilations =" &
6067 Saved_Maximum_Processes'Img);
6068 end if;
6070 -- Allocate as many temporary mapping file names as the maximum
6071 -- number of compilations processed, for each possible project.
6073 declare
6074 Data : Project_Compilation_Access;
6075 Proj : Project_List;
6077 begin
6078 Proj := Project_Tree.Projects;
6079 while Proj /= null loop
6080 Data := new Project_Compilation_Data'
6081 (Mapping_File_Names => new Temp_Path_Names
6082 (1 .. Saved_Maximum_Processes),
6083 Last_Mapping_File_Names => 0,
6084 Free_Mapping_File_Indexes => new Free_File_Indexes
6085 (1 .. Saved_Maximum_Processes),
6086 Last_Free_Indexes => 0);
6088 Project_Compilation_Htable.Set
6089 (Project_Compilation, Proj.Project, Data);
6090 Proj := Proj.Next;
6091 end loop;
6093 Data := new Project_Compilation_Data'
6094 (Mapping_File_Names => new Temp_Path_Names
6095 (1 .. Saved_Maximum_Processes),
6096 Last_Mapping_File_Names => 0,
6097 Free_Mapping_File_Indexes => new Free_File_Indexes
6098 (1 .. Saved_Maximum_Processes),
6099 Last_Free_Indexes => 0);
6101 Project_Compilation_Htable.Set
6102 (Project_Compilation, No_Project, Data);
6103 end;
6105 Is_First_Main := False;
6106 end if;
6108 Executable_Obsolete := False;
6110 Compute_Executable
6111 (Main_Source_File => Main_Source_File,
6112 Executable => Executable,
6113 Non_Std_Executable => Non_Std_Executable);
6115 if Do_Compile_Step then
6116 Compilation_Phase
6117 (Main_Source_File => Main_Source_File,
6118 Current_Main_Index => Current_Main_Index,
6119 Total_Compilation_Failures => Total_Compilation_Failures,
6120 Stand_Alone_Libraries => Stand_Alone_Libraries,
6121 Executable => Executable,
6122 Is_Last_Main => N_File = Osint.Number_Of_Files,
6123 Stop_Compile => Stop_Compile);
6125 if Stop_Compile then
6126 if Total_Compilation_Failures /= 0 then
6127 if Keep_Going then
6128 goto Next_Main;
6130 else
6131 List_Bad_Compilations;
6132 Report_Compilation_Failed;
6133 end if;
6135 elsif Osint.Number_Of_Files = 1 then
6136 exit Multiple_Main_Loop;
6137 else
6138 goto Next_Main;
6139 end if;
6140 end if;
6141 end if;
6143 -- For binding and linking, we need to be in the object directory of
6144 -- the main project.
6146 if Main_Project /= No_Project then
6147 Change_To_Object_Directory (Main_Project);
6148 end if;
6150 -- If we are here, it means that we need to rebuilt the current main,
6151 -- so we set Executable_Obsolete to True to make sure that subsequent
6152 -- mains will be rebuilt.
6154 Main_ALI_In_Place_Mode_Step : declare
6155 ALI_File : File_Name_Type;
6156 Src_File : File_Name_Type;
6158 begin
6159 Src_File := Strip_Directory (Main_Source_File);
6160 ALI_File := Lib_File_Name (Src_File, Current_Main_Index);
6161 Main_ALI_File := Full_Lib_File_Name (ALI_File);
6163 -- When In_Place_Mode, the library file can be located in the
6164 -- Main_Source_File directory which may not be present in the
6165 -- library path. If it is not present then use the corresponding
6166 -- library file name.
6168 if Main_ALI_File = No_File and then In_Place_Mode then
6169 Get_Name_String (Get_Directory (Full_Source_Name (Src_File)));
6170 Get_Name_String_And_Append (ALI_File);
6171 Main_ALI_File := Name_Find;
6172 Main_ALI_File := Full_Lib_File_Name (Main_ALI_File);
6173 end if;
6175 if Main_ALI_File = No_File then
6176 Make_Failed ("could not find the main ALI file");
6177 end if;
6178 end Main_ALI_In_Place_Mode_Step;
6180 if Do_Bind_Step then
6181 Binding_Phase
6182 (Stand_Alone_Libraries => Stand_Alone_Libraries,
6183 Main_ALI_File => Main_ALI_File);
6184 end if;
6186 if Do_Link_Step then
6187 Linking_Phase
6188 (Non_Std_Executable => Non_Std_Executable,
6189 Executable => Executable,
6190 Main_ALI_File => Main_ALI_File);
6191 end if;
6193 -- We go to here when we skip the bind and link steps
6195 <<Next_Main>>
6197 Queue.Remove_Marks;
6199 if N_File < Osint.Number_Of_Files then
6200 Main_Source_File := Next_Main_Source; -- No directory information
6201 end if;
6202 end loop Multiple_Main_Loop;
6204 if CodePeer_Mode then
6205 declare
6206 Success : Boolean := False;
6207 begin
6208 Globalize (Success);
6210 if not Success then
6211 Set_Standard_Error;
6212 Write_Str ("*** globalize failed.");
6214 if Commands_To_Stdout then
6215 Set_Standard_Output;
6216 end if;
6217 end if;
6218 end;
6219 end if;
6221 if Failed_Links.Last > 0 then
6222 for Index in 1 .. Successful_Links.Last loop
6223 Write_Str ("Linking of """);
6224 Write_Str (Get_Name_String (Successful_Links.Table (Index)));
6225 Write_Line (""" succeeded.");
6226 end loop;
6228 Set_Standard_Error;
6230 for Index in 1 .. Failed_Links.Last loop
6231 Write_Str ("Linking of """);
6232 Write_Str (Get_Name_String (Failed_Links.Table (Index)));
6233 Write_Line (""" failed.");
6234 end loop;
6236 if Commands_To_Stdout then
6237 Set_Standard_Output;
6238 end if;
6240 if Total_Compilation_Failures = 0 then
6241 Report_Compilation_Failed;
6242 end if;
6243 end if;
6245 if Total_Compilation_Failures /= 0 then
6246 List_Bad_Compilations;
6247 Report_Compilation_Failed;
6248 end if;
6250 Finish_Program (Project_Tree, E_Success);
6252 exception
6253 when X : others =>
6254 Set_Standard_Error;
6255 Write_Line (Exception_Information (X));
6256 Make_Failed ("INTERNAL ERROR. Please report.");
6257 end Gnatmake;
6259 ----------
6260 -- Hash --
6261 ----------
6263 function Hash (F : File_Name_Type) return Header_Num is
6264 begin
6265 return Header_Num (1 + F mod Max_Header);
6266 end Hash;
6268 --------------------
6269 -- In_Ada_Lib_Dir --
6270 --------------------
6272 function In_Ada_Lib_Dir (File : File_Name_Type) return Boolean is
6273 D : constant File_Name_Type := Get_Directory (File);
6274 B : constant Byte := Get_Name_Table_Byte (D);
6275 begin
6276 return (B and Ada_Lib_Dir) /= 0;
6277 end In_Ada_Lib_Dir;
6279 -----------------------
6280 -- Init_Mapping_File --
6281 -----------------------
6283 procedure Init_Mapping_File
6284 (Project : Project_Id;
6285 Data : in out Project_Compilation_Data;
6286 File_Index : in out Natural)
6288 FD : File_Descriptor;
6289 Status : Boolean;
6290 -- For call to Close
6292 begin
6293 -- Increase the index of the last mapping file for this project
6295 Data.Last_Mapping_File_Names := Data.Last_Mapping_File_Names + 1;
6297 -- If there is a project file, call Create_Mapping_File with
6298 -- the project id.
6300 if Project /= No_Project then
6301 Prj.Env.Create_Mapping_File
6302 (Project,
6303 In_Tree => Project_Tree,
6304 Language => Name_Ada,
6305 Name => Data.Mapping_File_Names
6306 (Data.Last_Mapping_File_Names));
6308 -- Otherwise, just create an empty file
6310 else
6311 Tempdir.Create_Temp_File
6312 (FD,
6313 Data.Mapping_File_Names (Data.Last_Mapping_File_Names));
6315 if FD = Invalid_FD then
6316 Make_Failed ("disk full");
6318 else
6319 Record_Temp_File
6320 (Project_Tree.Shared,
6321 Data.Mapping_File_Names (Data.Last_Mapping_File_Names));
6322 end if;
6324 Close (FD, Status);
6326 if not Status then
6327 Make_Failed ("disk full");
6328 end if;
6329 end if;
6331 -- And return the index of the newly created file
6333 File_Index := Data.Last_Mapping_File_Names;
6334 end Init_Mapping_File;
6336 ----------------
6337 -- Initialize --
6338 ----------------
6340 procedure Initialize
6341 (Project_Node_Tree : out Project_Node_Tree_Ref;
6342 Env : out Prj.Tree.Environment)
6344 procedure Check_Version_And_Help is
6345 new Check_Version_And_Help_G (Makeusg);
6347 -- Start of processing for Initialize
6349 begin
6350 -- Prepare the project's tree, since this is used to hold external
6351 -- references, project path and other attributes that can be impacted by
6352 -- the command line switches
6354 Prj.Tree.Initialize (Env, Gnatmake_Flags);
6355 Prj.Env.Initialize_Default_Project_Path
6356 (Env.Project_Path, Target_Name => Sdefault.Target_Name.all);
6358 Project_Node_Tree := new Project_Node_Tree_Data;
6359 Prj.Tree.Initialize (Project_Node_Tree);
6361 -- Override default initialization of Check_Object_Consistency since
6362 -- this is normally False for GNATBIND, but is True for GNATMAKE since
6363 -- we do not need to check source consistency again once GNATMAKE has
6364 -- looked at the sources to check.
6366 Check_Object_Consistency := True;
6368 -- Package initializations (the order of calls is important here)
6370 Output.Set_Standard_Error;
6372 Gcc_Switches.Init;
6373 Binder_Switches.Init;
6374 Linker_Switches.Init;
6376 Csets.Initialize;
6377 Snames.Initialize;
6379 Prj.Initialize (Project_Tree);
6381 Dependencies.Init;
6383 RTS_Specified := null;
6384 N_M_Switch := 0;
6386 Mains.Delete;
6388 -- Add the directory where gnatmake is invoked in front of the path,
6389 -- if gnatmake is invoked from a bin directory or with directory
6390 -- information. Only do this if the platform is not VMS, where the
6391 -- notion of path does not really exist.
6393 if not OpenVMS then
6394 declare
6395 Prefix : constant String := Executable_Prefix_Path;
6396 Command : constant String := Command_Name;
6398 begin
6399 if Prefix'Length > 0 then
6400 declare
6401 PATH : constant String :=
6402 Prefix & Directory_Separator & "bin" &
6403 Path_Separator &
6404 Getenv ("PATH").all;
6405 begin
6406 Setenv ("PATH", PATH);
6407 end;
6409 else
6410 for Index in reverse Command'Range loop
6411 if Command (Index) = Directory_Separator then
6412 declare
6413 Absolute_Dir : constant String :=
6414 Normalize_Pathname
6415 (Command (Command'First .. Index));
6416 PATH : constant String :=
6417 Absolute_Dir &
6418 Path_Separator &
6419 Getenv ("PATH").all;
6420 begin
6421 Setenv ("PATH", PATH);
6422 end;
6424 exit;
6425 end if;
6426 end loop;
6427 end if;
6428 end;
6429 end if;
6431 -- Scan the switches and arguments
6433 -- First, scan to detect --version and/or --help
6435 Check_Version_And_Help ("GNATMAKE", "1995");
6437 -- Scan again the switch and arguments, now that we are sure that they
6438 -- do not include --version or --help.
6440 Scan_Args : for Next_Arg in 1 .. Argument_Count loop
6441 Scan_Make_Arg (Env, Argument (Next_Arg), And_Save => True);
6442 end loop Scan_Args;
6444 if N_M_Switch > 0 and RTS_Specified = null then
6445 Process_Multilib (Env);
6446 end if;
6448 if Commands_To_Stdout then
6449 Set_Standard_Output;
6450 end if;
6452 if Usage_Requested then
6453 Usage;
6454 end if;
6456 -- Test for trailing -P switch
6458 if Project_File_Name_Present and then Project_File_Name = null then
6459 Make_Failed ("project file name missing after -P");
6461 -- Test for trailing -o switch
6463 elsif Output_File_Name_Present
6464 and then not Output_File_Name_Seen
6465 then
6466 Make_Failed ("output file name missing after -o");
6468 -- Test for trailing -D switch
6470 elsif Object_Directory_Present
6471 and then not Object_Directory_Seen
6472 then
6473 Make_Failed ("object directory missing after -D");
6474 end if;
6476 -- Test for simultaneity of -i and -D
6478 if Object_Directory_Path /= null and then In_Place_Mode then
6479 Make_Failed ("-i and -D cannot be used simultaneously");
6480 end if;
6482 -- If --subdirs= is specified, but not -P, this is equivalent to -D,
6483 -- except that the directory is created if it does not exist.
6485 if Prj.Subdirs /= null and then Project_File_Name = null then
6486 if Object_Directory_Path /= null then
6487 Make_Failed ("--subdirs and -D cannot be used simultaneously");
6489 elsif In_Place_Mode then
6490 Make_Failed ("--subdirs and -i cannot be used simultaneously");
6492 else
6493 if not Is_Directory (Prj.Subdirs.all) then
6494 begin
6495 Ada.Directories.Create_Path (Prj.Subdirs.all);
6496 exception
6497 when others =>
6498 Make_Failed ("unable to create object directory " &
6499 Prj.Subdirs.all);
6500 end;
6501 end if;
6503 Object_Directory_Present := True;
6505 declare
6506 Argv : constant String (1 .. Prj.Subdirs'Length) :=
6507 Prj.Subdirs.all;
6508 begin
6509 Scan_Make_Arg (Env, Argv, And_Save => False);
6510 end;
6511 end if;
6512 end if;
6514 -- Deal with -C= switch
6516 if Gnatmake_Mapping_File /= null then
6518 -- First, check compatibility with other switches
6520 if Project_File_Name /= null then
6521 Make_Failed ("-C= switch is not compatible with -P switch");
6523 elsif Saved_Maximum_Processes > 1 then
6524 Make_Failed ("-C= switch is not compatible with -jnnn switch");
6525 end if;
6527 Fmap.Initialize (Gnatmake_Mapping_File.all);
6528 Add_Switch
6529 ("-gnatem=" & Gnatmake_Mapping_File.all,
6530 Compiler,
6531 And_Save => True);
6532 end if;
6534 if Project_File_Name /= null then
6536 -- A project file was specified by a -P switch
6538 if Verbose_Mode then
6539 Write_Eol;
6540 Write_Str ("Parsing project file """);
6541 Write_Str (Project_File_Name.all);
6542 Write_Str (""".");
6543 Write_Eol;
6544 end if;
6546 -- Avoid looking in the current directory for ALI files
6548 -- Look_In_Primary_Dir := False;
6550 -- Set the project parsing verbosity to whatever was specified
6551 -- by a possible -vP switch.
6553 Prj.Pars.Set_Verbosity (To => Current_Verbosity);
6555 -- Parse the project file.
6556 -- If there is an error, Main_Project will still be No_Project.
6558 Prj.Pars.Parse
6559 (Project => Main_Project,
6560 In_Tree => Project_Tree,
6561 Project_File_Name => Project_File_Name.all,
6562 Packages_To_Check => Packages_To_Check_By_Gnatmake,
6563 Env => Env,
6564 In_Node_Tree => Project_Node_Tree);
6566 -- The parsing of project files may have changed the current output
6568 if Commands_To_Stdout then
6569 Set_Standard_Output;
6570 else
6571 Set_Standard_Error;
6572 end if;
6574 if Main_Project = No_Project then
6575 Make_Failed
6576 ("""" & Project_File_Name.all & """ processing failed");
6577 end if;
6579 Create_Mapping_File := True;
6581 if Verbose_Mode then
6582 Write_Eol;
6583 Write_Str ("Parsing of project file """);
6584 Write_Str (Project_File_Name.all);
6585 Write_Str (""" is finished.");
6586 Write_Eol;
6587 end if;
6589 -- We add the source directories and the object directories to the
6590 -- search paths.
6592 -- ??? Why do we need these search directories, we already know the
6593 -- locations from parsing the project, except for the runtime which
6594 -- has its own directories anyway
6596 Add_Source_Directories (Main_Project, Project_Tree);
6597 Add_Object_Directories (Main_Project, Project_Tree);
6599 Recursive_Compute_Depth (Main_Project);
6600 Compute_All_Imported_Projects (Main_Project, Project_Tree);
6602 else
6604 Osint.Add_Default_Search_Dirs;
6606 -- Source file lookups should be cached for efficiency. Source files
6607 -- are not supposed to change. However, we do that now only if no
6608 -- project file is used; if a project file is used, we do it just
6609 -- after changing the directory to the object directory.
6611 Osint.Source_File_Data (Cache => True);
6613 -- Read gnat.adc file to initialize Fname.UF
6615 Fname.UF.Initialize;
6617 begin
6618 Fname.SF.Read_Source_File_Name_Pragmas;
6620 exception
6621 when Err : SFN_Scan.Syntax_Error_In_GNAT_ADC =>
6622 Make_Failed (Exception_Message (Err));
6623 end;
6624 end if;
6626 -- Make sure no project object directory is recorded
6628 Project_Of_Current_Object_Directory := No_Project;
6630 end Initialize;
6632 ----------------------------
6633 -- Insert_Project_Sources --
6634 ----------------------------
6636 procedure Insert_Project_Sources
6637 (The_Project : Project_Id;
6638 All_Projects : Boolean;
6639 Into_Q : Boolean)
6641 Put_In_Q : Boolean := Into_Q;
6642 Unit : Unit_Index;
6643 Sfile : File_Name_Type;
6644 Index : Int;
6645 Project : Project_Id;
6647 begin
6648 -- Loop through all the sources in the project files
6650 Unit := Units_Htable.Get_First (Project_Tree.Units_HT);
6651 while Unit /= null loop
6652 Sfile := No_File;
6653 Index := 0;
6654 Project := No_Project;
6656 -- If there is a source for the body, and the body has not been
6657 -- locally removed.
6659 if Unit.File_Names (Impl) /= null
6660 and then not Unit.File_Names (Impl).Locally_Removed
6661 then
6662 -- And it is a source for the specified project
6664 if All_Projects
6665 or else
6666 Is_Extending (The_Project, Unit.File_Names (Impl).Project)
6667 then
6668 Project := Unit.File_Names (Impl).Project;
6670 -- If we don't have a spec, we cannot consider the source
6671 -- if it is a subunit.
6673 if Unit.File_Names (Spec) = null then
6674 declare
6675 Src_Ind : Source_File_Index;
6677 -- Here we are cheating a little bit: we don't want to
6678 -- use Sinput.L, because it depends on the GNAT tree
6679 -- (Atree, Sinfo, ...). So, we pretend that it is a
6680 -- project file, and we use Sinput.P.
6682 -- Source_File_Is_Subunit is just scanning through the
6683 -- file until it finds one of the reserved words
6684 -- separate, procedure, function, generic or package.
6685 -- Fortunately, these Ada reserved words are also
6686 -- reserved for project files.
6688 begin
6689 Src_Ind := Sinput.P.Load_Project_File
6690 (Get_Name_String
6691 (Unit.File_Names (Impl).Path.Display_Name));
6693 -- If it is a subunit, discard it
6695 if Sinput.P.Source_File_Is_Subunit (Src_Ind) then
6696 Sfile := No_File;
6697 Index := 0;
6698 else
6699 Sfile := Unit.File_Names (Impl).Display_File;
6700 Index := Unit.File_Names (Impl).Index;
6701 end if;
6702 end;
6704 else
6705 Sfile := Unit.File_Names (Impl).Display_File;
6706 Index := Unit.File_Names (Impl).Index;
6707 end if;
6708 end if;
6710 elsif Unit.File_Names (Spec) /= null
6711 and then not Unit.File_Names (Spec).Locally_Removed
6712 and then
6713 (All_Projects
6714 or else
6715 Is_Extending (The_Project, Unit.File_Names (Spec).Project))
6716 then
6717 -- If there is no source for the body, but there is one for the
6718 -- spec which has not been locally removed, then we take this one.
6720 Sfile := Unit.File_Names (Spec).Display_File;
6721 Index := Unit.File_Names (Spec).Index;
6722 Project := Unit.File_Names (Spec).Project;
6723 end if;
6725 -- For the first source inserted into the Q, we need to initialize
6726 -- the Q, but not for the subsequent sources.
6728 Queue.Initialize
6729 (Main_Project /= No_Project and then
6730 One_Compilation_Per_Obj_Dir);
6732 if Sfile /= No_File then
6733 Queue.Insert
6734 ((Format => Format_Gnatmake,
6735 File => Sfile,
6736 Project => Project,
6737 Unit => No_Unit_Name,
6738 Index => Index));
6739 end if;
6741 if not Put_In_Q and then Sfile /= No_File then
6743 -- If Put_In_Q is False, we add the source as if it were specified
6744 -- on the command line, and we set Put_In_Q to True, so that the
6745 -- following sources will only be put in the queue. The source is
6746 -- already in the Q, but we need at least one fake main to call
6747 -- Compile_Sources.
6749 if Verbose_Mode then
6750 Write_Str ("Adding """);
6751 Write_Str (Get_Name_String (Sfile));
6752 Write_Line (""" as if on the command line");
6753 end if;
6755 Osint.Add_File (Get_Name_String (Sfile), Index);
6756 Put_In_Q := True;
6757 end if;
6759 Unit := Units_Htable.Get_Next (Project_Tree.Units_HT);
6760 end loop;
6761 end Insert_Project_Sources;
6763 ---------------------
6764 -- Is_In_Obsoleted --
6765 ---------------------
6767 function Is_In_Obsoleted (F : File_Name_Type) return Boolean is
6768 begin
6769 if F = No_File then
6770 return False;
6772 else
6773 declare
6774 Name : constant String := Get_Name_String (F);
6775 First : Natural;
6776 F2 : File_Name_Type;
6778 begin
6779 First := Name'Last;
6780 while First > Name'First
6781 and then Name (First - 1) /= Directory_Separator
6782 and then Name (First - 1) /= '/'
6783 loop
6784 First := First - 1;
6785 end loop;
6787 if First /= Name'First then
6788 Name_Len := 0;
6789 Add_Str_To_Name_Buffer (Name (First .. Name'Last));
6790 F2 := Name_Find;
6792 else
6793 F2 := F;
6794 end if;
6796 return Obsoleted.Get (F2);
6797 end;
6798 end if;
6799 end Is_In_Obsoleted;
6801 ----------------------------
6802 -- Is_In_Object_Directory --
6803 ----------------------------
6805 function Is_In_Object_Directory
6806 (Source_File : File_Name_Type;
6807 Full_Lib_File : File_Name_Type) return Boolean
6809 begin
6810 -- There is something to check only when using project files. Otherwise,
6811 -- this function returns True (last line of the function).
6813 if Main_Project /= No_Project then
6814 declare
6815 Source_File_Name : constant String :=
6816 Get_Name_String (Source_File);
6817 Saved_Verbosity : constant Verbosity := Current_Verbosity;
6818 Project : Project_Id := No_Project;
6820 Path_Name : Path_Name_Type := No_Path;
6821 pragma Warnings (Off, Path_Name);
6823 begin
6824 -- Call Get_Reference to know the ultimate extending project of
6825 -- the source. Call it with verbosity default to avoid verbose
6826 -- messages.
6828 Current_Verbosity := Default;
6829 Prj.Env.Get_Reference
6830 (Source_File_Name => Source_File_Name,
6831 Project => Project,
6832 In_Tree => Project_Tree,
6833 Path => Path_Name);
6834 Current_Verbosity := Saved_Verbosity;
6836 -- If this source is in a project, check that the ALI file is in
6837 -- its object directory. If it is not, return False, so that the
6838 -- ALI file will not be skipped.
6840 if Project /= No_Project then
6841 declare
6842 Object_Directory : constant String :=
6843 Normalize_Pathname
6844 (Get_Name_String
6845 (Project.
6846 Object_Directory.Display_Name));
6848 Olast : Natural := Object_Directory'Last;
6850 Lib_File_Directory : constant String :=
6851 Normalize_Pathname (Dir_Name
6852 (Get_Name_String (Full_Lib_File)));
6854 Llast : Natural := Lib_File_Directory'Last;
6856 begin
6857 -- For directories, Normalize_Pathname may or may not put
6858 -- a directory separator at the end, depending on its input.
6859 -- Remove any last directory separator before comparison.
6860 -- Returns True only if the two directories are the same.
6862 if Object_Directory (Olast) = Directory_Separator then
6863 Olast := Olast - 1;
6864 end if;
6866 if Lib_File_Directory (Llast) = Directory_Separator then
6867 Llast := Llast - 1;
6868 end if;
6870 return Object_Directory (Object_Directory'First .. Olast) =
6871 Lib_File_Directory (Lib_File_Directory'First .. Llast);
6872 end;
6873 end if;
6874 end;
6875 end if;
6877 -- When the source is not in a project file, always return True
6879 return True;
6880 end Is_In_Object_Directory;
6882 ----------
6883 -- Link --
6884 ----------
6886 procedure Link
6887 (ALI_File : File_Name_Type;
6888 Args : Argument_List;
6889 Success : out Boolean)
6891 Link_Args : Argument_List (1 .. Args'Length + 1);
6893 begin
6894 Get_Name_String (ALI_File);
6895 Link_Args (1) := new String'(Name_Buffer (1 .. Name_Len));
6897 Link_Args (2 .. Args'Length + 1) := Args;
6899 GNAT.OS_Lib.Normalize_Arguments (Link_Args);
6901 Display (Gnatlink.all, Link_Args);
6903 if Gnatlink_Path = null then
6904 Make_Failed ("error, unable to locate " & Gnatlink.all);
6905 end if;
6907 GNAT.OS_Lib.Spawn (Gnatlink_Path.all, Link_Args, Success);
6908 end Link;
6910 ---------------------------
6911 -- List_Bad_Compilations --
6912 ---------------------------
6914 procedure List_Bad_Compilations is
6915 begin
6916 for J in Bad_Compilation.First .. Bad_Compilation.Last loop
6917 if Bad_Compilation.Table (J).File = No_File then
6918 null;
6919 elsif not Bad_Compilation.Table (J).Found then
6920 Inform (Bad_Compilation.Table (J).File, "not found");
6921 else
6922 Inform (Bad_Compilation.Table (J).File, "compilation error");
6923 end if;
6924 end loop;
6925 end List_Bad_Compilations;
6927 -----------------
6928 -- List_Depend --
6929 -----------------
6931 procedure List_Depend is
6932 Lib_Name : File_Name_Type;
6933 Obj_Name : File_Name_Type;
6934 Src_Name : File_Name_Type;
6936 Len : Natural;
6937 Line_Pos : Natural;
6938 Line_Size : constant := 77;
6940 begin
6941 Set_Standard_Output;
6943 for A in ALIs.First .. ALIs.Last loop
6944 Lib_Name := ALIs.Table (A).Afile;
6946 -- We have to provide the full library file name in In_Place_Mode
6948 if In_Place_Mode then
6949 Lib_Name := Full_Lib_File_Name (Lib_Name);
6950 end if;
6952 Obj_Name := Object_File_Name (Lib_Name);
6953 Write_Name (Obj_Name);
6954 Write_Str (" :");
6956 Get_Name_String (Obj_Name);
6957 Len := Name_Len;
6958 Line_Pos := Len + 2;
6960 for D in ALIs.Table (A).First_Sdep .. ALIs.Table (A).Last_Sdep loop
6961 Src_Name := Sdep.Table (D).Sfile;
6963 if Is_Internal_File_Name (Src_Name)
6964 and then not Check_Readonly_Files
6965 then
6966 null;
6967 else
6968 if not Quiet_Output then
6969 Src_Name := Full_Source_Name (Src_Name);
6970 end if;
6972 Get_Name_String (Src_Name);
6973 Len := Name_Len;
6975 if Line_Pos + Len + 1 > Line_Size then
6976 Write_Str (" \");
6977 Write_Eol;
6978 Line_Pos := 0;
6979 end if;
6981 Line_Pos := Line_Pos + Len + 1;
6983 Write_Str (" ");
6984 Write_Name (Src_Name);
6985 end if;
6986 end loop;
6988 Write_Eol;
6989 end loop;
6991 if not Commands_To_Stdout then
6992 Set_Standard_Error;
6993 end if;
6994 end List_Depend;
6996 -----------------
6997 -- Make_Failed --
6998 -----------------
7000 procedure Make_Failed (S : String) is
7001 begin
7002 Fail_Program (Project_Tree, S);
7003 end Make_Failed;
7005 --------------------
7006 -- Mark_Directory --
7007 --------------------
7009 procedure Mark_Directory
7010 (Dir : String;
7011 Mark : Lib_Mark_Type;
7012 On_Command_Line : Boolean)
7014 N : Name_Id;
7015 B : Byte;
7017 function Base_Directory return String;
7018 -- If Dir comes from the command line, empty string (relative paths are
7019 -- resolved with respect to the current directory), else return the main
7020 -- project's directory.
7022 --------------------
7023 -- Base_Directory --
7024 --------------------
7026 function Base_Directory return String is
7027 begin
7028 if On_Command_Line then
7029 return "";
7030 else
7031 return Get_Name_String (Main_Project.Directory.Display_Name);
7032 end if;
7033 end Base_Directory;
7035 Real_Path : constant String := Normalize_Pathname (Dir, Base_Directory);
7037 -- Start of processing for Mark_Directory
7039 begin
7040 Name_Len := 0;
7042 if Real_Path'Length = 0 then
7043 Add_Str_To_Name_Buffer (Dir);
7045 else
7046 Add_Str_To_Name_Buffer (Real_Path);
7047 end if;
7049 -- Last character is supposed to be a directory separator
7051 if not Is_Directory_Separator (Name_Buffer (Name_Len)) then
7052 Add_Char_To_Name_Buffer (Directory_Separator);
7053 end if;
7055 -- Add flags to the already existing flags
7057 N := Name_Find;
7058 B := Get_Name_Table_Byte (N);
7059 Set_Name_Table_Byte (N, B or Mark);
7060 end Mark_Directory;
7062 ----------------------
7063 -- Process_Multilib --
7064 ----------------------
7066 procedure Process_Multilib (Env : in out Prj.Tree.Environment) is
7067 Output_FD : File_Descriptor;
7068 Output_Name : String_Access;
7069 Arg_Index : Natural := 0;
7070 Success : Boolean := False;
7071 Return_Code : Integer := 0;
7072 Multilib_Gcc_Path : String_Access;
7073 Multilib_Gcc : String_Access;
7074 N_Read : Integer := 0;
7075 Line : String (1 .. 1000);
7076 Args : Argument_List (1 .. N_M_Switch + 1);
7078 begin
7079 pragma Assert (N_M_Switch > 0 and RTS_Specified = null);
7081 -- In case we detected a multilib switch and the user has not
7082 -- manually specified a specific RTS we emulate the following command:
7083 -- gnatmake $FLAGS --RTS=$(gcc -print-multi-directory $FLAGS)
7085 -- First select the flags which might have an impact on multilib
7086 -- processing. Note that this is an heuristic selection and it
7087 -- will need to be maintained over time. The condition has to
7088 -- be kept synchronized with N_M_Switch counting in Scan_Make_Arg.
7090 for Next_Arg in 1 .. Argument_Count loop
7091 declare
7092 Argv : constant String := Argument (Next_Arg);
7094 begin
7095 if Argv'Length > 2
7096 and then Argv (1) = '-'
7097 and then Argv (2) = 'm'
7098 and then Argv /= "-margs"
7100 -- Ignore -mieee to avoid spawning an extra gcc in this case
7102 and then Argv /= "-mieee"
7103 then
7104 Arg_Index := Arg_Index + 1;
7105 Args (Arg_Index) := new String'(Argv);
7106 end if;
7107 end;
7108 end loop;
7110 pragma Assert (Arg_Index = N_M_Switch);
7112 Args (Args'Last) := new String'("-print-multi-directory");
7114 -- Call the GCC driver with the collected flags and save its
7115 -- output. Alternate design would be to link in gnatmake the
7116 -- relevant part of the GCC driver.
7118 if Saved_Gcc /= null then
7119 Multilib_Gcc := Saved_Gcc;
7120 else
7121 Multilib_Gcc := Gcc;
7122 end if;
7124 Multilib_Gcc_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Multilib_Gcc.all);
7126 Create_Temp_Output_File (Output_FD, Output_Name);
7128 if Output_FD = Invalid_FD then
7129 return;
7130 end if;
7132 GNAT.OS_Lib.Spawn
7133 (Multilib_Gcc_Path.all, Args, Output_FD, Return_Code, False);
7134 Close (Output_FD);
7136 if Return_Code /= 0 then
7137 return;
7138 end if;
7140 -- Parse the GCC driver output which is a single line, removing CR/LF
7142 Output_FD := Open_Read (Output_Name.all, Binary);
7144 if Output_FD = Invalid_FD then
7145 return;
7146 end if;
7148 N_Read := Read (Output_FD, Line (1)'Address, Line'Length);
7149 Close (Output_FD);
7150 Delete_File (Output_Name.all, Success);
7152 for J in reverse 1 .. N_Read loop
7153 if Line (J) = ASCII.CR or else Line (J) = ASCII.LF then
7154 N_Read := N_Read - 1;
7155 else
7156 exit;
7157 end if;
7158 end loop;
7160 -- In case the standard RTS is selected do nothing
7162 if N_Read = 0 or else Line (1 .. N_Read) = "." then
7163 return;
7164 end if;
7166 -- Otherwise add -margs --RTS=output
7168 Scan_Make_Arg (Env, "-margs", And_Save => True);
7169 Scan_Make_Arg (Env, "--RTS=" & Line (1 .. N_Read), And_Save => True);
7170 end Process_Multilib;
7172 -----------------------------
7173 -- Recursive_Compute_Depth --
7174 -----------------------------
7176 procedure Recursive_Compute_Depth (Project : Project_Id) is
7177 use Project_Boolean_Htable;
7178 Seen : Project_Boolean_Htable.Instance := Project_Boolean_Htable.Nil;
7180 procedure Recurse (Prj : Project_Id; Depth : Natural);
7181 -- Recursive procedure that does the work, keeping track of the depth
7183 -------------
7184 -- Recurse --
7185 -------------
7187 procedure Recurse (Prj : Project_Id; Depth : Natural) is
7188 List : Project_List;
7189 Proj : Project_Id;
7191 begin
7192 if Prj.Depth >= Depth or else Get (Seen, Prj) then
7193 return;
7194 end if;
7196 -- We need a test to avoid infinite recursions with limited withs:
7197 -- If we have A -> B -> A, then when set level of A to n, we try and
7198 -- set level of B to n+1, and then level of A to n + 2, ...
7200 Set (Seen, Prj, True);
7202 Prj.Depth := Depth;
7204 -- Visit each imported project
7206 List := Prj.Imported_Projects;
7207 while List /= null loop
7208 Proj := List.Project;
7209 List := List.Next;
7210 Recurse (Prj => Proj, Depth => Depth + 1);
7211 end loop;
7213 -- We again allow changing the depth of this project later on if it
7214 -- is in fact imported by a lower-level project.
7216 Set (Seen, Prj, False);
7217 end Recurse;
7219 Proj : Project_List;
7221 -- Start of processing for Recursive_Compute_Depth
7223 begin
7224 Proj := Project_Tree.Projects;
7225 while Proj /= null loop
7226 Proj.Project.Depth := 0;
7227 Proj := Proj.Next;
7228 end loop;
7230 Recurse (Project, Depth => 1);
7231 Reset (Seen);
7232 end Recursive_Compute_Depth;
7234 -------------------------------
7235 -- Report_Compilation_Failed --
7236 -------------------------------
7238 procedure Report_Compilation_Failed is
7239 begin
7240 Fail_Program (Project_Tree, "");
7241 end Report_Compilation_Failed;
7243 ------------------------
7244 -- Sigint_Intercepted --
7245 ------------------------
7247 procedure Sigint_Intercepted is
7248 SIGINT : constant := 2;
7250 begin
7251 Set_Standard_Error;
7252 Write_Line ("*** Interrupted ***");
7254 -- Send SIGINT to all outstanding compilation processes spawned
7256 for J in 1 .. Outstanding_Compiles loop
7257 Kill (Running_Compile (J).Pid, SIGINT, 1);
7258 end loop;
7260 Finish_Program (Project_Tree, E_No_Compile);
7261 end Sigint_Intercepted;
7263 -------------------
7264 -- Scan_Make_Arg --
7265 -------------------
7267 procedure Scan_Make_Arg
7268 (Env : in out Prj.Tree.Environment;
7269 Argv : String;
7270 And_Save : Boolean)
7272 Success : Boolean;
7274 begin
7275 Gnatmake_Switch_Found := True;
7277 pragma Assert (Argv'First = 1);
7279 if Argv'Length = 0 then
7280 return;
7281 end if;
7283 -- If the previous switch has set the Project_File_Name_Present flag
7284 -- (that is we have seen a -P alone), then the next argument is the name
7285 -- of the project file.
7287 if Project_File_Name_Present and then Project_File_Name = null then
7288 if Argv (1) = '-' then
7289 Make_Failed ("project file name missing after -P");
7291 else
7292 Project_File_Name_Present := False;
7293 Project_File_Name := new String'(Argv);
7294 end if;
7296 -- If the previous switch has set the Output_File_Name_Present flag
7297 -- (that is we have seen a -o), then the next argument is the name of
7298 -- the output executable.
7300 elsif Output_File_Name_Present
7301 and then not Output_File_Name_Seen
7302 then
7303 Output_File_Name_Seen := True;
7305 if Argv (1) = '-' then
7306 Make_Failed ("output file name missing after -o");
7308 else
7309 Add_Switch ("-o", Linker, And_Save => And_Save);
7310 Add_Switch (Executable_Name (Argv), Linker, And_Save => And_Save);
7311 end if;
7313 -- If the previous switch has set the Object_Directory_Present flag
7314 -- (that is we have seen a -D), then the next argument is the path name
7315 -- of the object directory.
7317 elsif Object_Directory_Present
7318 and then not Object_Directory_Seen
7319 then
7320 Object_Directory_Seen := True;
7322 if Argv (1) = '-' then
7323 Make_Failed ("object directory path name missing after -D");
7325 elsif not Is_Directory (Argv) then
7326 Make_Failed ("cannot find object directory """ & Argv & """");
7328 else
7329 -- Record the object directory. Make sure it ends with a directory
7330 -- separator.
7332 declare
7333 Norm : constant String := Normalize_Pathname (Argv);
7335 begin
7336 if Norm (Norm'Last) = Directory_Separator then
7337 Object_Directory_Path := new String'(Norm);
7338 else
7339 Object_Directory_Path :=
7340 new String'(Norm & Directory_Separator);
7341 end if;
7343 Add_Lib_Search_Dir (Norm);
7345 -- Specify the object directory to the binder
7347 Add_Switch ("-aO" & Norm, Binder, And_Save => And_Save);
7348 end;
7350 end if;
7352 -- Then check if we are dealing with -cargs/-bargs/-largs/-margs. These
7353 -- options are taken as is when found in package Compiler, Binder or
7354 -- Linker of the main project file.
7356 elsif (And_Save or else Program_Args = None)
7357 and then (Argv = "-bargs" or else
7358 Argv = "-cargs" or else
7359 Argv = "-largs" or else
7360 Argv = "-margs")
7361 then
7362 case Argv (2) is
7363 when 'c' => Program_Args := Compiler;
7364 when 'b' => Program_Args := Binder;
7365 when 'l' => Program_Args := Linker;
7366 when 'm' => Program_Args := None;
7368 when others =>
7369 raise Program_Error;
7370 end case;
7372 -- A special test is needed for the -o switch within a -largs since that
7373 -- is another way to specify the name of the final executable.
7375 elsif Program_Args = Linker
7376 and then Argv = "-o"
7377 then
7378 Make_Failed ("switch -o not allowed within a -largs. " &
7379 "Use -o directly.");
7381 -- Check to see if we are reading switches after a -cargs, -bargs or
7382 -- -largs switch. If so, save it.
7384 elsif Program_Args /= None then
7386 -- Check to see if we are reading -I switches in order to take into
7387 -- account in the src & lib search directories.
7389 if Argv'Length > 2 and then Argv (1 .. 2) = "-I" then
7390 if Argv (3 .. Argv'Last) = "-" then
7391 Look_In_Primary_Dir := False;
7393 elsif Program_Args = Compiler then
7394 if Argv (3 .. Argv'Last) /= "-" then
7395 Add_Source_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7396 end if;
7398 elsif Program_Args = Binder then
7399 Add_Library_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7400 end if;
7401 end if;
7403 Add_Switch (Argv, Program_Args, And_Save => And_Save);
7405 -- Make sure that all significant switches -m on the command line
7406 -- are counted.
7408 if Argv'Length > 2
7409 and then Argv (1 .. 2) = "-m"
7410 and then Argv /= "-mieee"
7411 then
7412 N_M_Switch := N_M_Switch + 1;
7413 end if;
7415 -- Handle non-default compiler, binder, linker, and handle --RTS switch
7417 elsif Argv'Length > 2 and then Argv (1 .. 2) = "--" then
7418 if Argv'Length > 6
7419 and then Argv (1 .. 6) = "--GCC="
7420 then
7421 declare
7422 Program_Args : constant Argument_List_Access :=
7423 Argument_String_To_List
7424 (Argv (7 .. Argv'Last));
7426 begin
7427 if And_Save then
7428 Saved_Gcc := new String'(Program_Args.all (1).all);
7429 else
7430 Gcc := new String'(Program_Args.all (1).all);
7431 end if;
7433 for J in 2 .. Program_Args.all'Last loop
7434 Add_Switch
7435 (Program_Args.all (J).all, Compiler, And_Save => And_Save);
7436 end loop;
7437 end;
7439 elsif Argv'Length > 11
7440 and then Argv (1 .. 11) = "--GNATBIND="
7441 then
7442 declare
7443 Program_Args : constant Argument_List_Access :=
7444 Argument_String_To_List
7445 (Argv (12 .. Argv'Last));
7447 begin
7448 if And_Save then
7449 Saved_Gnatbind := new String'(Program_Args.all (1).all);
7450 else
7451 Gnatbind := new String'(Program_Args.all (1).all);
7452 end if;
7454 for J in 2 .. Program_Args.all'Last loop
7455 Add_Switch
7456 (Program_Args.all (J).all, Binder, And_Save => And_Save);
7457 end loop;
7458 end;
7460 elsif Argv'Length > 11
7461 and then Argv (1 .. 11) = "--GNATLINK="
7462 then
7463 declare
7464 Program_Args : constant Argument_List_Access :=
7465 Argument_String_To_List
7466 (Argv (12 .. Argv'Last));
7467 begin
7468 if And_Save then
7469 Saved_Gnatlink := new String'(Program_Args.all (1).all);
7470 else
7471 Gnatlink := new String'(Program_Args.all (1).all);
7472 end if;
7474 for J in 2 .. Program_Args.all'Last loop
7475 Add_Switch (Program_Args.all (J).all, Linker);
7476 end loop;
7477 end;
7479 elsif Argv'Length >= 5 and then
7480 Argv (1 .. 5) = "--RTS"
7481 then
7482 Add_Switch (Argv, Compiler, And_Save => And_Save);
7483 Add_Switch (Argv, Binder, And_Save => And_Save);
7485 if Argv'Length <= 6 or else Argv (6) /= '=' then
7486 Make_Failed ("missing path for --RTS");
7488 else
7489 -- Check that this is the first time we see this switch or
7490 -- if it is not the first time, the same path is specified.
7492 if RTS_Specified = null then
7493 RTS_Specified := new String'(Argv (7 .. Argv'Last));
7495 elsif RTS_Specified.all /= Argv (7 .. Argv'Last) then
7496 Make_Failed ("--RTS cannot be specified multiple times");
7497 end if;
7499 -- Valid --RTS switch
7501 No_Stdinc := True;
7502 No_Stdlib := True;
7503 RTS_Switch := True;
7505 declare
7506 Src_Path_Name : constant String_Ptr :=
7507 Get_RTS_Search_Dir
7508 (Argv (7 .. Argv'Last), Include);
7510 Lib_Path_Name : constant String_Ptr :=
7511 Get_RTS_Search_Dir
7512 (Argv (7 .. Argv'Last), Objects);
7514 begin
7515 if Src_Path_Name /= null
7516 and then Lib_Path_Name /= null
7517 then
7518 -- Set RTS_*_Path_Name variables, so that correct direct-
7519 -- ories will be set when Osint.Add_Default_Search_Dirs
7520 -- is called later.
7522 RTS_Src_Path_Name := Src_Path_Name;
7523 RTS_Lib_Path_Name := Lib_Path_Name;
7525 elsif Src_Path_Name = null
7526 and then Lib_Path_Name = null
7527 then
7528 Make_Failed ("RTS path not valid: missing " &
7529 "adainclude and adalib directories");
7531 elsif Src_Path_Name = null then
7532 Make_Failed ("RTS path not valid: missing adainclude " &
7533 "directory");
7535 elsif Lib_Path_Name = null then
7536 Make_Failed ("RTS path not valid: missing adalib " &
7537 "directory");
7538 end if;
7539 end;
7540 end if;
7542 elsif Argv'Length > Source_Info_Option'Length and then
7543 Argv (1 .. Source_Info_Option'Length) = Source_Info_Option
7544 then
7545 Project_Tree.Source_Info_File_Name :=
7546 new String'(Argv (Source_Info_Option'Length + 1 .. Argv'Last));
7548 elsif Argv'Length >= 8 and then
7549 Argv (1 .. 8) = "--param="
7550 then
7551 Add_Switch (Argv, Compiler, And_Save => And_Save);
7552 Add_Switch (Argv, Linker, And_Save => And_Save);
7554 elsif Argv = Create_Map_File_Switch then
7555 Map_File := new String'("");
7557 elsif Argv'Length > Create_Map_File_Switch'Length + 1
7558 and then
7559 Argv (1 .. Create_Map_File_Switch'Length) = Create_Map_File_Switch
7560 and then
7561 Argv (Create_Map_File_Switch'Length + 1) = '='
7562 then
7563 Map_File :=
7564 new String'
7565 (Argv (Create_Map_File_Switch'Length + 2 .. Argv'Last));
7567 else
7568 Scan_Make_Switches (Env, Argv, Success);
7569 end if;
7571 -- If we have seen a regular switch process it
7573 elsif Argv (1) = '-' then
7574 if Argv'Length = 1 then
7575 Make_Failed ("switch character cannot be followed by a blank");
7577 -- Incorrect switches that should start with "--"
7579 elsif (Argv'Length > 5 and then Argv (1 .. 5) = "-RTS=")
7580 or else (Argv'Length > 5 and then Argv (1 .. 5) = "-GCC=")
7581 or else (Argv'Length > 8 and then Argv (1 .. 7) = "-param=")
7582 or else (Argv'Length > 10 and then Argv (1 .. 10) = "-GNATLINK=")
7583 or else (Argv'Length > 10 and then Argv (1 .. 10) = "-GNATBIND=")
7584 then
7585 Make_Failed ("option " & Argv & " should start with '--'");
7587 -- -I-
7589 elsif Argv (2 .. Argv'Last) = "I-" then
7590 Look_In_Primary_Dir := False;
7592 -- Forbid -?- or -??- where ? is any character
7594 elsif (Argv'Length = 3 and then Argv (3) = '-')
7595 or else (Argv'Length = 4 and then Argv (4) = '-')
7596 then
7597 Make_Failed
7598 ("trailing ""-"" at the end of " & Argv & " forbidden.");
7600 -- -Idir
7602 elsif Argv (2) = 'I' then
7603 Add_Source_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7604 Add_Library_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7605 Add_Switch (Argv, Compiler, And_Save => And_Save);
7606 Add_Switch (Argv, Binder, And_Save => And_Save);
7608 -- -aIdir (to gcc this is like a -I switch)
7610 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aI" then
7611 Add_Source_Search_Dir (Argv (4 .. Argv'Last), And_Save);
7612 Add_Switch
7613 ("-I" & Argv (4 .. Argv'Last), Compiler, And_Save => And_Save);
7614 Add_Switch (Argv, Binder, And_Save => And_Save);
7616 -- -aOdir
7618 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aO" then
7619 Add_Library_Search_Dir (Argv (4 .. Argv'Last), And_Save);
7620 Add_Switch (Argv, Binder, And_Save => And_Save);
7622 -- -aLdir (to gnatbind this is like a -aO switch)
7624 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aL" then
7625 Mark_Directory (Argv (4 .. Argv'Last), Ada_Lib_Dir, And_Save);
7626 Add_Library_Search_Dir (Argv (4 .. Argv'Last), And_Save);
7627 Add_Switch
7628 ("-aO" & Argv (4 .. Argv'Last), Binder, And_Save => And_Save);
7630 -- -aamp_target=...
7632 elsif Argv'Length >= 13 and then Argv (2 .. 13) = "aamp_target=" then
7633 Add_Switch (Argv, Compiler, And_Save => And_Save);
7635 -- Set the aamp_target environment variable so that the binder and
7636 -- linker will use the proper target library. This is consistent
7637 -- with how things work when -aamp_target is passed on the command
7638 -- line to gnaampmake.
7640 Setenv ("aamp_target", Argv (14 .. Argv'Last));
7642 -- -Adir (to gnatbind this is like a -aO switch, to gcc like a -I)
7644 elsif Argv (2) = 'A' then
7645 Mark_Directory (Argv (3 .. Argv'Last), Ada_Lib_Dir, And_Save);
7646 Add_Source_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7647 Add_Library_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7648 Add_Switch
7649 ("-I" & Argv (3 .. Argv'Last), Compiler, And_Save => And_Save);
7650 Add_Switch
7651 ("-aO" & Argv (3 .. Argv'Last), Binder, And_Save => And_Save);
7653 -- -Ldir
7655 elsif Argv (2) = 'L' then
7656 Add_Switch (Argv, Linker, And_Save => And_Save);
7658 -- For -gxxx, -pg, -mxxx, -fxxx, -Oxxx, pass the switch to both the
7659 -- compiler and the linker (except for -gnatxxx which is only for the
7660 -- compiler). Some of the -mxxx (for example -m64) and -fxxx (for
7661 -- example -ftest-coverage for gcov) need to be used when compiling
7662 -- the binder generated files, and using all these gcc switches for
7663 -- them should not be a problem. Pass -Oxxx to the linker for LTO.
7665 elsif
7666 (Argv (2) = 'g' and then (Argv'Last < 5
7667 or else Argv (2 .. 5) /= "gnat"))
7668 or else Argv (2 .. Argv'Last) = "pg"
7669 or else (Argv (2) = 'm' and then Argv'Last > 2)
7670 or else (Argv (2) = 'f' and then Argv'Last > 2)
7671 or else Argv (2) = 'O'
7672 then
7673 Add_Switch (Argv, Compiler, And_Save => And_Save);
7674 Add_Switch (Argv, Linker, And_Save => And_Save);
7676 -- The following condition has to be kept synchronized with
7677 -- the Process_Multilib one.
7679 if Argv (2) = 'm'
7680 and then Argv /= "-mieee"
7681 then
7682 N_M_Switch := N_M_Switch + 1;
7683 end if;
7685 -- -C=<mapping file>
7687 elsif Argv'Last > 2 and then Argv (2) = 'C' then
7688 if And_Save then
7689 if Argv (3) /= '=' or else Argv'Last <= 3 then
7690 Make_Failed ("illegal switch " & Argv);
7691 end if;
7693 Gnatmake_Mapping_File := new String'(Argv (4 .. Argv'Last));
7694 end if;
7696 -- -D
7698 elsif Argv'Last = 2 and then Argv (2) = 'D' then
7699 if Project_File_Name /= null then
7700 Make_Failed
7701 ("-D cannot be used in conjunction with a project file");
7703 else
7704 Scan_Make_Switches (Env, Argv, Success);
7705 end if;
7707 -- -d
7709 elsif Argv (2) = 'd' and then Argv'Last = 2 then
7710 Display_Compilation_Progress := True;
7712 -- -i
7714 elsif Argv'Last = 2 and then Argv (2) = 'i' then
7715 if Project_File_Name /= null then
7716 Make_Failed
7717 ("-i cannot be used in conjunction with a project file");
7718 else
7719 Scan_Make_Switches (Env, Argv, Success);
7720 end if;
7722 -- -j (need to save the result)
7724 elsif Argv (2) = 'j' then
7725 Scan_Make_Switches (Env, Argv, Success);
7727 if And_Save then
7728 Saved_Maximum_Processes := Maximum_Processes;
7729 end if;
7731 -- -m
7733 elsif Argv (2) = 'm' and then Argv'Last = 2 then
7734 Minimal_Recompilation := True;
7736 -- -u
7738 elsif Argv (2) = 'u' and then Argv'Last = 2 then
7739 Unique_Compile := True;
7740 Compile_Only := True;
7741 Do_Bind_Step := False;
7742 Do_Link_Step := False;
7744 -- -U
7746 elsif Argv (2) = 'U'
7747 and then Argv'Last = 2
7748 then
7749 Unique_Compile_All_Projects := True;
7750 Unique_Compile := True;
7751 Compile_Only := True;
7752 Do_Bind_Step := False;
7753 Do_Link_Step := False;
7755 -- -Pprj or -P prj (only once, and only on the command line)
7757 elsif Argv (2) = 'P' then
7758 if Project_File_Name /= null then
7759 Make_Failed ("cannot have several project files specified");
7761 elsif Object_Directory_Path /= null then
7762 Make_Failed
7763 ("-D cannot be used in conjunction with a project file");
7765 elsif In_Place_Mode then
7766 Make_Failed
7767 ("-i cannot be used in conjunction with a project file");
7769 elsif not And_Save then
7771 -- It could be a tool other than gnatmake (e.g. gnatdist)
7772 -- or a -P switch inside a project file.
7774 Fail
7775 ("either the tool is not ""project-aware"" or " &
7776 "a project file is specified inside a project file");
7778 elsif Argv'Last = 2 then
7780 -- -P is used alone: the project file name is the next option
7782 Project_File_Name_Present := True;
7784 else
7785 Project_File_Name := new String'(Argv (3 .. Argv'Last));
7786 end if;
7788 -- -vPx (verbosity of the parsing of the project files)
7790 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "vP" then
7791 if Argv'Last /= 4 or else Argv (4) not in '0' .. '2' then
7792 Make_Failed
7793 ("invalid verbosity level " & Argv (4 .. Argv'Last));
7795 elsif And_Save then
7796 case Argv (4) is
7797 when '0' =>
7798 Current_Verbosity := Prj.Default;
7799 when '1' =>
7800 Current_Verbosity := Prj.Medium;
7801 when '2' =>
7802 Current_Verbosity := Prj.High;
7803 when others =>
7804 null;
7805 end case;
7806 end if;
7808 -- -Xext=val (External assignment)
7810 elsif Argv (2) = 'X'
7811 and then Is_External_Assignment (Env, Argv)
7812 then
7813 -- Is_External_Assignment has side effects when it returns True
7815 null;
7817 -- If -gnath is present, then generate the usage information right
7818 -- now and do not pass this option on to the compiler calls.
7820 elsif Argv = "-gnath" then
7821 Usage;
7823 -- If -gnatc is specified, make sure the bind and link steps are not
7824 -- executed.
7826 elsif Argv'Length >= 6 and then Argv (2 .. 6) = "gnatc" then
7828 -- If -gnatc is specified, make sure the bind and link steps are
7829 -- not executed.
7831 Add_Switch (Argv, Compiler, And_Save => And_Save);
7832 Operating_Mode := Check_Semantics;
7833 Check_Object_Consistency := False;
7835 -- Except in CodePeer mode, where we do want to call bind/link
7836 -- in CodePeer mode (-P switch).
7838 -- This is testing for -gnatcC, what is that??? Also why do we
7839 -- want to call bind/link in the codepeer case with -gnatc
7840 -- specified, seems odd.
7842 if Argv'Last >= 7 and then Argv (7) = 'C' then
7843 CodePeer_Mode := True;
7844 else
7845 Compile_Only := True;
7846 Do_Bind_Step := False;
7847 Do_Link_Step := False;
7848 end if;
7850 elsif Argv (2 .. Argv'Last) = "nostdlib" then
7852 -- Pass -nstdlib to gnatbind and gnatlink
7854 No_Stdlib := True;
7855 Add_Switch (Argv, Binder, And_Save => And_Save);
7856 Add_Switch (Argv, Linker, And_Save => And_Save);
7858 elsif Argv (2 .. Argv'Last) = "nostdinc" then
7860 -- Pass -nostdinc to the Compiler and to gnatbind
7862 No_Stdinc := True;
7863 Add_Switch (Argv, Compiler, And_Save => And_Save);
7864 Add_Switch (Argv, Binder, And_Save => And_Save);
7866 -- All other switches are processed by Scan_Make_Switches. If the
7867 -- call returns with Gnatmake_Switch_Found = False, then the switch
7868 -- is passed to the compiler.
7870 else
7871 Scan_Make_Switches (Env, Argv, Gnatmake_Switch_Found);
7873 if not Gnatmake_Switch_Found then
7874 Add_Switch (Argv, Compiler, And_Save => And_Save);
7875 end if;
7876 end if;
7878 -- If not a switch it must be a file name
7880 else
7881 if And_Save then
7882 Main_On_Command_Line := True;
7883 end if;
7885 Add_File (Argv);
7886 Mains.Add_Main (Argv);
7887 end if;
7888 end Scan_Make_Arg;
7890 -----------------
7891 -- Switches_Of --
7892 -----------------
7894 function Switches_Of
7895 (Source_File : File_Name_Type;
7896 Project : Project_Id;
7897 In_Package : Package_Id;
7898 Allow_ALI : Boolean) return Variable_Value
7900 Switches : Variable_Value;
7901 Is_Default : Boolean;
7903 begin
7904 Makeutl.Get_Switches
7905 (Source_File => Source_File,
7906 Source_Lang => Name_Ada,
7907 Source_Prj => Project,
7908 Pkg_Name => Project_Tree.Shared.Packages.Table (In_Package).Name,
7909 Project_Tree => Project_Tree,
7910 Value => Switches,
7911 Is_Default => Is_Default,
7912 Test_Without_Suffix => True,
7913 Check_ALI_Suffix => Allow_ALI);
7914 return Switches;
7915 end Switches_Of;
7917 -----------
7918 -- Usage --
7919 -----------
7921 procedure Usage is
7922 begin
7923 if Usage_Needed then
7924 Usage_Needed := False;
7925 Makeusg;
7926 end if;
7927 end Usage;
7929 begin
7930 -- Make sure that in case of failure, the temp files will be deleted
7932 Prj.Com.Fail := Make_Failed'Access;
7933 MLib.Fail := Make_Failed'Access;
7934 end Make;