* config/arm/arm.md (addsi3_cbranch_scratch): Correct constraints.
[official-gcc.git] / gcc / ada / make.adb
blob8260ebdb3016ff1ba1190c33a2e8cc70e4294152
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- M A K E --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2004 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 2, 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 COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
27 with ALI; use ALI;
28 with ALI.Util; use ALI.Util;
29 with Csets;
30 with Debug;
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.Prj;
40 with MLib.Tgt; use MLib.Tgt;
41 with MLib.Utl;
42 with Namet; use Namet;
43 with Opt; use Opt;
44 with Osint.M; use Osint.M;
45 with Osint; use Osint;
46 with Gnatvsn;
47 with Output; use Output;
48 with Prj; use Prj;
49 with Prj.Com;
50 with Prj.Env;
51 with Prj.Pars;
52 with Prj.Util;
53 with SFN_Scan;
54 with Sinput.P;
55 with Snames; use Snames;
56 with Switch; use Switch;
57 with Switch.M; use Switch.M;
58 with Targparm;
59 with Tempdir;
61 with Ada.Exceptions; use Ada.Exceptions;
62 with Ada.Command_Line; use Ada.Command_Line;
64 with GNAT.Directory_Operations; use GNAT.Directory_Operations;
65 with GNAT.Case_Util; use GNAT.Case_Util;
67 with System.HTable;
69 package body Make is
71 use ASCII;
72 -- Make control characters visible
74 Standard_Library_Package_Body_Name : constant String := "s-stalib.adb";
75 -- Every program depends on this package, that must then be checked,
76 -- especially when -f and -a are used.
78 type Sigint_Handler is access procedure;
80 procedure Install_Int_Handler (Handler : Sigint_Handler);
81 pragma Import (C, Install_Int_Handler, "__gnat_install_int_handler");
82 -- Called by Gnatmake to install the SIGINT handler below
84 procedure Sigint_Intercepted;
85 -- Called when the program is interrupted by Ctrl-C to delete the
86 -- temporary mapping files and configuration pragmas files.
88 -------------------------
89 -- Note on terminology --
90 -------------------------
92 -- In this program, we use the phrase "termination" of a file name to
93 -- refer to the suffix that appears after the unit name portion. Very
94 -- often this is simply the extension, but in some cases, the sequence
95 -- may be more complex, for example in main.1.ada, the termination in
96 -- this name is ".1.ada" and in main_.ada the termination is "_.ada".
98 -------------------------------------
99 -- Queue (Q) Manipulation Routines --
100 -------------------------------------
102 -- The Q is used in Compile_Sources below. Its implementation uses the
103 -- GNAT generic package Table (basically an extensible array). Q_Front
104 -- points to the first valid element in the Q, whereas Q.First is the first
105 -- element ever enqueued, while Q.Last - 1 is the last element in the Q.
107 -- +---+--------------+---+---+---+-----------+---+--------
108 -- Q | | ........ | | | | ....... | |
109 -- +---+--------------+---+---+---+-----------+---+--------
110 -- ^ ^ ^
111 -- Q.First Q_Front Q.Last - 1
113 -- The elements comprised between Q.First and Q_Front - 1 are the
114 -- elements that have been enqueued and then dequeued, while the
115 -- elements between Q_Front and Q.Last - 1 are the elements currently
116 -- in the Q. When the Q is initialized Q_Front = Q.First = Q.Last.
117 -- After Compile_Sources has terminated its execution, Q_Front = Q.Last
118 -- and the elements contained between Q.Front and Q.Last-1 are those that
119 -- were explored and thus marked by Compile_Sources. Whenever the Q is
120 -- reinitialized, the elements between Q.First and Q.Last - 1 are unmarked.
122 procedure Init_Q;
123 -- Must be called to (re)initialize the Q.
125 procedure Insert_Q
126 (Source_File : File_Name_Type;
127 Source_Unit : Unit_Name_Type := No_Name;
128 Index : Int := 0);
129 -- Inserts Source_File at the end of Q. Provide Source_Unit when possible
130 -- for external use (gnatdist). Provide index for multi-unit sources.
132 function Empty_Q return Boolean;
133 -- Returns True if Q is empty.
135 procedure Extract_From_Q
136 (Source_File : out File_Name_Type;
137 Source_Unit : out Unit_Name_Type;
138 Source_Index : out Int);
139 -- Extracts the first element from the Q.
141 procedure Insert_Project_Sources
142 (The_Project : Project_Id;
143 All_Projects : Boolean;
144 Into_Q : Boolean);
145 -- If Into_Q is True, insert all sources of the project file(s) that are
146 -- not already marked into the Q. If Into_Q is False, call Osint.Add_File
147 -- for the first source, then insert all other sources that are not already
148 -- marked into the Q. If All_Projects is True, all sources of all projects
149 -- are concerned; otherwise, only sources of The_Project are concerned,
150 -- including, if The_Project is an extending project, sources inherited
151 -- from projects being extended.
153 First_Q_Initialization : Boolean := True;
154 -- Will be set to false after Init_Q has been called once.
156 Q_Front : Natural;
157 -- Points to the first valid element in the Q.
159 Unique_Compile : Boolean := False;
160 -- Set to True if -u or -U or a project file with no main is used
162 Unique_Compile_All_Projects : Boolean := False;
163 -- Set to True if -U is used
165 RTS_Specified : String_Access := null;
166 -- Used to detect multiple --RTS= switches
168 type Q_Record is record
169 File : File_Name_Type;
170 Unit : Unit_Name_Type;
171 Index : Int;
172 end record;
173 -- File is the name of the file to compile. Unit is for gnatdist
174 -- use in order to easily get the unit name of a file to compile
175 -- when its name is krunched or declared in gnat.adc. Index, when not 0,
176 -- is the index of the unit in a multi-unit source.
178 package Q is new Table.Table (
179 Table_Component_Type => Q_Record,
180 Table_Index_Type => Natural,
181 Table_Low_Bound => 0,
182 Table_Initial => 4000,
183 Table_Increment => 100,
184 Table_Name => "Make.Q");
185 -- This is the actual Q.
187 -- The following instantiations and variables are necessary to save what
188 -- is found on the command line, in case there is a project file specified.
190 package Saved_Gcc_Switches is new Table.Table (
191 Table_Component_Type => String_Access,
192 Table_Index_Type => Integer,
193 Table_Low_Bound => 1,
194 Table_Initial => 20,
195 Table_Increment => 100,
196 Table_Name => "Make.Saved_Gcc_Switches");
198 package Saved_Binder_Switches is new Table.Table (
199 Table_Component_Type => String_Access,
200 Table_Index_Type => Integer,
201 Table_Low_Bound => 1,
202 Table_Initial => 20,
203 Table_Increment => 100,
204 Table_Name => "Make.Saved_Binder_Switches");
206 package Saved_Linker_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_Linker_Switches");
214 package Switches_To_Check 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.Switches_To_Check");
222 package Library_Paths 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.Library_Paths");
230 package Failed_Links is new Table.Table (
231 Table_Component_Type => File_Name_Type,
232 Table_Index_Type => Integer,
233 Table_Low_Bound => 1,
234 Table_Initial => 10,
235 Table_Increment => 100,
236 Table_Name => "Make.Failed_Links");
238 package Successful_Links is new Table.Table (
239 Table_Component_Type => File_Name_Type,
240 Table_Index_Type => Integer,
241 Table_Low_Bound => 1,
242 Table_Initial => 10,
243 Table_Increment => 100,
244 Table_Name => "Make.Successful_Links");
246 package Library_Projs is new Table.Table (
247 Table_Component_Type => Project_Id,
248 Table_Index_Type => Integer,
249 Table_Low_Bound => 1,
250 Table_Initial => 10,
251 Table_Increment => 100,
252 Table_Name => "Make.Library_Projs");
254 -- Two variables to keep the last binder and linker switch index
255 -- in tables Binder_Switches and Linker_Switches, before adding
256 -- switches from the project file (if any) and switches from the
257 -- command line (if any).
259 Last_Binder_Switch : Integer := 0;
260 Last_Linker_Switch : Integer := 0;
262 Normalized_Switches : Argument_List_Access := new Argument_List (1 .. 10);
263 Last_Norm_Switch : Natural := 0;
265 Saved_Maximum_Processes : Natural := 0;
267 type Arg_List_Ref is access Argument_List;
268 The_Saved_Gcc_Switches : Arg_List_Ref;
270 Project_File_Name : String_Access := null;
271 -- The path name of the main project file, if any
273 Project_File_Name_Present : Boolean := False;
274 -- True when -P is used with a space between -P and the project file name
276 Current_Verbosity : Prj.Verbosity := Prj.Default;
277 -- Verbosity to parse the project files
279 Main_Project : Prj.Project_Id := No_Project;
280 -- The project id of the main project file, if any
282 Project_Object_Directory : Project_Id := No_Project;
283 -- The object directory of the project for the last compilation.
284 -- Avoid calling Change_Dir if the current working directory is already
285 -- this directory
287 -- Packages of project files where unknown attributes are errors.
289 Naming_String : aliased String := "naming";
290 Builder_String : aliased String := "builder";
291 Compiler_String : aliased String := "compiler";
292 Binder_String : aliased String := "binder";
293 Linker_String : aliased String := "linker";
295 Gnatmake_Packages : aliased String_List :=
296 (Naming_String 'Access,
297 Builder_String 'Access,
298 Compiler_String 'Access,
299 Binder_String 'Access,
300 Linker_String 'Access);
302 Packages_To_Check_By_Gnatmake : constant String_List_Access :=
303 Gnatmake_Packages'Access;
305 procedure Add_Source_Dir (N : String);
306 -- Call Add_Src_Search_Dir.
307 -- Output one line when in verbose mode.
309 procedure Add_Source_Directories is
310 new Prj.Env.For_All_Source_Dirs (Action => Add_Source_Dir);
312 procedure Add_Object_Dir (N : String);
313 -- Call Add_Lib_Search_Dir.
314 -- Output one line when in verbose mode.
316 procedure Add_Object_Directories is
317 new Prj.Env.For_All_Object_Dirs (Action => Add_Object_Dir);
319 procedure Change_To_Object_Directory (Project : Project_Id);
320 -- Change to the object directory of project Project, if this is not
321 -- already the current working directory.
323 type Bad_Compilation_Info is record
324 File : File_Name_Type;
325 Unit : Unit_Name_Type;
326 Found : Boolean;
327 end record;
328 -- File is the name of the file for which a compilation failed.
329 -- Unit is for gnatdist use in order to easily get the unit name
330 -- of a file when its name is krunched or declared in gnat.adc.
331 -- Found is False if the compilation failed because the file could
332 -- not be found.
334 package Bad_Compilation is new Table.Table (
335 Table_Component_Type => Bad_Compilation_Info,
336 Table_Index_Type => Natural,
337 Table_Low_Bound => 1,
338 Table_Initial => 20,
339 Table_Increment => 100,
340 Table_Name => "Make.Bad_Compilation");
341 -- Full name of all the source files for which compilation fails.
343 Do_Compile_Step : Boolean := True;
344 Do_Bind_Step : Boolean := True;
345 Do_Link_Step : Boolean := True;
346 -- Flags to indicate what step should be executed.
347 -- Can be set to False with the switches -c, -b and -l.
348 -- These flags are reset to True for each invokation of procedure Gnatmake.
350 Shared_String : aliased String := "-shared";
351 Force_Elab_Flags_String : aliased String := "-F";
353 No_Shared_Switch : aliased Argument_List := (1 .. 0 => null);
354 Shared_Switch : aliased Argument_List := (1 => Shared_String'Access);
355 Bind_Shared : Argument_List_Access := No_Shared_Switch'Access;
356 -- Switch to added in front of gnatbind switches. By default no switch is
357 -- added. Switch "-shared" is added if there is a non-static Library
358 -- Project File.
360 Bind_Shared_Known : Boolean := False;
361 -- Set to True after the first time Bind_Shared is computed
363 Shared_Libgcc : aliased String := "-shared-libgcc";
365 No_Shared_Libgcc_Switch : aliased Argument_List := (1 .. 0 => null);
366 Shared_Libgcc_Switch : aliased Argument_List :=
367 (1 => Shared_Libgcc'Access);
368 Link_With_Shared_Libgcc : Argument_List_Access :=
369 No_Shared_Libgcc_Switch'Access;
371 procedure Make_Failed (S1 : String; S2 : String := ""; S3 : String := "");
372 -- Delete all temp files created by Gnatmake and call Osint.Fail,
373 -- with the parameter S1, S2 and S3 (see osint.ads).
374 -- This is called from the Prj hierarchy and the MLib hierarchy.
376 --------------------------
377 -- Obsolete Executables --
378 --------------------------
380 Executable_Obsolete : Boolean := False;
381 -- Executable_Obsolete is initially set to False for each executable,
382 -- and is set to True whenever one of the source of the executable is
383 -- compiled, or has already been compiled for another executable.
385 Max_Header : constant := 200;
386 -- This needs a proper comment, it used to say "arbitrary"
387 -- that's not an adequate comment ???
389 type Header_Num is range 1 .. Max_Header;
390 -- Header_Num for the hash table Obsoleted below
392 function Hash (F : Name_Id) return Header_Num;
393 -- Hash function for the hash table Obsoleted below
395 package Obsoleted is new System.HTable.Simple_HTable
396 (Header_Num => Header_Num,
397 Element => Boolean,
398 No_Element => False,
399 Key => Name_Id,
400 Hash => Hash,
401 Equal => "=");
402 -- A hash table to keep all files that have been compiled, to detect
403 -- if an executable is up to date or not.
405 procedure Enter_Into_Obsoleted (F : Name_Id);
406 -- Enter a file name, without directory information, into the has table
407 -- Obsoleted.
409 function Is_In_Obsoleted (F : Name_Id) return Boolean;
410 -- Check if a file name, without directory information, has already been
411 -- entered into the hash table Obsoleted.
413 type Dependency is record
414 This : Name_Id;
415 Depends_On : Name_Id;
416 end record;
417 -- Components of table Dependencies below.
419 package Dependencies is new Table.Table (
420 Table_Component_Type => Dependency,
421 Table_Index_Type => Integer,
422 Table_Low_Bound => 1,
423 Table_Initial => 20,
424 Table_Increment => 100,
425 Table_Name => "Make.Dependencies");
426 -- A table to keep dependencies, to be able to decide if an executable
427 -- is obsolete.
429 procedure Add_Dependency (S : Name_Id; On : Name_Id);
430 -- Add one entry in table Dependencies
432 ----------------------------
433 -- Arguments and Switches --
434 ----------------------------
436 Arguments : Argument_List_Access;
437 -- Used to gather the arguments for invocation of the compiler
439 Last_Argument : Natural := 0;
440 -- Last index of arguments in Arguments above
442 Arguments_Collected : Boolean := False;
443 -- Set to True when the arguments for the next invocation of the compiler
444 -- have been collected.
446 Arguments_Project : Project_Id;
447 -- Project id, if any, of the source to be compiled
449 Arguments_Path_Name : File_Name_Type;
450 -- Full path of the source to be compiled, when Arguments_Project is not
451 -- No_Project.
453 Dummy_Switch : constant String_Access := new String'("- ");
454 -- Used to initialized Prev_Switch in procedure Check
456 procedure Add_Arguments (Args : Argument_List);
457 -- Add arguments to global variable Arguments, increasing its size
458 -- if necessary and adjusting Last_Argument.
460 function Configuration_Pragmas_Switch
461 (For_Project : Project_Id) return Argument_List;
462 -- Return an argument list of one element, if there is a configuration
463 -- pragmas file to be specified for For_Project,
464 -- otherwise return an empty argument list.
466 -------------------
467 -- Misc Routines --
468 -------------------
470 procedure List_Depend;
471 -- Prints to standard output the list of object dependencies. This list
472 -- can be used directly in a Makefile. A call to Compile_Sources must
473 -- precede the call to List_Depend. Also because this routine uses the
474 -- ALI files that were originally loaded and scanned by Compile_Sources,
475 -- no additional ALI files should be scanned between the two calls (i.e.
476 -- between the call to Compile_Sources and List_Depend.)
478 procedure Inform (N : Name_Id := No_Name; Msg : String);
479 -- Prints out the program name followed by a colon, N and S.
481 procedure List_Bad_Compilations;
482 -- Prints out the list of all files for which the compilation failed.
484 procedure Verbose_Msg
485 (N1 : Name_Id;
486 S1 : String;
487 N2 : Name_Id := No_Name;
488 S2 : String := "";
489 Prefix : String := " -> ");
490 -- If the verbose flag (Verbose_Mode) is set then print Prefix to standard
491 -- output followed by N1 and S1. If N2 /= No_Name then N2 is then printed
492 -- after S1. S2 is printed last. Both N1 and N2 are printed in quotation
493 -- marks.
495 Usage_Needed : Boolean := True;
496 -- Flag used to make sure Makeusg is call at most once
498 procedure Usage;
499 -- Call Makeusg, if Usage_Needed is True.
500 -- Set Usage_Needed to False.
502 procedure Debug_Msg (S : String; N : Name_Id);
503 -- If Debug.Debug_Flag_W is set outputs string S followed by name N.
505 procedure Recursive_Compute_Depth
506 (Project : Project_Id;
507 Depth : Natural);
508 -- Compute depth of Project and of the projects it depends on
510 -----------------------
511 -- Gnatmake Routines --
512 -----------------------
514 Gnatmake_Called : Boolean := False;
515 -- Set to True when procedure Gnatmake is called.
516 -- Attempt to delete temporary files is made only when Gnatmake_Called
517 -- is True.
519 subtype Lib_Mark_Type is Byte;
520 -- Used in Mark_Directory
522 Ada_Lib_Dir : constant Lib_Mark_Type := 1;
523 -- Used to mark a directory as a GNAT lib dir
525 -- Note that the notion of GNAT lib dir is no longer used. The code
526 -- related to it has not been removed to give an idea on how to use
527 -- the directory prefix marking mechanism.
529 -- An Ada library directory is a directory containing ali and object
530 -- files but no source files for the bodies (the specs can be in the
531 -- same or some other directory). These directories are specified
532 -- in the Gnatmake command line with the switch "-Adir" (to specify the
533 -- spec location -Idir cab be used). Gnatmake skips the missing sources
534 -- whose ali are in Ada library directories. For an explanation of why
535 -- Gnatmake behaves that way, see the spec of Make.Compile_Sources.
536 -- The directory lookup penalty is incurred every single time this
537 -- routine is called.
539 procedure Check_Steps;
540 -- Check what steps (Compile, Bind, Link) must be executed.
541 -- Set the step flags accordingly.
543 function In_Ada_Lib_Dir (File : File_Name_Type) return Boolean;
544 -- Get directory prefix of this file and get lib mark stored in name
545 -- table for this directory. Then check if an Ada lib mark has been set.
547 procedure Mark_Directory
548 (Dir : String;
549 Mark : Lib_Mark_Type);
550 -- Store Dir in name table and set lib mark as name info to identify
551 -- Ada libraries.
553 Output_Is_Object : Boolean := True;
554 -- Set to False when using a switch -S for the compiler
556 procedure Check_For_S_Switch;
557 -- Set Output_Is_Object to False when the -S switch is used for the
558 -- compiler.
560 function Switches_Of
561 (Source_File : Name_Id;
562 Source_File_Name : String;
563 Source_Index : Int;
564 Naming : Naming_Data;
565 In_Package : Package_Id;
566 Allow_ALI : Boolean) return Variable_Value;
567 -- Return the switches for the source file in the specified package
568 -- of a project file. If the Source_File ends with a standard GNAT
569 -- extension (".ads" or ".adb"), try first the full name, then the
570 -- name without the extension, then, if Allow_ALI is True, the name with
571 -- the extension ".ali". If there is no switches for either names, try the
572 -- default switches for Ada. If all failed, return No_Variable_Value.
574 function Is_In_Object_Directory
575 (Source_File : File_Name_Type;
576 Full_Lib_File : File_Name_Type) return Boolean;
577 -- Check if, when using a project file, the ALI file is in the project
578 -- directory of the ultimate extending project. If it is not, we ignore
579 -- the fact that this ALI file is read-only.
581 ----------------------------------------------------
582 -- Compiler, Binder & Linker Data and Subprograms --
583 ----------------------------------------------------
585 Gcc : String_Access := Program_Name ("gcc");
586 Gnatbind : String_Access := Program_Name ("gnatbind");
587 Gnatlink : String_Access := Program_Name ("gnatlink");
588 -- Default compiler, binder, linker programs
590 Saved_Gcc : String_Access := null;
591 Saved_Gnatbind : String_Access := null;
592 Saved_Gnatlink : String_Access := null;
593 -- Given by the command line. Will be used, if non null.
595 Gcc_Path : String_Access :=
596 GNAT.OS_Lib.Locate_Exec_On_Path (Gcc.all);
597 Gnatbind_Path : String_Access :=
598 GNAT.OS_Lib.Locate_Exec_On_Path (Gnatbind.all);
599 Gnatlink_Path : String_Access :=
600 GNAT.OS_Lib.Locate_Exec_On_Path (Gnatlink.all);
601 -- Path for compiler, binder, linker programs, defaulted now for gnatdist.
602 -- Changed later if overridden on command line.
604 Comp_Flag : constant String_Access := new String'("-c");
605 Output_Flag : constant String_Access := new String'("-o");
606 Ada_Flag_1 : constant String_Access := new String'("-x");
607 Ada_Flag_2 : constant String_Access := new String'("ada");
608 No_gnat_adc : constant String_Access := new String'("-gnatA");
609 GNAT_Flag : constant String_Access := new String'("-gnatpg");
610 Do_Not_Check_Flag : constant String_Access := new String'("-x");
612 Object_Suffix : constant String := Get_Object_Suffix.all;
613 Executable_Suffix : constant String := Get_Executable_Suffix.all;
615 Syntax_Only : Boolean := False;
616 -- Set to True when compiling with -gnats
618 Display_Executed_Programs : Boolean := True;
619 -- Set to True if name of commands should be output on stderr.
621 Output_File_Name_Seen : Boolean := False;
622 -- Set to True after having scanned the file_name for
623 -- switch "-o file_name"
625 Object_Directory_Seen : Boolean := False;
626 -- Set to True after having scanned the object directory for
627 -- switch "-D obj_dir".
629 Object_Directory_Path : String_Access := null;
630 -- The path name of the object directory, set with switch -D.
632 type Make_Program_Type is (None, Compiler, Binder, Linker);
634 Program_Args : Make_Program_Type := None;
635 -- Used to indicate if we are scanning gnatmake, gcc, gnatbind, or gnatbind
636 -- options within the gnatmake command line.
637 -- Used in Scan_Make_Arg only, but must be a global variable.
639 Temporary_Config_File : Boolean := False;
640 -- Set to True when there is a temporary config file used for a project
641 -- file, to avoid displaying the -gnatec switch for a temporary file.
643 procedure Add_Switches
644 (The_Package : Package_Id;
645 File_Name : String;
646 Index : Int;
647 Program : Make_Program_Type);
648 procedure Add_Switch
649 (S : String_Access;
650 Program : Make_Program_Type;
651 Append_Switch : Boolean := True;
652 And_Save : Boolean := True);
653 procedure Add_Switch
654 (S : String;
655 Program : Make_Program_Type;
656 Append_Switch : Boolean := True;
657 And_Save : Boolean := True);
658 -- Make invokes one of three programs (the compiler, the binder or the
659 -- linker). For the sake of convenience, some program specific switches
660 -- can be passed directly on the gnatmake commande line. This procedure
661 -- records these switches so that gnamake can pass them to the right
662 -- program. S is the switch to be added at the end of the command line
663 -- for Program if Append_Switch is True. If Append_Switch is False S is
664 -- added at the beginning of the command line.
666 procedure Check
667 (Source_File : File_Name_Type;
668 Source_Index : Int;
669 The_Args : Argument_List;
670 Lib_File : File_Name_Type;
671 Read_Only : Boolean;
672 ALI : out ALI_Id;
673 O_File : out File_Name_Type;
674 O_Stamp : out Time_Stamp_Type);
675 -- Determines whether the library file Lib_File is up-to-date or not. The
676 -- full name (with path information) of the object file corresponding to
677 -- Lib_File is returned in O_File. Its time stamp is saved in O_Stamp.
678 -- ALI is the ALI_Id corresponding to Lib_File. If Lib_File in not
679 -- up-to-date, then the corresponding source file needs to be recompiled.
680 -- In this case ALI = No_ALI_Id.
682 procedure Check_Linker_Options
683 (E_Stamp : Time_Stamp_Type;
684 O_File : out File_Name_Type;
685 O_Stamp : out Time_Stamp_Type);
686 -- Checks all linker options for linker files that are newer
687 -- than E_Stamp. If such objects are found, the youngest object
688 -- is returned in O_File and its stamp in O_Stamp.
690 -- If no obsolete linker files were found, the first missing
691 -- linker file is returned in O_File and O_Stamp is empty.
692 -- Otherwise O_File is No_File.
694 procedure Collect_Arguments
695 (Source_File : File_Name_Type;
696 Source_Index : Int;
697 Args : Argument_List);
698 -- Collect all arguments for a source to be compiled, including those
699 -- that come from a project file.
701 procedure Display (Program : String; Args : Argument_List);
702 -- Displays Program followed by the arguments in Args if variable
703 -- Display_Executed_Programs is set. The lower bound of Args must be 1.
705 -----------------
706 -- Mapping files
707 -----------------
709 type Temp_File_Names is
710 array (Project_Id range <>, Positive range <>) of Name_Id;
712 type Temp_Files_Ptr is access Temp_File_Names;
714 type Indices is array (Project_Id range <>) of Natural;
716 type Indices_Ptr is access Indices;
718 type Free_File_Indices is array
719 (Project_Id range <>, Positive range <>) of Positive;
721 type Free_Indices_Ptr is access Free_File_Indices;
723 The_Mapping_File_Names : Temp_Files_Ptr;
724 -- For each project, the name ids of the temporary mapping files used
726 Last_Mapping_File_Names : Indices_Ptr;
727 -- For each project, the index of the last mapping file created
729 The_Free_Mapping_File_Indices : Free_Indices_Ptr;
730 -- For each project, the indices in The_Mapping_File_Names of the mapping
731 -- file names that can be reused for subsequent compilations.
733 Last_Free_Indices : Indices_Ptr;
734 -- For each project, the number of mapping files that can be reused
736 Gnatmake_Mapping_File : String_Access := null;
737 -- The path name of a mapping file specified by switch -C=
739 procedure Delete_Mapping_Files;
740 -- Delete all temporary mapping files
742 procedure Init_Mapping_File
743 (Project : Project_Id;
744 File_Index : in out Natural);
745 -- Create a new temporary mapping file, and fill it with the project file
746 -- mappings, when using project file(s). The out parameter File_Index is
747 -- the index to the name of the file in the array The_Mapping_File_Names.
749 procedure Delete_Temp_Config_Files;
750 -- Delete all temporary config files
752 procedure Delete_All_Temp_Files;
753 -- Delete all temp files (config files, mapping files, path files)
755 -------------------
756 -- Add_Arguments --
757 -------------------
759 procedure Add_Arguments (Args : Argument_List) is
760 begin
761 if Arguments = null then
762 Arguments := new Argument_List (1 .. Args'Length + 10);
764 else
765 while Last_Argument + Args'Length > Arguments'Last loop
766 declare
767 New_Arguments : constant Argument_List_Access :=
768 new Argument_List (1 .. Arguments'Last * 2);
769 begin
770 New_Arguments (1 .. Last_Argument) :=
771 Arguments (1 .. Last_Argument);
772 Arguments := New_Arguments;
773 end;
774 end loop;
775 end if;
777 Arguments (Last_Argument + 1 .. Last_Argument + Args'Length) := Args;
778 Last_Argument := Last_Argument + Args'Length;
779 end Add_Arguments;
781 --------------------
782 -- Add_Dependency --
783 --------------------
785 procedure Add_Dependency (S : Name_Id; On : Name_Id) is
786 begin
787 Dependencies.Increment_Last;
788 Dependencies.Table (Dependencies.Last) := (S, On);
789 end Add_Dependency;
791 --------------------
792 -- Add_Object_Dir --
793 --------------------
795 procedure Add_Object_Dir (N : String) is
796 begin
797 Add_Lib_Search_Dir (N);
799 if Verbose_Mode then
800 Write_Str ("Adding object directory """);
801 Write_Str (N);
802 Write_Str (""".");
803 Write_Eol;
804 end if;
805 end Add_Object_Dir;
807 --------------------
808 -- Add_Source_Dir --
809 --------------------
811 procedure Add_Source_Dir (N : String) is
812 begin
813 Add_Src_Search_Dir (N);
815 if Verbose_Mode then
816 Write_Str ("Adding source directory """);
817 Write_Str (N);
818 Write_Str (""".");
819 Write_Eol;
820 end if;
821 end Add_Source_Dir;
823 ----------------
824 -- Add_Switch --
825 ----------------
827 procedure Add_Switch
828 (S : String_Access;
829 Program : Make_Program_Type;
830 Append_Switch : Boolean := True;
831 And_Save : Boolean := True)
833 generic
834 with package T is new Table.Table (<>);
835 procedure Generic_Position (New_Position : out Integer);
836 -- Generic procedure that chooses a position for S in T at the
837 -- beginning or the end, depending on the boolean Append_Switch.
838 -- Calling this procedure may expand the table.
840 ----------------------
841 -- Generic_Position --
842 ----------------------
844 procedure Generic_Position (New_Position : out Integer) is
845 begin
846 T.Increment_Last;
848 if Append_Switch then
849 New_Position := Integer (T.Last);
850 else
851 for J in reverse T.Table_Index_Type'Succ (T.First) .. T.Last loop
852 T.Table (J) := T.Table (T.Table_Index_Type'Pred (J));
853 end loop;
855 New_Position := Integer (T.First);
856 end if;
857 end Generic_Position;
859 procedure Gcc_Switches_Pos is new Generic_Position (Gcc_Switches);
860 procedure Binder_Switches_Pos is new Generic_Position (Binder_Switches);
861 procedure Linker_Switches_Pos is new Generic_Position (Linker_Switches);
863 procedure Saved_Gcc_Switches_Pos is new
864 Generic_Position (Saved_Gcc_Switches);
866 procedure Saved_Binder_Switches_Pos is new
867 Generic_Position (Saved_Binder_Switches);
869 procedure Saved_Linker_Switches_Pos is new
870 Generic_Position (Saved_Linker_Switches);
872 New_Position : Integer;
874 -- Start of processing for Add_Switch
876 begin
877 if And_Save then
878 case Program is
879 when Compiler =>
880 Saved_Gcc_Switches_Pos (New_Position);
881 Saved_Gcc_Switches.Table (New_Position) := S;
883 when Binder =>
884 Saved_Binder_Switches_Pos (New_Position);
885 Saved_Binder_Switches.Table (New_Position) := S;
887 when Linker =>
888 Saved_Linker_Switches_Pos (New_Position);
889 Saved_Linker_Switches.Table (New_Position) := S;
891 when None =>
892 raise Program_Error;
893 end case;
895 else
896 case Program is
897 when Compiler =>
898 Gcc_Switches_Pos (New_Position);
899 Gcc_Switches.Table (New_Position) := S;
901 when Binder =>
902 Binder_Switches_Pos (New_Position);
903 Binder_Switches.Table (New_Position) := S;
905 when Linker =>
906 Linker_Switches_Pos (New_Position);
907 Linker_Switches.Table (New_Position) := S;
909 when None =>
910 raise Program_Error;
911 end case;
912 end if;
913 end Add_Switch;
915 procedure Add_Switch
916 (S : String;
917 Program : Make_Program_Type;
918 Append_Switch : Boolean := True;
919 And_Save : Boolean := True)
921 begin
922 Add_Switch (S => new String'(S),
923 Program => Program,
924 Append_Switch => Append_Switch,
925 And_Save => And_Save);
926 end Add_Switch;
928 ------------------
929 -- Add_Switches --
930 ------------------
932 procedure Add_Switches
933 (The_Package : Package_Id;
934 File_Name : String;
935 Index : Int;
936 Program : Make_Program_Type)
938 Switches : Variable_Value;
939 Switch_List : String_List_Id;
940 Element : String_Element;
942 begin
943 if File_Name'Length > 0 then
944 Name_Len := File_Name'Length;
945 Name_Buffer (1 .. Name_Len) := File_Name;
946 Switches :=
947 Switches_Of
948 (Source_File => Name_Find,
949 Source_File_Name => File_Name,
950 Source_Index => Index,
951 Naming => Projects.Table (Main_Project).Naming,
952 In_Package => The_Package,
953 Allow_ALI =>
954 Program = Binder or else Program = Linker);
956 case Switches.Kind is
957 when Undefined =>
958 null;
960 when List =>
961 Program_Args := Program;
963 Switch_List := Switches.Values;
965 while Switch_List /= Nil_String loop
966 Element := String_Elements.Table (Switch_List);
967 Get_Name_String (Element.Value);
969 if Name_Len > 0 then
970 declare
971 Argv : constant String := Name_Buffer (1 .. Name_Len);
972 -- We need a copy, because Name_Buffer may be
973 -- modified.
975 begin
976 if Verbose_Mode then
977 Write_Str (" Adding ");
978 Write_Line (Argv);
979 end if;
981 Scan_Make_Arg (Argv, And_Save => False);
982 end;
983 end if;
985 Switch_List := Element.Next;
986 end loop;
988 when Single =>
989 Program_Args := Program;
990 Get_Name_String (Switches.Value);
992 if Name_Len > 0 then
993 declare
994 Argv : constant String := Name_Buffer (1 .. Name_Len);
995 -- We need a copy, because Name_Buffer may be modified
997 begin
998 if Verbose_Mode then
999 Write_Str (" Adding ");
1000 Write_Line (Argv);
1001 end if;
1003 Scan_Make_Arg (Argv, And_Save => False);
1004 end;
1005 end if;
1006 end case;
1007 end if;
1008 end Add_Switches;
1010 ----------
1011 -- Bind --
1012 ----------
1014 procedure Bind (ALI_File : File_Name_Type; Args : Argument_List) is
1015 Bind_Args : Argument_List (1 .. Args'Last + 2);
1016 Bind_Last : Integer;
1017 Success : Boolean;
1019 begin
1020 pragma Assert (Args'First = 1);
1022 -- Optimize the simple case where the gnatbind command line looks like
1023 -- gnatbind -aO. -I- file.ali --into-> gnatbind file.adb
1025 if Args'Length = 2
1026 and then Args (Args'First).all = "-aO" & Normalized_CWD
1027 and then Args (Args'Last).all = "-I-"
1028 and then ALI_File = Strip_Directory (ALI_File)
1029 then
1030 Bind_Last := Args'First - 1;
1032 else
1033 Bind_Last := Args'Last;
1034 Bind_Args (Args'Range) := Args;
1035 end if;
1037 -- It is completely pointless to re-check source file time stamps.
1038 -- This has been done already by gnatmake
1040 Bind_Last := Bind_Last + 1;
1041 Bind_Args (Bind_Last) := Do_Not_Check_Flag;
1043 Get_Name_String (ALI_File);
1045 Bind_Last := Bind_Last + 1;
1046 Bind_Args (Bind_Last) := new String'(Name_Buffer (1 .. Name_Len));
1048 GNAT.OS_Lib.Normalize_Arguments (Bind_Args (Args'First .. Bind_Last));
1050 Display (Gnatbind.all, Bind_Args (Args'First .. Bind_Last));
1052 if Gnatbind_Path = null then
1053 Make_Failed ("error, unable to locate ", Gnatbind.all);
1054 end if;
1056 GNAT.OS_Lib.Spawn
1057 (Gnatbind_Path.all, Bind_Args (Args'First .. Bind_Last), Success);
1059 if not Success then
1060 raise Bind_Failed;
1061 end if;
1062 end Bind;
1064 --------------------------------
1065 -- Change_To_Object_Directory --
1066 --------------------------------
1068 procedure Change_To_Object_Directory (Project : Project_Id) is
1069 begin
1070 -- Nothing to do if the current working directory is alresdy the one
1071 -- we want.
1073 if Project_Object_Directory /= Project then
1074 Project_Object_Directory := Project;
1076 -- If in a real project, set the working directory to the object
1077 -- directory of the project.
1079 if Project /= No_Project then
1080 Change_Dir
1081 (Get_Name_String (Projects.Table (Project).Object_Directory));
1083 -- Otherwise, for sources outside of any project, set the working
1084 -- directory to the object directory of the main project.
1086 elsif Main_Project /= No_Project then
1087 Change_Dir
1088 (Get_Name_String
1089 (Projects.Table (Main_Project).Object_Directory));
1090 end if;
1091 end if;
1092 end Change_To_Object_Directory;
1094 -----------
1095 -- Check --
1096 -----------
1098 procedure Check
1099 (Source_File : File_Name_Type;
1100 Source_Index : Int;
1101 The_Args : Argument_List;
1102 Lib_File : File_Name_Type;
1103 Read_Only : Boolean;
1104 ALI : out ALI_Id;
1105 O_File : out File_Name_Type;
1106 O_Stamp : out Time_Stamp_Type)
1108 function First_New_Spec (A : ALI_Id) return File_Name_Type;
1109 -- Looks in the with table entries of A and returns the spec file name
1110 -- of the first withed unit (subprogram) for which no spec existed when
1111 -- A was generated but for which there exists one now, implying that A
1112 -- is now obsolete. If no such unit is found No_File is returned.
1113 -- Otherwise the spec file name of the unit is returned.
1115 -- **WARNING** in the event of Uname format modifications, one *MUST*
1116 -- make sure this function is also updated.
1118 -- Note: This function should really be in ali.adb and use Uname
1119 -- services, but this causes the whole compiler to be dragged along
1120 -- for gnatbind and gnatmake.
1122 --------------------
1123 -- First_New_Spec --
1124 --------------------
1126 function First_New_Spec (A : ALI_Id) return File_Name_Type is
1127 Spec_File_Name : File_Name_Type := No_File;
1129 function New_Spec (Uname : Unit_Name_Type) return Boolean;
1130 -- Uname is the name of the spec or body of some ada unit.
1131 -- This function returns True if the Uname is the name of a body
1132 -- which has a spec not mentioned inali file A. If True is returned
1133 -- Spec_File_Name above is set to the name of this spec file.
1135 --------------
1136 -- New_Spec --
1137 --------------
1139 function New_Spec (Uname : Unit_Name_Type) return Boolean is
1140 Spec_Name : Unit_Name_Type;
1141 File_Name : File_Name_Type;
1143 begin
1144 -- Test whether Uname is the name of a body unit (ie ends with %b)
1146 Get_Name_String (Uname);
1147 pragma
1148 Assert (Name_Len > 2 and then Name_Buffer (Name_Len - 1) = '%');
1150 if Name_Buffer (Name_Len) /= 'b' then
1151 return False;
1152 end if;
1154 -- Convert unit name into spec name
1156 -- ??? this code seems dubious in presence of pragma
1157 -- Source_File_Name since there is no more direct relationship
1158 -- between unit name and file name.
1160 -- ??? Further, what about alternative subunit naming
1162 Name_Buffer (Name_Len) := 's';
1163 Spec_Name := Name_Find;
1164 File_Name := Get_File_Name (Spec_Name, Subunit => False);
1166 -- Look if File_Name is mentioned in A's sdep list.
1167 -- If not look if the file exists. If it does return True.
1169 for D in
1170 ALIs.Table (A).First_Sdep .. ALIs.Table (A).Last_Sdep
1171 loop
1172 if Sdep.Table (D).Sfile = File_Name then
1173 return False;
1174 end if;
1175 end loop;
1177 if Full_Source_Name (File_Name) /= No_File then
1178 Spec_File_Name := File_Name;
1179 return True;
1180 end if;
1182 return False;
1183 end New_Spec;
1185 -- Start of processing for First_New_Spec
1187 begin
1188 U_Chk : for U in
1189 ALIs.Table (A).First_Unit .. ALIs.Table (A).Last_Unit
1190 loop
1191 exit U_Chk when Units.Table (U).Utype = Is_Body_Only
1192 and then New_Spec (Units.Table (U).Uname);
1194 for W in Units.Table (U).First_With
1196 Units.Table (U).Last_With
1197 loop
1198 exit U_Chk when
1199 Withs.Table (W).Afile /= No_File
1200 and then New_Spec (Withs.Table (W).Uname);
1201 end loop;
1202 end loop U_Chk;
1204 return Spec_File_Name;
1205 end First_New_Spec;
1207 ---------------------------------
1208 -- Data declarations for Check --
1209 ---------------------------------
1211 Full_Lib_File : File_Name_Type;
1212 -- Full name of current library file
1214 Full_Obj_File : File_Name_Type;
1215 -- Full name of the object file corresponding to Lib_File.
1217 Lib_Stamp : Time_Stamp_Type;
1218 -- Time stamp of the current ada library file.
1220 Obj_Stamp : Time_Stamp_Type;
1221 -- Time stamp of the current object file.
1223 Modified_Source : File_Name_Type;
1224 -- The first source in Lib_File whose current time stamp differs
1225 -- from that stored in Lib_File.
1227 New_Spec : File_Name_Type;
1228 -- If Lib_File contains in its W (with) section a body (for a
1229 -- subprogram) for which there exists a spec and the spec did not
1230 -- appear in the Sdep section of Lib_File, New_Spec contains the file
1231 -- name of this new spec.
1233 Source_Name : Name_Id;
1234 Text : Text_Buffer_Ptr;
1236 Prev_Switch : String_Access;
1237 -- Previous switch processed
1239 Arg : Arg_Id := Arg_Id'First;
1240 -- Current index in Args.Table for a given unit (init to stop warning)
1242 Switch_Found : Boolean;
1243 -- True if a given switch has been found
1245 -- Start of processing for Check
1247 begin
1248 pragma Assert (Lib_File /= No_File);
1250 -- If the ALI file is read-only, set temporarily
1251 -- Check_Object_Consistency to False: we don't care if the object file
1252 -- is not there; presumably, a library will be used for linking.
1254 if Read_Only then
1255 declare
1256 Saved_Check_Object_Consistency : constant Boolean :=
1257 Check_Object_Consistency;
1258 begin
1259 Check_Object_Consistency := False;
1260 Text := Read_Library_Info (Lib_File);
1261 Check_Object_Consistency := Saved_Check_Object_Consistency;
1262 end;
1264 else
1265 Text := Read_Library_Info (Lib_File);
1266 end if;
1268 Full_Lib_File := Full_Library_Info_Name;
1269 Full_Obj_File := Full_Object_File_Name;
1270 Lib_Stamp := Current_Library_File_Stamp;
1271 Obj_Stamp := Current_Object_File_Stamp;
1273 if Full_Lib_File = No_File then
1274 Verbose_Msg (Lib_File, "being checked ...", Prefix => " ");
1275 else
1276 Verbose_Msg (Full_Lib_File, "being checked ...", Prefix => " ");
1277 end if;
1279 ALI := No_ALI_Id;
1280 O_File := Full_Obj_File;
1281 O_Stamp := Obj_Stamp;
1283 if Text = null then
1284 if Full_Lib_File = No_File then
1285 Verbose_Msg (Lib_File, "missing.");
1287 elsif Obj_Stamp (Obj_Stamp'First) = ' ' then
1288 Verbose_Msg (Full_Obj_File, "missing.");
1290 else
1291 Verbose_Msg
1292 (Full_Lib_File, "(" & String (Lib_Stamp) & ") newer than",
1293 Full_Obj_File, "(" & String (Obj_Stamp) & ")");
1294 end if;
1296 else
1297 ALI := Scan_ALI (Lib_File, Text, Ignore_ED => False, Err => True);
1298 Free (Text);
1300 if ALI = No_ALI_Id then
1301 Verbose_Msg (Full_Lib_File, "incorrectly formatted ALI file");
1302 return;
1304 elsif ALIs.Table (ALI).Ver (1 .. ALIs.Table (ALI).Ver_Len) /=
1305 Verbose_Library_Version
1306 then
1307 Verbose_Msg (Full_Lib_File, "compiled with old GNAT version");
1308 ALI := No_ALI_Id;
1309 return;
1310 end if;
1312 -- Don't take Ali file into account if it was generated with
1313 -- errors.
1315 if ALIs.Table (ALI).Compile_Errors then
1316 Verbose_Msg (Full_Lib_File, "had errors, must be recompiled");
1317 ALI := No_ALI_Id;
1318 return;
1319 end if;
1321 -- Don't take Ali file into account if it was generated without
1322 -- object.
1324 if Operating_Mode /= Check_Semantics
1325 and then ALIs.Table (ALI).No_Object
1326 then
1327 Verbose_Msg (Full_Lib_File, "has no corresponding object");
1328 ALI := No_ALI_Id;
1329 return;
1330 end if;
1332 -- Check for matching compiler switches if needed
1334 if Check_Switches then
1336 -- First, collect all the switches
1338 Collect_Arguments (Source_File, Source_Index, The_Args);
1340 Prev_Switch := Dummy_Switch;
1342 Get_Name_String (ALIs.Table (ALI).Sfile);
1344 Switches_To_Check.Set_Last (0);
1346 for J in 1 .. Last_Argument loop
1348 -- Skip non switches -c, -I and -o switches
1350 if Arguments (J) (1) = '-'
1351 and then Arguments (J) (2) /= 'c'
1352 and then Arguments (J) (2) /= 'o'
1353 and then Arguments (J) (2) /= 'I'
1354 then
1355 Normalize_Compiler_Switches
1356 (Arguments (J).all,
1357 Normalized_Switches,
1358 Last_Norm_Switch);
1360 for K in 1 .. Last_Norm_Switch loop
1361 Switches_To_Check.Increment_Last;
1362 Switches_To_Check.Table (Switches_To_Check.Last) :=
1363 Normalized_Switches (K);
1364 end loop;
1365 end if;
1366 end loop;
1368 for J in 1 .. Switches_To_Check.Last loop
1370 -- Comparing switches is delicate because gcc reorders
1371 -- a number of switches, according to lang-specs.h, but
1372 -- gnatmake doesn't have the sufficient knowledge to
1373 -- perform the same reordering. Instead, we ignore orders
1374 -- between different "first letter" switches, but keep
1375 -- orders between same switches, e.g -O -O2 is different
1376 -- than -O2 -O, but -g -O is equivalent to -O -g.
1378 if Switches_To_Check.Table (J) (2) /= Prev_Switch (2) or else
1379 (Prev_Switch'Length >= 6 and then
1380 Prev_Switch (2 .. 5) = "gnat" and then
1381 Switches_To_Check.Table (J)'Length >= 6 and then
1382 Switches_To_Check.Table (J) (2 .. 5) = "gnat" and then
1383 Prev_Switch (6) /= Switches_To_Check.Table (J) (6))
1384 then
1385 Prev_Switch := Switches_To_Check.Table (J);
1386 Arg :=
1387 Units.Table (ALIs.Table (ALI).First_Unit).First_Arg;
1388 end if;
1390 Switch_Found := False;
1392 for K in Arg ..
1393 Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg
1394 loop
1396 Switches_To_Check.Table (J).all = Args.Table (K).all
1397 then
1398 Arg := K + 1;
1399 Switch_Found := True;
1400 exit;
1401 end if;
1402 end loop;
1404 if not Switch_Found then
1405 if Verbose_Mode then
1406 Verbose_Msg (ALIs.Table (ALI).Sfile,
1407 "switch mismatch """ &
1408 Switches_To_Check.Table (J).all & '"');
1409 end if;
1411 ALI := No_ALI_Id;
1412 return;
1413 end if;
1414 end loop;
1416 if Switches_To_Check.Last /=
1417 Integer (Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg -
1418 Units.Table (ALIs.Table (ALI).First_Unit).First_Arg + 1)
1419 then
1420 if Verbose_Mode then
1421 Verbose_Msg (ALIs.Table (ALI).Sfile,
1422 "different number of switches");
1424 for K in Units.Table (ALIs.Table (ALI).First_Unit).First_Arg
1425 .. Units.Table (ALIs.Table (ALI).First_Unit).Last_Arg
1426 loop
1427 Write_Str (Args.Table (K).all);
1428 Write_Char (' ');
1429 end loop;
1431 Write_Eol;
1433 for J in 1 .. Switches_To_Check.Last loop
1434 Write_Str (Switches_To_Check.Table (J).all);
1435 Write_Char (' ');
1436 end loop;
1438 Write_Eol;
1439 end if;
1441 ALI := No_ALI_Id;
1442 return;
1443 end if;
1444 end if;
1446 -- Get the source files and their message digests. Note that some
1447 -- sources may be missing if ALI is out-of-date.
1449 Set_Source_Table (ALI);
1451 Modified_Source := Time_Stamp_Mismatch (ALI, Read_Only);
1453 if Modified_Source /= No_File then
1454 ALI := No_ALI_Id;
1456 if Verbose_Mode then
1457 Source_Name := Full_Source_Name (Modified_Source);
1459 if Source_Name /= No_File then
1460 Verbose_Msg (Source_Name, "time stamp mismatch");
1461 else
1462 Verbose_Msg (Modified_Source, "missing");
1463 end if;
1464 end if;
1466 else
1467 New_Spec := First_New_Spec (ALI);
1469 if New_Spec /= No_File then
1470 ALI := No_ALI_Id;
1472 if Verbose_Mode then
1473 Source_Name := Full_Source_Name (New_Spec);
1475 if Source_Name /= No_File then
1476 Verbose_Msg (Source_Name, "new spec");
1477 else
1478 Verbose_Msg (New_Spec, "old spec missing");
1479 end if;
1480 end if;
1481 end if;
1482 end if;
1483 end if;
1484 end Check;
1486 ------------------------
1487 -- Check_For_S_Switch --
1488 ------------------------
1490 procedure Check_For_S_Switch is
1491 begin
1492 -- By default, we generate an object file
1494 Output_Is_Object := True;
1496 for Arg in 1 .. Last_Argument loop
1497 if Arguments (Arg).all = "-S" then
1498 Output_Is_Object := False;
1500 elsif Arguments (Arg).all = "-c" then
1501 Output_Is_Object := True;
1502 end if;
1503 end loop;
1504 end Check_For_S_Switch;
1506 --------------------------
1507 -- Check_Linker_Options --
1508 --------------------------
1510 procedure Check_Linker_Options
1511 (E_Stamp : Time_Stamp_Type;
1512 O_File : out File_Name_Type;
1513 O_Stamp : out Time_Stamp_Type)
1515 procedure Check_File (File : File_Name_Type);
1516 -- Update O_File and O_Stamp if the given file is younger than E_Stamp
1517 -- and O_Stamp, or if O_File is No_File and File does not exist.
1519 function Get_Library_File (Name : String) return File_Name_Type;
1520 -- Return the full file name including path of a library based
1521 -- on the name specified with the -l linker option, using the
1522 -- Ada object path. Return No_File if no such file can be found.
1524 type Char_Array is array (Natural) of Character;
1525 type Char_Array_Access is access constant Char_Array;
1527 Template : Char_Array_Access;
1528 pragma Import (C, Template, "__gnat_library_template");
1530 ----------------
1531 -- Check_File --
1532 ----------------
1534 procedure Check_File (File : File_Name_Type) is
1535 Stamp : Time_Stamp_Type;
1536 Name : File_Name_Type := File;
1538 begin
1539 Get_Name_String (Name);
1541 -- Remove any trailing NUL characters
1543 while Name_Len >= Name_Buffer'First
1544 and then Name_Buffer (Name_Len) = NUL
1545 loop
1546 Name_Len := Name_Len - 1;
1547 end loop;
1549 if Name_Len <= 0 then
1550 return;
1552 elsif Name_Buffer (1) = '-' then
1554 -- Do not check if File is a switch other than "-l"
1556 if Name_Buffer (2) /= 'l' then
1557 return;
1558 end if;
1560 -- The argument is a library switch, get actual name. It
1561 -- is necessary to make a copy of the relevant part of
1562 -- Name_Buffer as Get_Library_Name uses Name_Buffer as well.
1564 declare
1565 Base_Name : constant String := Name_Buffer (3 .. Name_Len);
1567 begin
1568 Name := Get_Library_File (Base_Name);
1569 end;
1571 if Name = No_File then
1572 return;
1573 end if;
1574 end if;
1576 Stamp := File_Stamp (Name);
1578 -- Find the youngest object file that is younger than the
1579 -- executable. If no such file exist, record the first object
1580 -- file that is not found.
1582 if (O_Stamp < Stamp and then E_Stamp < Stamp)
1583 or else (O_File = No_File and then Stamp (Stamp'First) = ' ')
1584 then
1585 O_Stamp := Stamp;
1586 O_File := Name;
1588 -- Strip the trailing NUL if present
1590 Get_Name_String (O_File);
1592 if Name_Buffer (Name_Len) = NUL then
1593 Name_Len := Name_Len - 1;
1594 O_File := Name_Find;
1595 end if;
1596 end if;
1597 end Check_File;
1599 ----------------------
1600 -- Get_Library_Name --
1601 ----------------------
1603 -- See comments in a-adaint.c about template syntax
1605 function Get_Library_File (Name : String) return File_Name_Type is
1606 File : File_Name_Type := No_File;
1608 begin
1609 Name_Len := 0;
1611 for Ptr in Template'Range loop
1612 case Template (Ptr) is
1613 when '*' =>
1614 Add_Str_To_Name_Buffer (Name);
1616 when ';' =>
1617 File := Full_Lib_File_Name (Name_Find);
1618 exit when File /= No_File;
1619 Name_Len := 0;
1621 when NUL =>
1622 exit;
1624 when others =>
1625 Add_Char_To_Name_Buffer (Template (Ptr));
1626 end case;
1627 end loop;
1629 -- The for loop exited because the end of the template
1630 -- was reached. File contains the last possible file name
1631 -- for the library.
1633 if File = No_File and then Name_Len > 0 then
1634 File := Full_Lib_File_Name (Name_Find);
1635 end if;
1637 return File;
1638 end Get_Library_File;
1640 -- Start of processing for Check_Linker_Options
1642 begin
1643 O_File := No_File;
1644 O_Stamp := (others => ' ');
1646 -- Process linker options from the ALI files.
1648 for Opt in 1 .. Linker_Options.Last loop
1649 Check_File (Linker_Options.Table (Opt).Name);
1650 end loop;
1652 -- Process options given on the command line.
1654 for Opt in Linker_Switches.First .. Linker_Switches.Last loop
1656 -- Check if the previous Opt has one of the two switches
1657 -- that take an extra parameter. (See GCC manual.)
1659 if Opt = Linker_Switches.First
1660 or else (Linker_Switches.Table (Opt - 1).all /= "-u"
1661 and then
1662 Linker_Switches.Table (Opt - 1).all /= "-Xlinker"
1663 and then
1664 Linker_Switches.Table (Opt - 1).all /= "-L")
1665 then
1666 Name_Len := 0;
1667 Add_Str_To_Name_Buffer (Linker_Switches.Table (Opt).all);
1668 Check_File (Name_Find);
1669 end if;
1670 end loop;
1672 end Check_Linker_Options;
1674 -----------------
1675 -- Check_Steps --
1676 -----------------
1678 procedure Check_Steps is
1679 begin
1680 -- If either -c, -b or -l has been specified, we will not necessarily
1681 -- execute all steps.
1683 if Make_Steps then
1684 Do_Compile_Step := Do_Compile_Step and Compile_Only;
1685 Do_Bind_Step := Do_Bind_Step and Bind_Only;
1686 Do_Link_Step := Do_Link_Step and Link_Only;
1688 -- If -c has been specified, but not -b, ignore any potential -l
1690 if Do_Compile_Step and then not Do_Bind_Step then
1691 Do_Link_Step := False;
1692 end if;
1693 end if;
1694 end Check_Steps;
1696 -----------------------
1697 -- Collect_Arguments --
1698 -----------------------
1700 procedure Collect_Arguments
1701 (Source_File : File_Name_Type;
1702 Source_Index : Int;
1703 Args : Argument_List)
1705 begin
1706 Arguments_Collected := True;
1707 Arguments_Project := No_Project;
1708 Last_Argument := 0;
1709 Add_Arguments (Args);
1711 if Main_Project /= No_Project then
1712 declare
1713 Source_File_Name : constant String :=
1714 Get_Name_String (Source_File);
1715 Compiler_Package : Prj.Package_Id;
1716 Switches : Prj.Variable_Value;
1717 Data : Project_Data;
1719 begin
1720 Prj.Env.
1721 Get_Reference
1722 (Source_File_Name => Source_File_Name,
1723 Project => Arguments_Project,
1724 Path => Arguments_Path_Name);
1726 -- If the source is not a source of a project file, check if
1727 -- this is allowed.
1729 if Arguments_Project = No_Project then
1730 if not External_Unit_Compilation_Allowed then
1731 Make_Failed ("external source (", Source_File_Name,
1732 ") is not part of any project; cannot be " &
1733 "compiled without gnatmake switch -x");
1734 end if;
1736 -- If it is allowed, simply add the saved gcc switches
1738 Add_Arguments (The_Saved_Gcc_Switches.all);
1740 else
1741 -- We get the project directory for the relative path
1742 -- switches and arguments.
1744 Data := Projects.Table (Arguments_Project);
1746 -- If the source is in an extended project, we go to
1747 -- the ultimate extending project.
1749 while Data.Extended_By /= No_Project loop
1750 Arguments_Project := Data.Extended_By;
1751 Data := Projects.Table (Arguments_Project);
1752 end loop;
1754 -- If building a dynamic or relocatable library, compile with
1755 -- PIC option, if it exists.
1757 if Data.Library and then Data.Library_Kind /= Static then
1758 declare
1759 PIC : constant String := MLib.Tgt.PIC_Option;
1761 begin
1762 if PIC /= "" then
1763 Add_Arguments ((1 => new String'(PIC)));
1764 end if;
1765 end;
1766 end if;
1768 if Data.Dir_Path = null then
1769 Data.Dir_Path :=
1770 new String'(Get_Name_String (Data.Display_Directory));
1771 Projects.Table (Arguments_Project) := Data;
1772 end if;
1774 -- We now look for package Compiler
1775 -- and get the switches from this package.
1777 Compiler_Package :=
1778 Prj.Util.Value_Of
1779 (Name => Name_Compiler,
1780 In_Packages => Data.Decl.Packages);
1782 if Compiler_Package /= No_Package then
1784 -- If package Gnatmake.Compiler exists, we get
1785 -- the specific switches for the current source,
1786 -- or the global switches, if any.
1788 Switches := Switches_Of
1789 (Source_File => Source_File,
1790 Source_File_Name => Source_File_Name,
1791 Source_Index => Source_Index,
1792 Naming => Data.Naming,
1793 In_Package => Compiler_Package,
1794 Allow_ALI => False);
1796 end if;
1798 case Switches.Kind is
1800 -- We have a list of switches. We add these switches,
1801 -- plus the saved gcc switches.
1803 when List =>
1805 declare
1806 Current : String_List_Id := Switches.Values;
1807 Element : String_Element;
1808 Number : Natural := 0;
1810 begin
1811 while Current /= Nil_String loop
1812 Element := String_Elements.Table (Current);
1813 Number := Number + 1;
1814 Current := Element.Next;
1815 end loop;
1817 declare
1818 New_Args : Argument_List (1 .. Number);
1820 begin
1821 Current := Switches.Values;
1823 for Index in New_Args'Range loop
1824 Element := String_Elements.Table (Current);
1825 Get_Name_String (Element.Value);
1826 New_Args (Index) :=
1827 new String'(Name_Buffer (1 .. Name_Len));
1828 Test_If_Relative_Path
1829 (New_Args (Index), Parent => Data.Dir_Path);
1830 Current := Element.Next;
1831 end loop;
1833 Add_Arguments
1834 (Configuration_Pragmas_Switch
1835 (Arguments_Project) &
1836 New_Args & The_Saved_Gcc_Switches.all);
1837 end;
1838 end;
1840 -- We have a single switch. We add this switch,
1841 -- plus the saved gcc switches.
1843 when Single =>
1844 Get_Name_String (Switches.Value);
1846 declare
1847 New_Args : Argument_List :=
1848 (1 => new String'
1849 (Name_Buffer (1 .. Name_Len)));
1851 begin
1852 Test_If_Relative_Path
1853 (New_Args (1), Parent => Data.Dir_Path);
1854 Add_Arguments
1855 (Configuration_Pragmas_Switch (Arguments_Project) &
1856 New_Args & The_Saved_Gcc_Switches.all);
1857 end;
1859 -- We have no switches from Gnatmake.Compiler.
1860 -- We add the saved gcc switches.
1862 when Undefined =>
1863 Add_Arguments
1864 (Configuration_Pragmas_Switch (Arguments_Project) &
1865 The_Saved_Gcc_Switches.all);
1866 end case;
1867 end if;
1868 end;
1869 end if;
1871 -- Set Output_Is_Object, depending if there is a -S switch.
1872 -- If the bind step is not performed, and there is a -S switch,
1873 -- then we will not check for a valid object file.
1875 Check_For_S_Switch;
1876 end Collect_Arguments;
1878 ---------------------
1879 -- Compile_Sources --
1880 ---------------------
1882 procedure Compile_Sources
1883 (Main_Source : File_Name_Type;
1884 Args : Argument_List;
1885 First_Compiled_File : out Name_Id;
1886 Most_Recent_Obj_File : out Name_Id;
1887 Most_Recent_Obj_Stamp : out Time_Stamp_Type;
1888 Main_Unit : out Boolean;
1889 Compilation_Failures : out Natural;
1890 Main_Index : Int := 0;
1891 Check_Readonly_Files : Boolean := False;
1892 Do_Not_Execute : Boolean := False;
1893 Force_Compilations : Boolean := False;
1894 Keep_Going : Boolean := False;
1895 In_Place_Mode : Boolean := False;
1896 Initialize_ALI_Data : Boolean := True;
1897 Max_Process : Positive := 1)
1899 No_Mapping_File : constant Natural := 0;
1901 type Compilation_Data is record
1902 Pid : Process_Id;
1903 Full_Source_File : File_Name_Type;
1904 Lib_File : File_Name_Type;
1905 Source_Unit : Unit_Name_Type;
1906 Mapping_File : Natural := No_Mapping_File;
1907 Project : Project_Id := No_Project;
1908 Syntax_Only : Boolean := False;
1909 Output_Is_Object : Boolean := True;
1910 end record;
1912 Running_Compile : array (1 .. Max_Process) of Compilation_Data;
1913 -- Used to save information about outstanding compilations.
1915 Outstanding_Compiles : Natural := 0;
1916 -- Current number of outstanding compiles
1918 Source_Unit : Unit_Name_Type;
1919 -- Current source unit
1921 Source_File : File_Name_Type;
1922 -- Current source file
1924 Full_Source_File : File_Name_Type;
1925 -- Full name of the current source file
1927 Lib_File : File_Name_Type;
1928 -- Current library file
1930 Full_Lib_File : File_Name_Type;
1931 -- Full name of the current library file
1933 Obj_File : File_Name_Type;
1934 -- Full name of the object file corresponding to Lib_File.
1936 Obj_Stamp : Time_Stamp_Type;
1937 -- Time stamp of the current object file.
1939 Sfile : File_Name_Type;
1940 -- Contains the source file of the units withed by Source_File
1942 ALI : ALI_Id;
1943 -- ALI Id of the current ALI file
1945 Read_Only : Boolean := False;
1947 Compilation_OK : Boolean;
1948 Need_To_Compile : Boolean;
1950 Pid : Process_Id;
1951 Text : Text_Buffer_Ptr;
1953 Mfile : Natural := No_Mapping_File;
1955 Need_To_Check_Standard_Library : Boolean :=
1956 Check_Readonly_Files and not Unique_Compile;
1958 Mapping_File_Arg : String_Access;
1960 procedure Add_Process
1961 (Pid : Process_Id;
1962 Sfile : File_Name_Type;
1963 Afile : File_Name_Type;
1964 Uname : Unit_Name_Type;
1965 Mfile : Natural := No_Mapping_File);
1966 -- Adds process Pid to the current list of outstanding compilation
1967 -- processes and record the full name of the source file Sfile that
1968 -- we are compiling, the name of its library file Afile and the
1969 -- name of its unit Uname. If Mfile is not equal to No_Mapping_File,
1970 -- it is the index of the mapping file used during compilation in the
1971 -- array The_Mapping_File_Names.
1973 procedure Await_Compile
1974 (Sfile : out File_Name_Type;
1975 Afile : out File_Name_Type;
1976 Uname : out Unit_Name_Type;
1977 OK : out Boolean);
1978 -- Awaits that an outstanding compilation process terminates. When
1979 -- it does set Sfile to the name of the source file that was compiled
1980 -- Afile to the name of its library file and Uname to the name of its
1981 -- unit. Note that this time stamp can be used to check whether the
1982 -- compilation did generate an object file. OK is set to True if the
1983 -- compilation succeeded. Note that Sfile, Afile and Uname could be
1984 -- resp. No_File, No_File and No_Name if there were no compilations
1985 -- to wait for.
1987 function Bad_Compilation_Count return Natural;
1988 -- Returns the number of compilation failures.
1990 procedure Check_Standard_Library;
1991 -- Check if s-stalib.adb needs to be compiled
1993 procedure Collect_Arguments_And_Compile
1994 (Source_File : File_Name_Type; Source_Index : Int);
1995 -- Collect arguments from project file (if any) and compile
1997 function Compile
1998 (S : Name_Id;
1999 L : Name_Id;
2000 Source_Index : Int;
2001 Args : Argument_List) return Process_Id;
2002 -- Compiles S using Args. If S is a GNAT predefined source
2003 -- "-gnatpg" is added to Args. Non blocking call. L corresponds to the
2004 -- expected library file name. Process_Id of the process spawned to
2005 -- execute the compile.
2007 package Good_ALI is new Table.Table (
2008 Table_Component_Type => ALI_Id,
2009 Table_Index_Type => Natural,
2010 Table_Low_Bound => 1,
2011 Table_Initial => 50,
2012 Table_Increment => 100,
2013 Table_Name => "Make.Good_ALI");
2014 -- Contains the set of valid ALI files that have not yet been scanned.
2016 function Good_ALI_Present return Boolean;
2017 -- Returns True if any ALI file was recorded in the previous set.
2019 procedure Get_Mapping_File (Project : Project_Id);
2020 -- Get a mapping file name. If there is one to be reused, reuse it.
2021 -- Otherwise, create a new mapping file.
2023 function Get_Next_Good_ALI return ALI_Id;
2024 -- Returns the next good ALI_Id record;
2026 procedure Record_Failure
2027 (File : File_Name_Type;
2028 Unit : Unit_Name_Type;
2029 Found : Boolean := True);
2030 -- Records in the previous table that the compilation for File failed.
2031 -- If Found is False then the compilation of File failed because we
2032 -- could not find it. Records also Unit when possible.
2034 procedure Record_Good_ALI (A : ALI_Id);
2035 -- Records in the previous set the Id of an ALI file.
2037 -----------------
2038 -- Add_Process --
2039 -----------------
2041 procedure Add_Process
2042 (Pid : Process_Id;
2043 Sfile : File_Name_Type;
2044 Afile : File_Name_Type;
2045 Uname : Unit_Name_Type;
2046 Mfile : Natural := No_Mapping_File)
2048 OC1 : constant Positive := Outstanding_Compiles + 1;
2050 begin
2051 pragma Assert (OC1 <= Max_Process);
2052 pragma Assert (Pid /= Invalid_Pid);
2054 Running_Compile (OC1).Pid := Pid;
2055 Running_Compile (OC1).Full_Source_File := Sfile;
2056 Running_Compile (OC1).Lib_File := Afile;
2057 Running_Compile (OC1).Source_Unit := Uname;
2058 Running_Compile (OC1).Mapping_File := Mfile;
2059 Running_Compile (OC1).Project := Arguments_Project;
2060 Running_Compile (OC1).Syntax_Only := Syntax_Only;
2061 Running_Compile (OC1).Output_Is_Object := Output_Is_Object;
2063 Outstanding_Compiles := OC1;
2064 end Add_Process;
2066 --------------------
2067 -- Await_Compile --
2068 -------------------
2070 procedure Await_Compile
2071 (Sfile : out File_Name_Type;
2072 Afile : out File_Name_Type;
2073 Uname : out File_Name_Type;
2074 OK : out Boolean)
2076 Pid : Process_Id;
2077 Project : Project_Id;
2079 begin
2080 pragma Assert (Outstanding_Compiles > 0);
2082 Sfile := No_File;
2083 Afile := No_File;
2084 Uname := No_Name;
2085 OK := False;
2087 -- The loop here is a work-around for a problem on VMS; in some
2088 -- circumstances (shared library and several executables, for
2089 -- example), there are child processes other than compilation
2090 -- processes that are received. Until this problem is resolved,
2091 -- we will ignore such processes.
2093 loop
2094 Wait_Process (Pid, OK);
2096 if Pid = Invalid_Pid then
2097 return;
2098 end if;
2100 for J in Running_Compile'First .. Outstanding_Compiles loop
2101 if Pid = Running_Compile (J).Pid then
2102 Sfile := Running_Compile (J).Full_Source_File;
2103 Afile := Running_Compile (J).Lib_File;
2104 Uname := Running_Compile (J).Source_Unit;
2105 Syntax_Only := Running_Compile (J).Syntax_Only;
2106 Output_Is_Object := Running_Compile (J).Output_Is_Object;
2107 Project := Running_Compile (J).Project;
2109 -- If a mapping file was used by this compilation,
2110 -- get its file name for reuse by a subsequent compilation
2112 if Running_Compile (J).Mapping_File /= No_Mapping_File then
2113 Last_Free_Indices (Project) :=
2114 Last_Free_Indices (Project) + 1;
2115 The_Free_Mapping_File_Indices
2116 (Project, Last_Free_Indices (Project)) :=
2117 Running_Compile (J).Mapping_File;
2118 end if;
2120 -- To actually remove this Pid and related info from
2121 -- Running_Compile replace its entry with the last valid
2122 -- entry in Running_Compile.
2124 if J = Outstanding_Compiles then
2125 null;
2127 else
2128 Running_Compile (J) :=
2129 Running_Compile (Outstanding_Compiles);
2130 end if;
2132 Outstanding_Compiles := Outstanding_Compiles - 1;
2133 return;
2134 end if;
2135 end loop;
2137 -- This child process was not one of our compilation processes;
2138 -- just ignore it for now.
2140 -- raise Program_Error;
2141 end loop;
2142 end Await_Compile;
2144 ---------------------------
2145 -- Bad_Compilation_Count --
2146 ---------------------------
2148 function Bad_Compilation_Count return Natural is
2149 begin
2150 return Bad_Compilation.Last - Bad_Compilation.First + 1;
2151 end Bad_Compilation_Count;
2153 ----------------------------
2154 -- Check_Standard_Library --
2155 ----------------------------
2157 procedure Check_Standard_Library is
2158 begin
2159 Need_To_Check_Standard_Library := False;
2161 if not Targparm.Suppress_Standard_Library_On_Target then
2162 declare
2163 Sfile : Name_Id;
2164 Add_It : Boolean := True;
2166 begin
2167 Name_Len := Standard_Library_Package_Body_Name'Length;
2168 Name_Buffer (1 .. Name_Len) :=
2169 Standard_Library_Package_Body_Name;
2170 Sfile := Name_Enter;
2172 -- If we have a special runtime, we add the standard
2173 -- library only if we can find it.
2175 if RTS_Switch then
2176 Add_It :=
2177 Find_File (Sfile, Osint.Source) /= No_File;
2178 end if;
2180 if Add_It then
2181 if Is_Marked (Sfile) then
2182 if Is_In_Obsoleted (Sfile) then
2183 Executable_Obsolete := True;
2184 end if;
2186 else
2187 Insert_Q (Sfile, Index => 0);
2188 Mark (Sfile, Index => 0);
2189 end if;
2190 end if;
2191 end;
2192 end if;
2193 end Check_Standard_Library;
2195 -----------------------------------
2196 -- Collect_Arguments_And_Compile --
2197 -----------------------------------
2199 procedure Collect_Arguments_And_Compile
2200 (Source_File : File_Name_Type; Source_Index : Int)
2202 begin
2204 -- If arguments have not yet been collected (in Check), collect them
2205 -- now.
2207 if not Arguments_Collected then
2208 Collect_Arguments (Source_File, Source_Index, Args);
2209 end if;
2211 -- If we use mapping file (-P or -C switches), then get one
2213 if Create_Mapping_File then
2214 Get_Mapping_File (Arguments_Project);
2215 end if;
2217 -- If the source is part of a project file, we set the ADA_*_PATHs,
2218 -- check for an eventual library project, and use the full path.
2220 if Arguments_Project /= No_Project then
2221 Prj.Env.Set_Ada_Paths (Arguments_Project, True);
2223 if MLib.Tgt.Support_For_Libraries /= MLib.Tgt.None then
2224 declare
2225 The_Data : Project_Data :=
2226 Projects.Table (Arguments_Project);
2227 Prj : Project_Id := Arguments_Project;
2229 begin
2230 while The_Data.Extended_By /= No_Project loop
2231 Prj := The_Data.Extended_By;
2232 The_Data := Projects.Table (Prj);
2233 end loop;
2235 if The_Data.Library
2236 and then not The_Data.Need_To_Build_Lib
2237 then
2238 -- Add to the Q all sources of the project that
2239 -- have not been marked
2241 Insert_Project_Sources
2242 (The_Project => Prj,
2243 All_Projects => False,
2244 Into_Q => True);
2246 -- Now mark the project as processed
2248 Projects.Table (Prj).Need_To_Build_Lib := True;
2249 end if;
2250 end;
2251 end if;
2253 -- Change to the object directory of the project file,
2254 -- if necessary.
2256 Change_To_Object_Directory (Arguments_Project);
2258 Pid := Compile (Arguments_Path_Name, Lib_File, Source_Index,
2259 Arguments (1 .. Last_Argument));
2261 else
2262 -- If this is a source outside of any project file, make sure
2263 -- it will be compiled in the object directory of the main project
2264 -- file.
2266 if Main_Project /= No_Project then
2267 Change_To_Object_Directory (Arguments_Project);
2268 end if;
2270 Pid := Compile (Full_Source_File, Lib_File, Source_Index,
2271 Arguments (1 .. Last_Argument));
2272 end if;
2273 end Collect_Arguments_And_Compile;
2275 -------------
2276 -- Compile --
2277 -------------
2279 function Compile
2280 (S : Name_Id;
2281 L : Name_Id;
2282 Source_Index : Int;
2283 Args : Argument_List) return Process_Id
2285 Comp_Args : Argument_List (Args'First .. Args'Last + 9);
2286 Comp_Next : Integer := Args'First;
2287 Comp_Last : Integer;
2289 function Ada_File_Name (Name : Name_Id) return Boolean;
2290 -- Returns True if Name is the name of an ada source file
2291 -- (i.e. suffix is .ads or .adb)
2293 -------------------
2294 -- Ada_File_Name --
2295 -------------------
2297 function Ada_File_Name (Name : Name_Id) return Boolean is
2298 begin
2299 Get_Name_String (Name);
2300 return
2301 Name_Len > 4
2302 and then Name_Buffer (Name_Len - 3 .. Name_Len - 1) = ".ad"
2303 and then (Name_Buffer (Name_Len) = 'b'
2304 or else
2305 Name_Buffer (Name_Len) = 's');
2306 end Ada_File_Name;
2308 -- Start of processing for Compile
2310 begin
2311 Enter_Into_Obsoleted (S);
2313 -- By default, Syntax_Only is False
2315 Syntax_Only := False;
2317 for J in Args'Range loop
2318 if Args (J).all = "-gnats" then
2320 -- If we compile with -gnats, the bind step and the link step
2321 -- are inhibited. Also, we set Syntax_Only to True, so that
2322 -- we don't fail when we don't find the ALI file, after
2323 -- compilation.
2325 Do_Bind_Step := False;
2326 Do_Link_Step := False;
2327 Syntax_Only := True;
2329 elsif Args (J).all = "-gnatc" then
2331 -- If we compile with -gnatc, the bind step and the link step
2332 -- are inhibited. We set Syntax_Only to False for the case when
2333 -- -gnats was previously specified.
2335 Do_Bind_Step := False;
2336 Do_Link_Step := False;
2337 Syntax_Only := False;
2338 end if;
2339 end loop;
2341 Comp_Args (Comp_Next) := Comp_Flag;
2342 Comp_Next := Comp_Next + 1;
2344 -- Optimize the simple case where the gcc command line looks like
2345 -- gcc -c -I. ... -I- file.adb --into-> gcc -c ... file.adb
2347 if Args (Args'First).all = "-I" & Normalized_CWD
2348 and then Args (Args'Last).all = "-I-"
2349 and then S = Strip_Directory (S)
2350 then
2351 Comp_Last := Comp_Next + Args'Length - 3;
2352 Comp_Args (Comp_Next .. Comp_Last) :=
2353 Args (Args'First + 1 .. Args'Last - 1);
2355 else
2356 Comp_Last := Comp_Next + Args'Length - 1;
2357 Comp_Args (Comp_Next .. Comp_Last) := Args;
2358 end if;
2360 -- Set -gnatpg for predefined files (for this purpose the renamings
2361 -- such as Text_IO do not count as predefined). Note that we strip
2362 -- the directory name from the source file name becase the call to
2363 -- Fname.Is_Predefined_File_Name cannot deal with directory prefixes.
2365 declare
2366 Fname : constant File_Name_Type := Strip_Directory (S);
2368 begin
2369 if Is_Predefined_File_Name (Fname, False) then
2370 if Check_Readonly_Files then
2371 Comp_Last := Comp_Last + 1;
2372 Comp_Args (Comp_Last) := GNAT_Flag;
2374 else
2375 Make_Failed
2376 ("not allowed to compile """ &
2377 Get_Name_String (Fname) &
2378 """; use -a switch, or compile file with " &
2379 """-gnatg"" switch");
2380 end if;
2381 end if;
2382 end;
2384 -- Now check if the file name has one of the suffixes familiar to
2385 -- the gcc driver. If this is not the case then add the ada flag
2386 -- "-x ada".
2388 if not Ada_File_Name (S) and then not Targparm.AAMP_On_Target then
2389 Comp_Last := Comp_Last + 1;
2390 Comp_Args (Comp_Last) := Ada_Flag_1;
2391 Comp_Last := Comp_Last + 1;
2392 Comp_Args (Comp_Last) := Ada_Flag_2;
2393 end if;
2395 if Source_Index /= 0 then
2396 declare
2397 Num : constant String := Source_Index'Img;
2398 begin
2399 Comp_Last := Comp_Last + 1;
2400 Comp_Args (Comp_Last) :=
2401 new String'("-gnateI" & Num (Num'First + 1 .. Num'Last));
2402 end;
2403 end if;
2405 if Source_Index /= 0 or else
2406 L /= Strip_Directory (L) or else
2407 Object_Directory_Path /= null
2408 then
2410 -- Build -o argument.
2412 Get_Name_String (L);
2414 for J in reverse 1 .. Name_Len loop
2415 if Name_Buffer (J) = '.' then
2416 Name_Len := J + Object_Suffix'Length - 1;
2417 Name_Buffer (J .. Name_Len) := Object_Suffix;
2418 exit;
2419 end if;
2420 end loop;
2422 Comp_Last := Comp_Last + 1;
2423 Comp_Args (Comp_Last) := Output_Flag;
2424 Comp_Last := Comp_Last + 1;
2426 -- If an object directory was specified, prepend the object file
2427 -- name with this object directory.
2429 if Object_Directory_Path /= null then
2430 Comp_Args (Comp_Last) :=
2431 new String'(Object_Directory_Path.all &
2432 Name_Buffer (1 .. Name_Len));
2434 else
2435 Comp_Args (Comp_Last) :=
2436 new String'(Name_Buffer (1 .. Name_Len));
2437 end if;
2438 end if;
2440 if Create_Mapping_File then
2441 Comp_Last := Comp_Last + 1;
2442 Comp_Args (Comp_Last) := Mapping_File_Arg;
2443 end if;
2445 Get_Name_String (S);
2447 Comp_Last := Comp_Last + 1;
2448 Comp_Args (Comp_Last) := new String'(Name_Buffer (1 .. Name_Len));
2450 GNAT.OS_Lib.Normalize_Arguments (Comp_Args (Args'First .. Comp_Last));
2452 Comp_Last := Comp_Last + 1;
2453 Comp_Args (Comp_Last) := new String'("-gnatez");
2455 Display (Gcc.all, Comp_Args (Args'First .. Comp_Last));
2457 if Gcc_Path = null then
2458 Make_Failed ("error, unable to locate ", Gcc.all);
2459 end if;
2461 return
2462 GNAT.OS_Lib.Non_Blocking_Spawn
2463 (Gcc_Path.all, Comp_Args (Args'First .. Comp_Last));
2464 end Compile;
2466 ----------------------
2467 -- Get_Mapping_File --
2468 ----------------------
2470 procedure Get_Mapping_File (Project : Project_Id) is
2471 begin
2472 -- If there is a mapping file ready to be reused, reuse it
2474 if Last_Free_Indices (Project) > 0 then
2475 Mfile := The_Free_Mapping_File_Indices
2476 (Project, Last_Free_Indices (Project));
2477 Last_Free_Indices (Project) := Last_Free_Indices (Project) - 1;
2479 -- Otherwise, create and initialize a new one
2481 else
2482 Init_Mapping_File (Project => Project, File_Index => Mfile);
2483 end if;
2485 -- Put the name in the mapping file argument for the invocation
2486 -- of the compiler.
2488 Free (Mapping_File_Arg);
2489 Mapping_File_Arg :=
2490 new String'("-gnatem=" &
2491 Get_Name_String
2492 (The_Mapping_File_Names (Project, Mfile)));
2494 end Get_Mapping_File;
2496 -----------------------
2497 -- Get_Next_Good_ALI --
2498 -----------------------
2500 function Get_Next_Good_ALI return ALI_Id is
2501 ALI : ALI_Id;
2503 begin
2504 pragma Assert (Good_ALI_Present);
2505 ALI := Good_ALI.Table (Good_ALI.Last);
2506 Good_ALI.Decrement_Last;
2507 return ALI;
2508 end Get_Next_Good_ALI;
2510 ----------------------
2511 -- Good_ALI_Present --
2512 ----------------------
2514 function Good_ALI_Present return Boolean is
2515 begin
2516 return Good_ALI.First <= Good_ALI.Last;
2517 end Good_ALI_Present;
2519 --------------------
2520 -- Record_Failure --
2521 --------------------
2523 procedure Record_Failure
2524 (File : File_Name_Type;
2525 Unit : Unit_Name_Type;
2526 Found : Boolean := True)
2528 begin
2529 Bad_Compilation.Increment_Last;
2530 Bad_Compilation.Table (Bad_Compilation.Last) := (File, Unit, Found);
2531 end Record_Failure;
2533 ---------------------
2534 -- Record_Good_ALI --
2535 ---------------------
2537 procedure Record_Good_ALI (A : ALI_Id) is
2538 begin
2539 Good_ALI.Increment_Last;
2540 Good_ALI.Table (Good_ALI.Last) := A;
2541 end Record_Good_ALI;
2543 -- Start of processing for Compile_Sources
2545 begin
2546 pragma Assert (Args'First = 1);
2548 -- Package and Queue initializations.
2550 Good_ALI.Init;
2551 Output.Set_Standard_Error;
2553 if First_Q_Initialization then
2554 Init_Q;
2555 end if;
2557 if Initialize_ALI_Data then
2558 Initialize_ALI;
2559 Initialize_ALI_Source;
2560 end if;
2562 -- The following two flags affect the behavior of ALI.Set_Source_Table.
2563 -- We set Check_Source_Files to True to ensure that source file
2564 -- time stamps are checked, and we set All_Sources to False to
2565 -- avoid checking the presence of the source files listed in the
2566 -- source dependency section of an ali file (which would be a mistake
2567 -- since the ali file may be obsolete).
2569 Check_Source_Files := True;
2570 All_Sources := False;
2572 -- Only insert in the Q if it is not already done, to avoid simultaneous
2573 -- compilations if -jnnn is used.
2575 if not Is_Marked (Main_Source, Main_Index) then
2576 Insert_Q (Main_Source, Index => Main_Index);
2577 Mark (Main_Source, Main_Index);
2578 end if;
2580 First_Compiled_File := No_File;
2581 Most_Recent_Obj_File := No_File;
2582 Most_Recent_Obj_Stamp := Empty_Time_Stamp;
2583 Main_Unit := False;
2585 -- Keep looping until there is no more work to do (the Q is empty)
2586 -- and all the outstanding compilations have terminated
2588 Make_Loop : while not Empty_Q or else Outstanding_Compiles > 0 loop
2590 -- If the user does not want to keep going in case of errors then
2591 -- wait for the remaining outstanding compiles and then exit.
2593 if Bad_Compilation_Count > 0 and then not Keep_Going then
2594 while Outstanding_Compiles > 0 loop
2595 Await_Compile
2596 (Full_Source_File, Lib_File, Source_Unit, Compilation_OK);
2598 if not Compilation_OK then
2599 Record_Failure (Full_Source_File, Source_Unit);
2600 end if;
2601 end loop;
2603 exit Make_Loop;
2604 end if;
2606 -- PHASE 1: Check if there is more work that we can do (ie the Q
2607 -- is non empty). If there is, do it only if we have not yet used
2608 -- up all the available processes.
2610 if not Empty_Q and then Outstanding_Compiles < Max_Process then
2611 declare
2612 Source_Index : Int;
2613 -- Index of the current unit in the current source file
2615 begin
2616 Extract_From_Q (Source_File, Source_Unit, Source_Index);
2617 Full_Source_File := Osint.Full_Source_Name (Source_File);
2618 Lib_File := Osint.Lib_File_Name
2619 (Source_File, Source_Index);
2620 Full_Lib_File := Osint.Full_Lib_File_Name (Lib_File);
2622 -- If this source has already been compiled, the executable is
2623 -- obsolete.
2625 if Is_In_Obsoleted (Source_File) then
2626 Executable_Obsolete := True;
2627 end if;
2629 -- If the library file is an Ada library skip it
2631 if Full_Lib_File /= No_File
2632 and then In_Ada_Lib_Dir (Full_Lib_File)
2633 then
2634 Verbose_Msg
2635 (Lib_File, "is in an Ada library", Prefix => " ");
2637 -- If the library file is a read-only library skip it, but
2638 -- only if, when using project files, this library file is
2639 -- in the right object directory (a read-only ALI file
2640 -- in the object directory of a project being extended
2641 -- should not be skipped).
2643 elsif Full_Lib_File /= No_File
2644 and then not Check_Readonly_Files
2645 and then Is_Readonly_Library (Full_Lib_File)
2646 and then Is_In_Object_Directory (Source_File, Full_Lib_File)
2647 then
2648 Verbose_Msg
2649 (Lib_File, "is a read-only library", Prefix => " ");
2651 -- The source file that we are checking cannot be located
2653 elsif Full_Source_File = No_File then
2654 Record_Failure (Source_File, Source_Unit, False);
2656 -- Source and library files can be located but are internal
2657 -- files
2659 elsif not Check_Readonly_Files
2660 and then Full_Lib_File /= No_File
2661 and then Is_Internal_File_Name (Source_File)
2662 then
2663 if Force_Compilations then
2664 Fail
2665 ("not allowed to compile """ &
2666 Get_Name_String (Source_File) &
2667 """; use -a switch, or compile file with " &
2668 """-gnatg"" switch");
2669 end if;
2671 Verbose_Msg
2672 (Lib_File, "is an internal library", Prefix => " ");
2674 -- The source file that we are checking can be located
2676 else
2677 Arguments_Collected := False;
2679 -- Don't waste any time if we have to recompile anyway
2681 Obj_Stamp := Empty_Time_Stamp;
2682 Need_To_Compile := Force_Compilations;
2684 if not Force_Compilations then
2685 Read_Only :=
2686 Full_Lib_File /= No_File
2687 and then not Check_Readonly_Files
2688 and then Is_Readonly_Library (Full_Lib_File);
2689 Check (Source_File, Source_Index, Args, Lib_File,
2690 Read_Only, ALI, Obj_File, Obj_Stamp);
2691 Need_To_Compile := (ALI = No_ALI_Id);
2692 end if;
2694 if not Need_To_Compile then
2696 -- The ALI file is up-to-date. Record its Id.
2698 Record_Good_ALI (ALI);
2700 -- Record the time stamp of the most recent object file
2701 -- as long as no (re)compilations are needed.
2703 if First_Compiled_File = No_File
2704 and then (Most_Recent_Obj_File = No_File
2705 or else Obj_Stamp > Most_Recent_Obj_Stamp)
2706 then
2707 Most_Recent_Obj_File := Obj_File;
2708 Most_Recent_Obj_Stamp := Obj_Stamp;
2709 end if;
2711 else
2712 -- Is this the first file we have to compile?
2714 if First_Compiled_File = No_File then
2715 First_Compiled_File := Full_Source_File;
2716 Most_Recent_Obj_File := No_File;
2718 if Do_Not_Execute then
2719 exit Make_Loop;
2720 end if;
2721 end if;
2723 if In_Place_Mode then
2725 -- If the library file was not found, then save the
2726 -- library file near the source file.
2728 if Full_Lib_File = No_File then
2729 Lib_File := Osint.Lib_File_Name
2730 (Full_Source_File, Source_Index);
2732 -- If the library file was found, then save the
2733 -- library file in the same place.
2735 else
2736 Lib_File := Full_Lib_File;
2737 end if;
2739 end if;
2741 -- Start the compilation and record it. We can do this
2742 -- because there is at least one free process.
2744 Collect_Arguments_And_Compile (Source_File, Source_Index);
2746 -- Make sure we could successfully start the compilation
2748 if Pid = Invalid_Pid then
2749 Record_Failure (Full_Source_File, Source_Unit);
2750 else
2751 Add_Process
2752 (Pid,
2753 Full_Source_File,
2754 Lib_File,
2755 Source_Unit,
2756 Mfile);
2757 end if;
2758 end if;
2759 end if;
2760 end;
2761 end if;
2763 -- PHASE 2: Now check if we should wait for a compilation to
2764 -- finish. This is the case if all the available processes are
2765 -- busy compiling sources or there is nothing else to do
2766 -- (that is the Q is empty and there are no good ALIs to process).
2768 if Outstanding_Compiles = Max_Process
2769 or else (Empty_Q
2770 and then not Good_ALI_Present
2771 and then Outstanding_Compiles > 0)
2772 then
2773 Await_Compile
2774 (Full_Source_File, Lib_File, Source_Unit, Compilation_OK);
2776 if not Compilation_OK then
2777 Record_Failure (Full_Source_File, Source_Unit);
2778 end if;
2780 if Compilation_OK or else Keep_Going then
2782 -- Re-read the updated library file
2784 declare
2785 Saved_Object_Consistency : constant Boolean :=
2786 Check_Object_Consistency;
2788 begin
2789 -- If compilation was not OK, or if output is not an
2790 -- object file and we don't do the bind step, don't check
2791 -- for object consistency.
2793 Check_Object_Consistency :=
2794 Check_Object_Consistency
2795 and Compilation_OK
2796 and (Output_Is_Object or Do_Bind_Step);
2797 Text := Read_Library_Info (Lib_File);
2799 -- Restore Check_Object_Consistency to its initial value
2801 Check_Object_Consistency := Saved_Object_Consistency;
2802 end;
2804 -- If an ALI file was generated by this compilation, scan
2805 -- the ALI file and record it.
2806 -- If the scan fails, a previous ali file is inconsistent with
2807 -- the unit just compiled.
2809 if Text /= null then
2810 ALI :=
2811 Scan_ALI (Lib_File, Text, Ignore_ED => False, Err => True);
2813 if ALI = No_ALI_Id then
2815 -- Record a failure only if not already done
2817 if Compilation_OK then
2818 Inform
2819 (Lib_File,
2820 "incompatible ALI file, please recompile");
2821 Record_Failure (Full_Source_File, Source_Unit);
2822 end if;
2823 else
2824 Free (Text);
2825 Record_Good_ALI (ALI);
2826 end if;
2828 -- If we could not read the ALI file that was just generated
2829 -- then there could be a problem reading either the ALI or the
2830 -- corresponding object file (if Check_Object_Consistency
2831 -- is set Read_Library_Info checks that the time stamp of the
2832 -- object file is more recent than that of the ALI). For an
2833 -- example of problems caught by this test see [6625-009].
2834 -- However, we record a failure only if not already done.
2836 else
2837 if Compilation_OK and not Syntax_Only then
2838 Inform
2839 (Lib_File,
2840 "WARNING: ALI or object file not found after compile");
2841 Record_Failure (Full_Source_File, Source_Unit);
2842 end if;
2843 end if;
2844 end if;
2845 end if;
2847 -- PHASE 3: Check if we recorded good ALI files. If yes process
2848 -- them now in the order in which they have been recorded. There
2849 -- are two occasions in which we record good ali files. The first is
2850 -- in phase 1 when, after scanning an existing ALI file we realize
2851 -- it is up-to-date, the second instance is after a successful
2852 -- compilation.
2854 while Good_ALI_Present loop
2855 ALI := Get_Next_Good_ALI;
2857 declare
2858 Source_Index : Int := Unit_Index_Of (ALIs.Table (ALI).Afile);
2860 begin
2861 -- If we are processing the library file corresponding to the
2862 -- main source file check if this source can be a main unit.
2864 if ALIs.Table (ALI).Sfile = Main_Source and then
2865 Source_Index = Main_Index
2866 then
2867 Main_Unit := ALIs.Table (ALI).Main_Program /= None;
2868 end if;
2870 -- The following adds the standard library (s-stalib) to the
2871 -- list of files to be handled by gnatmake: this file and any
2872 -- files it depends on are always included in every bind,
2873 -- even if they are not in the explicit dependency list.
2874 -- Of course, it is not added if Suppress_Standard_Library
2875 -- is True.
2877 -- However, to avoid annoying output about s-stalib.ali being
2878 -- read only, when "-v" is used, we add the standard library
2879 -- only when "-a" is used.
2881 if Need_To_Check_Standard_Library then
2882 Check_Standard_Library;
2883 end if;
2885 -- Now insert in the Q the unmarked source files (i.e. those
2886 -- which have never been inserted in the Q and hence never
2887 -- considered). Only do that if Unique_Compile is False.
2889 if not Unique_Compile then
2890 for J in
2891 ALIs.Table (ALI).First_Unit .. ALIs.Table (ALI).Last_Unit
2892 loop
2893 for K in
2894 Units.Table (J).First_With .. Units.Table (J).Last_With
2895 loop
2896 Sfile := Withs.Table (K).Sfile;
2897 Add_Dependency (ALIs.Table (ALI).Sfile, Sfile);
2899 if Is_In_Obsoleted (Sfile) then
2900 Executable_Obsolete := True;
2901 end if;
2903 if Sfile = No_File then
2904 Debug_Msg
2905 ("Skipping generic:", Withs.Table (K).Uname);
2907 else
2908 Source_Index :=
2909 Unit_Index_Of (Withs.Table (K).Afile);
2911 if Is_Marked (Sfile, Source_Index) then
2912 Debug_Msg ("Skipping marked file:", Sfile);
2914 elsif not Check_Readonly_Files
2915 and then Is_Internal_File_Name (Sfile)
2916 then
2917 Debug_Msg ("Skipping internal file:", Sfile);
2919 else
2920 Insert_Q
2921 (Sfile, Withs.Table (K).Uname, Source_Index);
2922 Mark (Sfile, Source_Index);
2923 end if;
2924 end if;
2925 end loop;
2926 end loop;
2927 end if;
2928 end;
2929 end loop;
2931 if Display_Compilation_Progress then
2932 Write_Str ("completed ");
2933 Write_Int (Int (Q_Front));
2934 Write_Str (" out of ");
2935 Write_Int (Int (Q.Last));
2936 Write_Str (" (");
2937 Write_Int (Int ((Q_Front * 100) / (Q.Last - Q.First)));
2938 Write_Str ("%)...");
2939 Write_Eol;
2940 end if;
2941 end loop Make_Loop;
2943 Compilation_Failures := Bad_Compilation_Count;
2945 -- Compilation is finished
2947 -- Delete any temporary configuration pragma file
2949 Delete_Temp_Config_Files;
2951 end Compile_Sources;
2953 ----------------------------------
2954 -- Configuration_Pragmas_Switch --
2955 ----------------------------------
2957 function Configuration_Pragmas_Switch
2958 (For_Project : Project_Id) return Argument_List
2960 The_Packages : Package_Id;
2961 Gnatmake : Package_Id;
2962 Compiler : Package_Id;
2964 Global_Attribute : Variable_Value := Nil_Variable_Value;
2965 Local_Attribute : Variable_Value := Nil_Variable_Value;
2967 Global_Attribute_Present : Boolean := False;
2968 Local_Attribute_Present : Boolean := False;
2970 Result : Argument_List (1 .. 3);
2971 Last : Natural := 0;
2973 function Absolute_Path
2974 (Path : Name_Id;
2975 Project : Project_Id) return String;
2976 -- Returns an absolute path for a configuration pragmas file.
2978 -------------------
2979 -- Absolute_Path --
2980 -------------------
2982 function Absolute_Path
2983 (Path : Name_Id;
2984 Project : Project_Id) return String
2986 begin
2987 Get_Name_String (Path);
2989 declare
2990 Path_Name : constant String := Name_Buffer (1 .. Name_Len);
2992 begin
2993 if Is_Absolute_Path (Path_Name) then
2994 return Path_Name;
2996 else
2997 declare
2998 Parent_Directory : constant String :=
2999 Get_Name_String (Projects.Table (Project).Directory);
3001 begin
3002 if Parent_Directory (Parent_Directory'Last) =
3003 Directory_Separator
3004 then
3005 return Parent_Directory & Path_Name;
3007 else
3008 return Parent_Directory & Directory_Separator & Path_Name;
3009 end if;
3010 end;
3011 end if;
3012 end;
3013 end Absolute_Path;
3015 -- Start of processing for Configuration_Pragmas_Switch
3017 begin
3018 Prj.Env.Create_Config_Pragmas_File (For_Project, Main_Project);
3020 if Projects.Table (For_Project).Config_File_Name /= No_Name then
3021 Temporary_Config_File :=
3022 Projects.Table (For_Project).Config_File_Temp;
3023 Last := 1;
3024 Result (1) :=
3025 new String'
3026 ("-gnatec=" &
3027 Get_Name_String
3028 (Projects.Table (For_Project).Config_File_Name));
3030 else
3031 Temporary_Config_File := False;
3032 end if;
3034 -- Check for attribute Builder'Global_Configuration_Pragmas
3036 The_Packages := Projects.Table (Main_Project).Decl.Packages;
3037 Gnatmake :=
3038 Prj.Util.Value_Of
3039 (Name => Name_Builder,
3040 In_Packages => The_Packages);
3042 if Gnatmake /= No_Package then
3043 Global_Attribute := Prj.Util.Value_Of
3044 (Variable_Name => Name_Global_Configuration_Pragmas,
3045 In_Variables => Packages.Table (Gnatmake).Decl.Attributes);
3046 Global_Attribute_Present :=
3047 Global_Attribute /= Nil_Variable_Value
3048 and then Get_Name_String (Global_Attribute.Value) /= "";
3050 if Global_Attribute_Present then
3051 declare
3052 Path : constant String :=
3053 Absolute_Path
3054 (Global_Attribute.Value, Global_Attribute.Project);
3055 begin
3056 if not Is_Regular_File (Path) then
3057 Make_Failed
3058 ("cannot find configuration pragmas file ", Path);
3059 end if;
3061 Last := Last + 1;
3062 Result (Last) := new String'("-gnatec=" & Path);
3063 end;
3064 end if;
3065 end if;
3067 -- Check for attribute Compiler'Local_Configuration_Pragmas
3069 The_Packages := Projects.Table (For_Project).Decl.Packages;
3070 Compiler :=
3071 Prj.Util.Value_Of
3072 (Name => Name_Compiler,
3073 In_Packages => The_Packages);
3075 if Compiler /= No_Package then
3076 Local_Attribute := Prj.Util.Value_Of
3077 (Variable_Name => Name_Local_Configuration_Pragmas,
3078 In_Variables => Packages.Table (Compiler).Decl.Attributes);
3079 Local_Attribute_Present :=
3080 Local_Attribute /= Nil_Variable_Value
3081 and then Get_Name_String (Local_Attribute.Value) /= "";
3083 if Local_Attribute_Present then
3084 declare
3085 Path : constant String :=
3086 Absolute_Path
3087 (Local_Attribute.Value, Local_Attribute.Project);
3088 begin
3089 if not Is_Regular_File (Path) then
3090 Make_Failed
3091 ("cannot find configuration pragmas file ", Path);
3092 end if;
3094 Last := Last + 1;
3095 Result (Last) := new String'("-gnatec=" & Path);
3096 end;
3097 end if;
3098 end if;
3100 return Result (1 .. Last);
3101 end Configuration_Pragmas_Switch;
3103 ---------------
3104 -- Debug_Msg --
3105 ---------------
3107 procedure Debug_Msg (S : String; N : Name_Id) is
3108 begin
3109 if Debug.Debug_Flag_W then
3110 Write_Str (" ... ");
3111 Write_Str (S);
3112 Write_Str (" ");
3113 Write_Name (N);
3114 Write_Eol;
3115 end if;
3116 end Debug_Msg;
3118 ---------------------------
3119 -- Delete_All_Temp_Files --
3120 ---------------------------
3122 procedure Delete_All_Temp_Files is
3123 begin
3124 if Gnatmake_Called and not Debug.Debug_Flag_N then
3125 Delete_Mapping_Files;
3126 Delete_Temp_Config_Files;
3127 Prj.Env.Delete_All_Path_Files;
3128 end if;
3129 end Delete_All_Temp_Files;
3131 --------------------------
3132 -- Delete_Mapping_Files --
3133 --------------------------
3135 procedure Delete_Mapping_Files is
3136 Success : Boolean;
3137 begin
3138 if not Debug.Debug_Flag_N then
3139 if The_Mapping_File_Names /= null then
3140 for Project in The_Mapping_File_Names'Range (1) loop
3141 for Index in 1 .. Last_Mapping_File_Names (Project) loop
3142 Delete_File
3143 (Name => Get_Name_String
3144 (The_Mapping_File_Names (Project, Index)),
3145 Success => Success);
3146 end loop;
3147 end loop;
3148 end if;
3149 end if;
3150 end Delete_Mapping_Files;
3152 ------------------------------
3153 -- Delete_Temp_Config_Files --
3154 ------------------------------
3156 procedure Delete_Temp_Config_Files is
3157 Success : Boolean;
3158 begin
3159 if (not Debug.Debug_Flag_N) and Main_Project /= No_Project then
3160 for Project in 1 .. Projects.Last loop
3161 if Projects.Table (Project).Config_File_Temp then
3162 if Verbose_Mode then
3163 Write_Str ("Deleting temp configuration file """);
3164 Write_Str (Get_Name_String
3165 (Projects.Table (Project).Config_File_Name));
3166 Write_Line ("""");
3167 end if;
3169 Delete_File
3170 (Name => Get_Name_String
3171 (Projects.Table (Project).Config_File_Name),
3172 Success => Success);
3174 -- Make sure that we don't have a config file for this
3175 -- project, in case when there are several mains.
3176 -- In this case, we will recreate another config file:
3177 -- we cannot reuse the one that we just deleted!
3179 Projects.Table (Project).Config_Checked := False;
3180 Projects.Table (Project).Config_File_Name := No_Name;
3181 Projects.Table (Project).Config_File_Temp := False;
3182 end if;
3183 end loop;
3184 end if;
3185 end Delete_Temp_Config_Files;
3187 -------------
3188 -- Display --
3189 -------------
3191 procedure Display (Program : String; Args : Argument_List) is
3192 begin
3193 pragma Assert (Args'First = 1);
3195 if Display_Executed_Programs then
3196 Write_Str (Program);
3198 for J in Args'Range loop
3200 -- Never display -gnatez
3202 if Args (J).all /= "-gnatez" then
3204 -- Do not display the mapping file argument automatically
3205 -- created when using a project file.
3207 if Main_Project = No_Project
3208 or else Debug.Debug_Flag_N
3209 or else Args (J)'Length < 8
3210 or else
3211 Args (J) (Args (J)'First .. Args (J)'First + 6) /= "-gnatem"
3212 then
3213 -- When -dn is not specified, do not display the config
3214 -- pragmas switch (-gnatec) for the temporary file created
3215 -- by the project manager (always the first -gnatec switch).
3216 -- Reset Temporary_Config_File to False so that the eventual
3217 -- other -gnatec switches will be displayed.
3219 if (not Debug.Debug_Flag_N)
3220 and then Temporary_Config_File
3221 and then Args (J)'Length > 7
3222 and then Args (J) (Args (J)'First .. Args (J)'First + 6)
3223 = "-gnatec"
3224 then
3225 Temporary_Config_File := False;
3227 -- Do not display the -F=mapping_file switch for
3228 -- gnatbind, if -dn is not specified.
3230 elsif Debug.Debug_Flag_N
3231 or else Args (J)'Length < 4
3232 or else
3233 Args (J) (Args (J)'First .. Args (J)'First + 2) /= "-F="
3234 then
3235 Write_Str (" ");
3236 Write_Str (Args (J).all);
3237 end if;
3238 end if;
3239 end if;
3240 end loop;
3242 Write_Eol;
3243 end if;
3244 end Display;
3246 ----------------------
3247 -- Display_Commands --
3248 ----------------------
3250 procedure Display_Commands (Display : Boolean := True) is
3251 begin
3252 Display_Executed_Programs := Display;
3253 end Display_Commands;
3255 -------------
3256 -- Empty_Q --
3257 -------------
3259 function Empty_Q return Boolean is
3260 begin
3261 if Debug.Debug_Flag_P then
3262 Write_Str (" Q := [");
3264 for J in Q_Front .. Q.Last - 1 loop
3265 Write_Str (" ");
3266 Write_Name (Q.Table (J).File);
3267 Write_Eol;
3268 Write_Str (" ");
3269 end loop;
3271 Write_Str ("]");
3272 Write_Eol;
3273 end if;
3275 return Q_Front >= Q.Last;
3276 end Empty_Q;
3278 --------------------------
3279 -- Enter_Into_Obsoleted --
3280 --------------------------
3282 procedure Enter_Into_Obsoleted (F : Name_Id) is
3283 Name : constant String := Get_Name_String (F);
3284 First : Natural := Name'Last;
3285 F2 : Name_Id := F;
3287 begin
3288 while First > Name'First
3289 and then Name (First - 1) /= Directory_Separator
3290 and then Name (First - 1) /= '/'
3291 loop
3292 First := First - 1;
3293 end loop;
3295 if First /= Name'First then
3296 Name_Len := 0;
3297 Add_Str_To_Name_Buffer (Name (First .. Name'Last));
3298 F2 := Name_Find;
3299 end if;
3301 Debug_Msg ("New entry in Obsoleted table:", F2);
3302 Obsoleted.Set (F2, True);
3303 end Enter_Into_Obsoleted;
3305 ---------------------
3306 -- Extract_Failure --
3307 ---------------------
3309 procedure Extract_Failure
3310 (File : out File_Name_Type;
3311 Unit : out Unit_Name_Type;
3312 Found : out Boolean)
3314 begin
3315 File := Bad_Compilation.Table (Bad_Compilation.Last).File;
3316 Unit := Bad_Compilation.Table (Bad_Compilation.Last).Unit;
3317 Found := Bad_Compilation.Table (Bad_Compilation.Last).Found;
3318 Bad_Compilation.Decrement_Last;
3319 end Extract_Failure;
3321 --------------------
3322 -- Extract_From_Q --
3323 --------------------
3325 procedure Extract_From_Q
3326 (Source_File : out File_Name_Type;
3327 Source_Unit : out Unit_Name_Type;
3328 Source_Index : out Int)
3330 File : constant File_Name_Type := Q.Table (Q_Front).File;
3331 Unit : constant Unit_Name_Type := Q.Table (Q_Front).Unit;
3332 Index : constant Int := Q.Table (Q_Front).Index;
3334 begin
3335 if Debug.Debug_Flag_Q then
3336 Write_Str (" Q := Q - [ ");
3337 Write_Name (File);
3339 if Index /= 0 then
3340 Write_Str (", ");
3341 Write_Int (Index);
3342 end if;
3344 Write_Str (" ]");
3345 Write_Eol;
3346 end if;
3348 Q_Front := Q_Front + 1;
3349 Source_File := File;
3350 Source_Unit := Unit;
3351 Source_Index := Index;
3352 end Extract_From_Q;
3354 --------------
3355 -- Gnatmake --
3356 --------------
3358 procedure Gnatmake is
3359 Main_Source_File : File_Name_Type;
3360 -- The source file containing the main compilation unit
3362 Compilation_Failures : Natural;
3364 Total_Compilation_Failures : Natural := 0;
3366 Is_Main_Unit : Boolean;
3367 -- Set to True by Compile_Sources if the Main_Source_File can be a
3368 -- main unit.
3370 Main_ALI_File : File_Name_Type;
3371 -- The ali file corresponding to Main_Source_File
3373 Executable : File_Name_Type := No_File;
3374 -- The file name of an executable
3376 Non_Std_Executable : Boolean := False;
3377 -- Non_Std_Executable is set to True when there is a possibility
3378 -- that the linker will not choose the correct executable file name.
3380 Current_Work_Dir : constant String_Access :=
3381 new String'(Get_Current_Dir);
3382 -- The current working directory, used to modify some relative path
3383 -- switches on the command line when a project file is used.
3385 Current_Main_Index : Int := 0;
3386 -- If not zero, the index of the current main unit in its source file
3388 There_Are_Stand_Alone_Libraries : Boolean := False;
3389 -- Set to True when there are Stand-Alone Libraries, so that gnatbind
3390 -- is invoked with the -F switch to force checking of elaboration flags.
3392 Mapping_Path : Name_Id := No_Name;
3393 -- The path name of the mapping file
3395 Discard : Boolean;
3397 procedure Check_Mains;
3398 -- Check that the main subprograms do exist and that they all
3399 -- belong to the same project file.
3401 procedure Create_Binder_Mapping_File
3402 (Args : in out Argument_List; Last_Arg : in out Natural);
3403 -- Create a binder mapping file and add the necessary switch
3405 -----------------
3406 -- Check_Mains --
3407 -----------------
3409 procedure Check_Mains is
3410 Real_Main_Project : Project_Id := No_Project;
3411 -- The project of the first main
3413 Proj : Project_Id := No_Project;
3414 -- The project of the current main
3416 Data : Project_Data;
3418 Real_Path : String_Access;
3420 begin
3421 Mains.Reset;
3423 -- Check each main
3425 loop
3426 declare
3427 Main : constant String := Mains.Next_Main;
3428 -- The name specified on the command line may include
3429 -- directory information.
3431 File_Name : constant String := Base_Name (Main);
3432 -- The simple file name of the current main main
3434 begin
3435 exit when Main = "";
3437 -- Get the project of the current main
3439 Proj := Prj.Env.Project_Of (File_Name, Main_Project);
3441 -- Fail if the current main is not a source of a
3442 -- project.
3444 if Proj = No_Project then
3445 Make_Failed
3446 ("""" & Main &
3447 """ is not a source of any project");
3449 else
3450 -- If there is directory information, check that
3451 -- the source exists and, if it does, that the path
3452 -- is the actual path of a source of a project.
3454 if Main /= File_Name then
3455 Data := Projects.Table (Main_Project);
3457 Real_Path :=
3458 Locate_Regular_File
3459 (Main &
3460 Get_Name_String
3461 (Data.Naming.Current_Body_Suffix),
3462 "");
3463 if Real_Path = null then
3464 Real_Path :=
3465 Locate_Regular_File
3466 (Main &
3467 Get_Name_String
3468 (Data.Naming.Current_Spec_Suffix),
3469 "");
3470 end if;
3472 if Real_Path = null then
3473 Real_Path :=
3474 Locate_Regular_File (Main, "");
3475 end if;
3477 -- Fail if the file cannot be found
3479 if Real_Path = null then
3480 Make_Failed
3481 ("file """ & Main & """ does not exist");
3482 end if;
3484 declare
3485 Project_Path : constant String :=
3486 Prj.Env.File_Name_Of_Library_Unit_Body
3487 (Name => File_Name,
3488 Project => Main_Project,
3489 Main_Project_Only => False,
3490 Full_Path => True);
3491 Normed_Path : constant String :=
3492 Normalize_Pathname
3493 (Real_Path.all,
3494 Case_Sensitive => False);
3495 Proj_Path : constant String :=
3496 Normalize_Pathname
3497 (Project_Path,
3498 Case_Sensitive => False);
3500 begin
3501 Free (Real_Path);
3503 -- Fail if it is not the correct path
3505 if Normed_Path /= Proj_Path then
3506 if Verbose_Mode then
3507 Write_Str (Normed_Path);
3508 Write_Str (" /= ");
3509 Write_Line (Proj_Path);
3510 end if;
3512 Make_Failed
3513 ("""" & Main &
3514 """ is not a source of any project");
3515 end if;
3516 end;
3517 end if;
3519 if not Unique_Compile then
3521 -- Record the project, if it is the first main
3523 if Real_Main_Project = No_Project then
3524 Real_Main_Project := Proj;
3526 elsif Proj /= Real_Main_Project then
3528 -- Fail, as the current main is not a source
3529 -- of the same project as the first main.
3531 Make_Failed
3532 ("""" & Main &
3533 """ is not a source of project " &
3534 Get_Name_String
3535 (Projects.Table
3536 (Real_Main_Project).Name));
3537 end if;
3538 end if;
3539 end if;
3541 -- If -u and -U are not used, we may have mains that
3542 -- are sources of a project that is not the one
3543 -- specified with switch -P.
3545 if not Unique_Compile then
3546 Main_Project := Real_Main_Project;
3547 end if;
3548 end;
3549 end loop;
3550 end Check_Mains;
3552 --------------------------------
3553 -- Create_Binder_Mapping_File --
3554 --------------------------------
3556 procedure Create_Binder_Mapping_File
3557 (Args : in out Argument_List; Last_Arg : in out Natural)
3559 Mapping_FD : File_Descriptor := Invalid_FD;
3560 -- A File Descriptor for an eventual mapping file
3562 ALI_Unit : Name_Id := No_Name;
3563 -- The unit name of an ALI file
3565 ALI_Name : Name_Id := No_Name;
3566 -- The file name of the ALI file
3568 ALI_Project : Project_Id := No_Project;
3569 -- The project of the ALI file
3571 Bytes : Integer;
3572 OK : Boolean := True;
3574 Status : Boolean;
3575 -- For call to Close
3577 begin
3578 Tempdir.Create_Temp_File (Mapping_FD, Mapping_Path);
3580 if Mapping_FD /= Invalid_FD then
3582 -- Traverse all units
3584 for J in Prj.Com.Units.First .. Prj.Com.Units.Last loop
3585 declare
3586 Unit : constant Prj.Com.Unit_Data :=
3587 Prj.Com.Units.Table (J);
3588 use Prj.Com;
3590 begin
3591 if Unit.Name /= No_Name then
3593 -- If there is a body, put it in the mapping
3595 if Unit.File_Names (Body_Part).Name /= No_Name
3596 and then Unit.File_Names (Body_Part).Project
3597 /= No_Project
3598 then
3599 Get_Name_String (Unit.Name);
3600 Name_Buffer
3601 (Name_Len + 1 .. Name_Len + 2) := "%b";
3602 Name_Len := Name_Len + 2;
3603 ALI_Unit := Name_Find;
3604 ALI_Name :=
3605 Lib_File_Name
3606 (Unit.File_Names (Body_Part).Name);
3607 ALI_Project :=
3608 Unit.File_Names (Body_Part).Project;
3610 -- Otherwise, if there is a spec, put it
3611 -- in the mapping.
3613 elsif Unit.File_Names (Specification).Name
3614 /= No_Name
3615 and then Unit.File_Names
3616 (Specification).Project
3617 /= No_Project
3618 then
3619 Get_Name_String (Unit.Name);
3620 Name_Buffer
3621 (Name_Len + 1 .. Name_Len + 2) := "%s";
3622 Name_Len := Name_Len + 2;
3623 ALI_Unit := Name_Find;
3624 ALI_Name := Lib_File_Name
3625 (Unit.File_Names (Specification).Name);
3626 ALI_Project :=
3627 Unit.File_Names (Specification).Project;
3629 else
3630 ALI_Name := No_Name;
3631 end if;
3633 -- If we have something to put in the mapping
3634 -- then we do it now. However, if the project
3635 -- is extended, we don't put anything in the
3636 -- mapping file, because we do not know where
3637 -- the ALI file is: it might be in the ext-
3638 -- ended project obj dir as well as in the
3639 -- extending project obj dir.
3641 if ALI_Name /= No_Name
3642 and then
3643 Projects.Table (ALI_Project).Extended_By = No_Project
3644 and then
3645 Projects.Table (ALI_Project).Extends = No_Project
3646 then
3647 -- First line is the unit name
3649 Get_Name_String (ALI_Unit);
3650 Name_Len := Name_Len + 1;
3651 Name_Buffer (Name_Len) := ASCII.LF;
3652 Bytes :=
3653 Write
3654 (Mapping_FD,
3655 Name_Buffer (1)'Address,
3656 Name_Len);
3657 OK := Bytes = Name_Len;
3659 exit when not OK;
3661 -- Second line it the ALI file name
3663 Get_Name_String (ALI_Name);
3664 Name_Len := Name_Len + 1;
3665 Name_Buffer (Name_Len) := ASCII.LF;
3666 Bytes :=
3667 Write
3668 (Mapping_FD,
3669 Name_Buffer (1)'Address,
3670 Name_Len);
3671 OK := Bytes = Name_Len;
3673 exit when not OK;
3675 -- Third line it the ALI path name,
3676 -- concatenation of the project
3677 -- directory with the ALI file name.
3679 declare
3680 ALI : constant String :=
3681 Get_Name_String (ALI_Name);
3682 begin
3683 Get_Name_String
3684 (Projects.Table (ALI_Project).
3685 Object_Directory);
3687 if Name_Buffer (Name_Len) /=
3688 Directory_Separator
3689 then
3690 Name_Len := Name_Len + 1;
3691 Name_Buffer (Name_Len) :=
3692 Directory_Separator;
3693 end if;
3695 Name_Buffer
3696 (Name_Len + 1 ..
3697 Name_Len + ALI'Length) := ALI;
3698 Name_Len :=
3699 Name_Len + ALI'Length + 1;
3700 Name_Buffer (Name_Len) := ASCII.LF;
3701 Bytes :=
3702 Write
3703 (Mapping_FD,
3704 Name_Buffer (1)'Address,
3705 Name_Len);
3706 OK := Bytes = Name_Len;
3707 end;
3709 -- If OK is False, it means we were unable
3710 -- to write a line. No point in continuing
3711 -- with the other units.
3713 exit when not OK;
3714 end if;
3715 end if;
3716 end;
3717 end loop;
3719 Close (Mapping_FD, Status);
3721 OK := OK and Status;
3723 -- If the creation of the mapping file was successful,
3724 -- we add the switch to the arguments of gnatbind.
3726 if OK then
3727 Last_Arg := Last_Arg + 1;
3728 Args (Last_Arg) :=
3729 new String'("-F=" & Get_Name_String (Mapping_Path));
3730 end if;
3731 end if;
3732 end Create_Binder_Mapping_File;
3734 -- Start of processing for Gnatmake
3736 -- This body is very long, should be broken down ???
3738 begin
3739 Gnatmake_Called := True;
3741 Install_Int_Handler (Sigint_Intercepted'Access);
3743 Do_Compile_Step := True;
3744 Do_Bind_Step := True;
3745 Do_Link_Step := True;
3747 Obsoleted.Reset;
3749 Make.Initialize;
3751 Bind_Shared := No_Shared_Switch'Access;
3752 Link_With_Shared_Libgcc := No_Shared_Libgcc_Switch'Access;
3753 Bind_Shared_Known := False;
3755 Failed_Links.Set_Last (0);
3756 Successful_Links.Set_Last (0);
3758 if Hostparm.Java_VM then
3759 Gcc := new String'("jgnat");
3760 Gnatbind := new String'("jgnatbind");
3761 Gnatlink := new String'("jgnatlink");
3763 -- Do not check for an object file (".o") when compiling to
3764 -- Java bytecode since ".class" files are generated instead.
3766 Check_Object_Consistency := False;
3767 end if;
3769 -- Special case when switch -B was specified
3771 if Build_Bind_And_Link_Full_Project then
3773 -- When switch -B is specified, there must be a project file
3775 if Main_Project = No_Project then
3776 Make_Failed ("-B cannot be used without a project file");
3778 -- No main program may be specified on the command line
3780 elsif Osint.Number_Of_Files /= 0 then
3781 Make_Failed ("-B cannot be used with a main specified on " &
3782 "the command line");
3784 -- And the project file cannot be a library project file
3786 elsif Projects.Table (Main_Project).Library then
3787 Make_Failed ("-B cannot be used for a library project file");
3789 else
3790 Insert_Project_Sources
3791 (The_Project => Main_Project,
3792 All_Projects => Unique_Compile_All_Projects,
3793 Into_Q => False);
3795 -- If there are no sources to compile, we fail
3797 if Osint.Number_Of_Files = 0 then
3798 Make_Failed ("no sources to compile");
3799 end if;
3801 -- Specify -n for gnatbind and add the ALI files of all the
3802 -- sources, except the one which is a fake main subprogram:
3803 -- this is the one for the binder generated file and it will be
3804 -- transmitted to gnatlink. These sources are those that are
3805 -- in the queue.
3807 Add_Switch ("-n", Binder, And_Save => True);
3809 for J in Q.First .. Q.Last - 1 loop
3810 Add_Switch
3811 (Get_Name_String
3812 (Lib_File_Name (Q.Table (J).File)),
3813 Binder, And_Save => True);
3814 end loop;
3815 end if;
3817 elsif Main_Index /= 0 and then Osint.Number_Of_Files > 1 then
3818 Make_Failed ("cannot specify several mains with a multi-unit index");
3820 elsif Main_Project /= No_Project then
3822 -- If the main project file is a library project file, main(s)
3823 -- cannot be specified on the command line.
3825 if Osint.Number_Of_Files /= 0 then
3826 if Projects.Table (Main_Project).Library
3827 and then not Unique_Compile
3828 and then ((not Make_Steps) or else Bind_Only or else Link_Only)
3829 then
3830 Make_Failed ("cannot specify a main program " &
3831 "on the command line for a library project file");
3833 else
3834 -- Check that each main on the command line is a source of a
3835 -- project file and, if there are several mains, each of them
3836 -- is a source of the same project file.
3838 Check_Mains;
3839 end if;
3841 -- If no mains have been specified on the command line,
3842 -- and we are using a project file, we either find the main(s)
3843 -- in the attribute Main of the main project, or we put all
3844 -- the sources of the project file as mains.
3846 else
3847 if Main_Index /= 0 then
3848 Make_Failed ("cannot specify a multi-unit index but no main " &
3849 "on the command line");
3850 end if;
3852 declare
3853 Value : String_List_Id := Projects.Table (Main_Project).Mains;
3855 begin
3856 -- The attribute Main is an empty list or not specified,
3857 -- or else gnatmake was invoked with the switch "-u".
3859 if Value = Prj.Nil_String or else Unique_Compile then
3861 if (not Make_Steps) or else Compile_Only
3862 or else not Projects.Table (Main_Project).Library
3863 then
3864 -- First make sure that the binder and the linker
3865 -- will not be invoked.
3867 Do_Bind_Step := False;
3868 Do_Link_Step := False;
3870 -- Put all the sources in the queue
3872 Insert_Project_Sources
3873 (The_Project => Main_Project,
3874 All_Projects => Unique_Compile_All_Projects,
3875 Into_Q => False);
3877 -- If there are no sources to compile, we fail
3879 if Osint.Number_Of_Files = 0 then
3880 Make_Failed ("no sources to compile");
3881 end if;
3882 end if;
3884 else
3885 -- The attribute Main is not an empty list.
3886 -- Put all the main subprograms in the list as if there
3887 -- were specified on the command line. However, if attribute
3888 -- Languages includes a language other than Ada, only
3889 -- include the Ada mains; if there is no Ada main, compile
3890 -- all the sources of the project.
3892 declare
3893 Data : constant Project_Data :=
3894 Projects.Table (Main_Project);
3896 Languages : constant Variable_Value :=
3897 Prj.Util.Value_Of
3898 (Name_Languages, Data.Decl.Attributes);
3900 Current : String_List_Id;
3901 Element : String_Element;
3903 Foreign_Language : Boolean := False;
3904 At_Least_One_Main : Boolean := False;
3906 begin
3907 -- First, determine if there is a foreign language in
3908 -- attribute Languages.
3910 if not Languages.Default then
3911 Current := Languages.Values;
3913 Look_For_Foreign :
3914 while Current /= Nil_String loop
3915 Element := String_Elements.Table (Current);
3916 Get_Name_String (Element.Value);
3917 To_Lower (Name_Buffer (1 .. Name_Len));
3919 if Name_Buffer (1 .. Name_Len) /= "ada" then
3920 Foreign_Language := True;
3921 exit Look_For_Foreign;
3922 end if;
3924 Current := Element.Next;
3925 end loop Look_For_Foreign;
3926 end if;
3928 -- Then, find all mains, or if there is a foreign
3929 -- language, all the Ada mains.
3931 while Value /= Prj.Nil_String loop
3932 Get_Name_String (String_Elements.Table (Value).Value);
3934 -- To know if a main is an Ada main, get its project.
3935 -- It should be the project specified on the command
3936 -- line.
3938 if (not Foreign_Language) or else
3939 Prj.Env.Project_Of
3940 (Name_Buffer (1 .. Name_Len), Main_Project) =
3941 Main_Project
3942 then
3943 At_Least_One_Main := True;
3944 Osint.Add_File
3945 (Get_Name_String
3946 (String_Elements.Table (Value).Value),
3947 Index => String_Elements.Table (Value).Index);
3948 end if;
3950 Value := String_Elements.Table (Value).Next;
3951 end loop;
3953 -- If we did not get any main, it means that all mains
3954 -- in attribute Mains are in a foreign language and -B
3955 -- was not specified to gnatmake; so, we fail.
3957 if not At_Least_One_Main then
3958 Make_Failed
3959 ("no Ada mains; use -B to build foreign main");
3960 end if;
3961 end;
3963 end if;
3964 end;
3965 end if;
3966 end if;
3968 if Verbose_Mode then
3969 Write_Eol;
3970 Write_Str ("GNATMAKE ");
3971 Write_Str (Gnatvsn.Gnat_Version_String);
3972 Write_Str (" Copyright 1995-2004 Free Software Foundation, Inc.");
3973 Write_Eol;
3974 end if;
3976 if Osint.Number_Of_Files = 0 then
3977 if Main_Project /= No_Project
3978 and then Projects.Table (Main_Project).Library
3979 then
3980 if Do_Bind_Step
3981 and then not Projects.Table (Main_Project).Standalone_Library
3982 then
3983 Make_Failed ("only stand-alone libraries may be bound");
3984 end if;
3986 -- Add the default search directories to be able to find libgnat
3988 Osint.Add_Default_Search_Dirs;
3990 -- And bind and or link the library
3992 MLib.Prj.Build_Library
3993 (For_Project => Main_Project,
3994 Gnatbind => Gnatbind.all,
3995 Gnatbind_Path => Gnatbind_Path,
3996 Gcc => Gcc.all,
3997 Gcc_Path => Gcc_Path,
3998 Bind => Bind_Only,
3999 Link => Link_Only);
4000 Exit_Program (E_Success);
4002 else
4003 -- Output usage information if no files to compile
4005 Usage;
4006 Exit_Program (E_Fatal);
4007 end if;
4008 end if;
4010 -- If -M was specified, behave as if -n was specified
4012 if List_Dependencies then
4013 Do_Not_Execute := True;
4014 end if;
4016 -- Note that Osint.Next_Main_Source will always return the (possibly
4017 -- abbreviated file) without any directory information.
4019 Main_Source_File := Next_Main_Source;
4021 if Current_File_Index /= No_Index then
4022 Main_Index := Current_File_Index;
4023 end if;
4025 Add_Switch ("-I-", Binder, And_Save => True);
4026 Add_Switch ("-I-", Compiler, And_Save => True);
4028 if Main_Project = No_Project then
4029 if Look_In_Primary_Dir then
4031 Add_Switch
4032 ("-I" &
4033 Normalize_Directory_Name
4034 (Get_Primary_Src_Search_Directory.all).all,
4035 Compiler, Append_Switch => False,
4036 And_Save => False);
4038 Add_Switch ("-aO" & Normalized_CWD,
4039 Binder,
4040 Append_Switch => False,
4041 And_Save => False);
4042 end if;
4044 else
4045 -- If we use a project file, we have already checked that a main
4046 -- specified on the command line with directory information has the
4047 -- path name corresponding to a correct source in the project tree.
4048 -- So, we don't need the directory information to be taken into
4049 -- account by Find_File, and in fact it may lead to take the wrong
4050 -- sources for other compilation units, when there are extending
4051 -- projects.
4053 Look_In_Primary_Dir := False;
4054 end if;
4056 -- If the user wants a program without a main subprogram, add the
4057 -- appropriate switch to the binder.
4059 if No_Main_Subprogram then
4060 Add_Switch ("-z", Binder, And_Save => True);
4061 end if;
4063 if Main_Project /= No_Project then
4065 if Projects.Table (Main_Project).Object_Directory = No_Name then
4066 Make_Failed ("no sources to compile");
4067 end if;
4069 -- Change the current directory to the object directory of the main
4070 -- project.
4072 begin
4073 Project_Object_Directory := No_Project;
4074 Change_To_Object_Directory (Main_Project);
4076 exception
4077 when Directory_Error =>
4079 -- This should never happen. But, if it does, display the
4080 -- content of the parent directory of the obj dir.
4082 declare
4083 Parent : constant Dir_Name_Str :=
4084 Dir_Name
4085 (Get_Name_String
4086 (Projects.Table (Main_Project).Object_Directory));
4087 Dir : Dir_Type;
4088 Str : String (1 .. 200);
4089 Last : Natural;
4091 begin
4092 Write_Str ("Contents of directory """);
4093 Write_Str (Parent);
4094 Write_Line (""":");
4096 Open (Dir, Parent);
4098 loop
4099 Read (Dir, Str, Last);
4100 exit when Last = 0;
4101 Write_Str (" ");
4102 Write_Line (Str (1 .. Last));
4103 end loop;
4105 Close (Dir);
4107 exception
4108 when X : others =>
4109 Write_Line ("(unexpected exception)");
4110 Write_Line (Exception_Information (X));
4112 if Is_Open (Dir) then
4113 Close (Dir);
4114 end if;
4115 end;
4117 Make_Failed ("unable to change working directory to """,
4118 Get_Name_String
4119 (Projects.Table (Main_Project).Object_Directory),
4120 """");
4121 end;
4123 -- Source file lookups should be cached for efficiency.
4124 -- Source files are not supposed to change.
4126 Osint.Source_File_Data (Cache => True);
4128 -- Find the file name of the (first) main unit
4130 declare
4131 Main_Source_File_Name : constant String :=
4132 Get_Name_String (Main_Source_File);
4133 Main_Unit_File_Name : constant String :=
4134 Prj.Env.File_Name_Of_Library_Unit_Body
4135 (Name => Main_Source_File_Name,
4136 Project => Main_Project,
4137 Main_Project_Only =>
4138 not Unique_Compile);
4140 The_Packages : constant Package_Id :=
4141 Projects.Table (Main_Project).Decl.Packages;
4143 Builder_Package : constant Prj.Package_Id :=
4144 Prj.Util.Value_Of
4145 (Name => Name_Builder,
4146 In_Packages => The_Packages);
4148 Binder_Package : constant Prj.Package_Id :=
4149 Prj.Util.Value_Of
4150 (Name => Name_Binder,
4151 In_Packages => The_Packages);
4153 Linker_Package : constant Prj.Package_Id :=
4154 Prj.Util.Value_Of
4155 (Name => Name_Linker,
4156 In_Packages => The_Packages);
4158 begin
4159 -- We fail if we cannot find the main source file
4161 if Main_Unit_File_Name = "" then
4162 Make_Failed ('"' & Main_Source_File_Name,
4163 """ is not a unit of project ",
4164 Project_File_Name.all & ".");
4165 else
4166 -- Remove any directory information from the main
4167 -- source file name.
4169 declare
4170 Pos : Natural := Main_Unit_File_Name'Last;
4172 begin
4173 loop
4174 exit when Pos < Main_Unit_File_Name'First or else
4175 Main_Unit_File_Name (Pos) = Directory_Separator;
4176 Pos := Pos - 1;
4177 end loop;
4179 Name_Len := Main_Unit_File_Name'Last - Pos;
4181 Name_Buffer (1 .. Name_Len) :=
4182 Main_Unit_File_Name
4183 (Pos + 1 .. Main_Unit_File_Name'Last);
4185 Main_Source_File := Name_Find;
4187 -- We only output the main source file if there is only one
4189 if Verbose_Mode and then Osint.Number_Of_Files = 1 then
4190 Write_Str ("Main source file: """);
4191 Write_Str (Main_Unit_File_Name
4192 (Pos + 1 .. Main_Unit_File_Name'Last));
4193 Write_Line (""".");
4194 end if;
4195 end;
4196 end if;
4198 -- If there is a package Builder in the main project file, add
4199 -- the switches from it.
4201 if Builder_Package /= No_Package then
4203 -- If there is only one main, we attempt to get the gnatmake
4204 -- switches for this main (if any). If there are no specific
4205 -- switch for this particular main, get the general gnatmake
4206 -- switches (if any).
4208 if Osint.Number_Of_Files = 1 then
4209 if Verbose_Mode then
4210 Write_Str ("Adding gnatmake switches for """);
4211 Write_Str (Main_Unit_File_Name);
4212 Write_Line (""".");
4213 end if;
4215 Add_Switches
4216 (File_Name => Main_Unit_File_Name,
4217 Index => Main_Index,
4218 The_Package => Builder_Package,
4219 Program => None);
4221 else
4222 -- If there are several mains, we always get the general
4223 -- gnatmake switches (if any).
4225 -- Warn the user, if necessary, so that he is not surprized
4226 -- that specific switches are not taken into account.
4228 declare
4229 Defaults : constant Variable_Value :=
4230 Prj.Util.Value_Of
4231 (Name => Name_Ada,
4232 Index => 0,
4233 Attribute_Or_Array_Name => Name_Default_Switches,
4234 In_Package => Builder_Package);
4236 Switches : constant Array_Element_Id :=
4237 Prj.Util.Value_Of
4238 (Name => Name_Switches,
4239 In_Arrays =>
4240 Packages.Table (Builder_Package).Decl.Arrays);
4242 begin
4243 if Defaults /= Nil_Variable_Value then
4244 if (not Quiet_Output)
4245 and then Switches /= No_Array_Element
4246 then
4247 Write_Line
4248 ("Warning: using Builder'Default_Switches" &
4249 "(""Ada""), as there are several mains");
4250 end if;
4252 -- As there is never a source with name " ", we are
4253 -- guaranteed to always get the general switches.
4255 Add_Switches
4256 (File_Name => " ",
4257 Index => 0,
4258 The_Package => Builder_Package,
4259 Program => None);
4261 elsif (not Quiet_Output)
4262 and then Switches /= No_Array_Element
4263 then
4264 Write_Line
4265 ("Warning: using no switches from package Builder," &
4266 " as there are several mains");
4267 end if;
4268 end;
4269 end if;
4270 end if;
4272 Osint.Add_Default_Search_Dirs;
4274 -- Record the current last switch index for table Binder_Switches
4275 -- and Linker_Switches, so that these tables may be reset before
4276 -- for each main, before adding swiches from the project file
4277 -- and from the command line.
4279 Last_Binder_Switch := Binder_Switches.Last;
4280 Last_Linker_Switch := Linker_Switches.Last;
4282 Check_Steps;
4284 -- Add binder switches from the project file for the first main
4286 if Do_Bind_Step and Binder_Package /= No_Package then
4287 if Verbose_Mode then
4288 Write_Str ("Adding binder switches for """);
4289 Write_Str (Main_Unit_File_Name);
4290 Write_Line (""".");
4291 end if;
4293 Add_Switches
4294 (File_Name => Main_Unit_File_Name,
4295 Index => Main_Index,
4296 The_Package => Binder_Package,
4297 Program => Binder);
4298 end if;
4300 -- Add linker switches from the project file for the first main
4302 if Do_Link_Step and Linker_Package /= No_Package then
4303 if Verbose_Mode then
4304 Write_Str ("Adding linker switches for""");
4305 Write_Str (Main_Unit_File_Name);
4306 Write_Line (""".");
4307 end if;
4309 Add_Switches
4310 (File_Name => Main_Unit_File_Name,
4311 Index => Main_Index,
4312 The_Package => Linker_Package,
4313 Program => Linker);
4314 end if;
4315 end;
4316 end if;
4318 -- Get the target parameters, which are only needed for a couple of
4319 -- cases in gnatmake. Protect against an exception, such as the case
4320 -- of system.ads missing from the library, and fail gracefully.
4322 begin
4323 Targparm.Get_Target_Parameters;
4325 exception
4326 when Unrecoverable_Error =>
4327 Make_Failed ("*** make failed.");
4328 end;
4330 Display_Commands (not Quiet_Output);
4332 Check_Steps;
4334 if Main_Project /= No_Project then
4336 -- For all library project, if the library file does not exist
4337 -- put all the project sources in the queue, and flag the project
4338 -- so that the library is generated.
4340 if MLib.Tgt.Support_For_Libraries /= MLib.Tgt.None then
4341 for Proj in Projects.First .. Projects.Last loop
4342 if Projects.Table (Proj).Library then
4343 Projects.Table (Proj).Need_To_Build_Lib :=
4344 not MLib.Tgt.Library_Exists_For (Proj);
4346 if Projects.Table (Proj).Need_To_Build_Lib then
4347 -- If there is no object directory, then it will be
4348 -- impossible to build the library. So, we fail
4349 -- immediately.
4351 if Projects.Table (Proj).Object_Directory = No_Name then
4352 Make_Failed
4353 ("no object files to build library for project """,
4354 Get_Name_String (Projects.Table (Proj).Name),
4355 """");
4356 Projects.Table (Proj).Need_To_Build_Lib := False;
4358 else
4359 if Verbose_Mode then
4360 Write_Str
4361 ("Library file does not exist for project """);
4362 Write_Str
4363 (Get_Name_String (Projects.Table (Proj).Name));
4364 Write_Line ("""");
4365 end if;
4367 Insert_Project_Sources
4368 (The_Project => Proj,
4369 All_Projects => False,
4370 Into_Q => True);
4371 end if;
4372 end if;
4373 end if;
4374 end loop;
4375 end if;
4377 -- If a relative path output file has been specified, we add
4378 -- the exec directory.
4380 for J in reverse 1 .. Saved_Linker_Switches.Last - 1 loop
4381 if Saved_Linker_Switches.Table (J).all = Output_Flag.all then
4382 declare
4383 Exec_File_Name : constant String :=
4384 Saved_Linker_Switches.Table (J + 1).all;
4386 begin
4387 if not Is_Absolute_Path (Exec_File_Name) then
4388 for Index in Exec_File_Name'Range loop
4389 if Exec_File_Name (Index) = Directory_Separator then
4390 Make_Failed ("relative executable (""",
4391 Exec_File_Name,
4392 """) with directory part not " &
4393 "allowed when using project files");
4394 end if;
4395 end loop;
4397 Get_Name_String (Projects.Table
4398 (Main_Project).Exec_Directory);
4400 if Name_Buffer (Name_Len) /= Directory_Separator then
4401 Name_Len := Name_Len + 1;
4402 Name_Buffer (Name_Len) := Directory_Separator;
4403 end if;
4405 Name_Buffer (Name_Len + 1 ..
4406 Name_Len + Exec_File_Name'Length) :=
4407 Exec_File_Name;
4408 Name_Len := Name_Len + Exec_File_Name'Length;
4409 Saved_Linker_Switches.Table (J + 1) :=
4410 new String'(Name_Buffer (1 .. Name_Len));
4411 end if;
4412 end;
4414 exit;
4415 end if;
4416 end loop;
4418 -- If we are using a project file, for relative paths we add the
4419 -- current working directory for any relative path on the command
4420 -- line and the project directory, for any relative path in the
4421 -- project file.
4423 declare
4424 Dir_Path : constant String_Access :=
4425 new String'(Get_Name_String
4426 (Projects.Table (Main_Project).Directory));
4427 begin
4428 for J in 1 .. Binder_Switches.Last loop
4429 Test_If_Relative_Path
4430 (Binder_Switches.Table (J),
4431 Parent => Dir_Path, Including_L_Switch => False);
4432 end loop;
4434 for J in 1 .. Saved_Binder_Switches.Last loop
4435 Test_If_Relative_Path
4436 (Saved_Binder_Switches.Table (J),
4437 Parent => Current_Work_Dir, Including_L_Switch => False);
4438 end loop;
4440 for J in 1 .. Linker_Switches.Last loop
4441 Test_If_Relative_Path
4442 (Linker_Switches.Table (J), Parent => Dir_Path);
4443 end loop;
4445 for J in 1 .. Saved_Linker_Switches.Last loop
4446 Test_If_Relative_Path
4447 (Saved_Linker_Switches.Table (J), Parent => Current_Work_Dir);
4448 end loop;
4450 for J in 1 .. Gcc_Switches.Last loop
4451 Test_If_Relative_Path
4452 (Gcc_Switches.Table (J), Parent => Dir_Path);
4453 end loop;
4455 for J in 1 .. Saved_Gcc_Switches.Last loop
4456 Test_If_Relative_Path
4457 (Saved_Gcc_Switches.Table (J), Parent => Current_Work_Dir);
4458 end loop;
4459 end;
4460 end if;
4462 -- We now put in the Binder_Switches and Linker_Switches tables,
4463 -- the binder and linker switches of the command line that have been
4464 -- put in the Saved_ tables. If a project file was used, then the
4465 -- command line switches will follow the project file switches.
4467 for J in 1 .. Saved_Binder_Switches.Last loop
4468 Add_Switch
4469 (Saved_Binder_Switches.Table (J),
4470 Binder,
4471 And_Save => False);
4472 end loop;
4474 for J in 1 .. Saved_Linker_Switches.Last loop
4475 Add_Switch
4476 (Saved_Linker_Switches.Table (J),
4477 Linker,
4478 And_Save => False);
4479 end loop;
4481 -- If no project file is used, we just put the gcc switches
4482 -- from the command line in the Gcc_Switches table.
4484 if Main_Project = No_Project then
4485 for J in 1 .. Saved_Gcc_Switches.Last loop
4486 Add_Switch
4487 (Saved_Gcc_Switches.Table (J),
4488 Compiler,
4489 And_Save => False);
4490 end loop;
4492 else
4493 -- And we put the command line gcc switches in the variable
4494 -- The_Saved_Gcc_Switches. They are going to be used later
4495 -- in procedure Compile_Sources.
4497 The_Saved_Gcc_Switches :=
4498 new Argument_List (1 .. Saved_Gcc_Switches.Last + 1);
4500 for J in 1 .. Saved_Gcc_Switches.Last loop
4501 The_Saved_Gcc_Switches (J) := Saved_Gcc_Switches.Table (J);
4502 end loop;
4504 -- We never use gnat.adc when a project file is used
4506 The_Saved_Gcc_Switches (The_Saved_Gcc_Switches'Last) :=
4507 No_gnat_adc;
4509 end if;
4511 -- If there was a --GCC, --GNATBIND or --GNATLINK switch on
4512 -- the command line, then we have to use it, even if there was
4513 -- another switch in the project file.
4515 if Saved_Gcc /= null then
4516 Gcc := Saved_Gcc;
4517 end if;
4519 if Saved_Gnatbind /= null then
4520 Gnatbind := Saved_Gnatbind;
4521 end if;
4523 if Saved_Gnatlink /= null then
4524 Gnatlink := Saved_Gnatlink;
4525 end if;
4527 Gcc_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gcc.all);
4528 Gnatbind_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gnatbind.all);
4529 Gnatlink_Path := GNAT.OS_Lib.Locate_Exec_On_Path (Gnatlink.all);
4531 -- If we have specified -j switch both from the project file
4532 -- and on the command line, the one from the command line takes
4533 -- precedence.
4535 if Saved_Maximum_Processes = 0 then
4536 Saved_Maximum_Processes := Maximum_Processes;
4537 end if;
4539 -- Allocate as many temporary mapping file names as the maximum
4540 -- number of compilation processed, for each possible project.
4542 The_Mapping_File_Names :=
4543 new Temp_File_Names
4544 (No_Project .. Projects.Last, 1 .. Saved_Maximum_Processes);
4545 Last_Mapping_File_Names :=
4546 new Indices'(No_Project .. Projects.Last => 0);
4548 The_Free_Mapping_File_Indices :=
4549 new Free_File_Indices
4550 (No_Project .. Projects.Last, 1 .. Saved_Maximum_Processes);
4551 Last_Free_Indices :=
4552 new Indices'(No_Project .. Projects.Last => 0);
4554 Bad_Compilation.Init;
4556 Current_Main_Index := Main_Index;
4558 -- Here is where the make process is started
4560 -- We do the same process for each main
4562 Multiple_Main_Loop : for N_File in 1 .. Osint.Number_Of_Files loop
4564 -- First, find the executable name and path
4566 Executable := No_File;
4567 Executable_Obsolete := False;
4568 Non_Std_Executable := False;
4570 -- Look inside the linker switches to see if the name
4571 -- of the final executable program was specified.
4574 J in reverse Linker_Switches.First .. Linker_Switches.Last
4575 loop
4576 if Linker_Switches.Table (J).all = Output_Flag.all then
4577 pragma Assert (J < Linker_Switches.Last);
4579 -- We cannot specify a single executable for several
4580 -- main subprograms!
4582 if Osint.Number_Of_Files > 1 then
4583 Fail
4584 ("cannot specify a single executable " &
4585 "for several mains");
4586 end if;
4588 Name_Len := Linker_Switches.Table (J + 1)'Length;
4589 Name_Buffer (1 .. Name_Len) :=
4590 Linker_Switches.Table (J + 1).all;
4591 Executable := Name_Enter;
4593 Verbose_Msg (Executable, "final executable");
4594 end if;
4595 end loop;
4597 -- If the name of the final executable program was not
4598 -- specified then construct it from the main input file.
4600 if Executable = No_File then
4601 if Main_Project = No_Project then
4602 Executable :=
4603 Executable_Name (Strip_Suffix (Main_Source_File));
4605 else
4606 -- If we are using a project file, we attempt to
4607 -- remove the body (or spec) termination of the main
4608 -- subprogram. We find it the the naming scheme of the
4609 -- project file. This will avoid to generate an
4610 -- executable "main.2" for a main subprogram
4611 -- "main.2.ada", when the body termination is ".2.ada".
4613 Executable := Prj.Util.Executable_Of
4614 (Main_Project, Main_Source_File, Main_Index);
4615 end if;
4616 end if;
4618 if Main_Project /= No_Project then
4619 declare
4620 Exec_File_Name : constant String :=
4621 Get_Name_String (Executable);
4623 begin
4624 if not Is_Absolute_Path (Exec_File_Name) then
4625 for Index in Exec_File_Name'Range loop
4626 if Exec_File_Name (Index) = Directory_Separator then
4627 Make_Failed ("relative executable (""",
4628 Exec_File_Name,
4629 """) with directory part not " &
4630 "allowed when using project files");
4631 end if;
4632 end loop;
4634 Get_Name_String (Projects.Table
4635 (Main_Project).Exec_Directory);
4638 Name_Buffer (Name_Len) /= Directory_Separator
4639 then
4640 Name_Len := Name_Len + 1;
4641 Name_Buffer (Name_Len) := Directory_Separator;
4642 end if;
4644 Name_Buffer (Name_Len + 1 ..
4645 Name_Len + Exec_File_Name'Length) :=
4646 Exec_File_Name;
4647 Name_Len := Name_Len + Exec_File_Name'Length;
4648 Executable := Name_Find;
4649 Non_Std_Executable := True;
4650 end if;
4651 end;
4653 end if;
4655 if Do_Compile_Step then
4656 Recursive_Compilation_Step : declare
4657 Args : Argument_List (1 .. Gcc_Switches.Last);
4659 First_Compiled_File : Name_Id;
4660 Youngest_Obj_File : Name_Id;
4661 Youngest_Obj_Stamp : Time_Stamp_Type;
4663 Executable_Stamp : Time_Stamp_Type;
4664 -- Executable is the final executable program.
4666 Library_Rebuilt : Boolean := False;
4668 begin
4669 for J in 1 .. Gcc_Switches.Last loop
4670 Args (J) := Gcc_Switches.Table (J);
4671 end loop;
4673 -- Now we invoke Compile_Sources for the current main
4675 Compile_Sources
4676 (Main_Source => Main_Source_File,
4677 Args => Args,
4678 First_Compiled_File => First_Compiled_File,
4679 Most_Recent_Obj_File => Youngest_Obj_File,
4680 Most_Recent_Obj_Stamp => Youngest_Obj_Stamp,
4681 Main_Unit => Is_Main_Unit,
4682 Main_Index => Current_Main_Index,
4683 Compilation_Failures => Compilation_Failures,
4684 Check_Readonly_Files => Check_Readonly_Files,
4685 Do_Not_Execute => Do_Not_Execute,
4686 Force_Compilations => Force_Compilations,
4687 In_Place_Mode => In_Place_Mode,
4688 Keep_Going => Keep_Going,
4689 Initialize_ALI_Data => True,
4690 Max_Process => Saved_Maximum_Processes);
4692 if Verbose_Mode then
4693 Write_Str ("End of compilation");
4694 Write_Eol;
4695 end if;
4697 -- Make sure the queue will be reinitialized for the next round
4699 First_Q_Initialization := True;
4701 Total_Compilation_Failures :=
4702 Total_Compilation_Failures + Compilation_Failures;
4704 if Total_Compilation_Failures /= 0 then
4705 if Keep_Going then
4706 goto Next_Main;
4708 else
4709 List_Bad_Compilations;
4710 raise Compilation_Failed;
4711 end if;
4712 end if;
4714 -- Regenerate libraries, if any, and if object files
4715 -- have been regenerated.
4717 if Main_Project /= No_Project
4718 and then MLib.Tgt.Support_For_Libraries /= MLib.Tgt.None
4719 and then (Do_Bind_Step or Unique_Compile_All_Projects
4720 or not Compile_Only)
4721 and then (Do_Link_Step or N_File = Osint.Number_Of_Files)
4722 then
4723 Library_Projs.Init;
4725 declare
4726 Proj2 : Project_Id;
4727 Depth : Natural;
4728 Current : Natural;
4730 begin
4731 -- Put in Library_Projs table all library project
4732 -- file ids when the library need to be rebuilt.
4734 for Proj1 in Projects.First .. Projects.Last loop
4736 if Projects.Table (Proj1).Standalone_Library then
4737 There_Are_Stand_Alone_Libraries := True;
4738 end if;
4740 if Projects.Table (Proj1).Library
4741 and then not Projects.Table (Proj1).Need_To_Build_Lib
4742 then
4743 MLib.Prj.Check_Library (Proj1);
4744 end if;
4746 if Projects.Table (Proj1).Need_To_Build_Lib then
4747 Library_Projs.Increment_Last;
4748 Current := Library_Projs.Last;
4749 Depth := Projects.Table (Proj1).Depth;
4751 -- Put the projects in decreasing depth order,
4752 -- so that if libA depends on libB, libB is first
4753 -- in order.
4755 while Current > 1 loop
4756 Proj2 := Library_Projs.Table (Current - 1);
4757 exit when Projects.Table (Proj2).Depth >= Depth;
4758 Library_Projs.Table (Current) := Proj2;
4759 Current := Current - 1;
4760 end loop;
4762 Library_Projs.Table (Current) := Proj1;
4763 Projects.Table (Proj1).Need_To_Build_Lib := False;
4764 end if;
4765 end loop;
4766 end;
4768 -- Build the libraries, if any need to be built
4770 for J in 1 .. Library_Projs.Last loop
4771 Library_Rebuilt := True;
4772 MLib.Prj.Build_Library
4773 (For_Project => Library_Projs.Table (J),
4774 Gnatbind => Gnatbind.all,
4775 Gnatbind_Path => Gnatbind_Path,
4776 Gcc => Gcc.all,
4777 Gcc_Path => Gcc_Path);
4778 end loop;
4779 end if;
4781 if List_Dependencies then
4782 if First_Compiled_File /= No_File then
4783 Inform
4784 (First_Compiled_File,
4785 "must be recompiled. Can't generate dependence list.");
4786 else
4787 List_Depend;
4788 end if;
4790 elsif First_Compiled_File = No_File
4791 and then not Do_Bind_Step
4792 and then not Quiet_Output
4793 and then not Library_Rebuilt
4794 and then Osint.Number_Of_Files = 1
4795 then
4796 Inform (Msg => "objects up to date.");
4798 elsif Do_Not_Execute
4799 and then First_Compiled_File /= No_File
4800 then
4801 Write_Name (First_Compiled_File);
4802 Write_Eol;
4803 end if;
4805 -- Stop after compile step if any of:
4807 -- 1) -n (Do_Not_Execute) specified
4809 -- 2) -M (List_Dependencies) specified (also sets
4810 -- Do_Not_Execute above, so this is probably superfluous).
4812 -- 3) -c (Compile_Only) specified, but not -b (Bind_Only)
4814 -- 4) Made unit cannot be a main unit
4816 if (Do_Not_Execute
4817 or List_Dependencies
4818 or not Do_Bind_Step
4819 or not Is_Main_Unit)
4820 and then not No_Main_Subprogram
4821 and then not Build_Bind_And_Link_Full_Project
4822 then
4823 if Osint.Number_Of_Files = 1 then
4824 exit Multiple_Main_Loop;
4826 else
4827 goto Next_Main;
4828 end if;
4829 end if;
4831 -- If the objects were up-to-date check if the executable file
4832 -- is also up-to-date. For now always bind and link on the JVM
4833 -- since there is currently no simple way to check the
4834 -- up-to-date status of objects
4836 if not Hostparm.Java_VM
4837 and then First_Compiled_File = No_File
4838 then
4839 Executable_Stamp := File_Stamp (Executable);
4841 if not Executable_Obsolete then
4842 Executable_Obsolete :=
4843 Youngest_Obj_Stamp > Executable_Stamp;
4844 end if;
4846 if not Executable_Obsolete then
4847 for Index in reverse 1 .. Dependencies.Last loop
4848 if Is_In_Obsoleted
4849 (Dependencies.Table (Index).Depends_On)
4850 then
4851 Enter_Into_Obsoleted
4852 (Dependencies.Table (Index).This);
4853 end if;
4854 end loop;
4856 Executable_Obsolete := Is_In_Obsoleted (Main_Source_File);
4857 Dependencies.Init;
4858 end if;
4860 if not Executable_Obsolete then
4862 -- If no Ada object files obsolete the executable, check
4863 -- for younger or missing linker files.
4865 Check_Linker_Options
4866 (Executable_Stamp,
4867 Youngest_Obj_File,
4868 Youngest_Obj_Stamp);
4870 Executable_Obsolete := Youngest_Obj_File /= No_File;
4871 end if;
4873 -- Return if the executable is up to date
4874 -- and otherwise motivate the relink/rebind.
4876 if not Executable_Obsolete then
4877 if not Quiet_Output then
4878 Inform (Executable, "up to date.");
4879 end if;
4881 if Osint.Number_Of_Files = 1 then
4882 exit Multiple_Main_Loop;
4884 else
4885 goto Next_Main;
4886 end if;
4887 end if;
4889 if Executable_Stamp (1) = ' ' then
4890 Verbose_Msg (Executable, "missing.", Prefix => " ");
4892 elsif Youngest_Obj_Stamp (1) = ' ' then
4893 Verbose_Msg
4894 (Youngest_Obj_File,
4895 "missing.",
4896 Prefix => " ");
4898 elsif Youngest_Obj_Stamp > Executable_Stamp then
4899 Verbose_Msg
4900 (Youngest_Obj_File,
4901 "(" & String (Youngest_Obj_Stamp) & ") newer than",
4902 Executable,
4903 "(" & String (Executable_Stamp) & ")");
4905 else
4906 Verbose_Msg
4907 (Executable, "needs to be rebuild.",
4908 Prefix => " ");
4910 end if;
4911 end if;
4912 end Recursive_Compilation_Step;
4913 end if;
4915 -- For binding and linking, we need to be in the object directory of
4916 -- the main project.
4918 if Main_Project /= No_Project then
4919 Change_To_Object_Directory (Main_Project);
4920 end if;
4922 -- If we are here, it means that we need to rebuilt the current
4923 -- main. So we set Executable_Obsolete to True to make sure that
4924 -- the subsequent mains will be rebuilt.
4926 Main_ALI_In_Place_Mode_Step : declare
4927 ALI_File : File_Name_Type;
4928 Src_File : File_Name_Type;
4930 begin
4931 Src_File := Strip_Directory (Main_Source_File);
4932 ALI_File := Lib_File_Name (Src_File, Current_Main_Index);
4933 Main_ALI_File := Full_Lib_File_Name (ALI_File);
4935 -- When In_Place_Mode, the library file can be located in the
4936 -- Main_Source_File directory which may not be present in the
4937 -- library path. In this case, use the corresponding library file
4938 -- name.
4940 if Main_ALI_File = No_File and then In_Place_Mode then
4941 Get_Name_String (Get_Directory (Full_Source_Name (Src_File)));
4942 Get_Name_String_And_Append (ALI_File);
4943 Main_ALI_File := Name_Find;
4944 Main_ALI_File := Full_Lib_File_Name (Main_ALI_File);
4945 end if;
4947 if Main_ALI_File = No_File then
4948 Make_Failed ("could not find the main ALI file");
4949 end if;
4950 end Main_ALI_In_Place_Mode_Step;
4952 if Do_Bind_Step then
4953 Bind_Step : declare
4954 Args : Argument_List
4955 (Binder_Switches.First .. Binder_Switches.Last + 2);
4956 -- The arguments for the invocation of gnatbind
4958 Last_Arg : Natural := Binder_Switches.Last;
4959 -- Index of the last argument in Args
4961 begin
4962 -- If it is the first time the bind step is performed,
4963 -- check if there are shared libraries, so that gnatbind is
4964 -- called with -shared.
4966 if not Bind_Shared_Known then
4967 if Main_Project /= No_Project
4968 and then MLib.Tgt.Support_For_Libraries /= MLib.Tgt.None
4969 then
4970 for Proj in Projects.First .. Projects.Last loop
4971 if Projects.Table (Proj).Library and then
4972 Projects.Table (Proj).Library_Kind /= Static
4973 then
4974 Bind_Shared := Shared_Switch'Access;
4976 if GCC_Version >= 3 then
4977 Link_With_Shared_Libgcc :=
4978 Shared_Libgcc_Switch'Access;
4979 end if;
4981 exit;
4982 end if;
4983 end loop;
4984 end if;
4986 Bind_Shared_Known := True;
4987 end if;
4989 -- Get all the binder switches
4991 for J in Binder_Switches.First .. Last_Arg loop
4992 Args (J) := Binder_Switches.Table (J);
4993 end loop;
4995 if There_Are_Stand_Alone_Libraries then
4996 Last_Arg := Last_Arg + 1;
4997 Args (Last_Arg) := Force_Elab_Flags_String'Access;
4998 end if;
5000 if Main_Project /= No_Project then
5002 -- Put all the source directories in ADA_INCLUDE_PATH,
5003 -- and all the object directories in ADA_OBJECTS_PATH
5005 Prj.Env.Set_Ada_Paths (Main_Project, False);
5007 -- If switch -C was specified, create a binder mapping file
5009 if Create_Mapping_File then
5010 Create_Binder_Mapping_File (Args, Last_Arg);
5011 end if;
5013 end if;
5015 begin
5016 Bind (Main_ALI_File,
5017 Bind_Shared.all & Args (Args'First .. Last_Arg));
5019 exception
5020 when others =>
5022 -- If -dn was not specified, delete the temporary mapping
5023 -- file, if one was created.
5025 if not Debug.Debug_Flag_N
5026 and then Mapping_Path /= No_Name
5027 then
5028 Delete_File (Get_Name_String (Mapping_Path), Discard);
5029 end if;
5031 -- And reraise the exception
5033 raise;
5034 end;
5036 -- If -dn was not specified, delete the temporary mapping file,
5037 -- if one was created.
5039 if not Debug.Debug_Flag_N and then Mapping_Path /= No_Name then
5040 Delete_File (Get_Name_String (Mapping_Path), Discard);
5041 end if;
5042 end Bind_Step;
5043 end if;
5045 if Do_Link_Step then
5046 Link_Step : declare
5047 There_Are_Libraries : Boolean := False;
5048 Linker_Switches_Last : constant Integer := Linker_Switches.Last;
5049 Path_Option : constant String_Access :=
5050 MLib.Linker_Library_Path_Option;
5051 Current : Natural;
5052 Proj2 : Project_Id;
5053 Depth : Natural;
5055 begin
5056 if not Run_Path_Option then
5057 Linker_Switches.Increment_Last;
5058 Linker_Switches.Table (Linker_Switches.Last) :=
5059 new String'("-R");
5060 end if;
5062 if Main_Project /= No_Project then
5063 Library_Paths.Set_Last (0);
5064 Library_Projs.Init;
5066 if MLib.Tgt.Support_For_Libraries /= MLib.Tgt.None then
5067 -- Check for library projects
5069 for Proj1 in 1 .. Projects.Last loop
5070 if Proj1 /= Main_Project
5071 and then Projects.Table (Proj1).Library
5072 then
5073 -- Add this project to table Library_Projs
5075 There_Are_Libraries := True;
5076 Depth := Projects.Table (Proj1).Depth;
5077 Library_Projs.Increment_Last;
5078 Current := Library_Projs.Last;
5080 -- Any project with a greater depth should be
5081 -- after this project in the list.
5083 while Current > 1 loop
5084 Proj2 := Library_Projs.Table (Current - 1);
5085 exit when Projects.Table (Proj2).Depth <= Depth;
5086 Library_Projs.Table (Current) := Proj2;
5087 Current := Current - 1;
5088 end loop;
5090 Library_Projs.Table (Current) := Proj1;
5092 -- If it is not a static library and path option
5093 -- is set, add it to the Library_Paths table.
5095 if Projects.Table (Proj1).Library_Kind /= Static
5096 and then Path_Option /= null
5097 then
5098 Library_Paths.Increment_Last;
5099 Library_Paths.Table (Library_Paths.Last) :=
5100 new String'
5101 (Get_Name_String
5102 (Projects.Table (Proj1).Library_Dir));
5103 end if;
5104 end if;
5105 end loop;
5107 for Index in 1 .. Library_Projs.Last loop
5108 -- Add the -L switch
5110 Linker_Switches.Increment_Last;
5111 Linker_Switches.Table (Linker_Switches.Last) :=
5112 new String'("-L" &
5113 Get_Name_String
5114 (Projects.Table
5115 (Library_Projs.Table (Index)).
5116 Library_Dir));
5118 -- Add the -l switch
5120 Linker_Switches.Increment_Last;
5121 Linker_Switches.Table (Linker_Switches.Last) :=
5122 new String'("-l" &
5123 Get_Name_String
5124 (Projects.Table
5125 (Library_Projs.Table (Index)).
5126 Library_Name));
5127 end loop;
5128 end if;
5130 if There_Are_Libraries then
5132 -- If Path_Option is not null, create the switch
5133 -- ("-Wl,-rpath," or equivalent) with all the non static
5134 -- library dirs plus the standard GNAT library dir.
5135 -- We do that only if Run_Path_Option is True
5136 -- (not disabled by -R switch).
5138 if Run_Path_Option and Path_Option /= null then
5139 declare
5140 Option : String_Access;
5141 Length : Natural := Path_Option'Length;
5142 Current : Natural;
5144 begin
5145 for Index in
5146 Library_Paths.First .. Library_Paths.Last
5147 loop
5148 -- Add the length of the library dir plus one
5149 -- for the directory separator.
5151 Length :=
5152 Length +
5153 Library_Paths.Table (Index)'Length + 1;
5154 end loop;
5156 -- Finally, add the length of the standard GNAT
5157 -- library dir.
5159 Length := Length + MLib.Utl.Lib_Directory'Length;
5160 Option := new String (1 .. Length);
5161 Option (1 .. Path_Option'Length) := Path_Option.all;
5162 Current := Path_Option'Length;
5164 -- Put each library dir followed by a dir separator
5166 for Index in
5167 Library_Paths.First .. Library_Paths.Last
5168 loop
5169 Option
5170 (Current + 1 ..
5171 Current +
5172 Library_Paths.Table (Index)'Length) :=
5173 Library_Paths.Table (Index).all;
5174 Current :=
5175 Current +
5176 Library_Paths.Table (Index)'Length + 1;
5177 Option (Current) := Path_Separator;
5178 end loop;
5180 -- Finally put the standard GNAT library dir
5182 Option
5183 (Current + 1 ..
5184 Current + MLib.Utl.Lib_Directory'Length) :=
5185 MLib.Utl.Lib_Directory;
5187 -- And add the switch to the linker switches
5189 Linker_Switches.Increment_Last;
5190 Linker_Switches.Table (Linker_Switches.Last) :=
5191 Option;
5192 end;
5193 end if;
5195 end if;
5197 -- Put the object directories in ADA_OBJECTS_PATH
5199 Prj.Env.Set_Ada_Paths (Main_Project, False);
5201 -- Check for attributes Linker'Linker_Options in projects
5202 -- other than the main project
5204 declare
5205 Linker_Options : constant String_List :=
5206 Linker_Options_Switches (Main_Project);
5208 begin
5209 for Option in Linker_Options'Range loop
5210 Linker_Switches.Increment_Last;
5211 Linker_Switches.Table (Linker_Switches.Last) :=
5212 Linker_Options (Option);
5213 end loop;
5214 end;
5215 end if;
5217 declare
5218 Args : Argument_List
5219 (Linker_Switches.First .. Linker_Switches.Last + 2);
5221 Last_Arg : Integer := Linker_Switches.First - 1;
5222 Skip : Boolean := False;
5224 begin
5225 -- Get all the linker switches
5227 for J in Linker_Switches.First .. Linker_Switches.Last loop
5228 if Skip then
5229 Skip := False;
5231 elsif Non_Std_Executable
5232 and then Linker_Switches.Table (J).all = "-o"
5233 then
5234 Skip := True;
5236 else
5237 Last_Arg := Last_Arg + 1;
5238 Args (Last_Arg) := Linker_Switches.Table (J);
5239 end if;
5240 end loop;
5242 -- If need be, add the -o switch
5244 if Non_Std_Executable then
5245 Last_Arg := Last_Arg + 1;
5246 Args (Last_Arg) := new String'("-o");
5247 Last_Arg := Last_Arg + 1;
5248 Args (Last_Arg) :=
5249 new String'(Get_Name_String (Executable));
5250 end if;
5252 -- And invoke the linker
5254 begin
5255 Link (Main_ALI_File,
5256 Link_With_Shared_Libgcc.all &
5257 Args (Args'First .. Last_Arg));
5258 Successful_Links.Increment_Last;
5259 Successful_Links.Table (Successful_Links.Last) :=
5260 Main_ALI_File;
5262 exception
5263 when Link_Failed =>
5264 if Osint.Number_Of_Files = 1 or not Keep_Going then
5265 raise;
5267 else
5268 Write_Line ("*** link failed");
5269 Failed_Links.Increment_Last;
5270 Failed_Links.Table (Failed_Links.Last) :=
5271 Main_ALI_File;
5272 end if;
5273 end;
5274 end;
5276 Linker_Switches.Set_Last (Linker_Switches_Last);
5277 end Link_Step;
5278 end if;
5280 -- We go to here when we skip the bind and link steps.
5282 <<Next_Main>>
5284 -- We go to the next main, if we did not process the last one
5286 if N_File < Osint.Number_Of_Files then
5287 Main_Source_File := Next_Main_Source;
5289 if Current_File_Index /= No_Index then
5290 Main_Index := Current_File_Index;
5291 end if;
5293 if Main_Project /= No_Project then
5295 -- Find the file name of the main unit
5297 declare
5298 Main_Source_File_Name : constant String :=
5299 Get_Name_String (Main_Source_File);
5301 Main_Unit_File_Name : constant String :=
5302 Prj.Env.
5303 File_Name_Of_Library_Unit_Body
5304 (Name => Main_Source_File_Name,
5305 Project => Main_Project,
5306 Main_Project_Only =>
5307 not Unique_Compile);
5309 The_Packages : constant Package_Id :=
5310 Projects.Table (Main_Project).Decl.Packages;
5312 Binder_Package : constant Prj.Package_Id :=
5313 Prj.Util.Value_Of
5314 (Name => Name_Binder,
5315 In_Packages => The_Packages);
5317 Linker_Package : constant Prj.Package_Id :=
5318 Prj.Util.Value_Of
5319 (Name => Name_Linker,
5320 In_Packages => The_Packages);
5322 begin
5323 -- We fail if we cannot find the main source file
5324 -- as an immediate source of the main project file.
5326 if Main_Unit_File_Name = "" then
5327 Make_Failed ('"' & Main_Source_File_Name,
5328 """ is not a unit of project ",
5329 Project_File_Name.all & ".");
5331 else
5332 -- Remove any directory information from the main
5333 -- source file name.
5335 declare
5336 Pos : Natural := Main_Unit_File_Name'Last;
5338 begin
5339 loop
5340 exit when Pos < Main_Unit_File_Name'First
5341 or else
5342 Main_Unit_File_Name (Pos) = Directory_Separator;
5343 Pos := Pos - 1;
5344 end loop;
5346 Name_Len := Main_Unit_File_Name'Last - Pos;
5348 Name_Buffer (1 .. Name_Len) :=
5349 Main_Unit_File_Name
5350 (Pos + 1 .. Main_Unit_File_Name'Last);
5352 Main_Source_File := Name_Find;
5353 end;
5354 end if;
5356 -- We now deal with the binder and linker switches.
5357 -- If no project file is used, there is nothing to do
5358 -- because the binder and linker switches are the same
5359 -- for all mains.
5361 -- Reset the tables Binder_Switches and Linker_Switches
5363 Binder_Switches.Set_Last (Last_Binder_Switch);
5364 Linker_Switches.Set_Last (Last_Linker_Switch);
5366 -- Add binder switches from the project file for this main,
5367 -- if any.
5369 if Do_Bind_Step and Binder_Package /= No_Package then
5370 if Verbose_Mode then
5371 Write_Str ("Adding binder switches for """);
5372 Write_Str (Main_Unit_File_Name);
5373 Write_Line (""".");
5374 end if;
5376 Add_Switches
5377 (File_Name => Main_Unit_File_Name,
5378 Index => Main_Index,
5379 The_Package => Binder_Package,
5380 Program => Binder);
5381 end if;
5383 -- Add linker switches from the project file for this main,
5384 -- if any.
5386 if Do_Link_Step and Linker_Package /= No_Package then
5387 if Verbose_Mode then
5388 Write_Str ("Adding linker switches for""");
5389 Write_Str (Main_Unit_File_Name);
5390 Write_Line (""".");
5391 end if;
5393 Add_Switches
5394 (File_Name => Main_Unit_File_Name,
5395 Index => Main_Index,
5396 The_Package => Linker_Package,
5397 Program => Linker);
5398 end if;
5400 -- As we are using a project file, for relative paths we add
5401 -- the current working directory for any relative path on
5402 -- the command line and the project directory, for any
5403 -- relative path in the project file.
5405 declare
5406 Dir_Path : constant String_Access :=
5407 new String'(Get_Name_String
5408 (Projects.Table (Main_Project).Directory));
5409 begin
5411 J in Last_Binder_Switch + 1 .. Binder_Switches.Last
5412 loop
5413 Test_If_Relative_Path
5414 (Binder_Switches.Table (J),
5415 Parent => Dir_Path, Including_L_Switch => False);
5416 end loop;
5419 J in Last_Linker_Switch + 1 .. Linker_Switches.Last
5420 loop
5421 Test_If_Relative_Path
5422 (Linker_Switches.Table (J), Parent => Dir_Path);
5423 end loop;
5424 end;
5426 -- We now put in the Binder_Switches and Linker_Switches
5427 -- tables, the binder and linker switches of the command
5428 -- line that have been put in the Saved_ tables.
5429 -- These switches will follow the project file switches.
5431 for J in 1 .. Saved_Binder_Switches.Last loop
5432 Add_Switch
5433 (Saved_Binder_Switches.Table (J),
5434 Binder,
5435 And_Save => False);
5436 end loop;
5438 for J in 1 .. Saved_Linker_Switches.Last loop
5439 Add_Switch
5440 (Saved_Linker_Switches.Table (J),
5441 Linker,
5442 And_Save => False);
5443 end loop;
5444 end;
5445 end if;
5446 end if;
5448 -- Remove all marks to be sure to check sources for all executables,
5449 -- as the switches may be different and -s may be in use.
5451 Delete_All_Marks;
5452 end loop Multiple_Main_Loop;
5454 if Failed_Links.Last > 0 then
5455 for Index in 1 .. Successful_Links.Last loop
5456 Write_Str ("Linking of """);
5457 Write_Str (Get_Name_String (Successful_Links.Table (Index)));
5458 Write_Line (""" succeeded.");
5459 end loop;
5461 for Index in 1 .. Failed_Links.Last loop
5462 Write_Str ("Linking of """);
5463 Write_Str (Get_Name_String (Failed_Links.Table (Index)));
5464 Write_Line (""" failed.");
5465 end loop;
5467 if Total_Compilation_Failures = 0 then
5468 raise Compilation_Failed;
5469 end if;
5470 end if;
5472 if Total_Compilation_Failures /= 0 then
5473 List_Bad_Compilations;
5474 raise Compilation_Failed;
5475 end if;
5477 -- Delete the temporary mapping file that was created if we are
5478 -- using project files.
5480 if not Debug.Debug_Flag_N then
5481 Delete_Mapping_Files;
5482 Prj.Env.Delete_All_Path_Files;
5483 end if;
5485 Exit_Program (E_Success);
5487 exception
5488 when Bind_Failed =>
5489 Make_Failed ("*** bind failed.");
5491 when Compilation_Failed =>
5492 if not Debug.Debug_Flag_N then
5493 Delete_Mapping_Files;
5494 Prj.Env.Delete_All_Path_Files;
5495 end if;
5497 Exit_Program (E_Fatal);
5499 when Link_Failed =>
5500 Make_Failed ("*** link failed.");
5502 when X : others =>
5503 Write_Line (Exception_Information (X));
5504 Make_Failed ("INTERNAL ERROR. Please report.");
5505 end Gnatmake;
5507 ----------
5508 -- Hash --
5509 ----------
5511 function Hash (F : Name_Id) return Header_Num is
5512 begin
5513 return Header_Num (1 + F mod Max_Header);
5514 end Hash;
5516 --------------------
5517 -- In_Ada_Lib_Dir --
5518 --------------------
5520 function In_Ada_Lib_Dir (File : File_Name_Type) return Boolean is
5521 D : constant Name_Id := Get_Directory (File);
5522 B : constant Byte := Get_Name_Table_Byte (D);
5523 begin
5524 return (B and Ada_Lib_Dir) /= 0;
5525 end In_Ada_Lib_Dir;
5527 ------------
5528 -- Inform --
5529 ------------
5531 procedure Inform (N : Name_Id := No_Name; Msg : String) is
5532 begin
5533 Osint.Write_Program_Name;
5535 Write_Str (": ");
5537 if N /= No_Name then
5538 Write_Str ("""");
5539 Write_Name (N);
5540 Write_Str (""" ");
5541 end if;
5543 Write_Str (Msg);
5544 Write_Eol;
5545 end Inform;
5547 -----------------------
5548 -- Init_Mapping_File --
5549 -----------------------
5551 procedure Init_Mapping_File
5552 (Project : Project_Id;
5553 File_Index : in out Natural)
5555 FD : File_Descriptor;
5557 Status : Boolean;
5558 -- For call to Close
5560 begin
5561 -- Increase the index of the last mapping file for this project
5563 Last_Mapping_File_Names (Project) :=
5564 Last_Mapping_File_Names (Project) + 1;
5566 -- If there is a project file, call Create_Mapping_File with
5567 -- the project id.
5569 if Project /= No_Project then
5570 Prj.Env.Create_Mapping_File
5571 (Project,
5572 The_Mapping_File_Names
5573 (Project, Last_Mapping_File_Names (Project)));
5575 -- Otherwise, just create an empty file
5577 else
5578 Tempdir.Create_Temp_File
5579 (FD,
5580 The_Mapping_File_Names
5581 (No_Project, Last_Mapping_File_Names (No_Project)));
5582 if FD = Invalid_FD then
5583 Make_Failed ("disk full");
5584 end if;
5586 Close (FD, Status);
5588 if not Status then
5589 Make_Failed ("disk full");
5590 end if;
5591 end if;
5593 -- And return the index of the newly created file
5595 File_Index := Last_Mapping_File_Names (Project);
5596 end Init_Mapping_File;
5598 ------------
5599 -- Init_Q --
5600 ------------
5602 procedure Init_Q is
5603 begin
5604 First_Q_Initialization := False;
5605 Q_Front := Q.First;
5606 Q.Set_Last (Q.First);
5607 end Init_Q;
5609 ----------------
5610 -- Initialize --
5611 ----------------
5613 procedure Initialize is
5614 begin
5615 -- Override default initialization of Check_Object_Consistency
5616 -- since this is normally False for GNATBIND, but is True for
5617 -- GNATMAKE since we do not need to check source consistency
5618 -- again once GNATMAKE has looked at the sources to check.
5620 Check_Object_Consistency := True;
5622 -- Package initializations. The order of calls is important here.
5624 Output.Set_Standard_Error;
5626 Gcc_Switches.Init;
5627 Binder_Switches.Init;
5628 Linker_Switches.Init;
5630 Csets.Initialize;
5631 Namet.Initialize;
5633 Snames.Initialize;
5635 Prj.Initialize;
5637 Dependencies.Init;
5639 RTS_Specified := null;
5641 Mains.Delete;
5643 -- Add the directory where gnatmake is invoked in front of the
5644 -- path, if gnatmake is invoked with directory information.
5645 -- Only do this if the platform is not VMS, where the notion of path
5646 -- does not really exist.
5648 if not OpenVMS then
5649 declare
5650 Command : constant String := Command_Name;
5652 begin
5653 for Index in reverse Command'Range loop
5654 if Command (Index) = Directory_Separator then
5655 declare
5656 Absolute_Dir : constant String :=
5657 Normalize_Pathname
5658 (Command (Command'First .. Index));
5660 PATH : constant String :=
5661 Absolute_Dir &
5662 Path_Separator &
5663 Getenv ("PATH").all;
5665 begin
5666 Setenv ("PATH", PATH);
5667 end;
5669 exit;
5670 end if;
5671 end loop;
5672 end;
5673 end if;
5675 -- Scan the switches and arguments
5677 Scan_Args : for Next_Arg in 1 .. Argument_Count loop
5678 Scan_Make_Arg (Argument (Next_Arg), And_Save => True);
5679 end loop Scan_Args;
5681 if Usage_Requested then
5682 Usage;
5683 end if;
5685 -- Test for trailing -P switch
5687 if Project_File_Name_Present and then Project_File_Name = null then
5688 Make_Failed ("project file name missing after -P");
5690 -- Test for trailing -o switch
5692 elsif Output_File_Name_Present
5693 and then not Output_File_Name_Seen
5694 then
5695 Make_Failed ("output file name missing after -o");
5697 -- Test for trailing -D switch
5699 elsif Object_Directory_Present
5700 and then not Object_Directory_Seen then
5701 Make_Failed ("object directory missing after -D");
5702 end if;
5704 -- Test for simultaneity of -i and -D
5706 if Object_Directory_Path /= null and then In_Place_Mode then
5707 Make_Failed ("-i and -D cannot be used simutaneously");
5708 end if;
5710 -- Deal with -C= switch
5712 if Gnatmake_Mapping_File /= null then
5713 -- First, check compatibility with other switches
5715 if Project_File_Name /= null then
5716 Make_Failed ("-C= switch is not compatible with -P switch");
5718 elsif Saved_Maximum_Processes > 1 then
5719 Make_Failed ("-C= switch is not compatible with -jnnn switch");
5720 end if;
5722 Fmap.Initialize (Gnatmake_Mapping_File.all);
5723 Add_Switch
5724 ("-gnatem=" & Gnatmake_Mapping_File.all,
5725 Compiler,
5726 And_Save => True);
5727 end if;
5729 if Project_File_Name /= null then
5731 -- A project file was specified by a -P switch
5733 if Verbose_Mode then
5734 Write_Eol;
5735 Write_Str ("Parsing Project File """);
5736 Write_Str (Project_File_Name.all);
5737 Write_Str (""".");
5738 Write_Eol;
5739 end if;
5741 -- Avoid looking in the current directory for ALI files
5743 -- Look_In_Primary_Dir := False;
5745 -- Set the project parsing verbosity to whatever was specified
5746 -- by a possible -vP switch.
5748 Prj.Pars.Set_Verbosity (To => Current_Verbosity);
5750 -- Parse the project file.
5751 -- If there is an error, Main_Project will still be No_Project.
5753 Prj.Pars.Parse
5754 (Project => Main_Project,
5755 Project_File_Name => Project_File_Name.all,
5756 Packages_To_Check => Packages_To_Check_By_Gnatmake);
5758 if Main_Project = No_Project then
5759 Make_Failed ("""", Project_File_Name.all, """ processing failed");
5760 end if;
5762 if Verbose_Mode then
5763 Write_Eol;
5764 Write_Str ("Parsing of Project File """);
5765 Write_Str (Project_File_Name.all);
5766 Write_Str (""" is finished.");
5767 Write_Eol;
5768 end if;
5770 -- We add the source directories and the object directories
5771 -- to the search paths.
5773 Add_Source_Directories (Main_Project);
5774 Add_Object_Directories (Main_Project);
5776 -- Compute depth of each project
5778 for Proj in 1 .. Projects.Last loop
5779 Projects.Table (Proj).Seen := False;
5780 Projects.Table (Proj).Depth := 0;
5781 end loop;
5783 Recursive_Compute_Depth
5784 (Main_Project, Depth => 1);
5786 else
5788 Osint.Add_Default_Search_Dirs;
5790 -- Source file lookups should be cached for efficiency.
5791 -- Source files are not supposed to change. However, we do that now
5792 -- only if no project file is used; if a project file is used, we
5793 -- do it just after changing the directory to the object directory.
5795 Osint.Source_File_Data (Cache => True);
5797 -- Read gnat.adc file to initialize Fname.UF
5799 Fname.UF.Initialize;
5801 begin
5802 Fname.SF.Read_Source_File_Name_Pragmas;
5804 exception
5805 when Err : SFN_Scan.Syntax_Error_In_GNAT_ADC =>
5806 Make_Failed (Exception_Message (Err));
5807 end;
5808 end if;
5810 -- Make sure no project object directory is recorded
5812 Project_Object_Directory := No_Project;
5814 end Initialize;
5816 ----------------------------
5817 -- Insert_Project_Sources --
5818 ----------------------------
5820 procedure Insert_Project_Sources
5821 (The_Project : Project_Id;
5822 All_Projects : Boolean;
5823 Into_Q : Boolean)
5825 Put_In_Q : Boolean := Into_Q;
5826 Unit : Com.Unit_Data;
5827 Sfile : Name_Id;
5829 Extending : constant Boolean :=
5830 Projects.Table (The_Project).Extends /= No_Project;
5832 function Check_Project (P : Project_Id) return Boolean;
5833 -- Returns True if P is The_Project or a project extended by
5834 -- The_Project.
5836 -------------------
5837 -- Check_Project --
5838 -------------------
5840 function Check_Project (P : Project_Id) return Boolean is
5841 begin
5842 if All_Projects or P = The_Project then
5843 return True;
5844 elsif Extending then
5845 declare
5846 Data : Project_Data := Projects.Table (The_Project);
5848 begin
5849 loop
5850 if P = Data.Extends then
5851 return True;
5852 end if;
5854 Data := Projects.Table (Data.Extends);
5855 exit when Data.Extends = No_Project;
5856 end loop;
5857 end;
5858 end if;
5860 return False;
5861 end Check_Project;
5863 -- Start of processing of Insert_Project_Sources
5865 begin
5866 -- For all the sources in the project files,
5868 for Id in Com.Units.First .. Com.Units.Last loop
5869 Unit := Com.Units.Table (Id);
5870 Sfile := No_Name;
5872 -- If there is a source for the body, and the body has not been
5873 -- locally removed,
5875 if Unit.File_Names (Com.Body_Part).Name /= No_Name
5876 and then Unit.File_Names (Com.Body_Part).Path /= Slash
5877 then
5879 -- And it is a source for the specified project
5881 if Check_Project (Unit.File_Names (Com.Body_Part).Project) then
5883 -- If we don't have a spec, we cannot consider the source
5884 -- if it is a subunit
5886 if Unit.File_Names (Com.Specification).Name = No_Name then
5887 declare
5888 Src_Ind : Source_File_Index;
5890 -- Here we are cheating a little bit: we don't want to
5891 -- use Sinput.L, because it depends on the GNAT tree
5892 -- (Atree, Sinfo, ...). So, we pretend that it is
5893 -- a project file, and we use Sinput.P.
5894 -- Source_File_Is_Subunit is just scanning through
5895 -- the file until it finds one of the reserved words
5896 -- separate, procedure, function, generic or package.
5897 -- Fortunately, these Ada reserved words are also
5898 -- reserved for project files.
5900 begin
5901 Src_Ind := Sinput.P.Load_Project_File
5902 (Get_Name_String
5903 (Unit.File_Names (Com.Body_Part).Path));
5905 -- If it is a subunit, discard it
5907 if Sinput.P.Source_File_Is_Subunit (Src_Ind) then
5908 Sfile := No_Name;
5910 else
5911 Sfile := Unit.File_Names (Com.Body_Part).Name;
5912 end if;
5913 end;
5915 else
5916 Sfile := Unit.File_Names (Com.Body_Part).Name;
5917 end if;
5918 end if;
5920 elsif Unit.File_Names (Com.Specification).Name /= No_Name
5921 and then Unit.File_Names (Com.Specification).Path /= Slash
5922 and then Check_Project (Unit.File_Names (Com.Specification).Project)
5923 then
5924 -- If there is no source for the body, but there is a source
5925 -- for the spec which has not been locally removed, then we take
5926 -- this one.
5928 Sfile := Unit.File_Names (Com.Specification).Name;
5929 end if;
5931 -- If Put_In_Q is True, we insert into the Q
5933 if Put_In_Q then
5935 -- For the first source inserted into the Q, we need
5936 -- to initialize the Q, but not for the subsequent sources.
5938 if First_Q_Initialization then
5939 Init_Q;
5940 end if;
5942 -- And of course, we only insert in the Q if the source
5943 -- is not marked.
5945 if Sfile /= No_Name and then not Is_Marked (Sfile) then
5946 if Verbose_Mode then
5947 Write_Str ("Adding """);
5948 Write_Str (Get_Name_String (Sfile));
5949 Write_Line (""" to the queue");
5950 end if;
5952 Insert_Q (Sfile);
5953 Mark (Sfile);
5954 end if;
5956 elsif Sfile /= No_Name then
5958 -- If Put_In_Q is False, we add the source as it it were
5959 -- specified on the command line, and we set Put_In_Q to True,
5960 -- so that the following sources will be put directly in the
5961 -- queue. This will allow parallel compilation processes if -jx
5962 -- switch is used.
5964 if Verbose_Mode then
5965 Write_Str ("Adding """);
5966 Write_Str (Get_Name_String (Sfile));
5967 Write_Line (""" as if on the command line");
5968 end if;
5970 Osint.Add_File (Get_Name_String (Sfile));
5971 Put_In_Q := True;
5972 end if;
5973 end loop;
5974 end Insert_Project_Sources;
5976 --------------
5977 -- Insert_Q --
5978 --------------
5980 procedure Insert_Q
5981 (Source_File : File_Name_Type;
5982 Source_Unit : Unit_Name_Type := No_Name;
5983 Index : Int := 0)
5985 begin
5986 if Debug.Debug_Flag_Q then
5987 Write_Str (" Q := Q + [ ");
5988 Write_Name (Source_File);
5990 if Index /= 0 then
5991 Write_Str (", ");
5992 Write_Int (Index);
5993 end if;
5995 Write_Str (" ] ");
5996 Write_Eol;
5997 end if;
5999 Q.Table (Q.Last) :=
6000 (File => Source_File,
6001 Unit => Source_Unit,
6002 Index => Index);
6003 Q.Increment_Last;
6004 end Insert_Q;
6006 ---------------------
6007 -- Is_In_Obsoleted --
6008 ---------------------
6010 function Is_In_Obsoleted (F : Name_Id) return Boolean is
6011 begin
6012 if F = No_File then
6013 return False;
6015 else
6016 declare
6017 Name : constant String := Get_Name_String (F);
6018 First : Natural := Name'Last;
6019 F2 : Name_Id := F;
6021 begin
6022 while First > Name'First
6023 and then Name (First - 1) /= Directory_Separator
6024 and then Name (First - 1) /= '/'
6025 loop
6026 First := First - 1;
6027 end loop;
6029 if First /= Name'First then
6030 Name_Len := 0;
6031 Add_Str_To_Name_Buffer (Name (First .. Name'Last));
6032 F2 := Name_Find;
6033 end if;
6035 return Obsoleted.Get (F2);
6036 end;
6037 end if;
6038 end Is_In_Obsoleted;
6040 ----------------------------
6041 -- Is_In_Object_Directory --
6042 ----------------------------
6044 function Is_In_Object_Directory
6045 (Source_File : File_Name_Type;
6046 Full_Lib_File : File_Name_Type) return Boolean
6048 begin
6049 -- There is something to check only when using project files.
6050 -- Otherwise, this function returns True (last line of the function).
6052 if Main_Project /= No_Project then
6053 declare
6054 Source_File_Name : constant String :=
6055 Get_Name_String (Source_File);
6056 Saved_Verbosity : constant Verbosity := Prj.Com.Current_Verbosity;
6057 Project : Project_Id := No_Project;
6058 Path_Name : Name_Id := No_Name;
6059 Data : Project_Data;
6061 begin
6062 -- Call Get_Reference to know the ultimate extending project of
6063 -- the source. Call it with verbosity default to avoid verbose
6064 -- messages.
6066 Prj.Com.Current_Verbosity := Default;
6067 Prj.Env.
6068 Get_Reference
6069 (Source_File_Name => Source_File_Name,
6070 Project => Project,
6071 Path => Path_Name);
6072 Prj.Com.Current_Verbosity := Saved_Verbosity;
6074 -- If this source is in a project, check that the ALI file is
6075 -- in its object directory. If it is not, return False, so that
6076 -- the ALI file will not be skipped.
6078 -- If the source is not in an extending project, we fall back to
6079 -- the general case and return True at the end of the function.
6081 if Project /= No_Project
6082 and then Projects.Table (Project).Extends /= No_Project
6083 then
6084 Data := Projects.Table (Project);
6086 declare
6087 Object_Directory : constant String :=
6088 Normalize_Pathname
6089 (Get_Name_String
6090 (Data.Object_Directory));
6092 Olast : Natural := Object_Directory'Last;
6094 Lib_File_Directory : constant String :=
6095 Normalize_Pathname (Dir_Name
6096 (Get_Name_String (Full_Lib_File)));
6098 Llast : Natural := Lib_File_Directory'Last;
6100 begin
6101 -- For directories, Normalize_Pathname may or may not put
6102 -- a directory separator at the end, depending on its input.
6103 -- Remove any last directory separator before comparaison.
6104 -- Returns True only if the two directories are the same.
6106 if Object_Directory (Olast) = Directory_Separator then
6107 Olast := Olast - 1;
6108 end if;
6110 if Lib_File_Directory (Llast) = Directory_Separator then
6111 Llast := Llast - 1;
6112 end if;
6114 return Object_Directory (Object_Directory'First .. Olast) =
6115 Lib_File_Directory (Lib_File_Directory'First .. Llast);
6116 end;
6117 end if;
6118 end;
6119 end if;
6121 -- When the source is not in a project file, always return True
6123 return True;
6124 end Is_In_Object_Directory;
6126 ----------
6127 -- Link --
6128 ----------
6130 procedure Link (ALI_File : File_Name_Type; Args : Argument_List) is
6131 Link_Args : Argument_List (1 .. Args'Length + 1);
6132 Success : Boolean;
6134 begin
6135 Get_Name_String (ALI_File);
6136 Link_Args (1) := new String'(Name_Buffer (1 .. Name_Len));
6138 Link_Args (2 .. Args'Length + 1) := Args;
6140 GNAT.OS_Lib.Normalize_Arguments (Link_Args);
6142 Display (Gnatlink.all, Link_Args);
6144 if Gnatlink_Path = null then
6145 Make_Failed ("error, unable to locate ", Gnatlink.all);
6146 end if;
6148 GNAT.OS_Lib.Spawn (Gnatlink_Path.all, Link_Args, Success);
6150 if not Success then
6151 raise Link_Failed;
6152 end if;
6153 end Link;
6155 ---------------------------
6156 -- List_Bad_Compilations --
6157 ---------------------------
6159 procedure List_Bad_Compilations is
6160 begin
6161 for J in Bad_Compilation.First .. Bad_Compilation.Last loop
6162 if Bad_Compilation.Table (J).File = No_File then
6163 null;
6164 elsif not Bad_Compilation.Table (J).Found then
6165 Inform (Bad_Compilation.Table (J).File, "not found");
6166 else
6167 Inform (Bad_Compilation.Table (J).File, "compilation error");
6168 end if;
6169 end loop;
6170 end List_Bad_Compilations;
6172 -----------------
6173 -- List_Depend --
6174 -----------------
6176 procedure List_Depend is
6177 Lib_Name : Name_Id;
6178 Obj_Name : Name_Id;
6179 Src_Name : Name_Id;
6181 Len : Natural;
6182 Line_Pos : Natural;
6183 Line_Size : constant := 77;
6185 begin
6186 Set_Standard_Output;
6188 for A in ALIs.First .. ALIs.Last loop
6189 Lib_Name := ALIs.Table (A).Afile;
6191 -- We have to provide the full library file name in In_Place_Mode
6193 if In_Place_Mode then
6194 Lib_Name := Full_Lib_File_Name (Lib_Name);
6195 end if;
6197 Obj_Name := Object_File_Name (Lib_Name);
6198 Write_Name (Obj_Name);
6199 Write_Str (" :");
6201 Get_Name_String (Obj_Name);
6202 Len := Name_Len;
6203 Line_Pos := Len + 2;
6205 for D in ALIs.Table (A).First_Sdep .. ALIs.Table (A).Last_Sdep loop
6206 Src_Name := Sdep.Table (D).Sfile;
6208 if Is_Internal_File_Name (Src_Name)
6209 and then not Check_Readonly_Files
6210 then
6211 null;
6212 else
6213 if not Quiet_Output then
6214 Src_Name := Full_Source_Name (Src_Name);
6215 end if;
6217 Get_Name_String (Src_Name);
6218 Len := Name_Len;
6220 if Line_Pos + Len + 1 > Line_Size then
6221 Write_Str (" \");
6222 Write_Eol;
6223 Line_Pos := 0;
6224 end if;
6226 Line_Pos := Line_Pos + Len + 1;
6228 Write_Str (" ");
6229 Write_Name (Src_Name);
6230 end if;
6231 end loop;
6233 Write_Eol;
6234 end loop;
6236 Set_Standard_Error;
6237 end List_Depend;
6239 -----------------
6240 -- Make_Failed --
6241 -----------------
6243 procedure Make_Failed (S1 : String; S2 : String := ""; S3 : String := "") is
6244 begin
6245 Delete_All_Temp_Files;
6246 Osint.Fail (S1, S2, S3);
6247 end Make_Failed;
6249 --------------------
6250 -- Mark_Directory --
6251 --------------------
6253 procedure Mark_Directory
6254 (Dir : String;
6255 Mark : Lib_Mark_Type)
6257 N : Name_Id;
6258 B : Byte;
6260 begin
6261 -- Dir last character is supposed to be a directory separator.
6263 Name_Len := Dir'Length;
6264 Name_Buffer (1 .. Name_Len) := Dir;
6266 if not Is_Directory_Separator (Name_Buffer (Name_Len)) then
6267 Name_Len := Name_Len + 1;
6268 Name_Buffer (Name_Len) := Directory_Separator;
6269 end if;
6271 -- Add flags to the already existing flags
6273 N := Name_Find;
6274 B := Get_Name_Table_Byte (N);
6275 Set_Name_Table_Byte (N, B or Mark);
6276 end Mark_Directory;
6278 -----------------------------
6279 -- Recursive_Compute_Depth --
6280 -----------------------------
6282 procedure Recursive_Compute_Depth
6283 (Project : Project_Id;
6284 Depth : Natural)
6286 List : Project_List;
6287 Proj : Project_Id;
6289 begin
6290 -- Nothing to do if there is no project or if the project has already
6291 -- been seen or if the depth is large enough.
6293 if Project = No_Project
6294 or else Projects.Table (Project).Seen
6295 or else Projects.Table (Project).Depth >= Depth
6296 then
6297 return;
6298 end if;
6300 Projects.Table (Project).Depth := Depth;
6302 -- Mark the project as Seen to avoid endless loop caused by limited
6303 -- withs.
6305 Projects.Table (Project).Seen := True;
6307 List := Projects.Table (Project).Imported_Projects;
6309 -- Visit each imported project
6311 while List /= Empty_Project_List loop
6312 Proj := Project_Lists.Table (List).Project;
6313 List := Project_Lists.Table (List).Next;
6314 Recursive_Compute_Depth
6315 (Project => Proj,
6316 Depth => Depth + 1);
6317 end loop;
6319 -- Visit a project being extended, if any
6321 Recursive_Compute_Depth
6322 (Project => Projects.Table (Project).Extends,
6323 Depth => Depth + 1);
6325 -- Reset the Seen flag, as we leave this project
6327 Projects.Table (Project).Seen := False;
6328 end Recursive_Compute_Depth;
6330 -----------------------
6331 -- Sigint_Intercpted --
6332 -----------------------
6334 procedure Sigint_Intercepted is
6335 begin
6336 Write_Line ("*** Interrupted ***");
6337 Delete_All_Temp_Files;
6338 OS_Exit (1);
6339 end Sigint_Intercepted;
6341 -------------------
6342 -- Scan_Make_Arg --
6343 -------------------
6345 procedure Scan_Make_Arg (Argv : String; And_Save : Boolean) is
6346 begin
6347 pragma Assert (Argv'First = 1);
6349 if Argv'Length = 0 then
6350 return;
6351 end if;
6353 -- If the previous switch has set the Project_File_Name_Present
6354 -- flag (that is we have seen a -P alone), then the next argument is
6355 -- the name of the project file.
6357 if Project_File_Name_Present and then Project_File_Name = null then
6358 if Argv (1) = '-' then
6359 Make_Failed ("project file name missing after -P");
6361 else
6362 Project_File_Name_Present := False;
6363 Project_File_Name := new String'(Argv);
6364 end if;
6366 -- If the previous switch has set the Output_File_Name_Present
6367 -- flag (that is we have seen a -o), then the next argument is
6368 -- the name of the output executable.
6370 elsif Output_File_Name_Present
6371 and then not Output_File_Name_Seen
6372 then
6373 Output_File_Name_Seen := True;
6375 if Argv (1) = '-' then
6376 Make_Failed ("output file name missing after -o");
6378 else
6379 Add_Switch ("-o", Linker, And_Save => And_Save);
6381 -- Automatically add the executable suffix if it has not been
6382 -- specified explicitly.
6384 declare
6385 Canonical_Argv : String := Argv;
6386 begin
6387 -- Get the file name in canonical case to accept as is
6388 -- names ending with ".EXE" on VMS and Windows.
6390 Canonical_Case_File_Name (Canonical_Argv);
6392 if Executable_Suffix'Length /= 0
6393 and then (Canonical_Argv'Length <= Executable_Suffix'Length
6394 or else Canonical_Argv
6395 (Canonical_Argv'Last -
6396 Executable_Suffix'Length + 1
6397 .. Canonical_Argv'Last)
6398 /= Executable_Suffix)
6399 then
6400 Add_Switch
6401 (Argv & Executable_Suffix,
6402 Linker,
6403 And_Save => And_Save);
6404 else
6405 Add_Switch (Argv, Linker, And_Save => And_Save);
6406 end if;
6407 end;
6408 end if;
6410 -- If the previous switch has set the Object_Directory_Present flag
6411 -- (that is we have seen a -D), then the next argument is
6412 -- the path name of the object directory..
6414 elsif Object_Directory_Present
6415 and then not Object_Directory_Seen
6416 then
6417 Object_Directory_Seen := True;
6419 if Argv (1) = '-' then
6420 Make_Failed ("object directory path name missing after -D");
6422 elsif not Is_Directory (Argv) then
6423 Make_Failed ("cannot find object directory """, Argv, """");
6425 else
6426 Add_Lib_Search_Dir (Argv);
6428 -- Specify the object directory to the binder
6430 Add_Switch ("-aO" & Argv, Binder, And_Save => And_Save);
6432 -- Record the object directory. Make sure it ends with a directory
6433 -- separator.
6435 if Argv (Argv'Last) = Directory_Separator then
6436 Object_Directory_Path := new String'(Argv);
6438 else
6439 Object_Directory_Path :=
6440 new String'(Argv & Directory_Separator);
6441 end if;
6442 end if;
6444 -- Then check if we are dealing with -cargs/-bargs/-largs/-margs
6446 elsif Argv = "-bargs"
6447 or else
6448 Argv = "-cargs"
6449 or else
6450 Argv = "-largs"
6451 or else
6452 Argv = "-margs"
6453 then
6454 case Argv (2) is
6455 when 'c' => Program_Args := Compiler;
6456 when 'b' => Program_Args := Binder;
6457 when 'l' => Program_Args := Linker;
6458 when 'm' => Program_Args := None;
6460 when others =>
6461 raise Program_Error;
6462 end case;
6464 -- A special test is needed for the -o switch within a -largs
6465 -- since that is another way to specify the name of the final
6466 -- executable.
6468 elsif Program_Args = Linker
6469 and then Argv = "-o"
6470 then
6471 Make_Failed ("switch -o not allowed within a -largs. " &
6472 "Use -o directly.");
6474 -- Check to see if we are reading switches after a -cargs,
6475 -- -bargs or -largs switch. If yes save it.
6477 elsif Program_Args /= None then
6479 -- Check to see if we are reading -I switches in order
6480 -- to take into account in the src & lib search directories.
6482 if Argv'Length > 2 and then Argv (1 .. 2) = "-I" then
6483 if Argv (3 .. Argv'Last) = "-" then
6484 Look_In_Primary_Dir := False;
6486 elsif Program_Args = Compiler then
6487 if Argv (3 .. Argv'Last) /= "-" then
6488 Add_Src_Search_Dir (Argv (3 .. Argv'Last));
6489 end if;
6491 elsif Program_Args = Binder then
6492 Add_Lib_Search_Dir (Argv (3 .. Argv'Last));
6493 end if;
6494 end if;
6496 Add_Switch (Argv, Program_Args, And_Save => And_Save);
6498 -- Handle non-default compiler, binder, linker, and handle --RTS switch
6500 elsif Argv'Length > 2 and then Argv (1 .. 2) = "--" then
6501 if Argv'Length > 6
6502 and then Argv (1 .. 6) = "--GCC="
6503 then
6504 declare
6505 Program_Args : constant Argument_List_Access :=
6506 Argument_String_To_List
6507 (Argv (7 .. Argv'Last));
6509 begin
6510 if And_Save then
6511 Saved_Gcc := new String'(Program_Args.all (1).all);
6512 else
6513 Gcc := new String'(Program_Args.all (1).all);
6514 end if;
6516 for J in 2 .. Program_Args.all'Last loop
6517 Add_Switch
6518 (Program_Args.all (J).all,
6519 Compiler,
6520 And_Save => And_Save);
6521 end loop;
6522 end;
6524 elsif Argv'Length > 11
6525 and then Argv (1 .. 11) = "--GNATBIND="
6526 then
6527 declare
6528 Program_Args : constant Argument_List_Access :=
6529 Argument_String_To_List
6530 (Argv (12 .. Argv'Last));
6532 begin
6533 if And_Save then
6534 Saved_Gnatbind := new String'(Program_Args.all (1).all);
6535 else
6536 Gnatbind := new String'(Program_Args.all (1).all);
6537 end if;
6539 for J in 2 .. Program_Args.all'Last loop
6540 Add_Switch
6541 (Program_Args.all (J).all, Binder, And_Save => And_Save);
6542 end loop;
6543 end;
6545 elsif Argv'Length > 11
6546 and then Argv (1 .. 11) = "--GNATLINK="
6547 then
6548 declare
6549 Program_Args : constant Argument_List_Access :=
6550 Argument_String_To_List
6551 (Argv (12 .. Argv'Last));
6552 begin
6553 if And_Save then
6554 Saved_Gnatlink := new String'(Program_Args.all (1).all);
6555 else
6556 Gnatlink := new String'(Program_Args.all (1).all);
6557 end if;
6559 for J in 2 .. Program_Args.all'Last loop
6560 Add_Switch (Program_Args.all (J).all, Linker);
6561 end loop;
6562 end;
6564 elsif Argv'Length >= 5 and then
6565 Argv (1 .. 5) = "--RTS"
6566 then
6567 Add_Switch (Argv, Compiler, And_Save => And_Save);
6568 Add_Switch (Argv, Binder, And_Save => And_Save);
6570 if Argv'Length <= 6 or else Argv (6) /= '=' then
6571 Make_Failed ("missing path for --RTS");
6573 else
6574 -- Check that this is the first time we see this switch or
6575 -- if it is not the first time, the same path is specified.
6577 if RTS_Specified = null then
6578 RTS_Specified := new String'(Argv (7 .. Argv'Last));
6580 elsif RTS_Specified.all /= Argv (7 .. Argv'Last) then
6581 Make_Failed ("--RTS cannot be specified multiple times");
6582 end if;
6584 -- Valid --RTS switch
6586 No_Stdinc := True;
6587 No_Stdlib := True;
6588 RTS_Switch := True;
6590 declare
6591 Src_Path_Name : constant String_Ptr :=
6592 Get_RTS_Search_Dir
6593 (Argv (7 .. Argv'Last), Include);
6595 Lib_Path_Name : constant String_Ptr :=
6596 Get_RTS_Search_Dir
6597 (Argv (7 .. Argv'Last), Objects);
6599 begin
6600 if Src_Path_Name /= null and then
6601 Lib_Path_Name /= null
6602 then
6603 -- Set the RTS_*_Path_Name variables, so that the correct
6604 -- directories will be set when
6605 -- Osint.Add_Default_Search_Dirs will be called later.
6607 RTS_Src_Path_Name := Src_Path_Name;
6608 RTS_Lib_Path_Name := Lib_Path_Name;
6610 elsif Src_Path_Name = null
6611 and Lib_Path_Name = null then
6612 Make_Failed ("RTS path not valid: missing " &
6613 "adainclude and adalib directories");
6615 elsif Src_Path_Name = null then
6616 Make_Failed ("RTS path not valid: missing adainclude " &
6617 "directory");
6619 elsif Lib_Path_Name = null then
6620 Make_Failed ("RTS path not valid: missing adalib " &
6621 "directory");
6622 end if;
6623 end;
6624 end if;
6626 else
6627 Make_Failed ("unknown switch: ", Argv);
6628 end if;
6630 -- If we have seen a regular switch process it
6632 elsif Argv (1) = '-' then
6634 if Argv'Length = 1 then
6635 Make_Failed ("switch character cannot be followed by a blank");
6637 -- -I-
6639 elsif Argv (2 .. Argv'Last) = "I-" then
6640 Look_In_Primary_Dir := False;
6642 -- Forbid -?- or -??- where ? is any character
6644 elsif (Argv'Length = 3 and then Argv (3) = '-')
6645 or else (Argv'Length = 4 and then Argv (4) = '-')
6646 then
6647 Make_Failed ("trailing ""-"" at the end of ", Argv, " forbidden.");
6649 -- -Idir
6651 elsif Argv (2) = 'I' then
6652 Add_Src_Search_Dir (Argv (3 .. Argv'Last));
6653 Add_Lib_Search_Dir (Argv (3 .. Argv'Last));
6654 Add_Switch (Argv, Compiler, And_Save => And_Save);
6655 Add_Switch (Argv, Binder, And_Save => And_Save);
6657 -- -aIdir (to gcc this is like a -I switch)
6659 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aI" then
6660 Add_Src_Search_Dir (Argv (4 .. Argv'Last));
6661 Add_Switch ("-I" & Argv (4 .. Argv'Last),
6662 Compiler,
6663 And_Save => And_Save);
6664 Add_Switch (Argv, Binder, And_Save => And_Save);
6666 -- -aOdir
6668 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aO" then
6669 Add_Lib_Search_Dir (Argv (4 .. Argv'Last));
6670 Add_Switch (Argv, Binder, And_Save => And_Save);
6672 -- -aLdir (to gnatbind this is like a -aO switch)
6674 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aL" then
6675 Mark_Directory (Argv (4 .. Argv'Last), Ada_Lib_Dir);
6676 Add_Lib_Search_Dir (Argv (4 .. Argv'Last));
6677 Add_Switch ("-aO" & Argv (4 .. Argv'Last),
6678 Binder,
6679 And_Save => And_Save);
6681 -- -Adir (to gnatbind this is like a -aO switch, to gcc like a -I)
6683 elsif Argv (2) = 'A' then
6684 Mark_Directory (Argv (3 .. Argv'Last), Ada_Lib_Dir);
6685 Add_Src_Search_Dir (Argv (3 .. Argv'Last));
6686 Add_Lib_Search_Dir (Argv (3 .. Argv'Last));
6687 Add_Switch ("-I" & Argv (3 .. Argv'Last),
6688 Compiler,
6689 And_Save => And_Save);
6690 Add_Switch ("-aO" & Argv (3 .. Argv'Last),
6691 Binder,
6692 And_Save => And_Save);
6694 -- -Ldir
6696 elsif Argv (2) = 'L' then
6697 Add_Switch (Argv, Linker, And_Save => And_Save);
6699 -- For -gxxxxx, -pg, -mxxx, -fxxx: give the switch to both the
6700 -- compiler and the linker (except for -gnatxxx which is only for
6701 -- the compiler). Some of the -mxxx (for example -m64) and -fxxx
6702 -- (for example -ftest-coverage for gcov) need to be used when
6703 -- compiling the binder generated files, and using all these gcc
6704 -- switches for the binder generated files should not be a problem.
6706 elsif
6707 (Argv (2) = 'g' and then (Argv'Last < 5
6708 or else Argv (2 .. 5) /= "gnat"))
6709 or else Argv (2 .. Argv'Last) = "pg"
6710 or else (Argv (2) = 'm' and then Argv'Last > 2)
6711 or else (Argv (2) = 'f' and then Argv'Last > 2)
6712 then
6713 Add_Switch (Argv, Compiler, And_Save => And_Save);
6714 Add_Switch (Argv, Linker, And_Save => And_Save);
6716 -- -C=<mapping file>
6718 elsif Argv'Last > 2 and then Argv (2) = 'C' then
6719 if And_Save then
6720 if Argv (3) /= '=' or else Argv'Last <= 3 then
6721 Make_Failed ("illegal switch ", Argv);
6722 end if;
6724 Gnatmake_Mapping_File := new String'(Argv (4 .. Argv'Last));
6725 end if;
6727 -- -D
6729 elsif Argv'Last = 2 and then Argv (2) = 'D' then
6730 if Project_File_Name /= null then
6731 Make_Failed ("-D cannot be used in conjunction with a " &
6732 "project file");
6734 else
6735 Scan_Make_Switches (Argv);
6736 end if;
6738 -- -d
6740 elsif Argv (2) = 'd'
6741 and then Argv'Last = 2
6742 then
6743 Display_Compilation_Progress := True;
6745 -- -i
6747 elsif Argv'Last = 2 and then Argv (2) = 'i' then
6748 if Project_File_Name /= null then
6749 Make_Failed ("-i cannot be used in conjunction with a " &
6750 "project file");
6752 else
6753 Scan_Make_Switches (Argv);
6754 end if;
6756 -- -j (need to save the result)
6758 elsif Argv (2) = 'j' then
6759 Scan_Make_Switches (Argv);
6761 if And_Save then
6762 Saved_Maximum_Processes := Maximum_Processes;
6763 end if;
6765 -- -m
6767 elsif Argv (2) = 'm'
6768 and then Argv'Last = 2
6769 then
6770 Minimal_Recompilation := True;
6772 -- -u
6774 elsif Argv (2) = 'u'
6775 and then Argv'Last = 2
6776 then
6777 Unique_Compile := True;
6778 Compile_Only := True;
6779 Do_Bind_Step := False;
6780 Do_Link_Step := False;
6782 -- -U
6784 elsif Argv (2) = 'U'
6785 and then Argv'Last = 2
6786 then
6787 Unique_Compile_All_Projects := True;
6788 Unique_Compile := True;
6789 Compile_Only := True;
6790 Do_Bind_Step := False;
6791 Do_Link_Step := False;
6793 -- -Pprj or -P prj (only once, and only on the command line)
6795 elsif Argv (2) = 'P' then
6796 if Project_File_Name /= null then
6797 Make_Failed ("cannot have several project files specified");
6799 elsif Object_Directory_Path /= null then
6800 Make_Failed ("-D cannot be used in conjunction with a " &
6801 "project file");
6803 elsif In_Place_Mode then
6804 Make_Failed ("-i cannot be used in conjunction with a " &
6805 "project file");
6807 elsif not And_Save then
6809 -- It could be a tool other than gnatmake (i.e, gnatdist)
6810 -- or a -P switch inside a project file.
6812 Fail
6813 ("either the tool is not ""project-aware"" or " &
6814 "a project file is specified inside a project file");
6816 elsif Argv'Last = 2 then
6818 -- -P is used alone: the project file name is the next option
6820 Project_File_Name_Present := True;
6822 else
6823 Project_File_Name := new String'(Argv (3 .. Argv'Last));
6824 end if;
6826 -- -vPx (verbosity of the parsing of the project files)
6828 elsif Argv'Last = 4
6829 and then Argv (2 .. 3) = "vP"
6830 and then Argv (4) in '0' .. '2'
6831 then
6832 if And_Save then
6833 case Argv (4) is
6834 when '0' =>
6835 Current_Verbosity := Prj.Default;
6836 when '1' =>
6837 Current_Verbosity := Prj.Medium;
6838 when '2' =>
6839 Current_Verbosity := Prj.High;
6840 when others =>
6841 null;
6842 end case;
6843 end if;
6845 -- -Xext=val (External assignment)
6847 elsif Argv (2) = 'X'
6848 and then Is_External_Assignment (Argv)
6849 then
6850 -- Is_External_Assignment has side effects
6851 -- when it returns True;
6853 null;
6855 -- If -gnath is present, then generate the usage information
6856 -- right now and do not pass this option on to the compiler calls.
6858 elsif Argv = "-gnath" then
6859 Usage;
6861 -- If -gnatc is specified, make sure the bind step and the link
6862 -- step are not executed.
6864 elsif Argv'Length >= 6 and then Argv (2 .. 6) = "gnatc" then
6866 -- If -gnatc is specified, make sure the bind step and the link
6867 -- step are not executed.
6869 Add_Switch (Argv, Compiler, And_Save => And_Save);
6870 Operating_Mode := Check_Semantics;
6871 Check_Object_Consistency := False;
6872 Compile_Only := True;
6873 Do_Bind_Step := False;
6874 Do_Link_Step := False;
6876 elsif Argv (2 .. Argv'Last) = "nostdlib" then
6878 -- Don't pass -nostdlib to gnatlink, it will disable
6879 -- linking with all standard library files.
6881 No_Stdlib := True;
6883 Add_Switch (Argv, Compiler, And_Save => And_Save);
6884 Add_Switch (Argv, Binder, And_Save => And_Save);
6886 elsif Argv (2 .. Argv'Last) = "nostdinc" then
6888 -- Pass -nostdinc to the Compiler and to gnatbind
6890 No_Stdinc := True;
6891 Add_Switch (Argv, Compiler, And_Save => And_Save);
6892 Add_Switch (Argv, Binder, And_Save => And_Save);
6894 -- By default all switches with more than one character
6895 -- or one character switches which are not in 'a' .. 'z'
6896 -- (except 'C', 'F', 'M' and 'B') are passed to the compiler,
6897 -- unless we are dealing with a debug switch (starts with 'd')
6898 -- or an extended gnatmake switch (starts with 'e').
6900 elsif Argv (2) /= 'd'
6901 and then Argv (2) /= 'e'
6902 and then Argv (2 .. Argv'Last) /= "C"
6903 and then Argv (2 .. Argv'Last) /= "F"
6904 and then Argv (2 .. Argv'Last) /= "M"
6905 and then Argv (2 .. Argv'Last) /= "B"
6906 and then (Argv'Length > 2 or else Argv (2) not in 'a' .. 'z')
6907 then
6908 Add_Switch (Argv, Compiler, And_Save => And_Save);
6910 -- All other options are handled by Scan_Make_Switches
6912 else
6913 Scan_Make_Switches (Argv);
6914 end if;
6916 -- If not a switch it must be a file name
6918 else
6919 Add_File (Argv);
6920 Mains.Add_Main (Argv);
6921 end if;
6922 end Scan_Make_Arg;
6924 -----------------
6925 -- Switches_Of --
6926 -----------------
6928 function Switches_Of
6929 (Source_File : Name_Id;
6930 Source_File_Name : String;
6931 Source_Index : Int;
6932 Naming : Naming_Data;
6933 In_Package : Package_Id;
6934 Allow_ALI : Boolean) return Variable_Value
6936 Switches : Variable_Value;
6938 Defaults : constant Array_Element_Id :=
6939 Prj.Util.Value_Of
6940 (Name => Name_Default_Switches,
6941 In_Arrays =>
6942 Packages.Table (In_Package).Decl.Arrays);
6944 Switches_Array : constant Array_Element_Id :=
6945 Prj.Util.Value_Of
6946 (Name => Name_Switches,
6947 In_Arrays =>
6948 Packages.Table (In_Package).Decl.Arrays);
6950 begin
6951 Switches :=
6952 Prj.Util.Value_Of
6953 (Index => Source_File,
6954 Src_Index => Source_Index,
6955 In_Array => Switches_Array);
6957 if Switches = Nil_Variable_Value then
6958 declare
6959 Name : String (1 .. Source_File_Name'Length + 3);
6960 Last : Positive := Source_File_Name'Length;
6961 Spec_Suffix : constant String :=
6962 Get_Name_String (Naming.Current_Spec_Suffix);
6963 Body_Suffix : constant String :=
6964 Get_Name_String (Naming.Current_Body_Suffix);
6965 Truncated : Boolean := False;
6967 begin
6968 Name (1 .. Last) := Source_File_Name;
6970 if Last > Body_Suffix'Length
6971 and then Name (Last - Body_Suffix'Length + 1 .. Last) =
6972 Body_Suffix
6973 then
6974 Truncated := True;
6975 Last := Last - Body_Suffix'Length;
6976 end if;
6978 if not Truncated
6979 and then Last > Spec_Suffix'Length
6980 and then Name (Last - Spec_Suffix'Length + 1 .. Last) =
6981 Spec_Suffix
6982 then
6983 Truncated := True;
6984 Last := Last - Spec_Suffix'Length;
6985 end if;
6987 if Truncated then
6988 Name_Len := Last;
6989 Name_Buffer (1 .. Name_Len) := Name (1 .. Last);
6990 Switches :=
6991 Prj.Util.Value_Of
6992 (Index => Name_Find,
6993 Src_Index => 0,
6994 In_Array => Switches_Array);
6996 if Switches = Nil_Variable_Value
6997 and then Allow_ALI
6998 then
6999 Last := Source_File_Name'Length;
7001 while Name (Last) /= '.' loop
7002 Last := Last - 1;
7003 end loop;
7005 Name (Last + 1 .. Last + 3) := "ali";
7006 Name_Len := Last + 3;
7007 Name_Buffer (1 .. Name_Len) := Name (1 .. Name_Len);
7008 Switches :=
7009 Prj.Util.Value_Of
7010 (Index => Name_Find,
7011 Src_Index => 0,
7012 In_Array => Switches_Array);
7013 end if;
7014 end if;
7015 end;
7016 end if;
7018 if Switches = Nil_Variable_Value then
7019 Switches :=
7020 Prj.Util.Value_Of
7021 (Index => Name_Ada,
7022 Src_Index => 0,
7023 In_Array => Defaults);
7024 end if;
7026 return Switches;
7027 end Switches_Of;
7029 -----------
7030 -- Usage --
7031 -----------
7033 procedure Usage is
7034 begin
7035 if Usage_Needed then
7036 Usage_Needed := False;
7037 Makeusg;
7038 end if;
7039 end Usage;
7041 -----------------
7042 -- Verbose_Msg --
7043 -----------------
7045 procedure Verbose_Msg
7046 (N1 : Name_Id;
7047 S1 : String;
7048 N2 : Name_Id := No_Name;
7049 S2 : String := "";
7050 Prefix : String := " -> ")
7052 begin
7053 if not Verbose_Mode then
7054 return;
7055 end if;
7057 Write_Str (Prefix);
7058 Write_Str ("""");
7059 Write_Name (N1);
7060 Write_Str (""" ");
7061 Write_Str (S1);
7063 if N2 /= No_Name then
7064 Write_Str (" """);
7065 Write_Name (N2);
7066 Write_Str (""" ");
7067 end if;
7069 Write_Str (S2);
7070 Write_Eol;
7071 end Verbose_Msg;
7073 begin
7074 -- Make sure that in case of failure, the temp files will be deleted
7076 Prj.Com.Fail := Make_Failed'Access;
7077 MLib.Fail := Make_Failed'Access;
7078 Makeutl.Do_Fail := Make_Failed'Access;
7079 end Make;