Implement -mmemcpy-strategy= and -mmemset-strategy= options
[official-gcc.git] / gcc / ada / make.adb
blobd9973b52a0ba4fee08071e980e7e9ccbd56e6d74
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- M A K E --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2013, 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 AdaSCIL_Flag : constant String_Access := new String'("adascil");
708 No_gnat_adc : constant String_Access := new String'("-gnatA");
709 GNAT_Flag : constant String_Access := new String'("-gnatpg");
710 Do_Not_Check_Flag : constant String_Access := new String'("-x");
712 Object_Suffix : constant String := Get_Target_Object_Suffix.all;
714 Syntax_Only : Boolean := False;
715 -- Set to True when compiling with -gnats
717 Display_Executed_Programs : Boolean := True;
718 -- Set to True if name of commands should be output on stderr (or on stdout
719 -- if the Commands_To_Stdout flag was set by use of the -eS switch).
721 Output_File_Name_Seen : Boolean := False;
722 -- Set to True after having scanned the file_name for
723 -- switch "-o file_name"
725 Object_Directory_Seen : Boolean := False;
726 -- Set to True after having scanned the object directory for
727 -- switch "-D obj_dir".
729 Object_Directory_Path : String_Access := null;
730 -- The path name of the object directory, set with switch -D
732 type Make_Program_Type is (None, Compiler, Binder, Linker);
734 Program_Args : Make_Program_Type := None;
735 -- Used to indicate if we are scanning gnatmake, gcc, gnatbind, or gnatbind
736 -- options within the gnatmake command line. Used in Scan_Make_Arg only,
737 -- but must be global since value preserved from one call to another.
739 Temporary_Config_File : Boolean := False;
740 -- Set to True when there is a temporary config file used for a project
741 -- file, to avoid displaying the -gnatec switch for a temporary file.
743 procedure Add_Switches
744 (The_Package : Package_Id;
745 File_Name : String;
746 Program : Make_Program_Type;
747 Unknown_Switches_To_The_Compiler : Boolean := True;
748 Env : in out Prj.Tree.Environment);
749 procedure Add_Switch
750 (S : String_Access;
751 Program : Make_Program_Type;
752 Append_Switch : Boolean := True;
753 And_Save : Boolean := True);
754 procedure Add_Switch
755 (S : String;
756 Program : Make_Program_Type;
757 Append_Switch : Boolean := True;
758 And_Save : Boolean := True);
759 -- Make invokes one of three programs (the compiler, the binder or the
760 -- linker). For the sake of convenience, some program specific switches
761 -- can be passed directly on the gnatmake command line. This procedure
762 -- records these switches so that gnatmake can pass them to the right
763 -- program. S is the switch to be added at the end of the command line
764 -- for Program if Append_Switch is True. If Append_Switch is False S is
765 -- added at the beginning of the command line.
767 procedure Check
768 (Source_File : File_Name_Type;
769 Is_Main_Source : Boolean;
770 The_Args : Argument_List;
771 Lib_File : File_Name_Type;
772 Full_Lib_File : File_Name_Type;
773 Lib_File_Attr : access File_Attributes;
774 Read_Only : Boolean;
775 ALI : out ALI_Id;
776 O_File : out File_Name_Type;
777 O_Stamp : out Time_Stamp_Type);
778 -- Determines whether the library file Lib_File is up-to-date or not. The
779 -- full name (with path information) of the object file corresponding to
780 -- Lib_File is returned in O_File. Its time stamp is saved in O_Stamp.
781 -- ALI is the ALI_Id corresponding to Lib_File. If Lib_File in not
782 -- up-to-date, then the corresponding source file needs to be recompiled.
783 -- In this case ALI = No_ALI_Id.
784 -- Full_Lib_File must be the result of calling Osint.Full_Lib_File_Name on
785 -- Lib_File. Precomputing it saves system calls. Lib_File_Attr is the
786 -- initialized attributes of that file, which is also used to save on
787 -- system calls (it can safely be initialized to Unknown_Attributes).
789 procedure Check_Linker_Options
790 (E_Stamp : Time_Stamp_Type;
791 O_File : out File_Name_Type;
792 O_Stamp : out Time_Stamp_Type);
793 -- Checks all linker options for linker files that are newer
794 -- than E_Stamp. If such objects are found, the youngest object
795 -- is returned in O_File and its stamp in O_Stamp.
797 -- If no obsolete linker files were found, the first missing
798 -- linker file is returned in O_File and O_Stamp is empty.
799 -- Otherwise O_File is No_File.
801 procedure Collect_Arguments
802 (Source_File : File_Name_Type;
803 Is_Main_Source : Boolean;
804 Args : Argument_List);
805 -- Collect all arguments for a source to be compiled, including those
806 -- that come from a project file.
808 procedure Display (Program : String; Args : Argument_List);
809 -- Displays Program followed by the arguments in Args if variable
810 -- Display_Executed_Programs is set. The lower bound of Args must be 1.
812 procedure Report_Compilation_Failed;
813 -- Delete all temporary files and fail graciously
815 -----------------
816 -- Mapping files
817 -----------------
819 type Temp_Path_Names is array (Positive range <>) of Path_Name_Type;
820 type Temp_Path_Ptr is access Temp_Path_Names;
822 type Free_File_Indexes is array (Positive range <>) of Positive;
823 type Free_Indexes_Ptr is access Free_File_Indexes;
825 type Project_Compilation_Data is record
826 Mapping_File_Names : Temp_Path_Ptr;
827 -- The name ids of the temporary mapping files used. This is indexed
828 -- on the maximum number of compilation processes we will be spawning
829 -- (-j parameter)
831 Last_Mapping_File_Names : Natural;
832 -- Index of the last mapping file created for this project
834 Free_Mapping_File_Indexes : Free_Indexes_Ptr;
835 -- Indexes in Mapping_File_Names of the mapping file names that can be
836 -- reused for subsequent compilations.
838 Last_Free_Indexes : Natural;
839 -- Number of mapping files that can be reused
840 end record;
841 -- Information necessary when compiling a project
843 type Project_Compilation_Access is access Project_Compilation_Data;
845 package Project_Compilation_Htable is new Simple_HTable
846 (Header_Num => Prj.Header_Num,
847 Element => Project_Compilation_Access,
848 No_Element => null,
849 Key => Project_Id,
850 Hash => Prj.Hash,
851 Equal => "=");
853 Project_Compilation : Project_Compilation_Htable.Instance;
855 Gnatmake_Mapping_File : String_Access := null;
856 -- The path name of a mapping file specified by switch -C=
858 procedure Init_Mapping_File
859 (Project : Project_Id;
860 Data : in out Project_Compilation_Data;
861 File_Index : in out Natural);
862 -- Create a new temporary mapping file, and fill it with the project file
863 -- mappings, when using project file(s). The out parameter File_Index is
864 -- the index to the name of the file in the array The_Mapping_File_Names.
866 -------------------------------------------------
867 -- Subprogram declarations moved from the spec --
868 -------------------------------------------------
870 procedure Bind (ALI_File : File_Name_Type; Args : Argument_List);
871 -- Binds ALI_File. Args are the arguments to pass to the binder.
872 -- Args must have a lower bound of 1.
874 procedure Display_Commands (Display : Boolean := True);
875 -- The default behavior of Make commands (Compile_Sources, Bind, Link)
876 -- is to display them on stderr. This behavior can be changed repeatedly
877 -- by invoking this procedure.
879 -- If a compilation, bind or link failed one of the following 3 exceptions
880 -- is raised. These need to be handled by the calling routines.
882 procedure Compile_Sources
883 (Main_Source : File_Name_Type;
884 Args : Argument_List;
885 First_Compiled_File : out File_Name_Type;
886 Most_Recent_Obj_File : out File_Name_Type;
887 Most_Recent_Obj_Stamp : out Time_Stamp_Type;
888 Main_Unit : out Boolean;
889 Compilation_Failures : out Natural;
890 Main_Index : Int := 0;
891 Check_Readonly_Files : Boolean := False;
892 Do_Not_Execute : Boolean := False;
893 Force_Compilations : Boolean := False;
894 Keep_Going : Boolean := False;
895 In_Place_Mode : Boolean := False;
896 Initialize_ALI_Data : Boolean := True;
897 Max_Process : Positive := 1);
898 -- Compile_Sources will recursively compile all the sources needed by
899 -- Main_Source. Before calling this routine make sure Namet has been
900 -- initialized. This routine can be called repeatedly with different
901 -- Main_Source file as long as all the source (-I flags), library
902 -- (-B flags) and ada library (-A flags) search paths between calls are
903 -- *exactly* the same. The default directory must also be the same.
905 -- Args contains the arguments to use during the compilations.
906 -- The lower bound of Args must be 1.
908 -- First_Compiled_File is set to the name of the first file that is
909 -- compiled or that needs to be compiled. This is set to No_Name if no
910 -- compilations were needed.
912 -- Most_Recent_Obj_File is set to the full name of the most recent
913 -- object file found when no compilations are needed, that is when
914 -- First_Compiled_File is set to No_Name. When First_Compiled_File
915 -- is set then Most_Recent_Obj_File is set to No_Name.
917 -- Most_Recent_Obj_Stamp is the time stamp of Most_Recent_Obj_File.
919 -- Main_Unit is set to True if Main_Source can be a main unit.
920 -- If Do_Not_Execute is False and First_Compiled_File /= No_Name
921 -- the value of Main_Unit is always False.
922 -- Is this used any more??? It is certainly not used by gnatmake???
924 -- Compilation_Failures is a count of compilation failures. This count
925 -- is used to extract compilation failure reports with Extract_Failure.
927 -- Main_Index, when not zero, is the index of the main unit in source
928 -- file Main_Source which is a multi-unit source.
929 -- Zero indicates that Main_Source is a single unit source file.
931 -- Check_Readonly_Files set it to True to compile source files
932 -- which library files are read-only. When compiling GNAT predefined
933 -- files the "-gnatg" flag is used.
935 -- Do_Not_Execute set it to True to find out the first source that
936 -- needs to be recompiled, but without recompiling it. This file is
937 -- saved in First_Compiled_File.
939 -- Force_Compilations forces all compilations no matter what but
940 -- recompiles read-only files only if Check_Readonly_Files
941 -- is set.
943 -- Keep_Going when True keep compiling even in the presence of
944 -- compilation errors.
946 -- In_Place_Mode when True save library/object files in their object
947 -- directory if they already exist; otherwise, in the source directory.
949 -- Initialize_ALI_Data set it to True when you want to initialize ALI
950 -- data-structures. This is what you should do most of the time.
951 -- (especially the first time around when you call this routine).
952 -- This parameter is set to False to preserve previously recorded
953 -- ALI file data.
955 -- Max_Process is the maximum number of processes that should be spawned
956 -- to carry out compilations.
958 -- Flags in Package Opt Affecting Compile_Sources
959 -- -----------------------------------------------
961 -- Check_Object_Consistency set it to False to omit all consistency
962 -- checks between an .ali file and its corresponding object file.
963 -- When this flag is set to true, every time an .ali is read,
964 -- package Osint checks that the corresponding object file
965 -- exists and is more recent than the .ali.
967 -- Use of Name Table Info
968 -- ----------------------
970 -- All file names manipulated by Compile_Sources are entered into the
971 -- Names table. The Byte field of a source file is used to mark it.
973 -- Calling Compile_Sources Several Times
974 -- -------------------------------------
976 -- Upon return from Compile_Sources all the ALI data structures are left
977 -- intact for further browsing. HOWEVER upon entry to this routine ALI
978 -- data structures are re-initialized if parameter Initialize_ALI_Data
979 -- above is set to true. Typically this is what you want the first time
980 -- you call Compile_Sources. You should not load an ali file, call this
981 -- routine with flag Initialize_ALI_Data set to True and then expect
982 -- that ALI information to be around after the call. Note that the first
983 -- time you call Compile_Sources you better set Initialize_ALI_Data to
984 -- True unless you have called Initialize_ALI yourself.
986 -- Compile_Sources ALGORITHM : Compile_Sources (Main_Source)
987 -- -------------------------
989 -- 1. Insert Main_Source in a Queue (Q) and mark it.
991 -- 2. Let unit.adb be the file at the head of the Q. If unit.adb is
992 -- missing but its corresponding ali file is in an Ada library directory
993 -- (see below) then, remove unit.adb from the Q and goto step 4.
994 -- Otherwise, look at the files under the D (dependency) section of
995 -- unit.ali. If unit.ali does not exist or some of the time stamps do
996 -- not match, (re)compile unit.adb.
998 -- An Ada library directory is a directory containing Ada specs, ali
999 -- and object files but no source files for the bodies. An Ada library
1000 -- directory is communicated to gnatmake by means of some switch so that
1001 -- gnatmake can skip the sources whole ali are in that directory.
1002 -- There are two reasons for skipping the sources in this case. Firstly,
1003 -- Ada libraries typically come without full sources but binding and
1004 -- linking against those libraries is still possible. Secondly, it would
1005 -- be very wasteful for gnatmake to systematically check the consistency
1006 -- of every external Ada library used in a program. The binder is
1007 -- already in charge of catching any potential inconsistencies.
1009 -- 3. Look into the W section of unit.ali and insert into the Q all
1010 -- unmarked source files. Mark all files newly inserted in the Q.
1011 -- Specifically, assuming that the W section looks like
1013 -- W types%s types.adb types.ali
1014 -- W unchecked_deallocation%s
1015 -- W xref_tab%s xref_tab.adb xref_tab.ali
1017 -- Then xref_tab.adb and types.adb are inserted in the Q if they are not
1018 -- already marked.
1019 -- Note that there is no file listed under W unchecked_deallocation%s
1020 -- so no generic body should ever be explicitly compiled (unless the
1021 -- Main_Source at the start was a generic body).
1023 -- 4. Repeat steps 2 and 3 above until the Q is empty
1025 -- Note that the above algorithm works because the units withed in
1026 -- subunits are transitively included in the W section (with section) of
1027 -- the main unit. Likewise the withed units in a generic body needed
1028 -- during a compilation are also transitively included in the W section
1029 -- of the originally compiled file.
1031 procedure Globalize (Success : out Boolean);
1032 -- Call the CodePeer globalizer on all the project's object directories,
1033 -- or on the current directory if no projects.
1035 procedure Initialize
1036 (Project_Node_Tree : out Project_Node_Tree_Ref;
1037 Env : out Prj.Tree.Environment);
1038 -- Performs default and package initialization. Therefore,
1039 -- Compile_Sources can be called by an external unit.
1041 procedure Link
1042 (ALI_File : File_Name_Type;
1043 Args : Argument_List;
1044 Success : out Boolean);
1045 -- Links ALI_File. Args are the arguments to pass to the linker.
1046 -- Args must have a lower bound of 1. Success indicates if the link
1047 -- succeeded or not.
1049 procedure Scan_Make_Arg
1050 (Env : in out Prj.Tree.Environment;
1051 Argv : String;
1052 And_Save : Boolean);
1053 -- Scan make arguments. Argv is a single argument to be processed.
1054 -- Project_Node_Tree will be used to initialize external references. It
1055 -- must have been initialized.
1057 -------------------
1058 -- Add_Arguments --
1059 -------------------
1061 procedure Add_Arguments (Args : Argument_List) is
1062 begin
1063 if Arguments = null then
1064 Arguments := new Argument_List (1 .. Args'Length + 10);
1066 else
1067 while Last_Argument + Args'Length > Arguments'Last loop
1068 declare
1069 New_Arguments : constant Argument_List_Access :=
1070 new Argument_List (1 .. Arguments'Last * 2);
1071 begin
1072 New_Arguments (1 .. Last_Argument) :=
1073 Arguments (1 .. Last_Argument);
1074 Arguments := New_Arguments;
1075 end;
1076 end loop;
1077 end if;
1079 Arguments (Last_Argument + 1 .. Last_Argument + Args'Length) := Args;
1080 Last_Argument := Last_Argument + Args'Length;
1081 end Add_Arguments;
1083 -- --------------------
1084 -- -- Add_Dependency --
1085 -- --------------------
1087 -- procedure Add_Dependency (S : File_Name_Type; On : File_Name_Type) is
1088 -- begin
1089 -- Dependencies.Increment_Last;
1090 -- Dependencies.Table (Dependencies.Last) := (S, On);
1091 -- end Add_Dependency;
1093 ----------------------------
1094 -- Add_Library_Search_Dir --
1095 ----------------------------
1097 procedure Add_Library_Search_Dir
1098 (Path : String;
1099 On_Command_Line : Boolean)
1101 begin
1102 if On_Command_Line then
1103 Add_Lib_Search_Dir (Normalize_Pathname (Path));
1105 else
1106 Get_Name_String (Main_Project.Directory.Display_Name);
1107 Add_Lib_Search_Dir
1108 (Normalize_Pathname (Path, Name_Buffer (1 .. Name_Len)));
1109 end if;
1110 end Add_Library_Search_Dir;
1112 --------------------
1113 -- Add_Object_Dir --
1114 --------------------
1116 procedure Add_Object_Dir (N : String) is
1117 begin
1118 Add_Lib_Search_Dir (N);
1120 if Verbose_Mode then
1121 Write_Str ("Adding object directory """);
1122 Write_Str (N);
1123 Write_Str (""".");
1124 Write_Eol;
1125 end if;
1126 end Add_Object_Dir;
1128 --------------------
1129 -- Add_Source_Dir --
1130 --------------------
1132 procedure Add_Source_Dir (N : String) is
1133 begin
1134 Add_Src_Search_Dir (N);
1136 if Verbose_Mode then
1137 Write_Str ("Adding source directory """);
1138 Write_Str (N);
1139 Write_Str (""".");
1140 Write_Eol;
1141 end if;
1142 end Add_Source_Dir;
1144 ---------------------------
1145 -- Add_Source_Search_Dir --
1146 ---------------------------
1148 procedure Add_Source_Search_Dir
1149 (Path : String;
1150 On_Command_Line : Boolean)
1152 begin
1153 if On_Command_Line then
1154 Add_Src_Search_Dir (Normalize_Pathname (Path));
1156 else
1157 Get_Name_String (Main_Project.Directory.Display_Name);
1158 Add_Src_Search_Dir
1159 (Normalize_Pathname (Path, Name_Buffer (1 .. Name_Len)));
1160 end if;
1161 end Add_Source_Search_Dir;
1163 ----------------
1164 -- Add_Switch --
1165 ----------------
1167 procedure Add_Switch
1168 (S : String_Access;
1169 Program : Make_Program_Type;
1170 Append_Switch : Boolean := True;
1171 And_Save : Boolean := True)
1173 generic
1174 with package T is new Table.Table (<>);
1175 procedure Generic_Position (New_Position : out Integer);
1176 -- Generic procedure that chooses a position for S in T at the
1177 -- beginning or the end, depending on the boolean Append_Switch.
1178 -- Calling this procedure may expand the table.
1180 ----------------------
1181 -- Generic_Position --
1182 ----------------------
1184 procedure Generic_Position (New_Position : out Integer) is
1185 begin
1186 T.Increment_Last;
1188 if Append_Switch then
1189 New_Position := Integer (T.Last);
1190 else
1191 for J in reverse T.Table_Index_Type'Succ (T.First) .. T.Last loop
1192 T.Table (J) := T.Table (T.Table_Index_Type'Pred (J));
1193 end loop;
1195 New_Position := Integer (T.First);
1196 end if;
1197 end Generic_Position;
1199 procedure Gcc_Switches_Pos is new Generic_Position (Gcc_Switches);
1200 procedure Binder_Switches_Pos is new Generic_Position (Binder_Switches);
1201 procedure Linker_Switches_Pos is new Generic_Position (Linker_Switches);
1203 procedure Saved_Gcc_Switches_Pos is new
1204 Generic_Position (Saved_Gcc_Switches);
1206 procedure Saved_Binder_Switches_Pos is new
1207 Generic_Position (Saved_Binder_Switches);
1209 procedure Saved_Linker_Switches_Pos is new
1210 Generic_Position (Saved_Linker_Switches);
1212 New_Position : Integer;
1214 -- Start of processing for Add_Switch
1216 begin
1217 if And_Save then
1218 case Program is
1219 when Compiler =>
1220 Saved_Gcc_Switches_Pos (New_Position);
1221 Saved_Gcc_Switches.Table (New_Position) := S;
1223 when Binder =>
1224 Saved_Binder_Switches_Pos (New_Position);
1225 Saved_Binder_Switches.Table (New_Position) := S;
1227 when Linker =>
1228 Saved_Linker_Switches_Pos (New_Position);
1229 Saved_Linker_Switches.Table (New_Position) := S;
1231 when None =>
1232 raise Program_Error;
1233 end case;
1235 else
1236 case Program is
1237 when Compiler =>
1238 Gcc_Switches_Pos (New_Position);
1239 Gcc_Switches.Table (New_Position) := S;
1241 when Binder =>
1242 Binder_Switches_Pos (New_Position);
1243 Binder_Switches.Table (New_Position) := S;
1245 when Linker =>
1246 Linker_Switches_Pos (New_Position);
1247 Linker_Switches.Table (New_Position) := S;
1249 when None =>
1250 raise Program_Error;
1251 end case;
1252 end if;
1253 end Add_Switch;
1255 procedure Add_Switch
1256 (S : String;
1257 Program : Make_Program_Type;
1258 Append_Switch : Boolean := True;
1259 And_Save : Boolean := True)
1261 begin
1262 Add_Switch (S => new String'(S),
1263 Program => Program,
1264 Append_Switch => Append_Switch,
1265 And_Save => And_Save);
1266 end Add_Switch;
1268 ------------------
1269 -- Add_Switches --
1270 ------------------
1272 procedure Add_Switches
1273 (The_Package : Package_Id;
1274 File_Name : String;
1275 Program : Make_Program_Type;
1276 Unknown_Switches_To_The_Compiler : Boolean := True;
1277 Env : in out Prj.Tree.Environment)
1279 Switches : Variable_Value;
1280 Switch_List : String_List_Id;
1281 Element : String_Element;
1283 begin
1284 Switch_May_Be_Passed_To_The_Compiler :=
1285 Unknown_Switches_To_The_Compiler;
1287 if File_Name'Length > 0 then
1288 Name_Len := 0;
1289 Add_Str_To_Name_Buffer (File_Name);
1290 Switches :=
1291 Switches_Of
1292 (Source_File => Name_Find,
1293 Project => Main_Project,
1294 In_Package => The_Package,
1295 Allow_ALI => Program = Binder or else Program = Linker);
1297 if Switches.Kind = List then
1298 Program_Args := Program;
1300 Switch_List := Switches.Values;
1301 while Switch_List /= Nil_String loop
1302 Element :=
1303 Project_Tree.Shared.String_Elements.Table (Switch_List);
1304 Get_Name_String (Element.Value);
1306 if Name_Len > 0 then
1307 declare
1308 Argv : constant String := Name_Buffer (1 .. Name_Len);
1309 -- We need a copy, because Name_Buffer may be modified
1311 begin
1312 if Verbose_Mode then
1313 Write_Str (" Adding ");
1314 Write_Line (Argv);
1315 end if;
1317 Scan_Make_Arg (Env, Argv, And_Save => False);
1319 if not Gnatmake_Switch_Found
1320 and then not Switch_May_Be_Passed_To_The_Compiler
1321 then
1322 Errutil.Error_Msg
1323 ('"' & Argv &
1324 """ is not a gnatmake switch. Consider moving "
1325 & "it to Global_Compilation_Switches.",
1326 Element.Location);
1327 Make_Failed ("*** illegal switch """ & Argv & """");
1328 end if;
1329 end;
1330 end if;
1332 Switch_List := Element.Next;
1333 end loop;
1334 end if;
1335 end if;
1336 end Add_Switches;
1338 ----------
1339 -- Bind --
1340 ----------
1342 procedure Bind (ALI_File : File_Name_Type; Args : Argument_List) is
1343 Bind_Args : Argument_List (1 .. Args'Last + 2);
1344 Bind_Last : Integer;
1345 Success : Boolean;
1347 begin
1348 pragma Assert (Args'First = 1);
1350 -- Optimize the simple case where the gnatbind command line looks like
1351 -- gnatbind -aO. -I- file.ali
1352 -- into
1353 -- gnatbind file.adb
1355 if Args'Length = 2
1356 and then Args (Args'First).all = "-aO" & Normalized_CWD
1357 and then Args (Args'Last).all = "-I-"
1358 and then ALI_File = Strip_Directory (ALI_File)
1359 then
1360 Bind_Last := Args'First - 1;
1362 else
1363 Bind_Last := Args'Last;
1364 Bind_Args (Args'Range) := Args;
1365 end if;
1367 -- It is completely pointless to re-check source file time stamps. This
1368 -- has been done already by gnatmake
1370 Bind_Last := Bind_Last + 1;
1371 Bind_Args (Bind_Last) := Do_Not_Check_Flag;
1373 Get_Name_String (ALI_File);
1375 Bind_Last := Bind_Last + 1;
1376 Bind_Args (Bind_Last) := new String'(Name_Buffer (1 .. Name_Len));
1378 GNAT.OS_Lib.Normalize_Arguments (Bind_Args (Args'First .. Bind_Last));
1380 Display (Gnatbind.all, Bind_Args (Args'First .. Bind_Last));
1382 if Gnatbind_Path = null then
1383 Make_Failed ("error, unable to locate " & Gnatbind.all);
1384 end if;
1386 GNAT.OS_Lib.Spawn
1387 (Gnatbind_Path.all, Bind_Args (Args'First .. Bind_Last), Success);
1389 if not Success then
1390 Make_Failed ("*** bind failed.");
1391 end if;
1392 end Bind;
1394 --------------------------------
1395 -- Change_To_Object_Directory --
1396 --------------------------------
1398 procedure Change_To_Object_Directory (Project : Project_Id) is
1399 Object_Directory : Path_Name_Type;
1401 begin
1402 pragma Assert (Project /= No_Project);
1404 -- Nothing to do if the current working directory is already the correct
1405 -- object directory.
1407 if Project_Of_Current_Object_Directory /= Project then
1408 Project_Of_Current_Object_Directory := Project;
1409 Object_Directory := Project.Object_Directory.Display_Name;
1411 -- Set the working directory to the object directory of the actual
1412 -- project.
1414 if Verbose_Mode then
1415 Write_Str ("Changing to object directory of """);
1416 Write_Name (Project.Display_Name);
1417 Write_Str (""": """);
1418 Write_Name (Object_Directory);
1419 Write_Line ("""");
1420 end if;
1422 Change_Dir (Get_Name_String (Object_Directory));
1423 end if;
1425 exception
1426 -- Fail if unable to change to the object directory
1428 when Directory_Error =>
1429 Make_Failed ("unable to change to object directory """ &
1430 Path_Or_File_Name
1431 (Project.Object_Directory.Display_Name) &
1432 """ of project " &
1433 Get_Name_String (Project.Display_Name));
1434 end Change_To_Object_Directory;
1436 -----------
1437 -- Check --
1438 -----------
1440 procedure Check
1441 (Source_File : File_Name_Type;
1442 Is_Main_Source : Boolean;
1443 The_Args : Argument_List;
1444 Lib_File : File_Name_Type;
1445 Full_Lib_File : File_Name_Type;
1446 Lib_File_Attr : access File_Attributes;
1447 Read_Only : Boolean;
1448 ALI : out ALI_Id;
1449 O_File : out File_Name_Type;
1450 O_Stamp : out Time_Stamp_Type)
1452 function First_New_Spec (A : ALI_Id) return File_Name_Type;
1453 -- Looks in the with table entries of A and returns the spec file name
1454 -- of the first withed unit (subprogram) for which no spec existed when
1455 -- A was generated but for which there exists one now, implying that A
1456 -- is now obsolete. If no such unit is found No_File is returned.
1457 -- Otherwise the spec file name of the unit is returned.
1459 -- **WARNING** in the event of Uname format modifications, one *MUST*
1460 -- make sure this function is also updated.
1462 -- Note: This function should really be in ali.adb and use Uname
1463 -- services, but this causes the whole compiler to be dragged along
1464 -- for gnatbind and gnatmake.
1466 --------------------
1467 -- First_New_Spec --
1468 --------------------
1470 function First_New_Spec (A : ALI_Id) return File_Name_Type is
1471 Spec_File_Name : File_Name_Type := No_File;
1473 function New_Spec (Uname : Unit_Name_Type) return Boolean;
1474 -- Uname is the name of the spec or body of some ada unit. This
1475 -- function returns True if the Uname is the name of a body which has
1476 -- a spec not mentioned in ALI file A. If True is returned
1477 -- Spec_File_Name above is set to the name of this spec file.
1479 --------------
1480 -- New_Spec --
1481 --------------
1483 function New_Spec (Uname : Unit_Name_Type) return Boolean is
1484 Spec_Name : Unit_Name_Type;
1485 File_Name : File_Name_Type;
1487 begin
1488 -- Test whether Uname is the name of a body unit (i.e. ends
1489 -- with %b).
1491 Get_Name_String (Uname);
1492 pragma
1493 Assert (Name_Len > 2 and then Name_Buffer (Name_Len - 1) = '%');
1495 if Name_Buffer (Name_Len) /= 'b' then
1496 return False;
1497 end if;
1499 -- Convert unit name into spec name
1501 -- ??? this code seems dubious in presence of pragma
1502 -- Source_File_Name since there is no more direct relationship
1503 -- between unit name and file name.
1505 -- ??? Further, what about alternative subunit naming
1507 Name_Buffer (Name_Len) := 's';
1508 Spec_Name := Name_Find;
1509 File_Name := Get_File_Name (Spec_Name, Subunit => False);
1511 -- Look if File_Name is mentioned in A's sdep list.
1512 -- If not look if the file exists. If it does return True.
1514 for D in
1515 ALIs.Table (A).First_Sdep .. ALIs.Table (A).Last_Sdep
1516 loop
1517 if Sdep.Table (D).Sfile = File_Name then
1518 return False;
1519 end if;
1520 end loop;
1522 if Full_Source_Name (File_Name) /= No_File then
1523 Spec_File_Name := File_Name;
1524 return True;
1525 end if;
1527 return False;
1528 end New_Spec;
1530 -- Start of processing for First_New_Spec
1532 begin
1533 U_Chk : for U in
1534 ALIs.Table (A).First_Unit .. ALIs.Table (A).Last_Unit
1535 loop
1536 exit U_Chk when Units.Table (U).Utype = Is_Body_Only
1537 and then New_Spec (Units.Table (U).Uname);
1539 for W in Units.Table (U).First_With
1541 Units.Table (U).Last_With
1542 loop
1543 exit U_Chk when
1544 Withs.Table (W).Afile /= No_File
1545 and then New_Spec (Withs.Table (W).Uname);
1546 end loop;
1547 end loop U_Chk;
1549 return Spec_File_Name;
1550 end First_New_Spec;
1552 ---------------------------------
1553 -- Data declarations for Check --
1554 ---------------------------------
1556 Full_Obj_File : File_Name_Type;
1557 -- Full name of the object file corresponding to Lib_File
1559 Lib_Stamp : Time_Stamp_Type;
1560 -- Time stamp of the current ada library file
1562 Obj_Stamp : Time_Stamp_Type;
1563 -- Time stamp of the current object file
1565 Modified_Source : File_Name_Type;
1566 -- The first source in Lib_File whose current time stamp differs from
1567 -- that stored in Lib_File.
1569 New_Spec : File_Name_Type;
1570 -- If Lib_File contains in its W (with) section a body (for a
1571 -- subprogram) for which there exists a spec, and the spec did not
1572 -- appear in the Sdep section of Lib_File, New_Spec contains the file
1573 -- name of this new spec.
1575 Source_Name : File_Name_Type;
1576 Text : Text_Buffer_Ptr;
1578 Prev_Switch : String_Access;
1579 -- Previous switch processed
1581 Arg : Arg_Id := Arg_Id'First;
1582 -- Current index in Args.Table for a given unit (init to stop warning)
1584 Switch_Found : Boolean;
1585 -- True if a given switch has been found
1587 ALI_Project : Project_Id;
1588 -- If the ALI file is in the object directory of a project, this is
1589 -- the project id.
1591 -- Start of processing for Check
1593 begin
1594 pragma Assert (Lib_File /= No_File);
1596 -- If ALI file is read-only, temporarily set Check_Object_Consistency to
1597 -- False. We don't care if the object file is not there (presumably a
1598 -- library will be used for linking.)
1600 if Read_Only then
1601 declare
1602 Saved_Check_Object_Consistency : constant Boolean :=
1603 Check_Object_Consistency;
1604 begin
1605 Check_Object_Consistency := False;
1606 Text := Read_Library_Info_From_Full (Full_Lib_File, Lib_File_Attr);
1607 Check_Object_Consistency := Saved_Check_Object_Consistency;
1608 end;
1610 else
1611 Text := Read_Library_Info_From_Full (Full_Lib_File, Lib_File_Attr);
1612 end if;
1614 Full_Obj_File := Full_Object_File_Name;
1615 Lib_Stamp := Current_Library_File_Stamp;
1616 Obj_Stamp := Current_Object_File_Stamp;
1618 if Full_Lib_File = No_File then
1619 Verbose_Msg
1620 (Lib_File,
1621 "being checked ...",
1622 Prefix => " ",
1623 Minimum_Verbosity => Opt.Medium);
1624 else
1625 Verbose_Msg
1626 (Full_Lib_File,
1627 "being checked ...",
1628 Prefix => " ",
1629 Minimum_Verbosity => Opt.Medium);
1630 end if;
1632 ALI := No_ALI_Id;
1633 O_File := Full_Obj_File;
1634 O_Stamp := Obj_Stamp;
1636 if Text = null then
1637 if Full_Lib_File = No_File then
1638 Verbose_Msg (Lib_File, "missing.");
1640 elsif Obj_Stamp (Obj_Stamp'First) = ' ' then
1641 Verbose_Msg (Full_Obj_File, "missing.");
1643 else
1644 Verbose_Msg
1645 (Full_Lib_File, "(" & String (Lib_Stamp) & ") newer than",
1646 Full_Obj_File, "(" & String (Obj_Stamp) & ")");
1647 end if;
1649 else
1650 ALI := Scan_ALI (Lib_File, Text, Ignore_ED => False, Err => True);
1651 Free (Text);
1653 if ALI = No_ALI_Id then
1654 Verbose_Msg (Full_Lib_File, "incorrectly formatted ALI file");
1655 return;
1657 elsif ALIs.Table (ALI).Ver (1 .. ALIs.Table (ALI).Ver_Len) /=
1658 Verbose_Library_Version
1659 then
1660 Verbose_Msg (Full_Lib_File, "compiled with old GNAT version");
1661 ALI := No_ALI_Id;
1662 return;
1663 end if;
1665 -- Don't take ALI file into account if it was generated with errors
1667 if ALIs.Table (ALI).Compile_Errors then
1668 Verbose_Msg (Full_Lib_File, "had errors, must be recompiled");
1669 ALI := No_ALI_Id;
1670 return;
1671 end if;
1673 -- Don't take ALI file into account if no object was generated
1675 if Operating_Mode /= Check_Semantics
1676 and then ALIs.Table (ALI).No_Object
1677 then
1678 Verbose_Msg (Full_Lib_File, "has no corresponding object");
1679 ALI := No_ALI_Id;
1680 return;
1681 end if;
1683 -- When compiling with -gnatc, don't take ALI file into account if
1684 -- it has not been generated for the current source, for example if
1685 -- it has been generated for the spec, but we are compiling the body.
1687 if Operating_Mode = Check_Semantics then
1688 declare
1689 File_Name : String := Get_Name_String (Source_File);
1690 OK : Boolean := False;
1692 begin
1693 -- In the ALI file, the source file names are in canonical case
1695 Canonical_Case_File_Name (File_Name);
1697 for U in ALIs.Table (ALI).First_Unit ..
1698 ALIs.Table (ALI).Last_Unit
1699 loop
1700 OK := Get_Name_String (Units.Table (U).Sfile) = File_Name;
1701 exit when OK;
1702 end loop;
1704 if not OK then
1705 Verbose_Msg
1706 (Full_Lib_File, "not generated for the same source");
1707 ALI := No_ALI_Id;
1708 return;
1709 end if;
1710 end;
1711 end if;
1713 -- Check for matching compiler switches if needed
1715 if Check_Switches then
1717 -- First, collect all the switches
1719 Collect_Arguments (Source_File, Is_Main_Source, The_Args);
1720 Prev_Switch := Dummy_Switch;
1721 Get_Name_String (ALIs.Table (ALI).Sfile);
1722 Switches_To_Check.Set_Last (0);
1724 for J in 1 .. Last_Argument loop
1726 -- Skip non switches -c, -I and -o switches
1728 if Arguments (J) (1) = '-'
1729 and then Arguments (J) (2) /= 'c'
1730 and then Arguments (J) (2) /= 'o'
1731 and then Arguments (J) (2) /= 'I'
1732 then
1733 Normalize_Compiler_Switches
1734 (Arguments (J).all,
1735 Normalized_Switches,
1736 Last_Norm_Switch);
1738 for K in 1 .. Last_Norm_Switch loop
1739 Switches_To_Check.Increment_Last;
1740 Switches_To_Check.Table (Switches_To_Check.Last) :=
1741 Normalized_Switches (K);
1742 end loop;
1743 end if;
1744 end loop;
1746 for J in 1 .. Switches_To_Check.Last loop
1748 -- Comparing switches is delicate because gcc reorders a number
1749 -- of switches, according to lang-specs.h, but gnatmake doesn't
1750 -- have sufficient knowledge to perform the same reordering.
1751 -- Instead, we ignore orders between different "first letter"
1752 -- switches, but keep orders between same switches, e.g -O -O2
1753 -- is different than -O2 -O, but -g -O is equivalent to -O -g.
1755 if Switches_To_Check.Table (J) (2) /= Prev_Switch (2) or else
1756 (Prev_Switch'Length >= 6 and then
1757 Prev_Switch (2 .. 5) = "gnat" and then
1758 Switches_To_Check.Table (J)'Length >= 6 and then
1759 Switches_To_Check.Table (J) (2 .. 5) = "gnat" and then
1760 Prev_Switch (6) /= Switches_To_Check.Table (J) (6))
1761 then
1762 Prev_Switch := Switches_To_Check.Table (J);
1763 Arg :=
1764 Units.Table (ALIs.Table (ALI).First_Unit).First_Arg;
1765 end if;
1767 Switch_Found := False;
1769 for K in Arg ..
1770 Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg
1771 loop
1773 Switches_To_Check.Table (J).all = Args.Table (K).all
1774 then
1775 Arg := K + 1;
1776 Switch_Found := True;
1777 exit;
1778 end if;
1779 end loop;
1781 if not Switch_Found then
1782 if Verbose_Mode then
1783 Verbose_Msg (ALIs.Table (ALI).Sfile,
1784 "switch mismatch """ &
1785 Switches_To_Check.Table (J).all & '"');
1786 end if;
1788 ALI := No_ALI_Id;
1789 return;
1790 end if;
1791 end loop;
1793 if Switches_To_Check.Last /=
1794 Integer (Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg -
1795 Units.Table (ALIs.Table (ALI).First_Unit).First_Arg + 1)
1796 then
1797 if Verbose_Mode then
1798 Verbose_Msg (ALIs.Table (ALI).Sfile,
1799 "different number of switches");
1801 for K in Units.Table (ALIs.Table (ALI).First_Unit).First_Arg
1802 .. Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg
1803 loop
1804 Write_Str (Args.Table (K).all);
1805 Write_Char (' ');
1806 end loop;
1808 Write_Eol;
1810 for J in 1 .. Switches_To_Check.Last loop
1811 Write_Str (Switches_To_Check.Table (J).all);
1812 Write_Char (' ');
1813 end loop;
1815 Write_Eol;
1816 end if;
1818 ALI := No_ALI_Id;
1819 return;
1820 end if;
1821 end if;
1823 -- Get the source files and their message digests. Note that some
1824 -- sources may be missing if ALI is out-of-date.
1826 Set_Source_Table (ALI);
1828 Modified_Source := Time_Stamp_Mismatch (ALI, Read_Only);
1830 -- To avoid using too much memory when switch -m is used, free the
1831 -- memory allocated for the source file when computing the checksum.
1833 if Minimal_Recompilation then
1834 Sinput.P.Clear_Source_File_Table;
1835 end if;
1837 if Modified_Source /= No_File then
1838 ALI := No_ALI_Id;
1840 if Verbose_Mode then
1841 Source_Name := Full_Source_Name (Modified_Source);
1843 if Source_Name /= No_File then
1844 Verbose_Msg (Source_Name, "time stamp mismatch");
1845 else
1846 Verbose_Msg (Modified_Source, "missing");
1847 end if;
1848 end if;
1850 else
1851 New_Spec := First_New_Spec (ALI);
1853 if New_Spec /= No_File then
1854 ALI := No_ALI_Id;
1856 if Verbose_Mode then
1857 Source_Name := Full_Source_Name (New_Spec);
1859 if Source_Name /= No_File then
1860 Verbose_Msg (Source_Name, "new spec");
1861 else
1862 Verbose_Msg (New_Spec, "old spec missing");
1863 end if;
1864 end if;
1866 elsif not Read_Only and then Main_Project /= No_Project then
1867 declare
1868 Uname : constant Name_Id :=
1869 Check_Source_Info_In_ALI (ALI, Project_Tree);
1871 Udata : Prj.Unit_Index;
1873 begin
1874 if Uname = No_Name then
1875 ALI := No_ALI_Id;
1876 return;
1877 end if;
1879 -- Check that ALI file is in the correct object directory.
1880 -- If it is in the object directory of a project that is
1881 -- extended and it depends on a source that is in one of
1882 -- its extending projects, then the ALI file is not in the
1883 -- correct object directory.
1885 -- First, find the project of this ALI file. As there may be
1886 -- several projects with the same object directory, we first
1887 -- need to find the project of the source.
1889 ALI_Project := No_Project;
1891 Udata := Units_Htable.Get (Project_Tree.Units_HT, Uname);
1893 if Udata /= No_Unit_Index then
1894 if Udata.File_Names (Impl) /= null
1895 and then Udata.File_Names (Impl).File = Source_File
1896 then
1897 ALI_Project := Udata.File_Names (Impl).Project;
1899 elsif Udata.File_Names (Spec) /= null
1900 and then Udata.File_Names (Spec).File = Source_File
1901 then
1902 ALI_Project := Udata.File_Names (Spec).Project;
1903 end if;
1904 end if;
1905 end;
1907 if ALI_Project = No_Project then
1908 return;
1909 end if;
1911 declare
1912 Obj_Dir : Path_Name_Type;
1913 Res_Obj_Dir : constant String :=
1914 Normalize_Pathname
1915 (Dir_Name
1916 (Get_Name_String (Full_Lib_File)),
1917 Resolve_Links =>
1918 Opt.Follow_Links_For_Dirs,
1919 Case_Sensitive => False);
1921 begin
1922 Name_Len := 0;
1923 Add_Str_To_Name_Buffer (Res_Obj_Dir);
1925 if not Is_Directory_Separator (Name_Buffer (Name_Len)) then
1926 Add_Char_To_Name_Buffer (Directory_Separator);
1927 end if;
1929 Obj_Dir := Name_Find;
1931 while ALI_Project /= No_Project
1932 and then Obj_Dir /= ALI_Project.Object_Directory.Name
1933 loop
1934 ALI_Project := ALI_Project.Extended_By;
1935 end loop;
1936 end;
1938 if ALI_Project = No_Project then
1939 ALI := No_ALI_Id;
1941 Verbose_Msg (Lib_File, " wrong object directory");
1942 return;
1943 end if;
1945 -- If the ALI project is not extended, then it must be in
1946 -- the correct object directory.
1948 if ALI_Project.Extended_By = No_Project then
1949 return;
1950 end if;
1952 -- Count the extending projects
1954 declare
1955 Num_Ext : Natural;
1956 Proj : Project_Id;
1958 begin
1959 Num_Ext := 0;
1960 Proj := ALI_Project;
1961 loop
1962 Proj := Proj.Extended_By;
1963 exit when Proj = No_Project;
1964 Num_Ext := Num_Ext + 1;
1965 end loop;
1967 -- Make a list of the extending projects
1969 declare
1970 Projects : array (1 .. Num_Ext) of Project_Id;
1971 Dep : Sdep_Record;
1972 OK : Boolean := True;
1973 UID : Unit_Index;
1975 begin
1976 Proj := ALI_Project;
1977 for J in Projects'Range loop
1978 Proj := Proj.Extended_By;
1979 Projects (J) := Proj;
1980 end loop;
1982 -- Now check if any of the dependant sources are in any
1983 -- of these extending projects.
1985 D_Chk :
1986 for D in ALIs.Table (ALI).First_Sdep ..
1987 ALIs.Table (ALI).Last_Sdep
1988 loop
1989 Dep := Sdep.Table (D);
1990 UID := Units_Htable.Get_First (Project_Tree.Units_HT);
1991 Proj := No_Project;
1993 Unit_Loop :
1994 while UID /= null loop
1995 if UID.File_Names (Impl) /= null
1996 and then UID.File_Names (Impl).File = Dep.Sfile
1997 then
1998 Proj := UID.File_Names (Impl).Project;
2000 elsif UID.File_Names (Spec) /= null
2001 and then UID.File_Names (Spec).File = Dep.Sfile
2002 then
2003 Proj := UID.File_Names (Spec).Project;
2004 end if;
2006 -- If a source is in a project, check if it is one
2007 -- in the list.
2009 if Proj /= No_Project then
2010 for J in Projects'Range loop
2011 if Proj = Projects (J) then
2012 OK := False;
2013 exit D_Chk;
2014 end if;
2015 end loop;
2017 exit Unit_Loop;
2018 end if;
2020 UID :=
2021 Units_Htable.Get_Next (Project_Tree.Units_HT);
2022 end loop Unit_Loop;
2023 end loop D_Chk;
2025 -- If one of the dependent sources is in one project of
2026 -- the list, then we must recompile.
2028 if not OK then
2029 ALI := No_ALI_Id;
2030 Verbose_Msg (Lib_File, " wrong object directory");
2031 end if;
2032 end;
2033 end;
2034 end if;
2035 end if;
2036 end if;
2037 end Check;
2039 ------------------------
2040 -- Check_For_S_Switch --
2041 ------------------------
2043 procedure Check_For_S_Switch is
2044 begin
2045 -- By default, we generate an object file
2047 Output_Is_Object := True;
2049 for Arg in 1 .. Last_Argument loop
2050 if Arguments (Arg).all = "-S" then
2051 Output_Is_Object := False;
2053 elsif Arguments (Arg).all = "-c" then
2054 Output_Is_Object := True;
2055 end if;
2056 end loop;
2057 end Check_For_S_Switch;
2059 --------------------------
2060 -- Check_Linker_Options --
2061 --------------------------
2063 procedure Check_Linker_Options
2064 (E_Stamp : Time_Stamp_Type;
2065 O_File : out File_Name_Type;
2066 O_Stamp : out Time_Stamp_Type)
2068 procedure Check_File (File : File_Name_Type);
2069 -- Update O_File and O_Stamp if the given file is younger than E_Stamp
2070 -- and O_Stamp, or if O_File is No_File and File does not exist.
2072 function Get_Library_File (Name : String) return File_Name_Type;
2073 -- Return the full file name including path of a library based
2074 -- on the name specified with the -l linker option, using the
2075 -- Ada object path. Return No_File if no such file can be found.
2077 type Char_Array is array (Natural) of Character;
2078 type Char_Array_Access is access constant Char_Array;
2080 Template : Char_Array_Access;
2081 pragma Import (C, Template, "__gnat_library_template");
2083 ----------------
2084 -- Check_File --
2085 ----------------
2087 procedure Check_File (File : File_Name_Type) is
2088 Stamp : Time_Stamp_Type;
2089 Name : File_Name_Type := File;
2091 begin
2092 Get_Name_String (Name);
2094 -- Remove any trailing NUL characters
2096 while Name_Len >= Name_Buffer'First
2097 and then Name_Buffer (Name_Len) = NUL
2098 loop
2099 Name_Len := Name_Len - 1;
2100 end loop;
2102 if Name_Len = 0 then
2103 return;
2105 elsif Name_Buffer (1) = '-' then
2107 -- Do not check if File is a switch other than "-l"
2109 if Name_Buffer (2) /= 'l' then
2110 return;
2111 end if;
2113 -- The argument is a library switch, get actual name. It
2114 -- is necessary to make a copy of the relevant part of
2115 -- Name_Buffer as Get_Library_Name uses Name_Buffer as well.
2117 declare
2118 Base_Name : constant String := Name_Buffer (3 .. Name_Len);
2120 begin
2121 Name := Get_Library_File (Base_Name);
2122 end;
2124 if Name = No_File then
2125 return;
2126 end if;
2127 end if;
2129 Stamp := File_Stamp (Name);
2131 -- Find the youngest object file that is younger than the
2132 -- executable. If no such file exist, record the first object
2133 -- file that is not found.
2135 if (O_Stamp < Stamp and then E_Stamp < Stamp)
2136 or else (O_File = No_File and then Stamp (Stamp'First) = ' ')
2137 then
2138 O_Stamp := Stamp;
2139 O_File := Name;
2141 -- Strip the trailing NUL if present
2143 Get_Name_String (O_File);
2145 if Name_Buffer (Name_Len) = NUL then
2146 Name_Len := Name_Len - 1;
2147 O_File := Name_Find;
2148 end if;
2149 end if;
2150 end Check_File;
2152 ----------------------
2153 -- Get_Library_Name --
2154 ----------------------
2156 -- See comments in a-adaint.c about template syntax
2158 function Get_Library_File (Name : String) return File_Name_Type is
2159 File : File_Name_Type := No_File;
2161 begin
2162 Name_Len := 0;
2164 for Ptr in Template'Range loop
2165 case Template (Ptr) is
2166 when '*' =>
2167 Add_Str_To_Name_Buffer (Name);
2169 when ';' =>
2170 File := Full_Lib_File_Name (Name_Find);
2171 exit when File /= No_File;
2172 Name_Len := 0;
2174 when NUL =>
2175 exit;
2177 when others =>
2178 Add_Char_To_Name_Buffer (Template (Ptr));
2179 end case;
2180 end loop;
2182 -- The for loop exited because the end of the template
2183 -- was reached. File contains the last possible file name
2184 -- for the library.
2186 if File = No_File and then Name_Len > 0 then
2187 File := Full_Lib_File_Name (Name_Find);
2188 end if;
2190 return File;
2191 end Get_Library_File;
2193 -- Start of processing for Check_Linker_Options
2195 begin
2196 O_File := No_File;
2197 O_Stamp := (others => ' ');
2199 -- Process linker options from the ALI files
2201 for Opt in 1 .. Linker_Options.Last loop
2202 Check_File (File_Name_Type (Linker_Options.Table (Opt).Name));
2203 end loop;
2205 -- Process options given on the command line
2207 for Opt in Linker_Switches.First .. Linker_Switches.Last loop
2209 -- Check if the previous Opt has one of the two switches
2210 -- that take an extra parameter. (See GCC manual.)
2212 if Opt = Linker_Switches.First
2213 or else (Linker_Switches.Table (Opt - 1).all /= "-u"
2214 and then
2215 Linker_Switches.Table (Opt - 1).all /= "-Xlinker"
2216 and then
2217 Linker_Switches.Table (Opt - 1).all /= "-L")
2218 then
2219 Name_Len := 0;
2220 Add_Str_To_Name_Buffer (Linker_Switches.Table (Opt).all);
2221 Check_File (Name_Find);
2222 end if;
2223 end loop;
2224 end Check_Linker_Options;
2226 -----------------
2227 -- Check_Steps --
2228 -----------------
2230 procedure Check_Steps is
2231 begin
2232 -- If either -c, -b or -l has been specified, we will not necessarily
2233 -- execute all steps.
2235 if Make_Steps then
2236 Do_Compile_Step := Do_Compile_Step and Compile_Only;
2237 Do_Bind_Step := Do_Bind_Step and Bind_Only;
2238 Do_Link_Step := Do_Link_Step and Link_Only;
2240 -- If -c has been specified, but not -b, ignore any potential -l
2242 if Do_Compile_Step and then not Do_Bind_Step then
2243 Do_Link_Step := False;
2244 end if;
2245 end if;
2246 end Check_Steps;
2248 -----------------------
2249 -- Collect_Arguments --
2250 -----------------------
2252 procedure Collect_Arguments
2253 (Source_File : File_Name_Type;
2254 Is_Main_Source : Boolean;
2255 Args : Argument_List)
2257 begin
2258 Arguments_Project := No_Project;
2259 Last_Argument := 0;
2260 Add_Arguments (Args);
2262 if Main_Project /= No_Project then
2263 declare
2264 Source_File_Name : constant String :=
2265 Get_Name_String (Source_File);
2266 Compiler_Package : Prj.Package_Id;
2267 Switches : Prj.Variable_Value;
2269 begin
2270 Prj.Env.
2271 Get_Reference
2272 (Source_File_Name => Source_File_Name,
2273 Project => Arguments_Project,
2274 Path => Arguments_Path_Name,
2275 In_Tree => Project_Tree);
2277 -- If the source is not a source of a project file, add the
2278 -- recorded arguments. Check will be done later if the source
2279 -- need to be compiled that the switch -x has been used.
2281 if Arguments_Project = No_Project then
2282 Add_Arguments (The_Saved_Gcc_Switches.all);
2284 elsif not Arguments_Project.Externally_Built
2285 or else Must_Compile
2286 then
2287 -- We get the project directory for the relative path
2288 -- switches and arguments.
2290 Arguments_Project :=
2291 Ultimate_Extending_Project_Of (Arguments_Project);
2293 -- If building a dynamic or relocatable library, compile with
2294 -- PIC option, if it exists.
2296 if Arguments_Project.Library
2297 and then Arguments_Project.Library_Kind /= Static
2298 then
2299 declare
2300 PIC : constant String := MLib.Tgt.PIC_Option;
2301 begin
2302 if PIC /= "" then
2303 Add_Arguments ((1 => new String'(PIC)));
2304 end if;
2305 end;
2306 end if;
2308 -- We now look for package Compiler and get the switches from
2309 -- this package.
2311 Compiler_Package :=
2312 Prj.Util.Value_Of
2313 (Name => Name_Compiler,
2314 In_Packages => Arguments_Project.Decl.Packages,
2315 Shared => Project_Tree.Shared);
2317 if Compiler_Package /= No_Package then
2319 -- If package Gnatmake.Compiler exists, we get the specific
2320 -- switches for the current source, or the global switches,
2321 -- if any.
2323 Switches :=
2324 Switches_Of
2325 (Source_File => Source_File,
2326 Project => Arguments_Project,
2327 In_Package => Compiler_Package,
2328 Allow_ALI => False);
2330 end if;
2332 case Switches.Kind is
2334 -- We have a list of switches. We add these switches,
2335 -- plus the saved gcc switches.
2337 when List =>
2339 declare
2340 Current : String_List_Id := Switches.Values;
2341 Element : String_Element;
2342 Number : Natural := 0;
2344 begin
2345 while Current /= Nil_String loop
2346 Element := Project_Tree.Shared.String_Elements.
2347 Table (Current);
2348 Number := Number + 1;
2349 Current := Element.Next;
2350 end loop;
2352 declare
2353 New_Args : Argument_List (1 .. Number);
2354 Last_New : Natural := 0;
2355 Dir_Path : constant String := Get_Name_String
2356 (Arguments_Project.Directory.Display_Name);
2358 begin
2359 Current := Switches.Values;
2361 for Index in New_Args'Range loop
2362 Element := Project_Tree.Shared.String_Elements.
2363 Table (Current);
2364 Get_Name_String (Element.Value);
2366 if Name_Len > 0 then
2367 Last_New := Last_New + 1;
2368 New_Args (Last_New) :=
2369 new String'(Name_Buffer (1 .. Name_Len));
2370 Ensure_Absolute_Path
2371 (New_Args (Last_New),
2372 Do_Fail => Make_Failed'Access,
2373 Parent => Dir_Path,
2374 Including_Non_Switch => False);
2375 end if;
2377 Current := Element.Next;
2378 end loop;
2380 Add_Arguments
2381 (Configuration_Pragmas_Switch (Arguments_Project)
2382 & New_Args (1 .. Last_New)
2383 & The_Saved_Gcc_Switches.all);
2384 end;
2385 end;
2387 -- We have a single switch. We add this switch,
2388 -- plus the saved gcc switches.
2390 when Single =>
2391 Get_Name_String (Switches.Value);
2393 declare
2394 New_Args : Argument_List :=
2395 (1 => new String'
2396 (Name_Buffer (1 .. Name_Len)));
2397 Dir_Path : constant String :=
2398 Get_Name_String
2399 (Arguments_Project.
2400 Directory.Display_Name);
2402 begin
2403 Ensure_Absolute_Path
2404 (New_Args (1),
2405 Do_Fail => Make_Failed'Access,
2406 Parent => Dir_Path,
2407 Including_Non_Switch => False);
2408 Add_Arguments
2409 (Configuration_Pragmas_Switch (Arguments_Project) &
2410 New_Args & The_Saved_Gcc_Switches.all);
2411 end;
2413 -- We have no switches from Gnatmake.Compiler.
2414 -- We add the saved gcc switches.
2416 when Undefined =>
2417 Add_Arguments
2418 (Configuration_Pragmas_Switch (Arguments_Project) &
2419 The_Saved_Gcc_Switches.all);
2420 end case;
2421 end if;
2422 end;
2423 end if;
2425 -- For VMS, when compiling the main source, add switch
2426 -- -mdebug-main=_ada_ so that the executable can be debugged
2427 -- by the standard VMS debugger.
2429 if not No_Main_Subprogram
2430 and then Targparm.OpenVMS_On_Target
2431 and then Is_Main_Source
2432 then
2433 -- First, check if compilation will be invoked with -g
2435 for J in 1 .. Last_Argument loop
2436 if Arguments (J)'Length >= 2
2437 and then Arguments (J) (1 .. 2) = "-g"
2438 and then (Arguments (J)'Length < 5
2439 or else Arguments (J) (1 .. 5) /= "-gnat")
2440 then
2441 Add_Arguments
2442 ((1 => new String'("-mdebug-main=_ada_")));
2443 exit;
2444 end if;
2445 end loop;
2446 end if;
2448 -- Set Output_Is_Object, depending if there is a -S switch.
2449 -- If the bind step is not performed, and there is a -S switch,
2450 -- then we will not check for a valid object file.
2452 Check_For_S_Switch;
2453 end Collect_Arguments;
2455 ---------------------
2456 -- Compile_Sources --
2457 ---------------------
2459 procedure Compile_Sources
2460 (Main_Source : File_Name_Type;
2461 Args : Argument_List;
2462 First_Compiled_File : out File_Name_Type;
2463 Most_Recent_Obj_File : out File_Name_Type;
2464 Most_Recent_Obj_Stamp : out Time_Stamp_Type;
2465 Main_Unit : out Boolean;
2466 Compilation_Failures : out Natural;
2467 Main_Index : Int := 0;
2468 Check_Readonly_Files : Boolean := False;
2469 Do_Not_Execute : Boolean := False;
2470 Force_Compilations : Boolean := False;
2471 Keep_Going : Boolean := False;
2472 In_Place_Mode : Boolean := False;
2473 Initialize_ALI_Data : Boolean := True;
2474 Max_Process : Positive := 1)
2476 Mfile : Natural := No_Mapping_File;
2477 Mapping_File_Arg : String_Access;
2478 -- Info on the mapping file
2480 Need_To_Check_Standard_Library : Boolean :=
2481 (Check_Readonly_Files or Must_Compile)
2482 and not Unique_Compile;
2484 procedure Add_Process
2485 (Pid : Process_Id;
2486 Sfile : File_Name_Type;
2487 Afile : File_Name_Type;
2488 Uname : Unit_Name_Type;
2489 Full_Lib_File : File_Name_Type;
2490 Lib_File_Attr : File_Attributes;
2491 Mfile : Natural := No_Mapping_File);
2492 -- Adds process Pid to the current list of outstanding compilation
2493 -- processes and record the full name of the source file Sfile that
2494 -- we are compiling, the name of its library file Afile and the
2495 -- name of its unit Uname. If Mfile is not equal to No_Mapping_File,
2496 -- it is the index of the mapping file used during compilation in the
2497 -- array The_Mapping_File_Names.
2499 procedure Await_Compile
2500 (Data : out Compilation_Data;
2501 OK : out Boolean);
2502 -- Awaits that an outstanding compilation process terminates. When it
2503 -- does set Data to the information registered for the corresponding
2504 -- call to Add_Process. Note that this time stamp can be used to check
2505 -- whether the compilation did generate an object file. OK is set to
2506 -- True if the compilation succeeded. Data could be No_Compilation_Data
2507 -- if there was no compilation to wait for.
2509 function Bad_Compilation_Count return Natural;
2510 -- Returns the number of compilation failures
2512 procedure Check_Standard_Library;
2513 -- Check if s-stalib.adb needs to be compiled
2515 procedure Collect_Arguments_And_Compile
2516 (Full_Source_File : File_Name_Type;
2517 Lib_File : File_Name_Type;
2518 Source_Index : Int;
2519 Pid : out Process_Id;
2520 Process_Created : out Boolean);
2521 -- Collect arguments from project file (if any) and compile. If no
2522 -- compilation was attempted, Processed_Created is set to False, and the
2523 -- value of Pid is unknown.
2525 function Compile
2526 (Project : Project_Id;
2527 S : File_Name_Type;
2528 L : File_Name_Type;
2529 Source_Index : Int;
2530 Args : Argument_List) return Process_Id;
2531 -- Compiles S using Args. If S is a GNAT predefined source "-gnatpg" is
2532 -- added to Args. Non blocking call. L corresponds to the expected
2533 -- library file name. Process_Id of the process spawned to execute the
2534 -- compilation.
2536 type ALI_Project is record
2537 ALI : ALI_Id;
2538 Project : Project_Id;
2539 end record;
2541 package Good_ALI is new Table.Table (
2542 Table_Component_Type => ALI_Project,
2543 Table_Index_Type => Natural,
2544 Table_Low_Bound => 1,
2545 Table_Initial => 50,
2546 Table_Increment => 100,
2547 Table_Name => "Make.Good_ALI");
2548 -- Contains the set of valid ALI files that have not yet been scanned
2550 function Good_ALI_Present return Boolean;
2551 -- Returns True if any ALI file was recorded in the previous set
2553 procedure Get_Mapping_File (Project : Project_Id);
2554 -- Get a mapping file name. If there is one to be reused, reuse it.
2555 -- Otherwise, create a new mapping file.
2557 function Get_Next_Good_ALI return ALI_Project;
2558 -- Returns the next good ALI_Id record
2560 procedure Record_Failure
2561 (File : File_Name_Type;
2562 Unit : Unit_Name_Type;
2563 Found : Boolean := True);
2564 -- Records in the previous table that the compilation for File failed.
2565 -- If Found is False then the compilation of File failed because we
2566 -- could not find it. Records also Unit when possible.
2568 procedure Record_Good_ALI (A : ALI_Id; Project : Project_Id);
2569 -- Records in the previous set the Id of an ALI file
2571 function Must_Exit_Because_Of_Error return Boolean;
2572 -- Return True if there were errors and the user decided to exit in such
2573 -- a case. This waits for any outstanding compilation.
2575 function Start_Compile_If_Possible (Args : Argument_List) return Boolean;
2576 -- Check if there is more work that we can do (i.e. the Queue is non
2577 -- empty). If there is, do it only if we have not yet used up all the
2578 -- available processes.
2579 -- Returns True if we should exit the main loop
2581 procedure Wait_For_Available_Slot;
2582 -- Check if we should wait for a compilation to finish. This is the case
2583 -- if all the available processes are busy compiling sources or there is
2584 -- nothing else to do (that is the Q is empty and there are no good ALIs
2585 -- to process).
2587 procedure Fill_Queue_From_ALI_Files;
2588 -- Check if we recorded good ALI files. If yes process them now in the
2589 -- order in which they have been recorded. There are two occasions in
2590 -- which we record good ali files. The first is in phase 1 when, after
2591 -- scanning an existing ALI file we realize it is up-to-date, the second
2592 -- instance is after a successful compilation.
2594 -----------------
2595 -- Add_Process --
2596 -----------------
2598 procedure Add_Process
2599 (Pid : Process_Id;
2600 Sfile : File_Name_Type;
2601 Afile : File_Name_Type;
2602 Uname : Unit_Name_Type;
2603 Full_Lib_File : File_Name_Type;
2604 Lib_File_Attr : File_Attributes;
2605 Mfile : Natural := No_Mapping_File)
2607 OC1 : constant Positive := Outstanding_Compiles + 1;
2609 begin
2610 pragma Assert (OC1 <= Max_Process);
2611 pragma Assert (Pid /= Invalid_Pid);
2613 Running_Compile (OC1) :=
2614 (Pid => Pid,
2615 Full_Source_File => Sfile,
2616 Lib_File => Afile,
2617 Full_Lib_File => Full_Lib_File,
2618 Lib_File_Attr => Lib_File_Attr,
2619 Source_Unit => Uname,
2620 Mapping_File => Mfile,
2621 Project => Arguments_Project);
2623 Outstanding_Compiles := OC1;
2625 if Arguments_Project /= No_Project then
2626 Queue.Set_Obj_Dir_Busy (Arguments_Project.Object_Directory.Name);
2627 end if;
2628 end Add_Process;
2630 --------------------
2631 -- Await_Compile --
2632 -------------------
2634 procedure Await_Compile
2635 (Data : out Compilation_Data;
2636 OK : out Boolean)
2638 Pid : Process_Id;
2639 Project : Project_Id;
2640 Comp_Data : Project_Compilation_Access;
2642 begin
2643 pragma Assert (Outstanding_Compiles > 0);
2645 Data := No_Compilation_Data;
2646 OK := False;
2648 -- The loop here is a work-around for a problem on VMS; in some
2649 -- circumstances (shared library and several executables, for
2650 -- example), there are child processes other than compilation
2651 -- processes that are received. Until this problem is resolved,
2652 -- we will ignore such processes.
2654 loop
2655 Wait_Process (Pid, OK);
2657 if Pid = Invalid_Pid then
2658 return;
2659 end if;
2661 for J in Running_Compile'First .. Outstanding_Compiles loop
2662 if Pid = Running_Compile (J).Pid then
2663 Data := Running_Compile (J);
2664 Project := Running_Compile (J).Project;
2666 if Project /= No_Project then
2667 Queue.Set_Obj_Dir_Free (Project.Object_Directory.Name);
2668 end if;
2670 -- If a mapping file was used by this compilation, get its
2671 -- file name for reuse by a subsequent compilation.
2673 if Running_Compile (J).Mapping_File /= No_Mapping_File then
2674 Comp_Data :=
2675 Project_Compilation_Htable.Get
2676 (Project_Compilation, Project);
2677 Comp_Data.Last_Free_Indexes :=
2678 Comp_Data.Last_Free_Indexes + 1;
2679 Comp_Data.Free_Mapping_File_Indexes
2680 (Comp_Data.Last_Free_Indexes) :=
2681 Running_Compile (J).Mapping_File;
2682 end if;
2684 -- To actually remove this Pid and related info from
2685 -- Running_Compile replace its entry with the last valid
2686 -- entry in Running_Compile.
2688 if J = Outstanding_Compiles then
2689 null;
2690 else
2691 Running_Compile (J) :=
2692 Running_Compile (Outstanding_Compiles);
2693 end if;
2695 Outstanding_Compiles := Outstanding_Compiles - 1;
2696 return;
2697 end if;
2698 end loop;
2700 -- This child process was not one of our compilation processes;
2701 -- just ignore it for now.
2703 -- Why is this commented out code sitting here???
2705 -- raise Program_Error;
2706 end loop;
2707 end Await_Compile;
2709 ---------------------------
2710 -- Bad_Compilation_Count --
2711 ---------------------------
2713 function Bad_Compilation_Count return Natural is
2714 begin
2715 return Bad_Compilation.Last - Bad_Compilation.First + 1;
2716 end Bad_Compilation_Count;
2718 ----------------------------
2719 -- Check_Standard_Library --
2720 ----------------------------
2722 procedure Check_Standard_Library is
2723 begin
2724 Need_To_Check_Standard_Library := False;
2726 if not Targparm.Suppress_Standard_Library_On_Target then
2727 declare
2728 Sfile : File_Name_Type;
2729 Add_It : Boolean := True;
2731 begin
2732 Name_Len := 0;
2733 Add_Str_To_Name_Buffer (Standard_Library_Package_Body_Name);
2734 Sfile := Name_Enter;
2736 -- If we have a special runtime, we add the standard
2737 -- library only if we can find it.
2739 if RTS_Switch then
2740 Add_It := Full_Source_Name (Sfile) /= No_File;
2741 end if;
2743 if Add_It then
2744 if not Queue.Insert
2745 ((Format => Format_Gnatmake,
2746 File => Sfile,
2747 Unit => No_Unit_Name,
2748 Project => No_Project,
2749 Index => 0,
2750 Sid => No_Source))
2751 then
2752 if Is_In_Obsoleted (Sfile) then
2753 Executable_Obsolete := True;
2754 end if;
2755 end if;
2756 end if;
2757 end;
2758 end if;
2759 end Check_Standard_Library;
2761 -----------------------------------
2762 -- Collect_Arguments_And_Compile --
2763 -----------------------------------
2765 procedure Collect_Arguments_And_Compile
2766 (Full_Source_File : File_Name_Type;
2767 Lib_File : File_Name_Type;
2768 Source_Index : Int;
2769 Pid : out Process_Id;
2770 Process_Created : out Boolean) is
2771 begin
2772 Process_Created := False;
2774 -- If we use mapping file (-P or -C switches), then get one
2776 if Create_Mapping_File then
2777 Get_Mapping_File (Arguments_Project);
2778 end if;
2780 -- If the source is part of a project file, we set the ADA_*_PATHs,
2781 -- check for an eventual library project, and use the full path.
2783 if Arguments_Project /= No_Project then
2784 if not Arguments_Project.Externally_Built
2785 or else Must_Compile
2786 then
2787 Prj.Env.Set_Ada_Paths
2788 (Arguments_Project,
2789 Project_Tree,
2790 Including_Libraries => True,
2791 Include_Path => Use_Include_Path_File);
2793 if not Unique_Compile
2794 and then MLib.Tgt.Support_For_Libraries /= Prj.None
2795 then
2796 declare
2797 Prj : constant Project_Id :=
2798 Ultimate_Extending_Project_Of (Arguments_Project);
2800 begin
2801 if Prj.Library
2802 and then (not Prj.Externally_Built or else Must_Compile)
2803 and then not Prj.Need_To_Build_Lib
2804 then
2805 -- Add to the Q all sources of the project that have
2806 -- not been marked.
2808 Insert_Project_Sources
2809 (The_Project => Prj,
2810 All_Projects => False,
2811 Into_Q => True);
2813 -- Now mark the project as processed
2815 Prj.Need_To_Build_Lib := True;
2816 end if;
2817 end;
2818 end if;
2820 Pid :=
2821 Compile
2822 (Project => Arguments_Project,
2823 S => File_Name_Type (Arguments_Path_Name),
2824 L => Lib_File,
2825 Source_Index => Source_Index,
2826 Args => Arguments (1 .. Last_Argument));
2827 Process_Created := True;
2828 end if;
2830 else
2831 -- If this is a source outside of any project file, make sure it
2832 -- will be compiled in object directory of the main project file.
2834 Pid :=
2835 Compile
2836 (Project => Main_Project,
2837 S => Full_Source_File,
2838 L => Lib_File,
2839 Source_Index => Source_Index,
2840 Args => Arguments (1 .. Last_Argument));
2841 Process_Created := True;
2842 end if;
2843 end Collect_Arguments_And_Compile;
2845 -------------
2846 -- Compile --
2847 -------------
2849 function Compile
2850 (Project : Project_Id;
2851 S : File_Name_Type;
2852 L : File_Name_Type;
2853 Source_Index : Int;
2854 Args : Argument_List) return Process_Id
2856 Comp_Args : Argument_List (Args'First .. Args'Last + 10);
2857 Comp_Next : Integer := Args'First;
2858 Comp_Last : Integer;
2859 Arg_Index : Integer;
2861 function Ada_File_Name (Name : File_Name_Type) return Boolean;
2862 -- Returns True if Name is the name of an ada source file
2863 -- (i.e. suffix is .ads or .adb)
2865 -------------------
2866 -- Ada_File_Name --
2867 -------------------
2869 function Ada_File_Name (Name : File_Name_Type) return Boolean is
2870 begin
2871 Get_Name_String (Name);
2872 return
2873 Name_Len > 4
2874 and then Name_Buffer (Name_Len - 3 .. Name_Len - 1) = ".ad"
2875 and then (Name_Buffer (Name_Len) = 'b'
2876 or else
2877 Name_Buffer (Name_Len) = 's');
2878 end Ada_File_Name;
2880 -- Start of processing for Compile
2882 begin
2883 Enter_Into_Obsoleted (S);
2885 -- By default, Syntax_Only is False
2887 Syntax_Only := False;
2889 for J in Args'Range loop
2890 if Args (J).all = "-gnats" then
2892 -- If we compile with -gnats, the bind step and the link step
2893 -- are inhibited. Also, we set Syntax_Only to True, so that
2894 -- we don't fail when we don't find the ALI file, after
2895 -- compilation.
2897 Do_Bind_Step := False;
2898 Do_Link_Step := False;
2899 Syntax_Only := True;
2901 elsif Args (J).all = "-gnatc" then
2903 -- If we compile with -gnatc, the bind step and the link step
2904 -- are inhibited. We set Syntax_Only to False for the case when
2905 -- -gnats was previously specified.
2907 Do_Bind_Step := False;
2908 Do_Link_Step := False;
2909 Syntax_Only := False;
2910 end if;
2911 end loop;
2913 Comp_Args (Comp_Next) := new String'("-gnatea");
2914 Comp_Next := Comp_Next + 1;
2916 Comp_Args (Comp_Next) := Comp_Flag;
2917 Comp_Next := Comp_Next + 1;
2919 -- Optimize the simple case where the gcc command line looks like
2920 -- gcc -c -I. ... -I- file.adb
2921 -- into
2922 -- gcc -c ... file.adb
2924 if Args (Args'First).all = "-I" & Normalized_CWD
2925 and then Args (Args'Last).all = "-I-"
2926 and then S = Strip_Directory (S)
2927 then
2928 Comp_Last := Comp_Next + Args'Length - 3;
2929 Arg_Index := Args'First + 1;
2931 else
2932 Comp_Last := Comp_Next + Args'Length - 1;
2933 Arg_Index := Args'First;
2934 end if;
2936 -- Make a deep copy of the arguments, because Normalize_Arguments
2937 -- may deallocate some arguments. Also strip target specific -mxxx
2938 -- switches in CodePeer mode.
2940 declare
2941 Index : Natural;
2942 Last : constant Natural := Comp_Last;
2944 begin
2945 Index := Comp_Next;
2946 for J in Comp_Next .. Last loop
2947 declare
2948 Str : String renames Args (Arg_Index).all;
2949 begin
2950 if CodePeer_Mode
2951 and then Str'Length > 2
2952 and then Str (Str'First .. Str'First + 1) = "-m"
2953 then
2954 Comp_Last := Comp_Last - 1;
2955 else
2956 Comp_Args (Index) := new String'(Str);
2957 Index := Index + 1;
2958 end if;
2959 end;
2961 Arg_Index := Arg_Index + 1;
2962 end loop;
2963 end;
2965 -- Set -gnatpg for predefined files (for this purpose the renamings
2966 -- such as Text_IO do not count as predefined). Note that we strip
2967 -- the directory name from the source file name because the call to
2968 -- Fname.Is_Predefined_File_Name cannot deal with directory prefixes.
2970 declare
2971 Fname : constant File_Name_Type := Strip_Directory (S);
2973 begin
2974 if Is_Predefined_File_Name (Fname, False) then
2975 if Check_Readonly_Files or else Must_Compile then
2976 Comp_Args (Comp_Args'First + 2 .. Comp_Last + 1) :=
2977 Comp_Args (Comp_Args'First + 1 .. Comp_Last);
2978 Comp_Last := Comp_Last + 1;
2979 Comp_Args (Comp_Args'First + 1) := GNAT_Flag;
2981 else
2982 Make_Failed
2983 ("not allowed to compile """ &
2984 Get_Name_String (Fname) &
2985 """; use -a switch, or use the compiler directly with "
2986 & "the ""-gnatg"" switch");
2987 end if;
2988 end if;
2989 end;
2991 -- Now check if the file name has one of the suffixes familiar to
2992 -- the gcc driver. If this is not the case then add the ada flag
2993 -- "-x ada".
2994 -- Append systematically "-x adascil" in CodePeer mode instead, to
2995 -- force the use of gnat1scil instead of gnat1.
2997 if CodePeer_Mode then
2998 Comp_Last := Comp_Last + 1;
2999 Comp_Args (Comp_Last) := Ada_Flag_1;
3000 Comp_Last := Comp_Last + 1;
3001 Comp_Args (Comp_Last) := AdaSCIL_Flag;
3003 elsif not Ada_File_Name (S) and then not Targparm.AAMP_On_Target then
3004 Comp_Last := Comp_Last + 1;
3005 Comp_Args (Comp_Last) := Ada_Flag_1;
3006 Comp_Last := Comp_Last + 1;
3007 Comp_Args (Comp_Last) := Ada_Flag_2;
3008 end if;
3010 if Source_Index /= 0 then
3011 declare
3012 Num : constant String := Source_Index'Img;
3013 begin
3014 Comp_Last := Comp_Last + 1;
3015 Comp_Args (Comp_Last) :=
3016 new String'("-gnateI" & Num (Num'First + 1 .. Num'Last));
3017 end;
3018 end if;
3020 if Source_Index /= 0
3021 or else L /= Strip_Directory (L)
3022 or else Object_Directory_Path /= null
3023 then
3024 -- Build -o argument
3026 Get_Name_String (L);
3028 for J in reverse 1 .. Name_Len loop
3029 if Name_Buffer (J) = '.' then
3030 Name_Len := J + Object_Suffix'Length - 1;
3031 Name_Buffer (J .. Name_Len) := Object_Suffix;
3032 exit;
3033 end if;
3034 end loop;
3036 Comp_Last := Comp_Last + 1;
3037 Comp_Args (Comp_Last) := Output_Flag;
3038 Comp_Last := Comp_Last + 1;
3040 -- If an object directory was specified, prepend the object file
3041 -- name with this object directory.
3043 if Object_Directory_Path /= null then
3044 Comp_Args (Comp_Last) :=
3045 new String'(Object_Directory_Path.all &
3046 Name_Buffer (1 .. Name_Len));
3048 else
3049 Comp_Args (Comp_Last) :=
3050 new String'(Name_Buffer (1 .. Name_Len));
3051 end if;
3052 end if;
3054 if Create_Mapping_File and then Mapping_File_Arg /= null then
3055 Comp_Last := Comp_Last + 1;
3056 Comp_Args (Comp_Last) := new String'(Mapping_File_Arg.all);
3057 end if;
3059 Get_Name_String (S);
3061 Comp_Last := Comp_Last + 1;
3062 Comp_Args (Comp_Last) := new String'(Name_Buffer (1 .. Name_Len));
3064 -- Change to object directory of the project file, if necessary
3066 if Project /= No_Project then
3067 Change_To_Object_Directory (Project);
3068 end if;
3070 GNAT.OS_Lib.Normalize_Arguments (Comp_Args (Args'First .. Comp_Last));
3072 Comp_Last := Comp_Last + 1;
3073 Comp_Args (Comp_Last) := new String'("-gnatez");
3075 Display (Gcc.all, Comp_Args (Args'First .. Comp_Last));
3077 if Gcc_Path = null then
3078 Make_Failed ("error, unable to locate " & Gcc.all);
3079 end if;
3081 return
3082 GNAT.OS_Lib.Non_Blocking_Spawn
3083 (Gcc_Path.all, Comp_Args (Args'First .. Comp_Last));
3084 end Compile;
3086 -------------------------------
3087 -- Fill_Queue_From_ALI_Files --
3088 -------------------------------
3090 procedure Fill_Queue_From_ALI_Files is
3091 ALI_P : ALI_Project;
3092 ALI : ALI_Id;
3093 Source_Index : Int;
3094 Sfile : File_Name_Type;
3095 Sid : Prj.Source_Id;
3096 Uname : Unit_Name_Type;
3097 Unit_Name : Name_Id;
3098 Uid : Prj.Unit_Index;
3100 begin
3101 while Good_ALI_Present loop
3102 ALI_P := Get_Next_Good_ALI;
3103 ALI := ALI_P.ALI;
3104 Source_Index := Unit_Index_Of (ALIs.Table (ALI_P.ALI).Afile);
3106 -- If we are processing the library file corresponding to the
3107 -- main source file check if this source can be a main unit.
3109 if ALIs.Table (ALI).Sfile = Main_Source
3110 and then Source_Index = Main_Index
3111 then
3112 Main_Unit := ALIs.Table (ALI).Main_Program /= None;
3113 end if;
3115 -- The following adds the standard library (s-stalib) to the list
3116 -- of files to be handled by gnatmake: this file and any files it
3117 -- depends on are always included in every bind, even if they are
3118 -- not in the explicit dependency list. Of course, it is not added
3119 -- if Suppress_Standard_Library is True.
3121 -- However, to avoid annoying output about s-stalib.ali being read
3122 -- only, when "-v" is used, we add the standard library only when
3123 -- "-a" is used.
3125 if Need_To_Check_Standard_Library then
3126 Check_Standard_Library;
3127 end if;
3129 -- Now insert in the Q the unmarked source files (i.e. those which
3130 -- have never been inserted in the Q and hence never considered).
3131 -- Only do that if Unique_Compile is False.
3133 if not Unique_Compile then
3134 for J in
3135 ALIs.Table (ALI).First_Unit .. ALIs.Table (ALI).Last_Unit
3136 loop
3137 for K in
3138 Units.Table (J).First_With .. Units.Table (J).Last_With
3139 loop
3140 Sfile := Withs.Table (K).Sfile;
3141 Uname := Withs.Table (K).Uname;
3142 Sid := No_Source;
3144 -- If project files are used, find the proper source to
3145 -- compile in case Sfile is the spec but there is a body.
3147 if Main_Project /= No_Project then
3148 Get_Name_String (Uname);
3149 Name_Len := Name_Len - 2;
3150 Unit_Name := Name_Find;
3151 Uid :=
3152 Units_Htable.Get (Project_Tree.Units_HT, Unit_Name);
3154 if Uid /= Prj.No_Unit_Index then
3155 if Uid.File_Names (Impl) /= null
3156 and then not Uid.File_Names (Impl).Locally_Removed
3157 then
3158 Sfile := Uid.File_Names (Impl).File;
3159 Source_Index := Uid.File_Names (Impl).Index;
3160 Sid := Uid.File_Names (Impl);
3162 elsif Uid.File_Names (Spec) /= null
3163 and then not Uid.File_Names (Spec).Locally_Removed
3164 then
3165 Sfile := Uid.File_Names (Spec).File;
3166 Source_Index := Uid.File_Names (Spec).Index;
3167 Sid := Uid.File_Names (Spec);
3168 end if;
3169 end if;
3170 end if;
3172 Dependencies.Append ((ALIs.Table (ALI).Sfile, Sfile));
3174 if Is_In_Obsoleted (Sfile) then
3175 Executable_Obsolete := True;
3176 end if;
3178 if Sfile = No_File then
3179 Debug_Msg ("Skipping generic:", Withs.Table (K).Uname);
3181 else
3182 Source_Index := Unit_Index_Of (Withs.Table (K).Afile);
3184 if not (Check_Readonly_Files or Must_Compile)
3185 and then Is_Internal_File_Name (Sfile, False)
3186 then
3187 Debug_Msg ("Skipping internal file:", Sfile);
3189 else
3190 Queue.Insert
3191 ((Format => Format_Gnatmake,
3192 File => Sfile,
3193 Project => ALI_P.Project,
3194 Unit => Withs.Table (K).Uname,
3195 Index => Source_Index,
3196 Sid => Sid));
3197 end if;
3198 end if;
3199 end loop;
3200 end loop;
3201 end if;
3202 end loop;
3203 end Fill_Queue_From_ALI_Files;
3205 ----------------------
3206 -- Get_Mapping_File --
3207 ----------------------
3209 procedure Get_Mapping_File (Project : Project_Id) is
3210 Data : Project_Compilation_Access;
3212 begin
3213 Data := Project_Compilation_Htable.Get (Project_Compilation, Project);
3215 -- If there is a mapping file ready to be reused, reuse it
3217 if Data.Last_Free_Indexes > 0 then
3218 Mfile := Data.Free_Mapping_File_Indexes (Data.Last_Free_Indexes);
3219 Data.Last_Free_Indexes := Data.Last_Free_Indexes - 1;
3221 -- Otherwise, create and initialize a new one
3223 else
3224 Init_Mapping_File
3225 (Project => Project, Data => Data.all, File_Index => Mfile);
3226 end if;
3228 -- Put the name in the mapping file argument for the invocation
3229 -- of the compiler.
3231 Free (Mapping_File_Arg);
3232 Mapping_File_Arg :=
3233 new String'("-gnatem=" &
3234 Get_Name_String (Data.Mapping_File_Names (Mfile)));
3235 end Get_Mapping_File;
3237 -----------------------
3238 -- Get_Next_Good_ALI --
3239 -----------------------
3241 function Get_Next_Good_ALI return ALI_Project is
3242 ALIP : ALI_Project;
3244 begin
3245 pragma Assert (Good_ALI_Present);
3246 ALIP := Good_ALI.Table (Good_ALI.Last);
3247 Good_ALI.Decrement_Last;
3248 return ALIP;
3249 end Get_Next_Good_ALI;
3251 ----------------------
3252 -- Good_ALI_Present --
3253 ----------------------
3255 function Good_ALI_Present return Boolean is
3256 begin
3257 return Good_ALI.First <= Good_ALI.Last;
3258 end Good_ALI_Present;
3260 --------------------------------
3261 -- Must_Exit_Because_Of_Error --
3262 --------------------------------
3264 function Must_Exit_Because_Of_Error return Boolean is
3265 Data : Compilation_Data;
3266 Success : Boolean;
3268 begin
3269 if Bad_Compilation_Count > 0 and then not Keep_Going then
3270 while Outstanding_Compiles > 0 loop
3271 Await_Compile (Data, Success);
3273 if not Success then
3274 Record_Failure (Data.Full_Source_File, Data.Source_Unit);
3275 end if;
3276 end loop;
3278 return True;
3279 end if;
3281 return False;
3282 end Must_Exit_Because_Of_Error;
3284 --------------------
3285 -- Record_Failure --
3286 --------------------
3288 procedure Record_Failure
3289 (File : File_Name_Type;
3290 Unit : Unit_Name_Type;
3291 Found : Boolean := True)
3293 begin
3294 Bad_Compilation.Increment_Last;
3295 Bad_Compilation.Table (Bad_Compilation.Last) := (File, Unit, Found);
3296 end Record_Failure;
3298 ---------------------
3299 -- Record_Good_ALI --
3300 ---------------------
3302 procedure Record_Good_ALI (A : ALI_Id; Project : Project_Id) is
3303 begin
3304 Good_ALI.Increment_Last;
3305 Good_ALI.Table (Good_ALI.Last) := (A, Project);
3306 end Record_Good_ALI;
3308 -------------------------------
3309 -- Start_Compile_If_Possible --
3310 -------------------------------
3312 function Start_Compile_If_Possible
3313 (Args : Argument_List) return Boolean
3315 In_Lib_Dir : Boolean;
3316 Need_To_Compile : Boolean;
3317 Pid : Process_Id := Invalid_Pid;
3318 Process_Created : Boolean;
3320 Source : Queue.Source_Info;
3321 Full_Source_File : File_Name_Type := No_File;
3322 Source_File_Attr : aliased File_Attributes;
3323 -- The full name of the source file and its attributes (size, ...)
3325 Lib_File : File_Name_Type;
3326 Full_Lib_File : File_Name_Type := No_File;
3327 Lib_File_Attr : aliased File_Attributes;
3328 Read_Only : Boolean := False;
3329 ALI : ALI_Id;
3330 -- The ALI file and its attributes (size, stamp, ...)
3332 Obj_File : File_Name_Type;
3333 Obj_Stamp : Time_Stamp_Type;
3334 -- The object file
3336 Found : Boolean;
3338 begin
3339 if not Queue.Is_Virtually_Empty and then
3340 Outstanding_Compiles < Max_Process
3341 then
3342 Queue.Extract (Found, Source);
3344 -- If it is a source in a project, first look for the ALI file
3345 -- in the object directory. When the project is extending another
3346 -- the ALI file may not be found, but the source does not
3347 -- necessarily need to be compiled, as it may already be up to
3348 -- date in the project being extended. In this case, look for an
3349 -- ALI file in all the object directories, as is done when
3350 -- gnatmake is not invoked with a project file.
3352 if Source.Sid /= No_Source then
3353 Initialize_Source_Record (Source.Sid);
3354 Full_Source_File :=
3355 File_Name_Type (Source.Sid.Path.Display_Name);
3356 Lib_File := Source.Sid.Dep_Name;
3357 Full_Lib_File := File_Name_Type (Source.Sid.Dep_Path);
3358 Lib_File_Attr := Unknown_Attributes;
3360 if Full_Lib_File /= No_File then
3361 declare
3362 FLF : constant String :=
3363 Get_Name_String (Full_Lib_File) & ASCII.NUL;
3364 begin
3365 if not Is_Regular_File
3366 (FLF'Address, Lib_File_Attr'Access)
3367 then
3368 Full_Lib_File := No_File;
3369 end if;
3370 end;
3371 end if;
3372 end if;
3374 if Full_Lib_File = No_File then
3375 Osint.Full_Source_Name
3376 (Source.File,
3377 Full_File => Full_Source_File,
3378 Attr => Source_File_Attr'Access);
3380 Lib_File := Osint.Lib_File_Name (Source.File, Source.Index);
3382 Osint.Full_Lib_File_Name
3383 (Lib_File,
3384 Lib_File => Full_Lib_File,
3385 Attr => Lib_File_Attr);
3386 end if;
3388 -- If source has already been compiled, executable is obsolete
3390 if Is_In_Obsoleted (Source.File) then
3391 Executable_Obsolete := True;
3392 end if;
3394 In_Lib_Dir := Full_Lib_File /= No_File
3395 and then In_Ada_Lib_Dir (Full_Lib_File);
3397 -- Since the following requires a system call, we precompute it
3398 -- when needed.
3400 if not In_Lib_Dir then
3401 if Full_Lib_File /= No_File
3402 and then not (Check_Readonly_Files or else Must_Compile)
3403 then
3404 Get_Name_String (Full_Lib_File);
3405 Name_Buffer (Name_Len + 1) := ASCII.NUL;
3406 Read_Only := not Is_Writable_File
3407 (Name_Buffer'Address, Lib_File_Attr'Access);
3408 else
3409 Read_Only := False;
3410 end if;
3411 end if;
3413 -- If the library file is an Ada library skip it
3415 if In_Lib_Dir then
3416 Verbose_Msg
3417 (Lib_File,
3418 "is in an Ada library",
3419 Prefix => " ",
3420 Minimum_Verbosity => Opt.High);
3422 -- If the library file is a read-only library skip it, but only
3423 -- if, when using project files, this library file is in the
3424 -- right object directory (a read-only ALI file in the object
3425 -- directory of a project being extended must not be skipped).
3427 elsif Read_Only
3428 and then Is_In_Object_Directory (Source.File, Full_Lib_File)
3429 then
3430 Verbose_Msg
3431 (Lib_File,
3432 "is a read-only library",
3433 Prefix => " ",
3434 Minimum_Verbosity => Opt.High);
3436 -- The source file that we are checking cannot be located
3438 elsif Full_Source_File = No_File then
3439 Record_Failure (Source.File, Source.Unit, False);
3441 -- Source and library files can be located but are internal
3442 -- files.
3444 elsif not (Check_Readonly_Files or else Must_Compile)
3445 and then Full_Lib_File /= No_File
3446 and then Is_Internal_File_Name (Source.File, False)
3447 then
3448 if Force_Compilations then
3449 Fail
3450 ("not allowed to compile """ &
3451 Get_Name_String (Source.File) &
3452 """; use -a switch, or use the compiler directly with "
3453 & "the ""-gnatg"" switch");
3454 end if;
3456 Verbose_Msg
3457 (Lib_File,
3458 "is an internal library",
3459 Prefix => " ",
3460 Minimum_Verbosity => Opt.High);
3462 -- The source file that we are checking can be located
3464 else
3465 Collect_Arguments
3466 (Source.File, Source.File = Main_Source, Args);
3468 -- Do nothing if project of source is externally built
3470 if Arguments_Project = No_Project
3471 or else not Arguments_Project.Externally_Built
3472 or else Must_Compile
3473 then
3474 -- Don't waste any time if we have to recompile anyway
3476 Obj_Stamp := Empty_Time_Stamp;
3477 Need_To_Compile := Force_Compilations;
3479 if not Force_Compilations then
3480 Check (Source_File => Source.File,
3481 Is_Main_Source => Source.File = Main_Source,
3482 The_Args => Args,
3483 Lib_File => Lib_File,
3484 Full_Lib_File => Full_Lib_File,
3485 Lib_File_Attr => Lib_File_Attr'Access,
3486 Read_Only => Read_Only,
3487 ALI => ALI,
3488 O_File => Obj_File,
3489 O_Stamp => Obj_Stamp);
3490 Need_To_Compile := (ALI = No_ALI_Id);
3491 end if;
3493 if not Need_To_Compile then
3495 -- The ALI file is up-to-date; record its Id
3497 Record_Good_ALI (ALI, Arguments_Project);
3499 -- Record the time stamp of the most recent object
3500 -- file as long as no (re)compilations are needed.
3502 if First_Compiled_File = No_File
3503 and then (Most_Recent_Obj_File = No_File
3504 or else Obj_Stamp > Most_Recent_Obj_Stamp)
3505 then
3506 Most_Recent_Obj_File := Obj_File;
3507 Most_Recent_Obj_Stamp := Obj_Stamp;
3508 end if;
3510 else
3511 -- Check that switch -x has been used if a source outside
3512 -- of project files need to be compiled.
3514 if Main_Project /= No_Project
3515 and then Arguments_Project = No_Project
3516 and then not External_Unit_Compilation_Allowed
3517 then
3518 Make_Failed ("external source ("
3519 & Get_Name_String (Source.File)
3520 & ") is not part of any project;"
3521 & " cannot be compiled without"
3522 & " gnatmake switch -x");
3523 end if;
3525 -- Is this the first file we have to compile?
3527 if First_Compiled_File = No_File then
3528 First_Compiled_File := Full_Source_File;
3529 Most_Recent_Obj_File := No_File;
3531 if Do_Not_Execute then
3533 -- Exit the main loop
3535 return True;
3536 end if;
3537 end if;
3539 -- Compute where the ALI file must be generated in
3540 -- In_Place_Mode (this does not require to know the
3541 -- location of the object directory).
3543 if In_Place_Mode then
3544 if Full_Lib_File = No_File then
3546 -- If the library file was not found, then save
3547 -- the library file near the source file.
3549 Lib_File :=
3550 Osint.Lib_File_Name
3551 (Full_Source_File, Source.Index);
3552 Full_Lib_File := Lib_File;
3554 else
3555 -- If the library file was found, then save the
3556 -- library file in the same place.
3558 Lib_File := Full_Lib_File;
3559 end if;
3560 end if;
3562 -- Start the compilation and record it. We can do this
3563 -- because there is at least one free process. This might
3564 -- change the current directory.
3566 Collect_Arguments_And_Compile
3567 (Full_Source_File => Full_Source_File,
3568 Lib_File => Lib_File,
3569 Source_Index => Source.Index,
3570 Pid => Pid,
3571 Process_Created => Process_Created);
3573 -- Compute where the ALI file will be generated (for
3574 -- cases that might require to know the current
3575 -- directory). The current directory might be changed
3576 -- when compiling other files so we cannot rely on it
3577 -- being the same to find the resulting ALI file.
3579 if not In_Place_Mode then
3581 -- Compute the expected location of the ALI file. This
3582 -- can be from several places:
3583 -- -i => in place mode. In such a case,
3584 -- Full_Lib_File has already been set above
3585 -- -D => if specified
3586 -- or defaults in current dir
3587 -- We could simply use a call similar to
3588 -- Osint.Full_Lib_File_Name (Lib_File)
3589 -- but that involves system calls and is thus slower
3591 if Object_Directory_Path /= null then
3592 Name_Len := 0;
3593 Add_Str_To_Name_Buffer (Object_Directory_Path.all);
3594 Add_Str_To_Name_Buffer (Get_Name_String (Lib_File));
3595 Full_Lib_File := Name_Find;
3597 else
3598 if Project_Of_Current_Object_Directory /=
3599 No_Project
3600 then
3601 Get_Name_String
3602 (Project_Of_Current_Object_Directory
3603 .Object_Directory.Display_Name);
3604 Add_Str_To_Name_Buffer
3605 (Get_Name_String (Lib_File));
3606 Full_Lib_File := Name_Find;
3608 else
3609 Full_Lib_File := Lib_File;
3610 end if;
3611 end if;
3613 end if;
3615 Lib_File_Attr := Unknown_Attributes;
3617 -- Make sure we could successfully start the compilation
3619 if Process_Created then
3620 if Pid = Invalid_Pid then
3621 Record_Failure (Full_Source_File, Source.Unit);
3622 else
3623 Add_Process
3624 (Pid => Pid,
3625 Sfile => Full_Source_File,
3626 Afile => Lib_File,
3627 Uname => Source.Unit,
3628 Mfile => Mfile,
3629 Full_Lib_File => Full_Lib_File,
3630 Lib_File_Attr => Lib_File_Attr);
3631 end if;
3632 end if;
3633 end if;
3634 end if;
3635 end if;
3636 end if;
3637 return False;
3638 end Start_Compile_If_Possible;
3640 -----------------------------
3641 -- Wait_For_Available_Slot --
3642 -----------------------------
3644 procedure Wait_For_Available_Slot is
3645 Compilation_OK : Boolean;
3646 Text : Text_Buffer_Ptr;
3647 ALI : ALI_Id;
3648 Data : Compilation_Data;
3650 begin
3651 if Outstanding_Compiles = Max_Process
3652 or else (Queue.Is_Virtually_Empty
3653 and then not Good_ALI_Present
3654 and then Outstanding_Compiles > 0)
3655 then
3656 Await_Compile (Data, Compilation_OK);
3658 if not Compilation_OK then
3659 Record_Failure (Data.Full_Source_File, Data.Source_Unit);
3660 end if;
3662 if Compilation_OK or else Keep_Going then
3664 -- Re-read the updated library file
3666 declare
3667 Saved_Object_Consistency : constant Boolean :=
3668 Check_Object_Consistency;
3670 begin
3671 -- If compilation was not OK, or if output is not an object
3672 -- file and we don't do the bind step, don't check for
3673 -- object consistency.
3675 Check_Object_Consistency :=
3676 Check_Object_Consistency
3677 and Compilation_OK
3678 and (Output_Is_Object or Do_Bind_Step);
3680 Text :=
3681 Read_Library_Info_From_Full
3682 (Data.Full_Lib_File, Data.Lib_File_Attr'Access);
3684 -- Restore Check_Object_Consistency to its initial value
3686 Check_Object_Consistency := Saved_Object_Consistency;
3687 end;
3689 -- If an ALI file was generated by this compilation, scan the
3690 -- ALI file and record it.
3692 -- If the scan fails, a previous ali file is inconsistent with
3693 -- the unit just compiled.
3695 if Text /= null then
3696 ALI :=
3697 Scan_ALI
3698 (Data.Lib_File, Text, Ignore_ED => False, Err => True);
3700 if ALI = No_ALI_Id then
3702 -- Record a failure only if not already done
3704 if Compilation_OK then
3705 Inform
3706 (Data.Lib_File,
3707 "incompatible ALI file, please recompile");
3708 Record_Failure
3709 (Data.Full_Source_File, Data.Source_Unit);
3710 end if;
3712 else
3713 Record_Good_ALI (ALI, Data.Project);
3714 end if;
3716 Free (Text);
3718 -- If we could not read the ALI file that was just generated
3719 -- then there could be a problem reading either the ALI or the
3720 -- corresponding object file (if Check_Object_Consistency is
3721 -- set Read_Library_Info checks that the time stamp of the
3722 -- object file is more recent than that of the ALI). However,
3723 -- we record a failure only if not already done.
3725 else
3726 if Compilation_OK and not Syntax_Only then
3727 Inform
3728 (Data.Lib_File,
3729 "WARNING: ALI or object file not found after compile");
3730 Record_Failure (Data.Full_Source_File, Data.Source_Unit);
3731 end if;
3732 end if;
3733 end if;
3734 end if;
3735 end Wait_For_Available_Slot;
3737 -- Start of processing for Compile_Sources
3739 begin
3740 pragma Assert (Args'First = 1);
3742 Outstanding_Compiles := 0;
3743 Running_Compile := new Comp_Data_Arr (1 .. Max_Process);
3745 -- Package and Queue initializations
3747 Good_ALI.Init;
3749 if Initialize_ALI_Data then
3750 Initialize_ALI;
3751 Initialize_ALI_Source;
3752 end if;
3754 -- The following two flags affect the behavior of ALI.Set_Source_Table.
3755 -- We set Check_Source_Files to True to ensure that source file time
3756 -- stamps are checked, and we set All_Sources to False to avoid checking
3757 -- the presence of the source files listed in the source dependency
3758 -- section of an ali file (which would be a mistake since the ali file
3759 -- may be obsolete).
3761 Check_Source_Files := True;
3762 All_Sources := False;
3764 Queue.Insert
3765 ((Format => Format_Gnatmake,
3766 File => Main_Source,
3767 Project => Main_Project,
3768 Unit => No_Unit_Name,
3769 Index => Main_Index,
3770 Sid => No_Source));
3772 First_Compiled_File := No_File;
3773 Most_Recent_Obj_File := No_File;
3774 Most_Recent_Obj_Stamp := Empty_Time_Stamp;
3775 Main_Unit := False;
3777 -- Keep looping until there is no more work to do (the Q is empty)
3778 -- and all the outstanding compilations have terminated.
3780 Make_Loop :
3781 while not Queue.Is_Empty or else Outstanding_Compiles > 0 loop
3782 exit Make_Loop when Must_Exit_Because_Of_Error;
3783 exit Make_Loop when Start_Compile_If_Possible (Args);
3785 Wait_For_Available_Slot;
3787 -- ??? Should be done as soon as we add a Good_ALI, wouldn't it avoid
3788 -- the need for a list of good ALI?
3790 Fill_Queue_From_ALI_Files;
3792 if Display_Compilation_Progress then
3793 Write_Str ("completed ");
3794 Write_Int (Int (Queue.Processed));
3795 Write_Str (" out of ");
3796 Write_Int (Int (Queue.Size));
3797 Write_Str (" (");
3798 Write_Int (Int ((Queue.Processed * 100) / Queue.Size));
3799 Write_Str ("%)...");
3800 Write_Eol;
3801 end if;
3802 end loop Make_Loop;
3804 Compilation_Failures := Bad_Compilation_Count;
3806 -- Compilation is finished
3808 -- Delete any temporary configuration pragma file
3810 if not Debug.Debug_Flag_N then
3811 Delete_Temp_Config_Files (Project_Tree);
3812 end if;
3813 end Compile_Sources;
3815 ----------------------------------
3816 -- Configuration_Pragmas_Switch --
3817 ----------------------------------
3819 function Configuration_Pragmas_Switch
3820 (For_Project : Project_Id) return Argument_List
3822 The_Packages : Package_Id;
3823 Gnatmake : Package_Id;
3824 Compiler : Package_Id;
3826 Global_Attribute : Variable_Value := Nil_Variable_Value;
3827 Local_Attribute : Variable_Value := Nil_Variable_Value;
3829 Global_Attribute_Present : Boolean := False;
3830 Local_Attribute_Present : Boolean := False;
3832 Result : Argument_List (1 .. 3);
3833 Last : Natural := 0;
3835 begin
3836 Prj.Env.Create_Config_Pragmas_File
3837 (For_Project, Project_Tree);
3839 if For_Project.Config_File_Name /= No_Path then
3840 Temporary_Config_File := For_Project.Config_File_Temp;
3841 Last := 1;
3842 Result (1) :=
3843 new String'
3844 ("-gnatec=" & Get_Name_String (For_Project.Config_File_Name));
3846 else
3847 Temporary_Config_File := False;
3848 end if;
3850 -- Check for attribute Builder'Global_Configuration_Pragmas
3852 The_Packages := Main_Project.Decl.Packages;
3853 Gnatmake :=
3854 Prj.Util.Value_Of
3855 (Name => Name_Builder,
3856 In_Packages => The_Packages,
3857 Shared => Project_Tree.Shared);
3859 if Gnatmake /= No_Package then
3860 Global_Attribute := Prj.Util.Value_Of
3861 (Variable_Name => Name_Global_Configuration_Pragmas,
3862 In_Variables => Project_Tree.Shared.Packages.Table
3863 (Gnatmake).Decl.Attributes,
3864 Shared => Project_Tree.Shared);
3865 Global_Attribute_Present :=
3866 Global_Attribute /= Nil_Variable_Value
3867 and then Get_Name_String (Global_Attribute.Value) /= "";
3869 if Global_Attribute_Present then
3870 declare
3871 Path : constant String :=
3872 Absolute_Path
3873 (Path_Name_Type (Global_Attribute.Value),
3874 Global_Attribute.Project);
3875 begin
3876 if not Is_Regular_File (Path) then
3877 if Debug.Debug_Flag_F then
3878 Make_Failed
3879 ("cannot find configuration pragmas file "
3880 & File_Name (Path));
3881 else
3882 Make_Failed
3883 ("cannot find configuration pragmas file " & Path);
3884 end if;
3885 end if;
3887 Last := Last + 1;
3888 Result (Last) := new String'("-gnatec=" & Path);
3889 end;
3890 end if;
3891 end if;
3893 -- Check for attribute Compiler'Local_Configuration_Pragmas
3895 The_Packages := For_Project.Decl.Packages;
3896 Compiler :=
3897 Prj.Util.Value_Of
3898 (Name => Name_Compiler,
3899 In_Packages => The_Packages,
3900 Shared => Project_Tree.Shared);
3902 if Compiler /= No_Package then
3903 Local_Attribute := Prj.Util.Value_Of
3904 (Variable_Name => Name_Local_Configuration_Pragmas,
3905 In_Variables => Project_Tree.Shared.Packages.Table
3906 (Compiler).Decl.Attributes,
3907 Shared => Project_Tree.Shared);
3908 Local_Attribute_Present :=
3909 Local_Attribute /= Nil_Variable_Value
3910 and then Get_Name_String (Local_Attribute.Value) /= "";
3912 if Local_Attribute_Present then
3913 declare
3914 Path : constant String :=
3915 Absolute_Path
3916 (Path_Name_Type (Local_Attribute.Value),
3917 Local_Attribute.Project);
3918 begin
3919 if not Is_Regular_File (Path) then
3920 if Debug.Debug_Flag_F then
3921 Make_Failed
3922 ("cannot find configuration pragmas file "
3923 & File_Name (Path));
3925 else
3926 Make_Failed
3927 ("cannot find configuration pragmas file " & Path);
3928 end if;
3929 end if;
3931 Last := Last + 1;
3932 Result (Last) := new String'("-gnatec=" & Path);
3933 end;
3934 end if;
3935 end if;
3937 return Result (1 .. Last);
3938 end Configuration_Pragmas_Switch;
3940 ---------------
3941 -- Debug_Msg --
3942 ---------------
3944 procedure Debug_Msg (S : String; N : Name_Id) is
3945 begin
3946 if Debug.Debug_Flag_W then
3947 Write_Str (" ... ");
3948 Write_Str (S);
3949 Write_Str (" ");
3950 Write_Name (N);
3951 Write_Eol;
3952 end if;
3953 end Debug_Msg;
3955 procedure Debug_Msg (S : String; N : File_Name_Type) is
3956 begin
3957 Debug_Msg (S, Name_Id (N));
3958 end Debug_Msg;
3960 procedure Debug_Msg (S : String; N : Unit_Name_Type) is
3961 begin
3962 Debug_Msg (S, Name_Id (N));
3963 end Debug_Msg;
3965 -------------
3966 -- Display --
3967 -------------
3969 procedure Display (Program : String; Args : Argument_List) is
3970 begin
3971 pragma Assert (Args'First = 1);
3973 if Display_Executed_Programs then
3974 Write_Str (Program);
3976 for J in Args'Range loop
3978 -- Never display -gnatea nor -gnatez
3980 if Args (J).all /= "-gnatea"
3981 and then
3982 Args (J).all /= "-gnatez"
3983 then
3984 -- Do not display the mapping file argument automatically
3985 -- created when using a project file.
3987 if Main_Project = No_Project
3988 or else Debug.Debug_Flag_N
3989 or else Args (J)'Length < 8
3990 or else
3991 Args (J) (Args (J)'First .. Args (J)'First + 6) /= "-gnatem"
3992 then
3993 -- When -dn is not specified, do not display the config
3994 -- pragmas switch (-gnatec) for the temporary file created
3995 -- by the project manager (always the first -gnatec switch).
3996 -- Reset Temporary_Config_File to False so that the eventual
3997 -- other -gnatec switches will be displayed.
3999 if (not Debug.Debug_Flag_N)
4000 and then Temporary_Config_File
4001 and then Args (J)'Length > 7
4002 and then Args (J) (Args (J)'First .. Args (J)'First + 6)
4003 = "-gnatec"
4004 then
4005 Temporary_Config_File := False;
4007 -- Do not display the -F=mapping_file switch for gnatbind
4008 -- if -dn is not specified.
4010 elsif Debug.Debug_Flag_N
4011 or else Args (J)'Length < 4
4012 or else
4013 Args (J) (Args (J)'First .. Args (J)'First + 2) /= "-F="
4014 then
4015 Write_Str (" ");
4017 -- If -df is used, only display file names, not path
4018 -- names.
4020 if Debug.Debug_Flag_F then
4021 declare
4022 Equal_Pos : Natural;
4023 begin
4024 Equal_Pos := Args (J)'First - 1;
4025 for K in Args (J)'Range loop
4026 if Args (J) (K) = '=' then
4027 Equal_Pos := K;
4028 exit;
4029 end if;
4030 end loop;
4032 if Is_Absolute_Path
4033 (Args (J) (Equal_Pos + 1 .. Args (J)'Last))
4034 then
4035 Write_Str
4036 (Args (J) (Args (J)'First .. Equal_Pos));
4037 Write_Str
4038 (File_Name
4039 (Args (J)
4040 (Equal_Pos + 1 .. Args (J)'Last)));
4042 else
4043 Write_Str (Args (J).all);
4044 end if;
4045 end;
4047 else
4048 Write_Str (Args (J).all);
4049 end if;
4050 end if;
4051 end if;
4052 end if;
4053 end loop;
4055 Write_Eol;
4056 end if;
4057 end Display;
4059 ----------------------
4060 -- Display_Commands --
4061 ----------------------
4063 procedure Display_Commands (Display : Boolean := True) is
4064 begin
4065 Display_Executed_Programs := Display;
4066 end Display_Commands;
4068 --------------------------
4069 -- Enter_Into_Obsoleted --
4070 --------------------------
4072 procedure Enter_Into_Obsoleted (F : File_Name_Type) is
4073 Name : constant String := Get_Name_String (F);
4074 First : Natural;
4075 F2 : File_Name_Type;
4077 begin
4078 First := Name'Last;
4079 while First > Name'First
4080 and then Name (First - 1) /= Directory_Separator
4081 and then Name (First - 1) /= '/'
4082 loop
4083 First := First - 1;
4084 end loop;
4086 if First /= Name'First then
4087 Name_Len := 0;
4088 Add_Str_To_Name_Buffer (Name (First .. Name'Last));
4089 F2 := Name_Find;
4091 else
4092 F2 := F;
4093 end if;
4095 Debug_Msg ("New entry in Obsoleted table:", F2);
4096 Obsoleted.Set (F2, True);
4097 end Enter_Into_Obsoleted;
4099 ---------------
4100 -- Globalize --
4101 ---------------
4103 procedure Globalize (Success : out Boolean) is
4104 Quiet_Str : aliased String := "-quiet";
4105 Globalizer_Args : constant Argument_List :=
4106 (1 => Quiet_Str'Unchecked_Access);
4107 Previous_Dir : String_Access;
4109 procedure Globalize_Dir (Dir : String);
4110 -- Call CodePeer globalizer on Dir
4112 -------------------
4113 -- Globalize_Dir --
4114 -------------------
4116 procedure Globalize_Dir (Dir : String) is
4117 Result : Boolean;
4118 begin
4119 if Previous_Dir = null or else Dir /= Previous_Dir.all then
4120 Free (Previous_Dir);
4121 Previous_Dir := new String'(Dir);
4122 Change_Dir (Dir);
4123 GNAT.OS_Lib.Spawn (Globalizer_Path.all, Globalizer_Args, Result);
4124 Success := Success and Result;
4125 end if;
4126 end Globalize_Dir;
4128 procedure Globalize_Dirs is new
4129 Prj.Env.For_All_Object_Dirs (Globalize_Dir);
4131 begin
4132 Success := True;
4133 Display (Globalizer, Globalizer_Args);
4135 if Globalizer_Path = null then
4136 Make_Failed ("error, unable to locate " & Globalizer);
4137 end if;
4139 if Main_Project = No_Project then
4140 GNAT.OS_Lib.Spawn (Globalizer_Path.all, Globalizer_Args, Success);
4141 else
4142 Globalize_Dirs (Main_Project, Project_Tree);
4143 end if;
4144 end Globalize;
4146 -------------------
4147 -- Linking_Phase --
4148 -------------------
4150 procedure Linking_Phase
4151 (Non_Std_Executable : Boolean := False;
4152 Executable : File_Name_Type := No_File;
4153 Main_ALI_File : File_Name_Type)
4155 Linker_Switches_Last : constant Integer := Linker_Switches.Last;
4156 Path_Option : constant String_Access :=
4157 MLib.Linker_Library_Path_Option;
4158 Libraries_Present : Boolean := False;
4159 Current : Natural;
4160 Proj2 : Project_Id;
4161 Depth : Natural;
4162 Proj1 : Project_List;
4164 begin
4165 if not Run_Path_Option then
4166 Linker_Switches.Increment_Last;
4167 Linker_Switches.Table (Linker_Switches.Last) :=
4168 new String'("-R");
4169 end if;
4171 if Main_Project /= No_Project then
4172 Library_Paths.Set_Last (0);
4173 Library_Projs.Init;
4175 if MLib.Tgt.Support_For_Libraries /= Prj.None then
4177 -- Check for library projects
4179 Proj1 := Project_Tree.Projects;
4180 while Proj1 /= null loop
4181 if Proj1.Project /= Main_Project
4182 and then Proj1.Project.Library
4183 then
4184 -- Add this project to table Library_Projs
4186 Libraries_Present := True;
4187 Depth := Proj1.Project.Depth;
4188 Library_Projs.Increment_Last;
4189 Current := Library_Projs.Last;
4191 -- Any project with a greater depth should be after this
4192 -- project in the list.
4194 while Current > 1 loop
4195 Proj2 := Library_Projs.Table (Current - 1);
4196 exit when Proj2.Depth <= Depth;
4197 Library_Projs.Table (Current) := Proj2;
4198 Current := Current - 1;
4199 end loop;
4201 Library_Projs.Table (Current) := Proj1.Project;
4203 -- If it is not a static library and path option is set, add
4204 -- it to the Library_Paths table.
4206 if Proj1.Project.Library_Kind /= Static
4207 and then Proj1.Project.Extended_By = No_Project
4208 and then Path_Option /= null
4209 then
4210 Library_Paths.Increment_Last;
4211 Library_Paths.Table (Library_Paths.Last) :=
4212 new String'
4213 (Get_Name_String
4214 (Proj1.Project.Library_Dir.Display_Name));
4215 end if;
4216 end if;
4218 Proj1 := Proj1.Next;
4219 end loop;
4221 for Index in 1 .. Library_Projs.Last loop
4223 Library_Projs.Table (Index).Extended_By = No_Project
4224 then
4225 if Library_Projs.Table (Index).Library_Kind = Static
4226 and then not Targparm.OpenVMS_On_Target
4227 then
4228 Linker_Switches.Increment_Last;
4229 Linker_Switches.Table (Linker_Switches.Last) :=
4230 new String'
4231 (Get_Name_String
4232 (Library_Projs.Table
4233 (Index).Library_Dir.Display_Name) &
4234 "lib" &
4235 Get_Name_String
4236 (Library_Projs.Table (Index).Library_Name) &
4237 "." &
4238 MLib.Tgt.Archive_Ext);
4240 else
4241 -- Add the -L switch
4243 Linker_Switches.Increment_Last;
4244 Linker_Switches.Table (Linker_Switches.Last) :=
4245 new String'("-L" &
4246 Get_Name_String (Library_Projs.Table (Index).
4247 Library_Dir.Display_Name));
4249 -- Add the -l switch
4251 Linker_Switches.Increment_Last;
4252 Linker_Switches.Table (Linker_Switches.Last) :=
4253 new String'("-l" &
4254 Get_Name_String
4255 (Library_Projs.Table (Index).Library_Name));
4256 end if;
4257 end if;
4258 end loop;
4259 end if;
4261 if Libraries_Present then
4263 -- If Path_Option is not null, create the switch ("-Wl,-rpath,"
4264 -- or equivalent) with all the non-static library dirs plus the
4265 -- standard GNAT library dir. We do that only if Run_Path_Option
4266 -- is True (not disabled by -R switch).
4268 if Run_Path_Option and then Path_Option /= null then
4269 declare
4270 Option : String_Access;
4271 Length : Natural := Path_Option'Length;
4272 Current : Natural;
4274 begin
4275 if MLib.Separate_Run_Path_Options then
4277 -- We are going to create one switch of the form
4278 -- "-Wl,-rpath,dir_N" for each directory to
4279 -- consider.
4281 -- One switch for each library directory
4283 for Index in
4284 Library_Paths.First .. Library_Paths.Last
4285 loop
4286 Linker_Switches.Increment_Last;
4287 Linker_Switches.Table (Linker_Switches.Last) :=
4288 new String'
4289 (Path_Option.all &
4290 Library_Paths.Table (Index).all);
4291 end loop;
4293 -- One switch for the standard GNAT library dir
4295 Linker_Switches.Increment_Last;
4296 Linker_Switches.Table (Linker_Switches.Last) :=
4297 new String'(Path_Option.all & MLib.Utl.Lib_Directory);
4299 else
4300 -- We are going to create one switch of the form
4301 -- "-Wl,-rpath,dir_1:dir_2:dir_3"
4303 for Index in
4304 Library_Paths.First .. Library_Paths.Last
4305 loop
4306 -- Add the length of the library dir plus one for the
4307 -- directory separator.
4309 Length :=
4310 Length + Library_Paths.Table (Index)'Length + 1;
4311 end loop;
4313 -- Finally, add the length of the standard GNAT
4314 -- library dir.
4316 Length := Length + MLib.Utl.Lib_Directory'Length;
4317 Option := new String (1 .. Length);
4318 Option (1 .. Path_Option'Length) := Path_Option.all;
4319 Current := Path_Option'Length;
4321 -- Put each library dir followed by a dir
4322 -- separator.
4324 for Index in
4325 Library_Paths.First .. Library_Paths.Last
4326 loop
4327 Option
4328 (Current + 1 ..
4329 Current + Library_Paths.Table (Index)'Length) :=
4330 Library_Paths.Table (Index).all;
4331 Current :=
4332 Current + Library_Paths.Table (Index)'Length + 1;
4333 Option (Current) := Path_Separator;
4334 end loop;
4336 -- Finally put the standard GNAT library dir
4338 Option
4339 (Current + 1 ..
4340 Current + MLib.Utl.Lib_Directory'Length) :=
4341 MLib.Utl.Lib_Directory;
4343 -- And add the switch to the linker switches
4345 Linker_Switches.Increment_Last;
4346 Linker_Switches.Table (Linker_Switches.Last) := Option;
4347 end if;
4348 end;
4349 end if;
4350 end if;
4352 -- Put the object directories in ADA_OBJECTS_PATH
4354 Prj.Env.Set_Ada_Paths
4355 (Main_Project,
4356 Project_Tree,
4357 Including_Libraries => False,
4358 Include_Path => False);
4360 -- Check for attributes Linker'Linker_Options in projects other than
4361 -- the main project
4363 declare
4364 Linker_Options : constant String_List :=
4365 Linker_Options_Switches
4366 (Main_Project,
4367 Do_Fail => Make_Failed'Access,
4368 In_Tree => Project_Tree);
4369 begin
4370 for Option in Linker_Options'Range loop
4371 Linker_Switches.Increment_Last;
4372 Linker_Switches.Table (Linker_Switches.Last) :=
4373 Linker_Options (Option);
4374 end loop;
4375 end;
4376 end if;
4378 if CodePeer_Mode then
4379 Linker_Switches.Increment_Last;
4380 Linker_Switches.Table (Linker_Switches.Last) :=
4381 new String'(CodePeer_Mode_String);
4382 end if;
4384 -- Add switch -M to gnatlink if builder switch --create-map-file
4385 -- has been specified.
4387 if Map_File /= null then
4388 Linker_Switches.Increment_Last;
4389 Linker_Switches.Table (Linker_Switches.Last) :=
4390 new String'("-M" & Map_File.all);
4391 end if;
4393 declare
4394 Args : Argument_List
4395 (Linker_Switches.First .. Linker_Switches.Last + 2);
4397 Last_Arg : Integer := Linker_Switches.First - 1;
4398 Skip : Boolean := False;
4400 begin
4401 -- Get all the linker switches
4403 for J in Linker_Switches.First .. Linker_Switches.Last loop
4404 if Skip then
4405 Skip := False;
4407 elsif Non_Std_Executable
4408 and then Linker_Switches.Table (J).all = "-o"
4409 then
4410 Skip := True;
4412 -- Here we capture and duplicate the linker argument. We
4413 -- need to do the duplication since the arguments will get
4414 -- normalized. Not doing so will result in calling normalized
4415 -- two times for the same set of arguments if gnatmake is
4416 -- passed multiple mains. This can result in the wrong argument
4417 -- being passed to the linker.
4419 else
4420 Last_Arg := Last_Arg + 1;
4421 Args (Last_Arg) := new String'(Linker_Switches.Table (J).all);
4422 end if;
4423 end loop;
4425 -- If need be, add the -o switch
4427 if Non_Std_Executable then
4428 Last_Arg := Last_Arg + 1;
4429 Args (Last_Arg) := new String'("-o");
4430 Last_Arg := Last_Arg + 1;
4431 Args (Last_Arg) := new String'(Get_Name_String (Executable));
4432 end if;
4434 -- And invoke the linker
4436 declare
4437 Success : Boolean := False;
4438 begin
4439 -- If gnatmake was invoked with --subdirs and no project file,
4440 -- put the executable in the subdirectory specified.
4442 if Prj.Subdirs /= null and then Main_Project = No_Project then
4443 Change_Dir (Object_Directory_Path.all);
4444 end if;
4446 Link (Main_ALI_File,
4447 Link_With_Shared_Libgcc.all &
4448 Args (Args'First .. Last_Arg),
4449 Success);
4451 if Success then
4452 Successful_Links.Increment_Last;
4453 Successful_Links.Table (Successful_Links.Last) := Main_ALI_File;
4455 elsif Osint.Number_Of_Files = 1
4456 or else not Keep_Going
4457 then
4458 Make_Failed ("*** link failed.");
4460 else
4461 Set_Standard_Error;
4462 Write_Line ("*** link failed");
4464 if Commands_To_Stdout then
4465 Set_Standard_Output;
4466 end if;
4468 Failed_Links.Increment_Last;
4469 Failed_Links.Table (Failed_Links.Last) := Main_ALI_File;
4470 end if;
4471 end;
4472 end;
4474 Linker_Switches.Set_Last (Linker_Switches_Last);
4475 end Linking_Phase;
4477 -------------------
4478 -- Binding_Phase --
4479 -------------------
4481 procedure Binding_Phase
4482 (Stand_Alone_Libraries : Boolean := False;
4483 Main_ALI_File : File_Name_Type)
4485 Args : Argument_List (Binder_Switches.First .. Binder_Switches.Last + 2);
4486 -- The arguments for the invocation of gnatbind
4488 Last_Arg : Natural := Binder_Switches.Last;
4489 -- Index of the last argument in Args
4491 Shared_Libs : Boolean := False;
4492 -- Set to True when there are shared library project files or
4493 -- when gnatbind is invoked with -shared.
4495 Proj : Project_List;
4497 Mapping_Path : Path_Name_Type := No_Path;
4498 -- The path name of the mapping file
4500 begin
4501 -- Check if there are shared libraries, so that gnatbind is called with
4502 -- -shared. Check also if gnatbind is called with -shared, so that
4503 -- gnatlink is called with -shared-libgcc ensuring that the shared
4504 -- version of libgcc will be used.
4506 if Main_Project /= No_Project
4507 and then MLib.Tgt.Support_For_Libraries /= Prj.None
4508 then
4509 Proj := Project_Tree.Projects;
4510 while Proj /= null loop
4511 if Proj.Project.Library
4512 and then Proj.Project.Library_Kind /= Static
4513 then
4514 Shared_Libs := True;
4515 Bind_Shared := Shared_Switch'Access;
4516 exit;
4517 end if;
4519 Proj := Proj.Next;
4520 end loop;
4521 end if;
4523 -- Check now for switch -shared
4525 if not Shared_Libs then
4526 for J in Binder_Switches.First .. Last_Arg loop
4527 if Binder_Switches.Table (J).all = "-shared" then
4528 Shared_Libs := True;
4529 exit;
4530 end if;
4531 end loop;
4532 end if;
4534 -- If shared libraries present, invoke gnatlink with
4535 -- -shared-libgcc.
4537 if Shared_Libs then
4538 Link_With_Shared_Libgcc := Shared_Libgcc_Switch'Access;
4539 end if;
4541 -- Get all the binder switches
4543 for J in Binder_Switches.First .. Last_Arg loop
4544 Args (J) := Binder_Switches.Table (J);
4545 end loop;
4547 if Stand_Alone_Libraries then
4548 Last_Arg := Last_Arg + 1;
4549 Args (Last_Arg) := Force_Elab_Flags_String'Access;
4550 end if;
4552 if CodePeer_Mode then
4553 Last_Arg := Last_Arg + 1;
4554 Args (Last_Arg) := CodePeer_Mode_String'Access;
4555 end if;
4557 if Main_Project /= No_Project then
4559 -- Put all the source directories in ADA_INCLUDE_PATH,
4560 -- and all the object directories in ADA_OBJECTS_PATH,
4561 -- except those of library projects.
4563 Prj.Env.Set_Ada_Paths
4564 (Project => Main_Project,
4565 In_Tree => Project_Tree,
4566 Including_Libraries => False,
4567 Include_Path => Use_Include_Path_File);
4569 -- If switch -C was specified, create a binder mapping file
4571 if Create_Mapping_File then
4572 Mapping_Path := Create_Binder_Mapping_File (Project_Tree);
4574 if Mapping_Path /= No_Path then
4575 Last_Arg := Last_Arg + 1;
4576 Args (Last_Arg) :=
4577 new String'("-F=" & Get_Name_String (Mapping_Path));
4578 end if;
4579 end if;
4580 end if;
4582 -- If gnatmake was invoked with --subdirs and no project file, put the
4583 -- binder generated files in the subdirectory specified.
4585 if Main_Project = No_Project and then Prj.Subdirs /= null then
4586 Change_Dir (Object_Directory_Path.all);
4587 end if;
4589 begin
4590 Bind (Main_ALI_File,
4591 Bind_Shared.all & Args (Args'First .. Last_Arg));
4593 exception
4594 when others =>
4596 -- Delete the temporary mapping file if one was created
4598 if Mapping_Path /= No_Path then
4599 Delete_Temporary_File (Project_Tree.Shared, Mapping_Path);
4600 end if;
4602 -- And reraise the exception
4604 raise;
4605 end;
4607 -- If -dn was not specified, delete the temporary mapping file
4608 -- if one was created.
4610 if Mapping_Path /= No_Path then
4611 Delete_Temporary_File (Project_Tree.Shared, Mapping_Path);
4612 end if;
4613 end Binding_Phase;
4615 -------------------
4616 -- Library_Phase --
4617 -------------------
4619 procedure Library_Phase
4620 (Stand_Alone_Libraries : in out Boolean;
4621 Library_Rebuilt : in out Boolean)
4623 Depth : Natural;
4624 Current : Natural;
4625 Proj1 : Project_List;
4627 procedure Add_To_Library_Projs (Proj : Project_Id);
4628 -- Add project Project to table Library_Projs in
4629 -- decreasing depth order.
4631 --------------------------
4632 -- Add_To_Library_Projs --
4633 --------------------------
4635 procedure Add_To_Library_Projs (Proj : Project_Id) is
4636 Prj : Project_Id;
4638 begin
4639 Library_Projs.Increment_Last;
4640 Depth := Proj.Depth;
4642 -- Put the projects in decreasing depth order, so that
4643 -- if libA depends on libB, libB is first in order.
4645 Current := Library_Projs.Last;
4646 while Current > 1 loop
4647 Prj := Library_Projs.Table (Current - 1);
4648 exit when Prj.Depth >= Depth;
4649 Library_Projs.Table (Current) := Prj;
4650 Current := Current - 1;
4651 end loop;
4653 Library_Projs.Table (Current) := Proj;
4654 end Add_To_Library_Projs;
4656 begin
4657 Library_Projs.Init;
4659 -- Put in Library_Projs table all library project file
4660 -- ids when the library need to be rebuilt.
4662 Proj1 := Project_Tree.Projects;
4663 while Proj1 /= null loop
4664 if Proj1.Project.Extended_By = No_Project then
4665 if Proj1.Project.Standalone_Library /= No then
4666 Stand_Alone_Libraries := True;
4667 end if;
4669 if Proj1.Project.Library then
4670 MLib.Prj.Check_Library
4671 (Proj1.Project, Project_Tree);
4672 end if;
4674 if Proj1.Project.Need_To_Build_Lib then
4675 Add_To_Library_Projs (Proj1.Project);
4676 end if;
4677 end if;
4679 Proj1 := Proj1.Next;
4680 end loop;
4682 -- Check if importing libraries should be regenerated
4683 -- because at least an imported library will be
4684 -- regenerated or is more recent.
4686 Proj1 := Project_Tree.Projects;
4687 while Proj1 /= null loop
4688 if Proj1.Project.Library
4689 and then Proj1.Project.Extended_By = No_Project
4690 and then Proj1.Project.Library_Kind /= Static
4691 and then not Proj1.Project.Need_To_Build_Lib
4692 and then not Proj1.Project.Externally_Built
4693 then
4694 declare
4695 List : Project_List;
4696 Proj2 : Project_Id;
4697 Rebuild : Boolean := False;
4699 Lib_Timestamp1 : constant Time_Stamp_Type :=
4700 Proj1.Project.Library_TS;
4702 begin
4703 List := Proj1.Project.All_Imported_Projects;
4704 while List /= null loop
4705 Proj2 := List.Project;
4707 if Proj2.Library then
4708 if Proj2.Need_To_Build_Lib
4709 or else
4710 (Lib_Timestamp1 < Proj2.Library_TS)
4711 then
4712 Rebuild := True;
4713 exit;
4714 end if;
4715 end if;
4717 List := List.Next;
4718 end loop;
4720 if Rebuild then
4721 Proj1.Project.Need_To_Build_Lib := True;
4722 Add_To_Library_Projs (Proj1.Project);
4723 end if;
4724 end;
4725 end if;
4727 Proj1 := Proj1.Next;
4728 end loop;
4730 -- Reset the flags Need_To_Build_Lib for the next main, to avoid
4731 -- rebuilding libraries uselessly.
4733 Proj1 := Project_Tree.Projects;
4734 while Proj1 /= null loop
4735 Proj1.Project.Need_To_Build_Lib := False;
4736 Proj1 := Proj1.Next;
4737 end loop;
4739 -- Build the libraries, if any need to be built
4741 for J in 1 .. Library_Projs.Last loop
4742 Library_Rebuilt := True;
4744 -- If a library is rebuilt, then executables are obsolete
4746 Executable_Obsolete := True;
4748 MLib.Prj.Build_Library
4749 (For_Project => Library_Projs.Table (J),
4750 In_Tree => Project_Tree,
4751 Gnatbind => Gnatbind.all,
4752 Gnatbind_Path => Gnatbind_Path,
4753 Gcc => Gcc.all,
4754 Gcc_Path => Gcc_Path);
4755 end loop;
4756 end Library_Phase;
4758 -----------------------
4759 -- Compilation_Phase --
4760 -----------------------
4762 procedure Compilation_Phase
4763 (Main_Source_File : File_Name_Type;
4764 Current_Main_Index : Int := 0;
4765 Total_Compilation_Failures : in out Natural;
4766 Stand_Alone_Libraries : in out Boolean;
4767 Executable : File_Name_Type := No_File;
4768 Is_Last_Main : Boolean;
4769 Stop_Compile : out Boolean)
4771 Args : Argument_List (1 .. Gcc_Switches.Last);
4773 First_Compiled_File : File_Name_Type;
4774 Youngest_Obj_File : File_Name_Type;
4775 Youngest_Obj_Stamp : Time_Stamp_Type;
4777 Is_Main_Unit : Boolean;
4778 -- Set True by Compile_Sources if Main_Source_File can be a main unit
4780 Compilation_Failures : Natural;
4782 Executable_Stamp : Time_Stamp_Type;
4784 Library_Rebuilt : Boolean := False;
4786 begin
4787 Stop_Compile := False;
4789 for J in 1 .. Gcc_Switches.Last loop
4790 Args (J) := Gcc_Switches.Table (J);
4791 end loop;
4793 -- Now we invoke Compile_Sources for the current main
4795 Compile_Sources
4796 (Main_Source => Main_Source_File,
4797 Args => Args,
4798 First_Compiled_File => First_Compiled_File,
4799 Most_Recent_Obj_File => Youngest_Obj_File,
4800 Most_Recent_Obj_Stamp => Youngest_Obj_Stamp,
4801 Main_Unit => Is_Main_Unit,
4802 Main_Index => Current_Main_Index,
4803 Compilation_Failures => Compilation_Failures,
4804 Check_Readonly_Files => Check_Readonly_Files,
4805 Do_Not_Execute => Do_Not_Execute,
4806 Force_Compilations => Force_Compilations,
4807 In_Place_Mode => In_Place_Mode,
4808 Keep_Going => Keep_Going,
4809 Initialize_ALI_Data => True,
4810 Max_Process => Saved_Maximum_Processes);
4812 if Verbose_Mode then
4813 Write_Str ("End of compilation");
4814 Write_Eol;
4815 end if;
4817 Total_Compilation_Failures :=
4818 Total_Compilation_Failures + Compilation_Failures;
4820 if Total_Compilation_Failures /= 0 then
4821 Stop_Compile := True;
4822 return;
4823 end if;
4825 -- Regenerate libraries, if there are any and if object files have been
4826 -- regenerated. Note that we skip this in CodePeer mode because we don't
4827 -- need libraries in this case, and more importantly, the object files
4828 -- may not be present.
4830 if Main_Project /= No_Project
4831 and then not CodePeer_Mode
4832 and then MLib.Tgt.Support_For_Libraries /= Prj.None
4833 and then (Do_Bind_Step
4834 or Unique_Compile_All_Projects
4835 or not Compile_Only)
4836 and then (Do_Link_Step or Is_Last_Main)
4837 then
4838 Library_Phase
4839 (Stand_Alone_Libraries => Stand_Alone_Libraries,
4840 Library_Rebuilt => Library_Rebuilt);
4841 end if;
4843 if List_Dependencies then
4844 if First_Compiled_File /= No_File then
4845 Inform
4846 (First_Compiled_File,
4847 "must be recompiled. Can't generate dependence list.");
4848 else
4849 List_Depend;
4850 end if;
4852 elsif First_Compiled_File = No_File
4853 and then not Do_Bind_Step
4854 and then not Quiet_Output
4855 and then not Library_Rebuilt
4856 and then Osint.Number_Of_Files = 1
4857 then
4858 Inform (Msg => "objects up to date.");
4859 Stop_Compile := True;
4860 return;
4862 elsif Do_Not_Execute and then First_Compiled_File /= No_File then
4863 Write_Name (First_Compiled_File);
4864 Write_Eol;
4865 end if;
4867 -- Stop after compile step if any of:
4869 -- 1) -n (Do_Not_Execute) specified
4871 -- 2) -M (List_Dependencies) specified (also sets
4872 -- Do_Not_Execute above, so this is probably superfluous).
4874 -- 3) -c (Compile_Only) specified, but not -b (Bind_Only)
4876 -- 4) Made unit cannot be a main unit
4878 if ((Do_Not_Execute
4879 or List_Dependencies
4880 or not Do_Bind_Step
4881 or not Is_Main_Unit)
4882 and not No_Main_Subprogram
4883 and not Build_Bind_And_Link_Full_Project)
4884 or Unique_Compile
4885 then
4886 Stop_Compile := True;
4887 return;
4888 end if;
4890 -- If the objects were up-to-date check if the executable file is also
4891 -- up-to-date. For now always bind and link on the JVM since there is
4892 -- currently no simple way to check whether objects are up to date wrt
4893 -- the executable. Same in CodePeer mode where there is no executable.
4895 if Targparm.VM_Target /= JVM_Target
4896 and then not CodePeer_Mode
4897 and then First_Compiled_File = No_File
4898 then
4899 Executable_Stamp := File_Stamp (Executable);
4901 if not Executable_Obsolete then
4902 Executable_Obsolete := Youngest_Obj_Stamp > Executable_Stamp;
4903 end if;
4905 if not Executable_Obsolete then
4906 for Index in reverse 1 .. Dependencies.Last loop
4907 if Is_In_Obsoleted (Dependencies.Table (Index).Depends_On) then
4908 Enter_Into_Obsoleted (Dependencies.Table (Index).This);
4909 end if;
4910 end loop;
4912 Executable_Obsolete := Is_In_Obsoleted (Main_Source_File);
4913 Dependencies.Init;
4914 end if;
4916 if not Executable_Obsolete then
4918 -- If no Ada object files obsolete the executable, check
4919 -- for younger or missing linker files.
4921 Check_Linker_Options
4922 (Executable_Stamp,
4923 Youngest_Obj_File,
4924 Youngest_Obj_Stamp);
4926 Executable_Obsolete := Youngest_Obj_File /= No_File;
4927 end if;
4929 -- Check if any library file is more recent than the
4930 -- executable: there may be an externally built library
4931 -- file that has been modified.
4933 if not Executable_Obsolete and then Main_Project /= No_Project then
4934 declare
4935 Proj1 : Project_List;
4937 begin
4938 Proj1 := Project_Tree.Projects;
4939 while Proj1 /= null loop
4940 if Proj1.Project.Library
4941 and then Proj1.Project.Library_TS > Executable_Stamp
4942 then
4943 Executable_Obsolete := True;
4944 Youngest_Obj_Stamp := Proj1.Project.Library_TS;
4945 Name_Len := 0;
4946 Add_Str_To_Name_Buffer ("library ");
4947 Add_Str_To_Name_Buffer
4948 (Get_Name_String (Proj1.Project.Library_Name));
4949 Youngest_Obj_File := Name_Find;
4950 exit;
4951 end if;
4953 Proj1 := Proj1.Next;
4954 end loop;
4955 end;
4956 end if;
4958 -- Return if the executable is up to date and otherwise
4959 -- motivate the relink/rebind.
4961 if not Executable_Obsolete then
4962 if not Quiet_Output then
4963 Inform (Executable, "up to date.");
4964 end if;
4966 Stop_Compile := True;
4967 return;
4968 end if;
4970 if Executable_Stamp (1) = ' ' then
4971 if not No_Main_Subprogram then
4972 Verbose_Msg (Executable, "missing.", Prefix => " ");
4973 end if;
4975 elsif Youngest_Obj_Stamp (1) = ' ' then
4976 Verbose_Msg
4977 (Youngest_Obj_File, "missing.", Prefix => " ");
4979 elsif Youngest_Obj_Stamp > Executable_Stamp then
4980 Verbose_Msg
4981 (Youngest_Obj_File,
4982 "(" & String (Youngest_Obj_Stamp) & ") newer than",
4983 Executable,
4984 "(" & String (Executable_Stamp) & ")");
4986 else
4987 Verbose_Msg
4988 (Executable, "needs to be rebuilt", Prefix => " ");
4990 end if;
4991 end if;
4992 end Compilation_Phase;
4994 ----------------------------------------
4995 -- Resolve_Relative_Names_In_Switches --
4996 ----------------------------------------
4998 procedure Resolve_Relative_Names_In_Switches (Current_Work_Dir : String) is
4999 begin
5000 -- If a relative path output file has been specified, we add the
5001 -- exec directory.
5003 for J in reverse 1 .. Saved_Linker_Switches.Last - 1 loop
5004 if Saved_Linker_Switches.Table (J).all = Output_Flag.all then
5005 declare
5006 Exec_File_Name : constant String :=
5007 Saved_Linker_Switches.Table (J + 1).all;
5009 begin
5010 if not Is_Absolute_Path (Exec_File_Name) then
5011 Get_Name_String (Main_Project.Exec_Directory.Display_Name);
5012 Add_Str_To_Name_Buffer (Exec_File_Name);
5013 Saved_Linker_Switches.Table (J + 1) :=
5014 new String'(Name_Buffer (1 .. Name_Len));
5015 end if;
5016 end;
5018 exit;
5019 end if;
5020 end loop;
5022 -- If we are using a project file, for relative paths we add the
5023 -- current working directory for any relative path on the command
5024 -- line and the project directory, for any relative path in the
5025 -- project file.
5027 declare
5028 Dir_Path : constant String :=
5029 Get_Name_String (Main_Project.Directory.Display_Name);
5030 begin
5031 for J in 1 .. Binder_Switches.Last loop
5032 Ensure_Absolute_Path
5033 (Binder_Switches.Table (J),
5034 Do_Fail => Make_Failed'Access,
5035 Parent => Dir_Path, For_Gnatbind => True);
5036 end loop;
5038 for J in 1 .. Saved_Binder_Switches.Last loop
5039 Ensure_Absolute_Path
5040 (Saved_Binder_Switches.Table (J),
5041 Do_Fail => Make_Failed'Access,
5042 Parent => Current_Work_Dir,
5043 For_Gnatbind => True);
5044 end loop;
5046 for J in 1 .. Linker_Switches.Last loop
5047 Ensure_Absolute_Path
5048 (Linker_Switches.Table (J),
5049 Parent => Dir_Path,
5050 Do_Fail => Make_Failed'Access);
5051 end loop;
5053 for J in 1 .. Saved_Linker_Switches.Last loop
5054 Ensure_Absolute_Path
5055 (Saved_Linker_Switches.Table (J),
5056 Do_Fail => Make_Failed'Access,
5057 Parent => Current_Work_Dir);
5058 end loop;
5060 for J in 1 .. Gcc_Switches.Last loop
5061 Ensure_Absolute_Path
5062 (Gcc_Switches.Table (J),
5063 Do_Fail => Make_Failed'Access,
5064 Parent => Dir_Path,
5065 Including_Non_Switch => False);
5066 end loop;
5068 for J in 1 .. Saved_Gcc_Switches.Last loop
5069 Ensure_Absolute_Path
5070 (Saved_Gcc_Switches.Table (J),
5071 Parent => Current_Work_Dir,
5072 Do_Fail => Make_Failed'Access,
5073 Including_Non_Switch => False);
5074 end loop;
5075 end;
5076 end Resolve_Relative_Names_In_Switches;
5078 -----------------------------------
5079 -- Queue_Library_Project_Sources --
5080 -----------------------------------
5082 procedure Queue_Library_Project_Sources is
5083 begin
5084 if not Unique_Compile
5085 and then MLib.Tgt.Support_For_Libraries /= Prj.None
5086 then
5087 declare
5088 Proj : Project_List;
5090 begin
5091 Proj := Project_Tree.Projects;
5092 while Proj /= null loop
5093 if Proj.Project.Library then
5094 Proj.Project.Need_To_Build_Lib :=
5095 not MLib.Tgt.Library_Exists_For
5096 (Proj.Project, Project_Tree)
5097 and then not Proj.Project.Externally_Built;
5099 if Proj.Project.Need_To_Build_Lib then
5101 -- If there is no object directory, then it will be
5102 -- impossible to build the library, so fail immediately.
5104 if Proj.Project.Object_Directory =
5105 No_Path_Information
5106 then
5107 Make_Failed
5108 ("no object files to build library for"
5109 & " project """
5110 & Get_Name_String (Proj.Project.Name)
5111 & """");
5112 Proj.Project.Need_To_Build_Lib := False;
5114 else
5115 if Verbose_Mode then
5116 Write_Str
5117 ("Library file does not exist for "
5118 & "project """);
5119 Write_Str
5120 (Get_Name_String (Proj.Project.Name));
5121 Write_Line ("""");
5122 end if;
5124 Insert_Project_Sources
5125 (The_Project => Proj.Project,
5126 All_Projects => False,
5127 Into_Q => True);
5128 end if;
5129 end if;
5130 end if;
5132 Proj := Proj.Next;
5133 end loop;
5134 end;
5135 end if;
5136 end Queue_Library_Project_Sources;
5138 ------------------------
5139 -- Compute_Executable --
5140 ------------------------
5142 procedure Compute_Executable
5143 (Main_Source_File : File_Name_Type;
5144 Executable : out File_Name_Type;
5145 Non_Std_Executable : out Boolean)
5147 begin
5148 Executable := No_File;
5149 Non_Std_Executable :=
5150 Targparm.Executable_Extension_On_Target /= No_Name;
5152 -- Look inside the linker switches to see if the name of the final
5153 -- executable program was specified.
5155 for J in reverse Linker_Switches.First .. Linker_Switches.Last loop
5156 if Linker_Switches.Table (J).all = Output_Flag.all then
5157 pragma Assert (J < Linker_Switches.Last);
5159 -- We cannot specify a single executable for several main
5160 -- subprograms
5162 if Osint.Number_Of_Files > 1 then
5163 Fail ("cannot specify a single executable for several mains");
5164 end if;
5166 Name_Len := 0;
5167 Add_Str_To_Name_Buffer (Linker_Switches.Table (J + 1).all);
5168 Executable := Name_Enter;
5170 Verbose_Msg (Executable, "final executable");
5171 end if;
5172 end loop;
5174 -- If the name of the final executable program was not specified then
5175 -- construct it from the main input file.
5177 if Executable = No_File then
5178 if Main_Project = No_Project then
5179 Executable := Executable_Name (Strip_Suffix (Main_Source_File));
5181 else
5182 -- If we are using a project file, we attempt to remove the body
5183 -- (or spec) termination of the main subprogram. We find it the
5184 -- naming scheme of the project file. This avoids generating an
5185 -- executable "main.2" for a main subprogram "main.2.ada", when
5186 -- the body termination is ".2.ada".
5188 Executable :=
5189 Prj.Util.Executable_Of
5190 (Main_Project, Project_Tree.Shared,
5191 Main_Source_File, Main_Index);
5192 end if;
5193 end if;
5195 if Main_Project /= No_Project
5196 and then Main_Project.Exec_Directory /= No_Path_Information
5197 then
5198 declare
5199 Exec_File_Name : constant String := Get_Name_String (Executable);
5200 begin
5201 if not Is_Absolute_Path (Exec_File_Name) then
5202 Get_Name_String (Main_Project.Exec_Directory.Display_Name);
5203 Add_Str_To_Name_Buffer (Exec_File_Name);
5204 Executable := Name_Find;
5205 end if;
5207 Non_Std_Executable := True;
5208 end;
5209 end if;
5210 end Compute_Executable;
5212 -------------------------------
5213 -- Compute_Switches_For_Main --
5214 -------------------------------
5216 procedure Compute_Switches_For_Main
5217 (Main_Source_File : in out File_Name_Type;
5218 Root_Environment : in out Prj.Tree.Environment;
5219 Compute_Builder : Boolean;
5220 Current_Work_Dir : String)
5222 function Add_Global_Switches
5223 (Switch : String;
5224 For_Lang : Name_Id;
5225 For_Builder : Boolean;
5226 Has_Global_Compilation_Switches : Boolean) return Boolean;
5227 -- Handles builder and global compilation switches, as read from the
5228 -- project file.
5230 function Add_Global_Switches
5231 (Switch : String;
5232 For_Lang : Name_Id;
5233 For_Builder : Boolean;
5234 Has_Global_Compilation_Switches : Boolean) return Boolean
5236 pragma Unreferenced (For_Lang);
5237 begin
5238 if For_Builder then
5239 Program_Args := None;
5240 Switch_May_Be_Passed_To_The_Compiler :=
5241 not Has_Global_Compilation_Switches;
5242 Scan_Make_Arg (Root_Environment, Switch, And_Save => False);
5244 return Gnatmake_Switch_Found
5245 or else Switch_May_Be_Passed_To_The_Compiler;
5246 else
5247 Add_Switch (Switch, Compiler, And_Save => False);
5248 return True;
5249 end if;
5250 end Add_Global_Switches;
5252 procedure Do_Compute_Builder_Switches
5253 is new Makeutl.Compute_Builder_Switches (Add_Global_Switches);
5254 begin
5255 if Main_Project /= No_Project then
5256 declare
5257 Main_Source_File_Name : constant String :=
5258 Get_Name_String (Main_Source_File);
5260 Main_Unit_File_Name : constant String :=
5261 Prj.Env.File_Name_Of_Library_Unit_Body
5262 (Name => Main_Source_File_Name,
5263 Project => Main_Project,
5264 In_Tree => Project_Tree,
5265 Main_Project_Only => not Unique_Compile);
5267 The_Packages : constant Package_Id := Main_Project.Decl.Packages;
5269 Binder_Package : constant Prj.Package_Id :=
5270 Prj.Util.Value_Of
5271 (Name => Name_Binder,
5272 In_Packages => The_Packages,
5273 Shared => Project_Tree.Shared);
5275 Linker_Package : constant Prj.Package_Id :=
5276 Prj.Util.Value_Of
5277 (Name => Name_Linker,
5278 In_Packages => The_Packages,
5279 Shared => Project_Tree.Shared);
5281 begin
5282 -- We fail if we cannot find the main source file
5284 if Main_Unit_File_Name = "" then
5285 Make_Failed ('"' & Main_Source_File_Name
5286 & """ is not a unit of project "
5287 & Project_File_Name.all & ".");
5288 end if;
5290 -- Remove any directory information from the main source file
5291 -- file name.
5293 declare
5294 Pos : Natural := Main_Unit_File_Name'Last;
5296 begin
5297 loop
5298 exit when Pos < Main_Unit_File_Name'First
5299 or else Main_Unit_File_Name (Pos) = Directory_Separator;
5300 Pos := Pos - 1;
5301 end loop;
5303 Name_Len := Main_Unit_File_Name'Last - Pos;
5305 Name_Buffer (1 .. Name_Len) :=
5306 Main_Unit_File_Name (Pos + 1 .. Main_Unit_File_Name'Last);
5308 Main_Source_File := Name_Find;
5310 -- We only output the main source file if there is only one
5312 if Verbose_Mode and then Osint.Number_Of_Files = 1 then
5313 Write_Str ("Main source file: """);
5314 Write_Str (Main_Unit_File_Name
5315 (Pos + 1 .. Main_Unit_File_Name'Last));
5316 Write_Line (""".");
5317 end if;
5318 end;
5320 if Compute_Builder then
5321 Do_Compute_Builder_Switches
5322 (Project_Tree => Project_Tree,
5323 Root_Environment => Root_Environment,
5324 Main_Project => Main_Project,
5325 Only_For_Lang => Name_Ada);
5327 Resolve_Relative_Names_In_Switches
5328 (Current_Work_Dir => Current_Work_Dir);
5330 -- Record current last switch index for tables Binder_Switches
5331 -- and Linker_Switches, so that these tables may be reset
5332 -- before each main, before adding switches from the project
5333 -- file and from the command line.
5335 Last_Binder_Switch := Binder_Switches.Last;
5336 Last_Linker_Switch := Linker_Switches.Last;
5338 else
5339 -- Reset the tables Binder_Switches and Linker_Switches
5341 Binder_Switches.Set_Last (Last_Binder_Switch);
5342 Linker_Switches.Set_Last (Last_Linker_Switch);
5343 end if;
5345 -- We now deal with the binder and linker switches. If no project
5346 -- file is used, there is nothing to do because the binder and
5347 -- linker switches are the same for all mains.
5349 -- Add binder switches from the project file for the first main
5351 if Do_Bind_Step and then Binder_Package /= No_Package then
5352 if Verbose_Mode then
5353 Write_Str ("Adding binder switches for """);
5354 Write_Str (Main_Unit_File_Name);
5355 Write_Line (""".");
5356 end if;
5358 Add_Switches
5359 (Env => Root_Environment,
5360 File_Name => Main_Unit_File_Name,
5361 The_Package => Binder_Package,
5362 Program => Binder);
5363 end if;
5365 -- Add linker switches from the project file for the first main
5367 if Do_Link_Step and then Linker_Package /= No_Package then
5368 if Verbose_Mode then
5369 Write_Str ("Adding linker switches for""");
5370 Write_Str (Main_Unit_File_Name);
5371 Write_Line (""".");
5372 end if;
5374 Add_Switches
5375 (Env => Root_Environment,
5376 File_Name => Main_Unit_File_Name,
5377 The_Package => Linker_Package,
5378 Program => Linker);
5379 end if;
5381 -- As we are using a project file, for relative paths we add the
5382 -- current working directory for any relative path on the command
5383 -- line and the project directory, for any relative path in the
5384 -- project file.
5386 declare
5387 Dir_Path : constant String :=
5388 Get_Name_String (Main_Project.Directory.Display_Name);
5389 begin
5390 for J in Last_Binder_Switch + 1 .. Binder_Switches.Last loop
5391 Ensure_Absolute_Path
5392 (Binder_Switches.Table (J),
5393 Do_Fail => Make_Failed'Access,
5394 Parent => Dir_Path, For_Gnatbind => True);
5395 end loop;
5397 for J in Last_Linker_Switch + 1 .. Linker_Switches.Last loop
5398 Ensure_Absolute_Path
5399 (Linker_Switches.Table (J),
5400 Parent => Dir_Path,
5401 Do_Fail => Make_Failed'Access);
5402 end loop;
5403 end;
5404 end;
5406 else
5407 if not Compute_Builder then
5409 -- Reset the tables Binder_Switches and Linker_Switches
5411 Binder_Switches.Set_Last (Last_Binder_Switch);
5412 Linker_Switches.Set_Last (Last_Linker_Switch);
5413 end if;
5414 end if;
5416 Check_Steps;
5418 if Compute_Builder then
5419 Display_Commands (not Quiet_Output);
5420 end if;
5422 -- We now put in the Binder_Switches and Linker_Switches tables, the
5423 -- binder and linker switches of the command line that have been put in
5424 -- the Saved_ tables. If a project file was used, then the command line
5425 -- switches will follow the project file switches.
5427 for J in 1 .. Saved_Binder_Switches.Last loop
5428 Add_Switch
5429 (Saved_Binder_Switches.Table (J),
5430 Binder,
5431 And_Save => False);
5432 end loop;
5434 for J in 1 .. Saved_Linker_Switches.Last loop
5435 Add_Switch
5436 (Saved_Linker_Switches.Table (J),
5437 Linker,
5438 And_Save => False);
5439 end loop;
5440 end Compute_Switches_For_Main;
5442 --------------
5443 -- Gnatmake --
5444 --------------
5446 procedure Gnatmake is
5447 Main_Source_File : File_Name_Type;
5448 -- The source file containing the main compilation unit
5450 Total_Compilation_Failures : Natural := 0;
5452 Main_ALI_File : File_Name_Type;
5453 -- The ali file corresponding to Main_Source_File
5455 Executable : File_Name_Type := No_File;
5456 -- The file name of an executable
5458 Non_Std_Executable : Boolean := False;
5459 -- Non_Std_Executable is set to True when there is a possibility that
5460 -- the linker will not choose the correct executable file name.
5462 Current_Work_Dir : constant String_Access :=
5463 new String'(Get_Current_Dir);
5464 -- The current working directory, used to modify some relative path
5465 -- switches on the command line when a project file is used.
5467 Current_Main_Index : Int := 0;
5468 -- If not zero, the index of the current main unit in its source file
5470 Is_First_Main : Boolean;
5471 -- Whether we are processing the first main
5473 Stand_Alone_Libraries : Boolean := False;
5474 -- Set to True when there are Stand-Alone Libraries, so that gnatbind
5475 -- is invoked with the -F switch to force checking of elaboration flags.
5477 Project_Node_Tree : Project_Node_Tree_Ref;
5479 Stop_Compile : Boolean;
5481 Discard : Boolean;
5482 pragma Warnings (Off, Discard);
5484 procedure Check_Mains;
5485 -- Check that the main subprograms do exist and that they all
5486 -- belong to the same project file.
5488 -----------------
5489 -- Check_Mains --
5490 -----------------
5492 procedure Check_Mains is
5493 Real_Main_Project : Project_Id := No_Project;
5494 Info : Main_Info;
5495 Proj : Project_Id;
5496 begin
5497 if Mains.Number_Of_Mains (Project_Tree) = 0
5498 and then not Unique_Compile
5499 then
5500 Mains.Fill_From_Project (Main_Project, Project_Tree);
5501 end if;
5503 Mains.Complete_Mains
5504 (Root_Environment.Flags, Main_Project, Project_Tree);
5506 -- If we have multiple mains on the command line, they need not
5507 -- belong to the root project, but they must all belong to the same
5508 -- project.
5510 if not Unique_Compile then
5511 Mains.Reset;
5512 loop
5513 Info := Mains.Next_Main;
5514 exit when Info = No_Main_Info;
5516 Proj := Ultimate_Extending_Project_Of (Info.Project);
5518 if Real_Main_Project = No_Project then
5519 Real_Main_Project := Proj;
5520 elsif Real_Main_Project /= Proj then
5521 Make_Failed
5522 ("""" & Get_Name_String (Info.File) &
5523 """ is not a source of project " &
5524 Get_Name_String (Real_Main_Project.Name));
5525 end if;
5526 end loop;
5528 if Real_Main_Project /= No_Project then
5529 Main_Project := Real_Main_Project;
5530 end if;
5532 Debug_Output ("After checking mains, main project is",
5533 Main_Project.Name);
5535 else
5536 -- For all mains on the command line, make sure they were in
5537 -- osint. In particular, if the user has specified a multi-unit
5538 -- source file, the call to Complete_Mains will have expanded
5539 -- the list of mains to all its units, and we must now put them
5540 -- back on the command line.
5541 -- ??? This will not be necessary when gnatmake shares the same
5542 -- queue as gprbuild and processes the file directly on the queue.
5544 Mains.Reset;
5545 loop
5546 Info := Mains.Next_Main;
5547 exit when Info = No_Main_Info;
5549 if Info.Index /= 0 then
5550 Debug_Output ("Add to command line index="
5551 & Info.Index'Img, Name_Id (Info.File));
5552 Osint.Add_File (Get_Name_String (Info.File), Info.Index);
5553 end if;
5554 end loop;
5555 end if;
5556 end Check_Mains;
5558 -- Start of processing for Gnatmake
5560 -- This body is very long, should be broken down???
5562 begin
5563 Install_Int_Handler (Sigint_Intercepted'Access);
5565 Do_Compile_Step := True;
5566 Do_Bind_Step := True;
5567 Do_Link_Step := True;
5569 Obsoleted.Reset;
5571 Make.Initialize (Project_Node_Tree, Root_Environment);
5573 Bind_Shared := No_Shared_Switch'Access;
5574 Link_With_Shared_Libgcc := No_Shared_Libgcc_Switch'Access;
5576 Failed_Links.Set_Last (0);
5577 Successful_Links.Set_Last (0);
5579 -- Special case when switch -B was specified
5581 if Build_Bind_And_Link_Full_Project then
5583 -- When switch -B is specified, there must be a project file
5585 if Main_Project = No_Project then
5586 Make_Failed ("-B cannot be used without a project file");
5588 -- No main program may be specified on the command line
5590 elsif Osint.Number_Of_Files /= 0 then
5591 Make_Failed
5592 ("-B cannot be used with a main specified on the command line");
5594 -- And the project file cannot be a library project file
5596 elsif Main_Project.Library then
5597 Make_Failed ("-B cannot be used for a library project file");
5599 else
5600 No_Main_Subprogram := True;
5601 Insert_Project_Sources
5602 (The_Project => Main_Project,
5603 All_Projects => Unique_Compile_All_Projects,
5604 Into_Q => False);
5606 -- If there are no sources to compile, we fail
5608 if Osint.Number_Of_Files = 0 then
5609 Make_Failed ("no sources to compile");
5610 end if;
5612 -- Specify -n for gnatbind and add the ALI files of all the
5613 -- sources, except the one which is a fake main subprogram: this
5614 -- is the one for the binder generated file and it will be
5615 -- transmitted to gnatlink. These sources are those that are in
5616 -- the queue.
5618 Add_Switch ("-n", Binder, And_Save => True);
5620 for J in 1 .. Queue.Size loop
5621 Add_Switch
5622 (Get_Name_String (Lib_File_Name (Queue.Element (J))),
5623 Binder, And_Save => True);
5624 end loop;
5625 end if;
5627 elsif Main_Index /= 0 and then Osint.Number_Of_Files > 1 then
5628 Make_Failed ("cannot specify several mains with a multi-unit index");
5630 elsif Main_Project /= No_Project then
5632 -- If the main project file is a library project file, main(s) cannot
5633 -- be specified on the command line.
5635 if Osint.Number_Of_Files /= 0 then
5636 if Main_Project.Library
5637 and then not Unique_Compile
5638 and then ((not Make_Steps) or else Bind_Only or else Link_Only)
5639 then
5640 Make_Failed
5641 ("cannot specify a main program "
5642 & "on the command line for a library project file");
5643 end if;
5645 -- If no mains have been specified on the command line, and we are
5646 -- using a project file, we either find the main(s) in attribute Main
5647 -- of the main project, or we put all the sources of the project file
5648 -- as mains.
5650 else
5651 if Main_Index /= 0 then
5652 Make_Failed ("cannot specify a multi-unit index but no main "
5653 & "on the command line");
5654 end if;
5656 declare
5657 Value : String_List_Id := Main_Project.Mains;
5659 begin
5660 -- The attribute Main is an empty list or not specified, or
5661 -- else gnatmake was invoked with the switch "-u".
5663 if Value = Prj.Nil_String or else Unique_Compile then
5665 if not Make_Steps
5666 or Compile_Only
5667 or not Main_Project.Library
5668 then
5669 -- First make sure that the binder and the linker will
5670 -- not be invoked.
5672 Do_Bind_Step := False;
5673 Do_Link_Step := False;
5675 -- Put all the sources in the queue
5677 No_Main_Subprogram := True;
5678 Insert_Project_Sources
5679 (The_Project => Main_Project,
5680 All_Projects => Unique_Compile_All_Projects,
5681 Into_Q => False);
5683 -- If no sources to compile, then there is nothing to do
5685 if Osint.Number_Of_Files = 0 then
5686 if not Quiet_Output then
5687 Osint.Write_Program_Name;
5688 Write_Line (": no sources to compile");
5689 end if;
5691 Finish_Program (Project_Tree, E_Success);
5692 end if;
5693 end if;
5695 else
5696 -- The attribute Main is not an empty list. Put all the main
5697 -- subprograms in the list as if they were specified on the
5698 -- command line. However, if attribute Languages includes a
5699 -- language other than Ada, only include the Ada mains; if
5700 -- there is no Ada main, compile all sources of the project.
5702 declare
5703 Languages : constant Variable_Value :=
5704 Prj.Util.Value_Of
5705 (Name_Languages,
5706 Main_Project.Decl.Attributes,
5707 Project_Tree.Shared);
5709 Current : String_List_Id;
5710 Element : String_Element;
5712 Foreign_Language : Boolean := False;
5713 At_Least_One_Main : Boolean := False;
5715 begin
5716 -- First, determine if there is a foreign language in
5717 -- attribute Languages.
5719 if not Languages.Default then
5720 Current := Languages.Values;
5721 Look_For_Foreign :
5722 while Current /= Nil_String loop
5723 Element := Project_Tree.Shared.String_Elements.
5724 Table (Current);
5725 Get_Name_String (Element.Value);
5726 To_Lower (Name_Buffer (1 .. Name_Len));
5728 if Name_Buffer (1 .. Name_Len) /= "ada" then
5729 Foreign_Language := True;
5730 exit Look_For_Foreign;
5731 end if;
5733 Current := Element.Next;
5734 end loop Look_For_Foreign;
5735 end if;
5737 -- Then, find all mains, or if there is a foreign
5738 -- language, all the Ada mains.
5740 while Value /= Prj.Nil_String loop
5741 -- To know if a main is an Ada main, get its project.
5742 -- It should be the project specified on the command
5743 -- line.
5745 Get_Name_String
5746 (Project_Tree.Shared.String_Elements.Table
5747 (Value).Value);
5749 declare
5750 Main_Name : constant String :=
5751 Get_Name_String
5752 (Project_Tree.Shared.
5753 String_Elements.
5754 Table (Value).Value);
5756 Proj : constant Project_Id :=
5757 Prj.Env.Project_Of
5758 (Main_Name, Main_Project, Project_Tree);
5760 begin
5761 if Proj = Main_Project then
5762 At_Least_One_Main := True;
5763 Osint.Add_File
5764 (Get_Name_String
5765 (Project_Tree.Shared.String_Elements.Table
5766 (Value).Value),
5767 Index =>
5768 Project_Tree.Shared.String_Elements.Table
5769 (Value).Index);
5771 elsif not Foreign_Language then
5772 Make_Failed
5773 ("""" & Main_Name &
5774 """ is not a source of project " &
5775 Get_Name_String (Main_Project.Display_Name));
5776 end if;
5777 end;
5779 Value := Project_Tree.Shared.String_Elements.Table
5780 (Value).Next;
5781 end loop;
5783 -- If we did not get any main, it means that all mains
5784 -- in attribute Mains are in a foreign language and -B
5785 -- was not specified to gnatmake; so, we fail.
5787 if not At_Least_One_Main then
5788 Make_Failed
5789 ("no Ada mains, use -B to build foreign main");
5790 end if;
5791 end;
5793 end if;
5794 end;
5795 end if;
5797 -- Check that each main on the command line is a source of a
5798 -- project file and, if there are several mains, each of them
5799 -- is a source of the same project file.
5801 Check_Mains;
5802 end if;
5804 if Verbose_Mode then
5805 Write_Eol;
5806 Display_Version ("GNATMAKE", "1995");
5807 end if;
5809 if Osint.Number_Of_Files = 0 then
5810 if Main_Project /= No_Project and then Main_Project.Library then
5811 if Do_Bind_Step
5812 and then Main_Project.Standalone_Library = No
5813 then
5814 Make_Failed ("only stand-alone libraries may be bound");
5815 end if;
5817 -- Add the default search directories to be able to find libgnat
5819 Osint.Add_Default_Search_Dirs;
5821 -- Get the target parameters, so that the correct binder generated
5822 -- files are generated if OpenVMS is the target.
5824 begin
5825 Targparm.Get_Target_Parameters;
5827 exception
5828 when Unrecoverable_Error =>
5829 Make_Failed ("*** make failed.");
5830 end;
5832 -- And bind and or link the library
5834 MLib.Prj.Build_Library
5835 (For_Project => Main_Project,
5836 In_Tree => Project_Tree,
5837 Gnatbind => Gnatbind.all,
5838 Gnatbind_Path => Gnatbind_Path,
5839 Gcc => Gcc.all,
5840 Gcc_Path => Gcc_Path,
5841 Bind => Bind_Only,
5842 Link => Link_Only);
5844 Finish_Program (Project_Tree, E_Success);
5846 else
5847 -- Call Get_Target_Parameters to ensure that VM_Target and
5848 -- AAMP_On_Target get set before calling Usage.
5850 Targparm.Get_Target_Parameters;
5852 -- Output usage information if no files to compile
5854 Usage;
5855 Finish_Program (Project_Tree, E_Success);
5856 end if;
5857 end if;
5859 -- Get the first executable.
5860 -- ??? This needs to be done early, because Osint.Next_Main_File also
5861 -- initializes the primary search directory, used below to initialize
5862 -- the "-I" parameter
5864 Main_Source_File := Next_Main_Source; -- No directory information
5866 -- If -M was specified, behave as if -n was specified
5868 if List_Dependencies then
5869 Do_Not_Execute := True;
5870 end if;
5872 Add_Switch ("-I-", Compiler, And_Save => True);
5874 if Main_Project = No_Project then
5875 if Look_In_Primary_Dir then
5876 Add_Switch
5877 ("-I" &
5878 Normalize_Directory_Name
5879 (Get_Primary_Src_Search_Directory.all).all,
5880 Compiler,
5881 Append_Switch => False,
5882 And_Save => False);
5884 end if;
5886 else
5887 -- If we use a project file, we have already checked that a main
5888 -- specified on the command line with directory information has the
5889 -- path name corresponding to a correct source in the project tree.
5890 -- So, we don't need the directory information to be taken into
5891 -- account by Find_File, and in fact it may lead to take the wrong
5892 -- sources for other compilation units, when there are extending
5893 -- projects.
5895 Look_In_Primary_Dir := False;
5896 end if;
5898 -- If the user wants a program without a main subprogram, add the
5899 -- appropriate switch to the binder.
5901 if No_Main_Subprogram then
5902 Add_Switch ("-z", Binder, And_Save => True);
5903 end if;
5905 if Main_Project /= No_Project then
5907 if Main_Project.Object_Directory /= No_Path_Information then
5909 -- Change current directory to object directory of main project
5911 Project_Of_Current_Object_Directory := No_Project;
5912 Change_To_Object_Directory (Main_Project);
5913 end if;
5915 -- Source file lookups should be cached for efficiency. Source files
5916 -- are not supposed to change.
5918 Osint.Source_File_Data (Cache => True);
5920 Queue_Library_Project_Sources;
5921 end if;
5923 -- The combination of -f -u and one or several mains on the command line
5924 -- implies -a.
5926 if Force_Compilations
5927 and then Unique_Compile
5928 and then not Unique_Compile_All_Projects
5929 and then Main_On_Command_Line
5930 then
5931 Must_Compile := True;
5932 end if;
5934 if Main_Project /= No_Project
5935 and then not Must_Compile
5936 and then Main_Project.Externally_Built
5937 then
5938 Make_Failed
5939 ("nothing to do for a main project that is externally built");
5940 end if;
5942 -- If no project file is used, we just put the gcc switches
5943 -- from the command line in the Gcc_Switches table.
5945 if Main_Project = No_Project then
5946 for J in 1 .. Saved_Gcc_Switches.Last loop
5947 Add_Switch
5948 (Saved_Gcc_Switches.Table (J), Compiler, And_Save => False);
5949 end loop;
5951 else
5952 -- If there is a project, put the command line gcc switches in the
5953 -- variable The_Saved_Gcc_Switches. They are going to be used later
5954 -- in procedure Compile_Sources.
5956 The_Saved_Gcc_Switches :=
5957 new Argument_List (1 .. Saved_Gcc_Switches.Last + 1);
5959 for J in 1 .. Saved_Gcc_Switches.Last loop
5960 The_Saved_Gcc_Switches (J) := Saved_Gcc_Switches.Table (J);
5961 end loop;
5963 -- We never use gnat.adc when a project file is used
5965 The_Saved_Gcc_Switches (The_Saved_Gcc_Switches'Last) := No_gnat_adc;
5966 end if;
5968 -- If there was a --GCC, --GNATBIND or --GNATLINK switch on the command
5969 -- line, then we have to use it, even if there was another switch in
5970 -- the project file.
5972 if Saved_Gcc /= null then
5973 Gcc := Saved_Gcc;
5974 end if;
5976 if Saved_Gnatbind /= null then
5977 Gnatbind := Saved_Gnatbind;
5978 end if;
5980 if Saved_Gnatlink /= null then
5981 Gnatlink := Saved_Gnatlink;
5982 end if;
5984 Bad_Compilation.Init;
5986 -- If project files are used, create the mapping of all the sources, so
5987 -- that the correct paths will be found. Otherwise, if there is a file
5988 -- which is not a source with the same name in a source directory this
5989 -- file may be incorrectly found.
5991 if Main_Project /= No_Project then
5992 Prj.Env.Create_Mapping (Project_Tree);
5993 end if;
5995 -- Here is where the make process is started
5997 Queue.Initialize
5998 (Main_Project /= No_Project and then One_Compilation_Per_Obj_Dir);
6000 Is_First_Main := True;
6002 Multiple_Main_Loop : for N_File in 1 .. Osint.Number_Of_Files loop
6003 if Current_File_Index /= No_Index then
6004 Main_Index := Current_File_Index;
6005 end if;
6007 Current_Main_Index := Main_Index;
6009 if Current_Main_Index = 0
6010 and then Unique_Compile
6011 and then Main_Project /= No_Project
6012 then
6013 -- If this is a multi-unit source, do not compile it as is (ie
6014 -- without specifying which unit to compile)
6015 -- Insert_Project_Sources has added each of the unit separately.
6017 declare
6018 Source : constant Prj.Source_Id := Find_Source
6019 (In_Tree => Project_Tree,
6020 Project => Main_Project,
6021 Base_Name => Main_Source_File,
6022 Index => Current_Main_Index,
6023 In_Imported_Only => True);
6024 begin
6025 if Source /= No_Source
6026 and then Source.Index /= 0
6027 then
6028 goto Next_Main;
6029 end if;
6030 end;
6031 end if;
6033 Compute_Switches_For_Main
6034 (Main_Source_File,
6035 Root_Environment,
6036 Compute_Builder => Is_First_Main,
6037 Current_Work_Dir => Current_Work_Dir.all);
6039 if Is_First_Main then
6041 -- Put the default source dirs in the source path only now, so
6042 -- that we take the correct ones in the case where --RTS= is
6043 -- specified in the Builder switches.
6045 Osint.Add_Default_Search_Dirs;
6047 -- Get the target parameters, which are only needed for a couple
6048 -- of cases in gnatmake. Protect against an exception, such as the
6049 -- case of system.ads missing from the library, and fail
6050 -- gracefully.
6052 begin
6053 Targparm.Get_Target_Parameters;
6054 exception
6055 when Unrecoverable_Error =>
6056 Make_Failed ("*** make failed.");
6057 end;
6059 -- Special processing for VM targets
6061 if Targparm.VM_Target /= No_VM then
6063 -- Set proper processing commands
6065 case Targparm.VM_Target is
6066 when Targparm.JVM_Target =>
6068 -- Do not check for an object file (".o") when compiling
6069 -- to JVM machine since ".class" files are generated
6070 -- instead.
6072 Check_Object_Consistency := False;
6074 -- Do not modify Gcc is --GCC= was specified
6076 if Gcc = Original_Gcc then
6077 Gcc := new String'("jvm-gnatcompile");
6078 end if;
6080 when Targparm.CLI_Target =>
6081 -- Do not modify Gcc is --GCC= was specified
6083 if Gcc = Original_Gcc then
6084 Gcc := new String'("dotnet-gnatcompile");
6085 end if;
6087 when Targparm.No_VM =>
6088 raise Program_Error;
6089 end case;
6090 end if;
6092 Gcc_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gcc.all);
6093 Gnatbind_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gnatbind.all);
6094 Gnatlink_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gnatlink.all);
6096 -- If we have specified -j switch both from the project file
6097 -- and on the command line, the one from the command line takes
6098 -- precedence.
6100 if Saved_Maximum_Processes = 0 then
6101 Saved_Maximum_Processes := Maximum_Processes;
6102 end if;
6104 if Debug.Debug_Flag_M then
6105 Write_Line ("Maximum number of simultaneous compilations =" &
6106 Saved_Maximum_Processes'Img);
6107 end if;
6109 -- Allocate as many temporary mapping file names as the maximum
6110 -- number of compilations processed, for each possible project.
6112 declare
6113 Data : Project_Compilation_Access;
6114 Proj : Project_List;
6116 begin
6117 Proj := Project_Tree.Projects;
6118 while Proj /= null loop
6119 Data := new Project_Compilation_Data'
6120 (Mapping_File_Names => new Temp_Path_Names
6121 (1 .. Saved_Maximum_Processes),
6122 Last_Mapping_File_Names => 0,
6123 Free_Mapping_File_Indexes => new Free_File_Indexes
6124 (1 .. Saved_Maximum_Processes),
6125 Last_Free_Indexes => 0);
6127 Project_Compilation_Htable.Set
6128 (Project_Compilation, Proj.Project, Data);
6129 Proj := Proj.Next;
6130 end loop;
6132 Data := new Project_Compilation_Data'
6133 (Mapping_File_Names => new Temp_Path_Names
6134 (1 .. Saved_Maximum_Processes),
6135 Last_Mapping_File_Names => 0,
6136 Free_Mapping_File_Indexes => new Free_File_Indexes
6137 (1 .. Saved_Maximum_Processes),
6138 Last_Free_Indexes => 0);
6140 Project_Compilation_Htable.Set
6141 (Project_Compilation, No_Project, Data);
6142 end;
6144 Is_First_Main := False;
6145 end if;
6147 Executable_Obsolete := False;
6149 Compute_Executable
6150 (Main_Source_File => Main_Source_File,
6151 Executable => Executable,
6152 Non_Std_Executable => Non_Std_Executable);
6154 if Do_Compile_Step then
6155 Compilation_Phase
6156 (Main_Source_File => Main_Source_File,
6157 Current_Main_Index => Current_Main_Index,
6158 Total_Compilation_Failures => Total_Compilation_Failures,
6159 Stand_Alone_Libraries => Stand_Alone_Libraries,
6160 Executable => Executable,
6161 Is_Last_Main => N_File = Osint.Number_Of_Files,
6162 Stop_Compile => Stop_Compile);
6164 if Stop_Compile then
6165 if Total_Compilation_Failures /= 0 then
6166 if Keep_Going then
6167 goto Next_Main;
6169 else
6170 List_Bad_Compilations;
6171 Report_Compilation_Failed;
6172 end if;
6174 elsif Osint.Number_Of_Files = 1 then
6175 exit Multiple_Main_Loop;
6176 else
6177 goto Next_Main;
6178 end if;
6179 end if;
6180 end if;
6182 -- For binding and linking, we need to be in the object directory of
6183 -- the main project.
6185 if Main_Project /= No_Project then
6186 Change_To_Object_Directory (Main_Project);
6187 end if;
6189 -- If we are here, it means that we need to rebuilt the current main,
6190 -- so we set Executable_Obsolete to True to make sure that subsequent
6191 -- mains will be rebuilt.
6193 Main_ALI_In_Place_Mode_Step : declare
6194 ALI_File : File_Name_Type;
6195 Src_File : File_Name_Type;
6197 begin
6198 Src_File := Strip_Directory (Main_Source_File);
6199 ALI_File := Lib_File_Name (Src_File, Current_Main_Index);
6200 Main_ALI_File := Full_Lib_File_Name (ALI_File);
6202 -- When In_Place_Mode, the library file can be located in the
6203 -- Main_Source_File directory which may not be present in the
6204 -- library path. If it is not present then use the corresponding
6205 -- library file name.
6207 if Main_ALI_File = No_File and then In_Place_Mode then
6208 Get_Name_String (Get_Directory (Full_Source_Name (Src_File)));
6209 Get_Name_String_And_Append (ALI_File);
6210 Main_ALI_File := Name_Find;
6211 Main_ALI_File := Full_Lib_File_Name (Main_ALI_File);
6212 end if;
6214 if Main_ALI_File = No_File then
6215 Make_Failed ("could not find the main ALI file");
6216 end if;
6217 end Main_ALI_In_Place_Mode_Step;
6219 if Do_Bind_Step then
6220 Binding_Phase
6221 (Stand_Alone_Libraries => Stand_Alone_Libraries,
6222 Main_ALI_File => Main_ALI_File);
6223 end if;
6225 if Do_Link_Step then
6226 Linking_Phase
6227 (Non_Std_Executable => Non_Std_Executable,
6228 Executable => Executable,
6229 Main_ALI_File => Main_ALI_File);
6230 end if;
6232 -- We go to here when we skip the bind and link steps
6234 <<Next_Main>>
6236 Queue.Remove_Marks;
6238 if N_File < Osint.Number_Of_Files then
6239 Main_Source_File := Next_Main_Source; -- No directory information
6240 end if;
6241 end loop Multiple_Main_Loop;
6243 if CodePeer_Mode then
6244 declare
6245 Success : Boolean := False;
6246 begin
6247 Globalize (Success);
6249 if not Success then
6250 Set_Standard_Error;
6251 Write_Str ("*** globalize failed.");
6253 if Commands_To_Stdout then
6254 Set_Standard_Output;
6255 end if;
6256 end if;
6257 end;
6258 end if;
6260 if Failed_Links.Last > 0 then
6261 for Index in 1 .. Successful_Links.Last loop
6262 Write_Str ("Linking of """);
6263 Write_Str (Get_Name_String (Successful_Links.Table (Index)));
6264 Write_Line (""" succeeded.");
6265 end loop;
6267 Set_Standard_Error;
6269 for Index in 1 .. Failed_Links.Last loop
6270 Write_Str ("Linking of """);
6271 Write_Str (Get_Name_String (Failed_Links.Table (Index)));
6272 Write_Line (""" failed.");
6273 end loop;
6275 if Commands_To_Stdout then
6276 Set_Standard_Output;
6277 end if;
6279 if Total_Compilation_Failures = 0 then
6280 Report_Compilation_Failed;
6281 end if;
6282 end if;
6284 if Total_Compilation_Failures /= 0 then
6285 List_Bad_Compilations;
6286 Report_Compilation_Failed;
6287 end if;
6289 Finish_Program (Project_Tree, E_Success);
6291 exception
6292 when X : others =>
6293 Set_Standard_Error;
6294 Write_Line (Exception_Information (X));
6295 Make_Failed ("INTERNAL ERROR. Please report.");
6296 end Gnatmake;
6298 ----------
6299 -- Hash --
6300 ----------
6302 function Hash (F : File_Name_Type) return Header_Num is
6303 begin
6304 return Header_Num (1 + F mod Max_Header);
6305 end Hash;
6307 --------------------
6308 -- In_Ada_Lib_Dir --
6309 --------------------
6311 function In_Ada_Lib_Dir (File : File_Name_Type) return Boolean is
6312 D : constant File_Name_Type := Get_Directory (File);
6313 B : constant Byte := Get_Name_Table_Byte (D);
6314 begin
6315 return (B and Ada_Lib_Dir) /= 0;
6316 end In_Ada_Lib_Dir;
6318 -----------------------
6319 -- Init_Mapping_File --
6320 -----------------------
6322 procedure Init_Mapping_File
6323 (Project : Project_Id;
6324 Data : in out Project_Compilation_Data;
6325 File_Index : in out Natural)
6327 FD : File_Descriptor;
6328 Status : Boolean;
6329 -- For call to Close
6331 begin
6332 -- Increase the index of the last mapping file for this project
6334 Data.Last_Mapping_File_Names := Data.Last_Mapping_File_Names + 1;
6336 -- If there is a project file, call Create_Mapping_File with
6337 -- the project id.
6339 if Project /= No_Project then
6340 Prj.Env.Create_Mapping_File
6341 (Project,
6342 In_Tree => Project_Tree,
6343 Language => Name_Ada,
6344 Name => Data.Mapping_File_Names
6345 (Data.Last_Mapping_File_Names));
6347 -- Otherwise, just create an empty file
6349 else
6350 Tempdir.Create_Temp_File
6351 (FD,
6352 Data.Mapping_File_Names (Data.Last_Mapping_File_Names));
6354 if FD = Invalid_FD then
6355 Make_Failed ("disk full");
6357 else
6358 Record_Temp_File
6359 (Project_Tree.Shared,
6360 Data.Mapping_File_Names (Data.Last_Mapping_File_Names));
6361 end if;
6363 Close (FD, Status);
6365 if not Status then
6366 Make_Failed ("disk full");
6367 end if;
6368 end if;
6370 -- And return the index of the newly created file
6372 File_Index := Data.Last_Mapping_File_Names;
6373 end Init_Mapping_File;
6375 ----------------
6376 -- Initialize --
6377 ----------------
6379 procedure Initialize
6380 (Project_Node_Tree : out Project_Node_Tree_Ref;
6381 Env : out Prj.Tree.Environment)
6383 procedure Check_Version_And_Help is
6384 new Check_Version_And_Help_G (Makeusg);
6386 -- Start of processing for Initialize
6388 begin
6389 -- Prepare the project's tree, since this is used to hold external
6390 -- references, project path and other attributes that can be impacted by
6391 -- the command line switches
6393 Prj.Tree.Initialize (Env, Gnatmake_Flags);
6395 Project_Node_Tree := new Project_Node_Tree_Data;
6396 Prj.Tree.Initialize (Project_Node_Tree);
6398 -- Override default initialization of Check_Object_Consistency since
6399 -- this is normally False for GNATBIND, but is True for GNATMAKE since
6400 -- we do not need to check source consistency again once GNATMAKE has
6401 -- looked at the sources to check.
6403 Check_Object_Consistency := True;
6405 -- Package initializations (the order of calls is important here)
6407 Output.Set_Standard_Error;
6409 Gcc_Switches.Init;
6410 Binder_Switches.Init;
6411 Linker_Switches.Init;
6413 Csets.Initialize;
6414 Snames.Initialize;
6416 Prj.Initialize (Project_Tree);
6418 Dependencies.Init;
6420 RTS_Specified := null;
6421 N_M_Switch := 0;
6423 Mains.Delete;
6425 -- Add the directory where gnatmake is invoked in front of the path,
6426 -- if gnatmake is invoked from a bin directory or with directory
6427 -- information. Only do this if the platform is not VMS, where the
6428 -- notion of path does not really exist.
6430 if not OpenVMS then
6431 declare
6432 Prefix : constant String := Executable_Prefix_Path;
6433 Command : constant String := Command_Name;
6435 begin
6436 if Prefix'Length > 0 then
6437 declare
6438 PATH : constant String :=
6439 Prefix & Directory_Separator & "bin" & Path_Separator &
6440 Getenv ("PATH").all;
6441 begin
6442 Setenv ("PATH", PATH);
6443 end;
6445 else
6446 for Index in reverse Command'Range loop
6447 if Command (Index) = Directory_Separator then
6448 declare
6449 Absolute_Dir : constant String :=
6450 Normalize_Pathname
6451 (Command (Command'First .. Index));
6452 PATH : constant String :=
6453 Absolute_Dir &
6454 Path_Separator &
6455 Getenv ("PATH").all;
6456 begin
6457 Setenv ("PATH", PATH);
6458 end;
6460 exit;
6461 end if;
6462 end loop;
6463 end if;
6464 end;
6465 end if;
6467 -- Scan the switches and arguments
6469 -- First, scan to detect --version and/or --help
6471 Check_Version_And_Help ("GNATMAKE", "1995");
6473 -- Scan again the switch and arguments, now that we are sure that they
6474 -- do not include --version or --help.
6476 Scan_Args : for Next_Arg in 1 .. Argument_Count loop
6477 Scan_Make_Arg (Env, Argument (Next_Arg), And_Save => True);
6478 end loop Scan_Args;
6480 if N_M_Switch > 0 and RTS_Specified = null then
6481 Process_Multilib (Env);
6482 end if;
6484 if Commands_To_Stdout then
6485 Set_Standard_Output;
6486 end if;
6488 if Usage_Requested then
6489 Usage;
6490 end if;
6492 -- Add the default project search directories now, after the directories
6493 -- that have been specified by switches -aP<dir>.
6495 Prj.Env.Initialize_Default_Project_Path
6496 (Env.Project_Path, Target_Name => Sdefault.Target_Name.all);
6498 -- Test for trailing -P switch
6500 if Project_File_Name_Present and then Project_File_Name = null then
6501 Make_Failed ("project file name missing after -P");
6503 -- Test for trailing -o switch
6505 elsif Output_File_Name_Present
6506 and then not Output_File_Name_Seen
6507 then
6508 Make_Failed ("output file name missing after -o");
6510 -- Test for trailing -D switch
6512 elsif Object_Directory_Present
6513 and then not Object_Directory_Seen
6514 then
6515 Make_Failed ("object directory missing after -D");
6516 end if;
6518 -- Test for simultaneity of -i and -D
6520 if Object_Directory_Path /= null and then In_Place_Mode then
6521 Make_Failed ("-i and -D cannot be used simultaneously");
6522 end if;
6524 -- If --subdirs= is specified, but not -P, this is equivalent to -D,
6525 -- except that the directory is created if it does not exist.
6527 if Prj.Subdirs /= null and then Project_File_Name = null then
6528 if Object_Directory_Path /= null then
6529 Make_Failed ("--subdirs and -D cannot be used simultaneously");
6531 elsif In_Place_Mode then
6532 Make_Failed ("--subdirs and -i cannot be used simultaneously");
6534 else
6535 if not Is_Directory (Prj.Subdirs.all) then
6536 begin
6537 Ada.Directories.Create_Path (Prj.Subdirs.all);
6538 exception
6539 when others =>
6540 Make_Failed ("unable to create object directory " &
6541 Prj.Subdirs.all);
6542 end;
6543 end if;
6545 Object_Directory_Present := True;
6547 declare
6548 Argv : constant String (1 .. Prj.Subdirs'Length) :=
6549 Prj.Subdirs.all;
6550 begin
6551 Scan_Make_Arg (Env, Argv, And_Save => False);
6552 end;
6553 end if;
6554 end if;
6556 -- Deal with -C= switch
6558 if Gnatmake_Mapping_File /= null then
6560 -- First, check compatibility with other switches
6562 if Project_File_Name /= null then
6563 Make_Failed ("-C= switch is not compatible with -P switch");
6565 elsif Saved_Maximum_Processes > 1 then
6566 Make_Failed ("-C= switch is not compatible with -jnnn switch");
6567 end if;
6569 Fmap.Initialize (Gnatmake_Mapping_File.all);
6570 Add_Switch
6571 ("-gnatem=" & Gnatmake_Mapping_File.all,
6572 Compiler,
6573 And_Save => True);
6574 end if;
6576 if Project_File_Name /= null then
6578 -- A project file was specified by a -P switch
6580 if Verbose_Mode then
6581 Write_Eol;
6582 Write_Str ("Parsing project file """);
6583 Write_Str (Project_File_Name.all);
6584 Write_Str (""".");
6585 Write_Eol;
6586 end if;
6588 -- Avoid looking in the current directory for ALI files
6590 -- Look_In_Primary_Dir := False;
6592 -- Set the project parsing verbosity to whatever was specified
6593 -- by a possible -vP switch.
6595 Prj.Pars.Set_Verbosity (To => Current_Verbosity);
6597 -- Parse the project file.
6598 -- If there is an error, Main_Project will still be No_Project.
6600 Prj.Pars.Parse
6601 (Project => Main_Project,
6602 In_Tree => Project_Tree,
6603 Project_File_Name => Project_File_Name.all,
6604 Packages_To_Check => Packages_To_Check_By_Gnatmake,
6605 Env => Env,
6606 In_Node_Tree => Project_Node_Tree);
6608 -- The parsing of project files may have changed the current output
6610 if Commands_To_Stdout then
6611 Set_Standard_Output;
6612 else
6613 Set_Standard_Error;
6614 end if;
6616 if Main_Project = No_Project then
6617 Make_Failed
6618 ("""" & Project_File_Name.all & """ processing failed");
6619 end if;
6621 Create_Mapping_File := True;
6623 if Verbose_Mode then
6624 Write_Eol;
6625 Write_Str ("Parsing of project file """);
6626 Write_Str (Project_File_Name.all);
6627 Write_Str (""" is finished.");
6628 Write_Eol;
6629 end if;
6631 -- We add the source directories and the object directories to the
6632 -- search paths.
6634 -- ??? Why do we need these search directories, we already know the
6635 -- locations from parsing the project, except for the runtime which
6636 -- has its own directories anyway
6638 Add_Source_Directories (Main_Project, Project_Tree);
6639 Add_Object_Directories (Main_Project, Project_Tree);
6641 Recursive_Compute_Depth (Main_Project);
6642 Compute_All_Imported_Projects (Main_Project, Project_Tree);
6644 else
6646 Osint.Add_Default_Search_Dirs;
6648 -- Source file lookups should be cached for efficiency. Source files
6649 -- are not supposed to change. However, we do that now only if no
6650 -- project file is used; if a project file is used, we do it just
6651 -- after changing the directory to the object directory.
6653 Osint.Source_File_Data (Cache => True);
6655 -- Read gnat.adc file to initialize Fname.UF
6657 Fname.UF.Initialize;
6659 begin
6660 Fname.SF.Read_Source_File_Name_Pragmas;
6662 exception
6663 when Err : SFN_Scan.Syntax_Error_In_GNAT_ADC =>
6664 Make_Failed (Exception_Message (Err));
6665 end;
6666 end if;
6668 -- Make sure no project object directory is recorded
6670 Project_Of_Current_Object_Directory := No_Project;
6672 end Initialize;
6674 ----------------------------
6675 -- Insert_Project_Sources --
6676 ----------------------------
6678 procedure Insert_Project_Sources
6679 (The_Project : Project_Id;
6680 All_Projects : Boolean;
6681 Into_Q : Boolean)
6683 Put_In_Q : Boolean := Into_Q;
6684 Unit : Unit_Index;
6685 Sfile : File_Name_Type;
6686 Sid : Prj.Source_Id;
6687 Index : Int;
6688 Project : Project_Id;
6690 begin
6691 -- Loop through all the sources in the project files
6693 Unit := Units_Htable.Get_First (Project_Tree.Units_HT);
6694 while Unit /= null loop
6695 Sfile := No_File;
6696 Sid := No_Source;
6697 Index := 0;
6698 Project := No_Project;
6700 -- If there is a source for the body, and the body has not been
6701 -- locally removed.
6703 if Unit.File_Names (Impl) /= null
6704 and then not Unit.File_Names (Impl).Locally_Removed
6705 then
6706 -- And it is a source for the specified project
6708 if All_Projects
6709 or else
6710 Is_Extending (The_Project, Unit.File_Names (Impl).Project)
6711 then
6712 Project := Unit.File_Names (Impl).Project;
6714 -- If we don't have a spec, we cannot consider the source
6715 -- if it is a subunit.
6717 if Unit.File_Names (Spec) = null then
6718 declare
6719 Src_Ind : Source_File_Index;
6721 -- Here we are cheating a little bit: we don't want to
6722 -- use Sinput.L, because it depends on the GNAT tree
6723 -- (Atree, Sinfo, ...). So, we pretend that it is a
6724 -- project file, and we use Sinput.P.
6726 -- Source_File_Is_Subunit is just scanning through the
6727 -- file until it finds one of the reserved words
6728 -- separate, procedure, function, generic or package.
6729 -- Fortunately, these Ada reserved words are also
6730 -- reserved for project files.
6732 begin
6733 Src_Ind := Sinput.P.Load_Project_File
6734 (Get_Name_String
6735 (Unit.File_Names (Impl).Path.Display_Name));
6737 -- If it is a subunit, discard it
6739 if Sinput.P.Source_File_Is_Subunit (Src_Ind) then
6740 Sfile := No_File;
6741 Index := 0;
6742 Sid := No_Source;
6743 else
6744 Sfile := Unit.File_Names (Impl).Display_File;
6745 Index := Unit.File_Names (Impl).Index;
6746 Sid := Unit.File_Names (Impl);
6747 end if;
6748 end;
6750 else
6751 Sfile := Unit.File_Names (Impl).Display_File;
6752 Index := Unit.File_Names (Impl).Index;
6753 Sid := Unit.File_Names (Impl);
6754 end if;
6755 end if;
6757 elsif Unit.File_Names (Spec) /= null
6758 and then not Unit.File_Names (Spec).Locally_Removed
6759 and then
6760 (All_Projects
6761 or else
6762 Is_Extending (The_Project, Unit.File_Names (Spec).Project))
6763 then
6764 -- If there is no source for the body, but there is one for the
6765 -- spec which has not been locally removed, then we take this one.
6767 Sfile := Unit.File_Names (Spec).Display_File;
6768 Index := Unit.File_Names (Spec).Index;
6769 Sid := Unit.File_Names (Spec);
6770 Project := Unit.File_Names (Spec).Project;
6771 end if;
6773 -- For the first source inserted into the Q, we need to initialize
6774 -- the Q, but not for the subsequent sources.
6776 Queue.Initialize
6777 (Main_Project /= No_Project and then
6778 One_Compilation_Per_Obj_Dir);
6780 if Sfile /= No_File then
6781 Queue.Insert
6782 ((Format => Format_Gnatmake,
6783 File => Sfile,
6784 Project => Project,
6785 Unit => No_Unit_Name,
6786 Index => Index,
6787 Sid => Sid));
6788 end if;
6790 if not Put_In_Q and then Sfile /= No_File then
6792 -- If Put_In_Q is False, we add the source as if it were specified
6793 -- on the command line, and we set Put_In_Q to True, so that the
6794 -- following sources will only be put in the queue. The source is
6795 -- already in the Q, but we need at least one fake main to call
6796 -- Compile_Sources.
6798 if Verbose_Mode then
6799 Write_Str ("Adding """);
6800 Write_Str (Get_Name_String (Sfile));
6801 Write_Line (""" as if on the command line");
6802 end if;
6804 Osint.Add_File (Get_Name_String (Sfile), Index);
6805 Put_In_Q := True;
6806 end if;
6808 Unit := Units_Htable.Get_Next (Project_Tree.Units_HT);
6809 end loop;
6810 end Insert_Project_Sources;
6812 ---------------------
6813 -- Is_In_Obsoleted --
6814 ---------------------
6816 function Is_In_Obsoleted (F : File_Name_Type) return Boolean is
6817 begin
6818 if F = No_File then
6819 return False;
6821 else
6822 declare
6823 Name : constant String := Get_Name_String (F);
6824 First : Natural;
6825 F2 : File_Name_Type;
6827 begin
6828 First := Name'Last;
6829 while First > Name'First
6830 and then Name (First - 1) /= Directory_Separator
6831 and then Name (First - 1) /= '/'
6832 loop
6833 First := First - 1;
6834 end loop;
6836 if First /= Name'First then
6837 Name_Len := 0;
6838 Add_Str_To_Name_Buffer (Name (First .. Name'Last));
6839 F2 := Name_Find;
6841 else
6842 F2 := F;
6843 end if;
6845 return Obsoleted.Get (F2);
6846 end;
6847 end if;
6848 end Is_In_Obsoleted;
6850 ----------------------------
6851 -- Is_In_Object_Directory --
6852 ----------------------------
6854 function Is_In_Object_Directory
6855 (Source_File : File_Name_Type;
6856 Full_Lib_File : File_Name_Type) return Boolean
6858 begin
6859 -- There is something to check only when using project files. Otherwise,
6860 -- this function returns True (last line of the function).
6862 if Main_Project /= No_Project then
6863 declare
6864 Source_File_Name : constant String :=
6865 Get_Name_String (Source_File);
6866 Saved_Verbosity : constant Verbosity := Current_Verbosity;
6867 Project : Project_Id := No_Project;
6869 Path_Name : Path_Name_Type := No_Path;
6870 pragma Warnings (Off, Path_Name);
6872 begin
6873 -- Call Get_Reference to know the ultimate extending project of
6874 -- the source. Call it with verbosity default to avoid verbose
6875 -- messages.
6877 Current_Verbosity := Default;
6878 Prj.Env.Get_Reference
6879 (Source_File_Name => Source_File_Name,
6880 Project => Project,
6881 In_Tree => Project_Tree,
6882 Path => Path_Name);
6883 Current_Verbosity := Saved_Verbosity;
6885 -- If this source is in a project, check that the ALI file is in
6886 -- its object directory. If it is not, return False, so that the
6887 -- ALI file will not be skipped.
6889 if Project /= No_Project then
6890 declare
6891 Object_Directory : constant String :=
6892 Normalize_Pathname
6893 (Get_Name_String
6894 (Project.
6895 Object_Directory.Display_Name));
6897 Olast : Natural := Object_Directory'Last;
6899 Lib_File_Directory : constant String :=
6900 Normalize_Pathname (Dir_Name
6901 (Get_Name_String (Full_Lib_File)));
6903 Llast : Natural := Lib_File_Directory'Last;
6905 begin
6906 -- For directories, Normalize_Pathname may or may not put
6907 -- a directory separator at the end, depending on its input.
6908 -- Remove any last directory separator before comparison.
6909 -- Returns True only if the two directories are the same.
6911 if Object_Directory (Olast) = Directory_Separator then
6912 Olast := Olast - 1;
6913 end if;
6915 if Lib_File_Directory (Llast) = Directory_Separator then
6916 Llast := Llast - 1;
6917 end if;
6919 return Object_Directory (Object_Directory'First .. Olast) =
6920 Lib_File_Directory (Lib_File_Directory'First .. Llast);
6921 end;
6922 end if;
6923 end;
6924 end if;
6926 -- When the source is not in a project file, always return True
6928 return True;
6929 end Is_In_Object_Directory;
6931 ----------
6932 -- Link --
6933 ----------
6935 procedure Link
6936 (ALI_File : File_Name_Type;
6937 Args : Argument_List;
6938 Success : out Boolean)
6940 Link_Args : Argument_List (1 .. Args'Length + 1);
6942 begin
6943 Get_Name_String (ALI_File);
6944 Link_Args (1) := new String'(Name_Buffer (1 .. Name_Len));
6946 Link_Args (2 .. Args'Length + 1) := Args;
6948 GNAT.OS_Lib.Normalize_Arguments (Link_Args);
6950 Display (Gnatlink.all, Link_Args);
6952 if Gnatlink_Path = null then
6953 Make_Failed ("error, unable to locate " & Gnatlink.all);
6954 end if;
6956 GNAT.OS_Lib.Spawn (Gnatlink_Path.all, Link_Args, Success);
6957 end Link;
6959 ---------------------------
6960 -- List_Bad_Compilations --
6961 ---------------------------
6963 procedure List_Bad_Compilations is
6964 begin
6965 for J in Bad_Compilation.First .. Bad_Compilation.Last loop
6966 if Bad_Compilation.Table (J).File = No_File then
6967 null;
6968 elsif not Bad_Compilation.Table (J).Found then
6969 Inform (Bad_Compilation.Table (J).File, "not found");
6970 else
6971 Inform (Bad_Compilation.Table (J).File, "compilation error");
6972 end if;
6973 end loop;
6974 end List_Bad_Compilations;
6976 -----------------
6977 -- List_Depend --
6978 -----------------
6980 procedure List_Depend is
6981 Lib_Name : File_Name_Type;
6982 Obj_Name : File_Name_Type;
6983 Src_Name : File_Name_Type;
6985 Len : Natural;
6986 Line_Pos : Natural;
6987 Line_Size : constant := 77;
6989 begin
6990 Set_Standard_Output;
6992 for A in ALIs.First .. ALIs.Last loop
6993 Lib_Name := ALIs.Table (A).Afile;
6995 -- We have to provide the full library file name in In_Place_Mode
6997 if In_Place_Mode then
6998 Lib_Name := Full_Lib_File_Name (Lib_Name);
6999 end if;
7001 Obj_Name := Object_File_Name (Lib_Name);
7002 Write_Name (Obj_Name);
7003 Write_Str (" :");
7005 Get_Name_String (Obj_Name);
7006 Len := Name_Len;
7007 Line_Pos := Len + 2;
7009 for D in ALIs.Table (A).First_Sdep .. ALIs.Table (A).Last_Sdep loop
7010 Src_Name := Sdep.Table (D).Sfile;
7012 if Is_Internal_File_Name (Src_Name)
7013 and then not Check_Readonly_Files
7014 then
7015 null;
7016 else
7017 if not Quiet_Output then
7018 Src_Name := Full_Source_Name (Src_Name);
7019 end if;
7021 Get_Name_String (Src_Name);
7022 Len := Name_Len;
7024 if Line_Pos + Len + 1 > Line_Size then
7025 Write_Str (" \");
7026 Write_Eol;
7027 Line_Pos := 0;
7028 end if;
7030 Line_Pos := Line_Pos + Len + 1;
7032 Write_Str (" ");
7033 Write_Name (Src_Name);
7034 end if;
7035 end loop;
7037 Write_Eol;
7038 end loop;
7040 if not Commands_To_Stdout then
7041 Set_Standard_Error;
7042 end if;
7043 end List_Depend;
7045 -----------------
7046 -- Make_Failed --
7047 -----------------
7049 procedure Make_Failed (S : String) is
7050 begin
7051 Fail_Program (Project_Tree, S);
7052 end Make_Failed;
7054 --------------------
7055 -- Mark_Directory --
7056 --------------------
7058 procedure Mark_Directory
7059 (Dir : String;
7060 Mark : Lib_Mark_Type;
7061 On_Command_Line : Boolean)
7063 N : Name_Id;
7064 B : Byte;
7066 function Base_Directory return String;
7067 -- If Dir comes from the command line, empty string (relative paths are
7068 -- resolved with respect to the current directory), else return the main
7069 -- project's directory.
7071 --------------------
7072 -- Base_Directory --
7073 --------------------
7075 function Base_Directory return String is
7076 begin
7077 if On_Command_Line then
7078 return "";
7079 else
7080 return Get_Name_String (Main_Project.Directory.Display_Name);
7081 end if;
7082 end Base_Directory;
7084 Real_Path : constant String := Normalize_Pathname (Dir, Base_Directory);
7086 -- Start of processing for Mark_Directory
7088 begin
7089 Name_Len := 0;
7091 if Real_Path'Length = 0 then
7092 Add_Str_To_Name_Buffer (Dir);
7094 else
7095 Add_Str_To_Name_Buffer (Real_Path);
7096 end if;
7098 -- Last character is supposed to be a directory separator
7100 if not Is_Directory_Separator (Name_Buffer (Name_Len)) then
7101 Add_Char_To_Name_Buffer (Directory_Separator);
7102 end if;
7104 -- Add flags to the already existing flags
7106 N := Name_Find;
7107 B := Get_Name_Table_Byte (N);
7108 Set_Name_Table_Byte (N, B or Mark);
7109 end Mark_Directory;
7111 ----------------------
7112 -- Process_Multilib --
7113 ----------------------
7115 procedure Process_Multilib (Env : in out Prj.Tree.Environment) is
7116 Output_FD : File_Descriptor;
7117 Output_Name : String_Access;
7118 Arg_Index : Natural := 0;
7119 Success : Boolean := False;
7120 Return_Code : Integer := 0;
7121 Multilib_Gcc_Path : String_Access;
7122 Multilib_Gcc : String_Access;
7123 N_Read : Integer := 0;
7124 Line : String (1 .. 1000);
7125 Args : Argument_List (1 .. N_M_Switch + 1);
7127 begin
7128 pragma Assert (N_M_Switch > 0 and RTS_Specified = null);
7130 -- In case we detected a multilib switch and the user has not
7131 -- manually specified a specific RTS we emulate the following command:
7132 -- gnatmake $FLAGS --RTS=$(gcc -print-multi-directory $FLAGS)
7134 -- First select the flags which might have an impact on multilib
7135 -- processing. Note that this is an heuristic selection and it
7136 -- will need to be maintained over time. The condition has to
7137 -- be kept synchronized with N_M_Switch counting in Scan_Make_Arg.
7139 for Next_Arg in 1 .. Argument_Count loop
7140 declare
7141 Argv : constant String := Argument (Next_Arg);
7143 begin
7144 if Argv'Length > 2
7145 and then Argv (1) = '-'
7146 and then Argv (2) = 'm'
7147 and then Argv /= "-margs"
7149 -- Ignore -mieee to avoid spawning an extra gcc in this case
7151 and then Argv /= "-mieee"
7152 then
7153 Arg_Index := Arg_Index + 1;
7154 Args (Arg_Index) := new String'(Argv);
7155 end if;
7156 end;
7157 end loop;
7159 pragma Assert (Arg_Index = N_M_Switch);
7161 Args (Args'Last) := new String'("-print-multi-directory");
7163 -- Call the GCC driver with the collected flags and save its
7164 -- output. Alternate design would be to link in gnatmake the
7165 -- relevant part of the GCC driver.
7167 if Saved_Gcc /= null then
7168 Multilib_Gcc := Saved_Gcc;
7169 else
7170 Multilib_Gcc := Gcc;
7171 end if;
7173 Multilib_Gcc_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Multilib_Gcc.all);
7175 Create_Temp_Output_File (Output_FD, Output_Name);
7177 if Output_FD = Invalid_FD then
7178 return;
7179 end if;
7181 GNAT.OS_Lib.Spawn
7182 (Multilib_Gcc_Path.all, Args, Output_FD, Return_Code, False);
7183 Close (Output_FD);
7185 if Return_Code /= 0 then
7186 return;
7187 end if;
7189 -- Parse the GCC driver output which is a single line, removing CR/LF
7191 Output_FD := Open_Read (Output_Name.all, Binary);
7193 if Output_FD = Invalid_FD then
7194 return;
7195 end if;
7197 N_Read := Read (Output_FD, Line (1)'Address, Line'Length);
7198 Close (Output_FD);
7199 Delete_File (Output_Name.all, Success);
7201 for J in reverse 1 .. N_Read loop
7202 if Line (J) = ASCII.CR or else Line (J) = ASCII.LF then
7203 N_Read := N_Read - 1;
7204 else
7205 exit;
7206 end if;
7207 end loop;
7209 -- In case the standard RTS is selected do nothing
7211 if N_Read = 0 or else Line (1 .. N_Read) = "." then
7212 return;
7213 end if;
7215 -- Otherwise add -margs --RTS=output
7217 Scan_Make_Arg (Env, "-margs", And_Save => True);
7218 Scan_Make_Arg (Env, "--RTS=" & Line (1 .. N_Read), And_Save => True);
7219 end Process_Multilib;
7221 -----------------------------
7222 -- Recursive_Compute_Depth --
7223 -----------------------------
7225 procedure Recursive_Compute_Depth (Project : Project_Id) is
7226 use Project_Boolean_Htable;
7227 Seen : Project_Boolean_Htable.Instance := Project_Boolean_Htable.Nil;
7229 procedure Recurse (Prj : Project_Id; Depth : Natural);
7230 -- Recursive procedure that does the work, keeping track of the depth
7232 -------------
7233 -- Recurse --
7234 -------------
7236 procedure Recurse (Prj : Project_Id; Depth : Natural) is
7237 List : Project_List;
7238 Proj : Project_Id;
7240 begin
7241 if Prj.Depth >= Depth or else Get (Seen, Prj) then
7242 return;
7243 end if;
7245 -- We need a test to avoid infinite recursions with limited withs:
7246 -- If we have A -> B -> A, then when set level of A to n, we try and
7247 -- set level of B to n+1, and then level of A to n + 2, ...
7249 Set (Seen, Prj, True);
7251 Prj.Depth := Depth;
7253 -- Visit each imported project
7255 List := Prj.Imported_Projects;
7256 while List /= null loop
7257 Proj := List.Project;
7258 List := List.Next;
7259 Recurse (Prj => Proj, Depth => Depth + 1);
7260 end loop;
7262 -- We again allow changing the depth of this project later on if it
7263 -- is in fact imported by a lower-level project.
7265 Set (Seen, Prj, False);
7266 end Recurse;
7268 Proj : Project_List;
7270 -- Start of processing for Recursive_Compute_Depth
7272 begin
7273 Proj := Project_Tree.Projects;
7274 while Proj /= null loop
7275 Proj.Project.Depth := 0;
7276 Proj := Proj.Next;
7277 end loop;
7279 Recurse (Project, Depth => 1);
7280 Reset (Seen);
7281 end Recursive_Compute_Depth;
7283 -------------------------------
7284 -- Report_Compilation_Failed --
7285 -------------------------------
7287 procedure Report_Compilation_Failed is
7288 begin
7289 Fail_Program (Project_Tree, "");
7290 end Report_Compilation_Failed;
7292 ------------------------
7293 -- Sigint_Intercepted --
7294 ------------------------
7296 procedure Sigint_Intercepted is
7297 SIGINT : constant := 2;
7299 begin
7300 Set_Standard_Error;
7301 Write_Line ("*** Interrupted ***");
7303 -- Send SIGINT to all outstanding compilation processes spawned
7305 for J in 1 .. Outstanding_Compiles loop
7306 Kill (Running_Compile (J).Pid, SIGINT, 1);
7307 end loop;
7309 Finish_Program (Project_Tree, E_No_Compile);
7310 end Sigint_Intercepted;
7312 -------------------
7313 -- Scan_Make_Arg --
7314 -------------------
7316 procedure Scan_Make_Arg
7317 (Env : in out Prj.Tree.Environment;
7318 Argv : String;
7319 And_Save : Boolean)
7321 Success : Boolean;
7323 begin
7324 Gnatmake_Switch_Found := True;
7326 pragma Assert (Argv'First = 1);
7328 if Argv'Length = 0 then
7329 return;
7330 end if;
7332 -- If the previous switch has set the Project_File_Name_Present flag
7333 -- (that is we have seen a -P alone), then the next argument is the name
7334 -- of the project file.
7336 if Project_File_Name_Present and then Project_File_Name = null then
7337 if Argv (1) = '-' then
7338 Make_Failed ("project file name missing after -P");
7340 else
7341 Project_File_Name_Present := False;
7342 Project_File_Name := new String'(Argv);
7343 end if;
7345 -- If the previous switch has set the Output_File_Name_Present flag
7346 -- (that is we have seen a -o), then the next argument is the name of
7347 -- the output executable.
7349 elsif Output_File_Name_Present
7350 and then not Output_File_Name_Seen
7351 then
7352 Output_File_Name_Seen := True;
7354 if Argv (1) = '-' then
7355 Make_Failed ("output file name missing after -o");
7357 else
7358 Add_Switch ("-o", Linker, And_Save => And_Save);
7359 Add_Switch (Executable_Name (Argv), Linker, And_Save => And_Save);
7360 end if;
7362 -- If the previous switch has set the Object_Directory_Present flag
7363 -- (that is we have seen a -D), then the next argument is the path name
7364 -- of the object directory.
7366 elsif Object_Directory_Present
7367 and then not Object_Directory_Seen
7368 then
7369 Object_Directory_Seen := True;
7371 if Argv (1) = '-' then
7372 Make_Failed ("object directory path name missing after -D");
7374 elsif not Is_Directory (Argv) then
7375 Make_Failed ("cannot find object directory """ & Argv & """");
7377 else
7378 -- Record the object directory. Make sure it ends with a directory
7379 -- separator.
7381 declare
7382 Norm : constant String := Normalize_Pathname (Argv);
7384 begin
7385 if Norm (Norm'Last) = Directory_Separator then
7386 Object_Directory_Path := new String'(Norm);
7387 else
7388 Object_Directory_Path :=
7389 new String'(Norm & Directory_Separator);
7390 end if;
7392 Add_Lib_Search_Dir (Norm);
7394 -- Specify the object directory to the binder
7396 Add_Switch ("-aO" & Norm, Binder, And_Save => And_Save);
7397 end;
7399 end if;
7401 -- Then check if we are dealing with -cargs/-bargs/-largs/-margs. These
7402 -- options are taken as is when found in package Compiler, Binder or
7403 -- Linker of the main project file.
7405 elsif (And_Save or else Program_Args = None)
7406 and then (Argv = "-bargs" or else
7407 Argv = "-cargs" or else
7408 Argv = "-largs" or else
7409 Argv = "-margs")
7410 then
7411 case Argv (2) is
7412 when 'c' => Program_Args := Compiler;
7413 when 'b' => Program_Args := Binder;
7414 when 'l' => Program_Args := Linker;
7415 when 'm' => Program_Args := None;
7417 when others =>
7418 raise Program_Error;
7419 end case;
7421 -- A special test is needed for the -o switch within a -largs since that
7422 -- is another way to specify the name of the final executable.
7424 elsif Program_Args = Linker
7425 and then Argv = "-o"
7426 then
7427 Make_Failed
7428 ("switch -o not allowed within a -largs. Use -o directly.");
7430 -- Check to see if we are reading switches after a -cargs, -bargs or
7431 -- -largs switch. If so, save it.
7433 elsif Program_Args /= None then
7435 -- Check to see if we are reading -I switches in order to take into
7436 -- account in the src & lib search directories.
7438 if Argv'Length > 2 and then Argv (1 .. 2) = "-I" then
7439 if Argv (3 .. Argv'Last) = "-" then
7440 Look_In_Primary_Dir := False;
7442 elsif Program_Args = Compiler then
7443 if Argv (3 .. Argv'Last) /= "-" then
7444 Add_Source_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7445 end if;
7447 elsif Program_Args = Binder then
7448 Add_Library_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7449 end if;
7450 end if;
7452 Add_Switch (Argv, Program_Args, And_Save => And_Save);
7454 -- Make sure that all significant switches -m on the command line
7455 -- are counted.
7457 if Argv'Length > 2
7458 and then Argv (1 .. 2) = "-m"
7459 and then Argv /= "-mieee"
7460 then
7461 N_M_Switch := N_M_Switch + 1;
7462 end if;
7464 -- Handle non-default compiler, binder, linker, and handle --RTS switch
7466 elsif Argv'Length > 2 and then Argv (1 .. 2) = "--" then
7467 if Argv'Length > 6
7468 and then Argv (1 .. 6) = "--GCC="
7469 then
7470 declare
7471 Program_Args : constant Argument_List_Access :=
7472 Argument_String_To_List
7473 (Argv (7 .. Argv'Last));
7475 begin
7476 if And_Save then
7477 Saved_Gcc := new String'(Program_Args.all (1).all);
7478 else
7479 Gcc := new String'(Program_Args.all (1).all);
7480 end if;
7482 for J in 2 .. Program_Args.all'Last loop
7483 Add_Switch
7484 (Program_Args.all (J).all, Compiler, And_Save => And_Save);
7485 end loop;
7486 end;
7488 elsif Argv'Length > 11
7489 and then Argv (1 .. 11) = "--GNATBIND="
7490 then
7491 declare
7492 Program_Args : constant Argument_List_Access :=
7493 Argument_String_To_List
7494 (Argv (12 .. Argv'Last));
7496 begin
7497 if And_Save then
7498 Saved_Gnatbind := new String'(Program_Args.all (1).all);
7499 else
7500 Gnatbind := new String'(Program_Args.all (1).all);
7501 end if;
7503 for J in 2 .. Program_Args.all'Last loop
7504 Add_Switch
7505 (Program_Args.all (J).all, Binder, And_Save => And_Save);
7506 end loop;
7507 end;
7509 elsif Argv'Length > 11
7510 and then Argv (1 .. 11) = "--GNATLINK="
7511 then
7512 declare
7513 Program_Args : constant Argument_List_Access :=
7514 Argument_String_To_List
7515 (Argv (12 .. Argv'Last));
7516 begin
7517 if And_Save then
7518 Saved_Gnatlink := new String'(Program_Args.all (1).all);
7519 else
7520 Gnatlink := new String'(Program_Args.all (1).all);
7521 end if;
7523 for J in 2 .. Program_Args.all'Last loop
7524 Add_Switch (Program_Args.all (J).all, Linker);
7525 end loop;
7526 end;
7528 elsif Argv'Length >= 5 and then
7529 Argv (1 .. 5) = "--RTS"
7530 then
7531 Add_Switch (Argv, Compiler, And_Save => And_Save);
7532 Add_Switch (Argv, Binder, And_Save => And_Save);
7534 if Argv'Length <= 6 or else Argv (6) /= '=' then
7535 Make_Failed ("missing path for --RTS");
7537 else
7538 -- Check that this is the first time we see this switch or
7539 -- if it is not the first time, the same path is specified.
7541 if RTS_Specified = null then
7542 RTS_Specified := new String'(Argv (7 .. Argv'Last));
7544 elsif RTS_Specified.all /= Argv (7 .. Argv'Last) then
7545 Make_Failed ("--RTS cannot be specified multiple times");
7546 end if;
7548 -- Valid --RTS switch
7550 No_Stdinc := True;
7551 No_Stdlib := True;
7552 RTS_Switch := True;
7554 declare
7555 Src_Path_Name : constant String_Ptr :=
7556 Get_RTS_Search_Dir
7557 (Argv (7 .. Argv'Last), Include);
7559 Lib_Path_Name : constant String_Ptr :=
7560 Get_RTS_Search_Dir
7561 (Argv (7 .. Argv'Last), Objects);
7563 begin
7564 if Src_Path_Name /= null
7565 and then Lib_Path_Name /= null
7566 then
7567 -- Set RTS_*_Path_Name variables, so that correct direct-
7568 -- ories will be set when Osint.Add_Default_Search_Dirs
7569 -- is called later.
7571 RTS_Src_Path_Name := Src_Path_Name;
7572 RTS_Lib_Path_Name := Lib_Path_Name;
7574 elsif Src_Path_Name = null
7575 and then Lib_Path_Name = null
7576 then
7577 Make_Failed ("RTS path not valid: missing "
7578 & "adainclude and adalib directories");
7580 elsif Src_Path_Name = null then
7581 Make_Failed ("RTS path not valid: missing adainclude "
7582 & "directory");
7584 elsif Lib_Path_Name = null then
7585 Make_Failed ("RTS path not valid: missing adalib "
7586 & "directory");
7587 end if;
7588 end;
7589 end if;
7591 elsif Argv'Length > Source_Info_Option'Length and then
7592 Argv (1 .. Source_Info_Option'Length) = Source_Info_Option
7593 then
7594 Project_Tree.Source_Info_File_Name :=
7595 new String'(Argv (Source_Info_Option'Length + 1 .. Argv'Last));
7597 elsif Argv'Length >= 8 and then
7598 Argv (1 .. 8) = "--param="
7599 then
7600 Add_Switch (Argv, Compiler, And_Save => And_Save);
7601 Add_Switch (Argv, Linker, And_Save => And_Save);
7603 elsif Argv = Create_Map_File_Switch then
7604 Map_File := new String'("");
7606 elsif Argv'Length > Create_Map_File_Switch'Length + 1
7607 and then
7608 Argv (1 .. Create_Map_File_Switch'Length) = Create_Map_File_Switch
7609 and then
7610 Argv (Create_Map_File_Switch'Length + 1) = '='
7611 then
7612 Map_File :=
7613 new String'
7614 (Argv (Create_Map_File_Switch'Length + 2 .. Argv'Last));
7616 else
7617 Scan_Make_Switches (Env, Argv, Success);
7618 end if;
7620 -- If we have seen a regular switch process it
7622 elsif Argv (1) = '-' then
7623 if Argv'Length = 1 then
7624 Make_Failed ("switch character cannot be followed by a blank");
7626 -- Incorrect switches that should start with "--"
7628 elsif (Argv'Length > 5 and then Argv (1 .. 5) = "-RTS=")
7629 or else (Argv'Length > 5 and then Argv (1 .. 5) = "-GCC=")
7630 or else (Argv'Length > 8 and then Argv (1 .. 7) = "-param=")
7631 or else (Argv'Length > 10 and then Argv (1 .. 10) = "-GNATLINK=")
7632 or else (Argv'Length > 10 and then Argv (1 .. 10) = "-GNATBIND=")
7633 then
7634 Make_Failed ("option " & Argv & " should start with '--'");
7636 -- -I-
7638 elsif Argv (2 .. Argv'Last) = "I-" then
7639 Look_In_Primary_Dir := False;
7641 -- Forbid -?- or -??- where ? is any character
7643 elsif (Argv'Length = 3 and then Argv (3) = '-')
7644 or else (Argv'Length = 4 and then Argv (4) = '-')
7645 then
7646 Make_Failed
7647 ("trailing ""-"" at the end of " & Argv & " forbidden.");
7649 -- -Idir
7651 elsif Argv (2) = 'I' then
7652 Add_Source_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7653 Add_Library_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7654 Add_Switch (Argv, Compiler, And_Save => And_Save);
7655 Add_Switch (Argv, Binder, And_Save => And_Save);
7657 -- -aIdir (to gcc this is like a -I switch)
7659 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aI" then
7660 Add_Source_Search_Dir (Argv (4 .. Argv'Last), And_Save);
7661 Add_Switch
7662 ("-I" & Argv (4 .. Argv'Last), Compiler, And_Save => And_Save);
7663 Add_Switch (Argv, Binder, And_Save => And_Save);
7665 -- -aOdir
7667 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aO" then
7668 Add_Library_Search_Dir (Argv (4 .. Argv'Last), And_Save);
7669 Add_Switch (Argv, Binder, And_Save => And_Save);
7671 -- -aLdir (to gnatbind this is like a -aO switch)
7673 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aL" then
7674 Mark_Directory (Argv (4 .. Argv'Last), Ada_Lib_Dir, And_Save);
7675 Add_Library_Search_Dir (Argv (4 .. Argv'Last), And_Save);
7676 Add_Switch
7677 ("-aO" & Argv (4 .. Argv'Last), Binder, And_Save => And_Save);
7679 -- -aamp_target=...
7681 elsif Argv'Length >= 13 and then Argv (2 .. 13) = "aamp_target=" then
7682 Add_Switch (Argv, Compiler, And_Save => And_Save);
7684 -- Set the aamp_target environment variable so that the binder and
7685 -- linker will use the proper target library. This is consistent
7686 -- with how things work when -aamp_target is passed on the command
7687 -- line to gnaampmake.
7689 Setenv ("aamp_target", Argv (14 .. Argv'Last));
7691 -- -Adir (to gnatbind this is like a -aO switch, to gcc like a -I)
7693 elsif Argv (2) = 'A' then
7694 Mark_Directory (Argv (3 .. Argv'Last), Ada_Lib_Dir, And_Save);
7695 Add_Source_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7696 Add_Library_Search_Dir (Argv (3 .. Argv'Last), And_Save);
7697 Add_Switch
7698 ("-I" & Argv (3 .. Argv'Last), Compiler, And_Save => And_Save);
7699 Add_Switch
7700 ("-aO" & Argv (3 .. Argv'Last), Binder, And_Save => And_Save);
7702 -- -Ldir
7704 elsif Argv (2) = 'L' then
7705 Add_Switch (Argv, Linker, And_Save => And_Save);
7707 -- For -gxxx, -pg, -mxxx, -fxxx, -Oxxx, pass the switch to both the
7708 -- compiler and the linker (except for -gnatxxx which is only for the
7709 -- compiler). Some of the -mxxx (for example -m64) and -fxxx (for
7710 -- example -ftest-coverage for gcov) need to be used when compiling
7711 -- the binder generated files, and using all these gcc switches for
7712 -- them should not be a problem. Pass -Oxxx to the linker for LTO.
7714 elsif
7715 (Argv (2) = 'g' and then (Argv'Last < 5
7716 or else Argv (2 .. 5) /= "gnat"))
7717 or else Argv (2 .. Argv'Last) = "pg"
7718 or else (Argv (2) = 'm' and then Argv'Last > 2)
7719 or else (Argv (2) = 'f' and then Argv'Last > 2)
7720 or else Argv (2) = 'O'
7721 then
7722 Add_Switch (Argv, Compiler, And_Save => And_Save);
7723 Add_Switch (Argv, Linker, And_Save => And_Save);
7725 -- The following condition has to be kept synchronized with
7726 -- the Process_Multilib one.
7728 if Argv (2) = 'm'
7729 and then Argv /= "-mieee"
7730 then
7731 N_M_Switch := N_M_Switch + 1;
7732 end if;
7734 -- -C=<mapping file>
7736 elsif Argv'Last > 2 and then Argv (2) = 'C' then
7737 if And_Save then
7738 if Argv (3) /= '=' or else Argv'Last <= 3 then
7739 Make_Failed ("illegal switch " & Argv);
7740 end if;
7742 Gnatmake_Mapping_File := new String'(Argv (4 .. Argv'Last));
7743 end if;
7745 -- -D
7747 elsif Argv'Last = 2 and then Argv (2) = 'D' then
7748 if Project_File_Name /= null then
7749 Make_Failed
7750 ("-D cannot be used in conjunction with a project file");
7752 else
7753 Scan_Make_Switches (Env, Argv, Success);
7754 end if;
7756 -- -d
7758 elsif Argv (2) = 'd' and then Argv'Last = 2 then
7759 Display_Compilation_Progress := True;
7761 -- -i
7763 elsif Argv'Last = 2 and then Argv (2) = 'i' then
7764 if Project_File_Name /= null then
7765 Make_Failed
7766 ("-i cannot be used in conjunction with a project file");
7767 else
7768 Scan_Make_Switches (Env, Argv, Success);
7769 end if;
7771 -- -j (need to save the result)
7773 elsif Argv (2) = 'j' then
7774 Scan_Make_Switches (Env, Argv, Success);
7776 if And_Save then
7777 Saved_Maximum_Processes := Maximum_Processes;
7778 end if;
7780 -- -m
7782 elsif Argv (2) = 'm' and then Argv'Last = 2 then
7783 Minimal_Recompilation := True;
7785 -- -u
7787 elsif Argv (2) = 'u' and then Argv'Last = 2 then
7788 Unique_Compile := True;
7789 Compile_Only := True;
7790 Do_Bind_Step := False;
7791 Do_Link_Step := False;
7793 -- -U
7795 elsif Argv (2) = 'U'
7796 and then Argv'Last = 2
7797 then
7798 Unique_Compile_All_Projects := True;
7799 Unique_Compile := True;
7800 Compile_Only := True;
7801 Do_Bind_Step := False;
7802 Do_Link_Step := False;
7804 -- -Pprj or -P prj (only once, and only on the command line)
7806 elsif Argv (2) = 'P' then
7807 if Project_File_Name /= null then
7808 Make_Failed ("cannot have several project files specified");
7810 elsif Object_Directory_Path /= null then
7811 Make_Failed
7812 ("-D cannot be used in conjunction with a project file");
7814 elsif In_Place_Mode then
7815 Make_Failed
7816 ("-i cannot be used in conjunction with a project file");
7818 elsif not And_Save then
7820 -- It could be a tool other than gnatmake (e.g. gnatdist)
7821 -- or a -P switch inside a project file.
7823 Fail
7824 ("either the tool is not ""project-aware"" or "
7825 & "a project file is specified inside a project file");
7827 elsif Argv'Last = 2 then
7829 -- -P is used alone: the project file name is the next option
7831 Project_File_Name_Present := True;
7833 else
7834 Project_File_Name := new String'(Argv (3 .. Argv'Last));
7835 end if;
7837 -- -vPx (verbosity of the parsing of the project files)
7839 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "vP" then
7840 if Argv'Last /= 4 or else Argv (4) not in '0' .. '2' then
7841 Make_Failed
7842 ("invalid verbosity level " & Argv (4 .. Argv'Last));
7844 elsif And_Save then
7845 case Argv (4) is
7846 when '0' =>
7847 Current_Verbosity := Prj.Default;
7848 when '1' =>
7849 Current_Verbosity := Prj.Medium;
7850 when '2' =>
7851 Current_Verbosity := Prj.High;
7852 when others =>
7853 null;
7854 end case;
7855 end if;
7857 -- -Xext=val (External assignment)
7859 elsif Argv (2) = 'X'
7860 and then Is_External_Assignment (Env, Argv)
7861 then
7862 -- Is_External_Assignment has side effects when it returns True
7864 null;
7866 -- If -gnath is present, then generate the usage information right
7867 -- now and do not pass this option on to the compiler calls.
7869 elsif Argv = "-gnath" then
7870 Usage;
7872 -- If -gnatc is specified, make sure the bind and link steps are not
7873 -- executed.
7875 elsif Argv'Length >= 6 and then Argv (2 .. 6) = "gnatc" then
7877 -- If -gnatc is specified, make sure the bind and link steps are
7878 -- not executed.
7880 Add_Switch (Argv, Compiler, And_Save => And_Save);
7881 Operating_Mode := Check_Semantics;
7882 Check_Object_Consistency := False;
7884 -- Except in CodePeer mode (set by -gnatcC), where we do want to
7885 -- call bind/link in CodePeer mode (-P switch).
7887 if Argv'Last >= 7 and then Argv (7) = 'C' then
7888 CodePeer_Mode := True;
7889 else
7890 Compile_Only := True;
7891 Do_Bind_Step := False;
7892 Do_Link_Step := False;
7893 end if;
7895 elsif Argv (2 .. Argv'Last) = "nostdlib" then
7897 -- Pass -nstdlib to gnatbind and gnatlink
7899 No_Stdlib := True;
7900 Add_Switch (Argv, Binder, And_Save => And_Save);
7901 Add_Switch (Argv, Linker, And_Save => And_Save);
7903 elsif Argv (2 .. Argv'Last) = "nostdinc" then
7905 -- Pass -nostdinc to the Compiler and to gnatbind
7907 No_Stdinc := True;
7908 Add_Switch (Argv, Compiler, And_Save => And_Save);
7909 Add_Switch (Argv, Binder, And_Save => And_Save);
7911 -- All other switches are processed by Scan_Make_Switches. If the
7912 -- call returns with Gnatmake_Switch_Found = False, then the switch
7913 -- is passed to the compiler.
7915 else
7916 Scan_Make_Switches (Env, Argv, Gnatmake_Switch_Found);
7918 if not Gnatmake_Switch_Found then
7919 Add_Switch (Argv, Compiler, And_Save => And_Save);
7920 end if;
7921 end if;
7923 -- If not a switch it must be a file name
7925 else
7926 if And_Save then
7927 Main_On_Command_Line := True;
7928 end if;
7930 Add_File (Argv);
7931 Mains.Add_Main (Argv);
7932 end if;
7933 end Scan_Make_Arg;
7935 -----------------
7936 -- Switches_Of --
7937 -----------------
7939 function Switches_Of
7940 (Source_File : File_Name_Type;
7941 Project : Project_Id;
7942 In_Package : Package_Id;
7943 Allow_ALI : Boolean) return Variable_Value
7945 Switches : Variable_Value;
7946 Is_Default : Boolean;
7948 begin
7949 Makeutl.Get_Switches
7950 (Source_File => Source_File,
7951 Source_Lang => Name_Ada,
7952 Source_Prj => Project,
7953 Pkg_Name => Project_Tree.Shared.Packages.Table (In_Package).Name,
7954 Project_Tree => Project_Tree,
7955 Value => Switches,
7956 Is_Default => Is_Default,
7957 Test_Without_Suffix => True,
7958 Check_ALI_Suffix => Allow_ALI);
7959 return Switches;
7960 end Switches_Of;
7962 -----------
7963 -- Usage --
7964 -----------
7966 procedure Usage is
7967 begin
7968 if Usage_Needed then
7969 Usage_Needed := False;
7970 Makeusg;
7971 end if;
7972 end Usage;
7974 begin
7975 -- Make sure that in case of failure, the temp files will be deleted
7977 Prj.Com.Fail := Make_Failed'Access;
7978 MLib.Fail := Make_Failed'Access;
7979 end Make;