OSDN Git Service

2010-09-09 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / gnatcmd.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              G N A T C M D                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1996-2010, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with GNAT.Directory_Operations; use GNAT.Directory_Operations;
27
28 with Csets;
29 with Hostparm; use Hostparm;
30 with Makeutl;  use Makeutl;
31 with MLib.Tgt; use MLib.Tgt;
32 with MLib.Utl;
33 with MLib.Fil;
34 with Namet;    use Namet;
35 with Opt;      use Opt;
36 with Osint;    use Osint;
37 with Output;
38 with Prj;      use Prj;
39 with Prj.Env;
40 with Prj.Ext;  use Prj.Ext;
41 with Prj.Pars;
42 with Prj.Tree; use Prj.Tree;
43 with Prj.Util; use Prj.Util;
44 with Sinput.P;
45 with Snames;   use Snames;
46 with Table;
47 with Targparm;
48 with Tempdir;
49 with Types;    use Types;
50 with VMS_Conv; use VMS_Conv;
51 with VMS_Cmds; use VMS_Cmds;
52
53 with Ada.Characters.Handling; use Ada.Characters.Handling;
54 with Ada.Command_Line;        use Ada.Command_Line;
55 with Ada.Text_IO;             use Ada.Text_IO;
56
57 with GNAT.OS_Lib; use GNAT.OS_Lib;
58
59 procedure GNATCmd is
60    Project_Node_Tree : Project_Node_Tree_Ref;
61    Project_File      : String_Access;
62    Project           : Prj.Project_Id;
63    Current_Verbosity : Prj.Verbosity := Prj.Default;
64    Tool_Package_Name : Name_Id       := No_Name;
65
66    B_Start : String_Ptr    := new String'("b~");
67    --  Prefix of binder generated file, changed to b__ for VMS
68
69    Old_Project_File_Used : Boolean := False;
70    --  This flag indicates a switch -p (for gnatxref and gnatfind) for
71    --  an old fashioned project file. -p cannot be used in conjunction
72    --  with -P.
73
74    Temp_File_Name : Path_Name_Type := No_Path;
75    --  The name of the temporary text file to put a list of source/object
76    --  files to pass to a tool.
77
78    ASIS_Main : String_Access := null;
79    --  Main for commands Check, Metric and Pretty, when -U is used
80
81    package First_Switches is new Table.Table
82      (Table_Component_Type => String_Access,
83       Table_Index_Type     => Integer,
84       Table_Low_Bound      => 1,
85       Table_Initial        => 20,
86       Table_Increment      => 100,
87       Table_Name           => "Gnatcmd.First_Switches");
88    --  A table to keep the switches from the project file
89
90    package Carg_Switches is new Table.Table
91      (Table_Component_Type => String_Access,
92       Table_Index_Type     => Integer,
93       Table_Low_Bound      => 1,
94       Table_Initial        => 20,
95       Table_Increment      => 100,
96       Table_Name           => "Gnatcmd.Carg_Switches");
97    --  A table to keep the switches following -cargs for ASIS tools
98
99    package Rules_Switches is new Table.Table
100      (Table_Component_Type => String_Access,
101       Table_Index_Type     => Integer,
102       Table_Low_Bound      => 1,
103       Table_Initial        => 20,
104       Table_Increment      => 100,
105       Table_Name           => "Gnatcmd.Rules_Switches");
106    --  A table to keep the switches following -rules for gnatcheck
107
108    package Library_Paths is new Table.Table (
109      Table_Component_Type => String_Access,
110      Table_Index_Type     => Integer,
111      Table_Low_Bound      => 1,
112      Table_Initial        => 20,
113      Table_Increment      => 100,
114      Table_Name           => "Make.Library_Path");
115
116    --  Packages of project files to pass to Prj.Pars.Parse, depending on the
117    --  tool. We allocate objects because we cannot declare aliased objects
118    --  as we are in a procedure, not a library level package.
119
120    subtype SA is String_Access;
121
122    Naming_String      : constant SA := new String'("naming");
123    Binder_String      : constant SA := new String'("binder");
124    Builder_String     : constant SA := new String'("builder");
125    Compiler_String    : constant SA := new String'("compiler");
126    Check_String       : constant SA := new String'("check");
127    Synchronize_String : constant SA := new String'("synchronize");
128    Eliminate_String   : constant SA := new String'("eliminate");
129    Finder_String      : constant SA := new String'("finder");
130    Linker_String      : constant SA := new String'("linker");
131    Gnatls_String      : constant SA := new String'("gnatls");
132    Pretty_String      : constant SA := new String'("pretty_printer");
133    Stack_String       : constant SA := new String'("stack");
134    Gnatstub_String    : constant SA := new String'("gnatstub");
135    Metric_String      : constant SA := new String'("metrics");
136    Xref_String        : constant SA := new String'("cross_reference");
137
138    Packages_To_Check_By_Binder   : constant String_List_Access :=
139      new String_List'((Naming_String, Binder_String));
140
141    Packages_To_Check_By_Check : constant String_List_Access :=
142      new String_List'
143           ((Naming_String, Builder_String, Check_String, Compiler_String));
144
145    Packages_To_Check_By_Sync : constant String_List_Access :=
146      new String_List'((Naming_String, Synchronize_String, Compiler_String));
147
148    Packages_To_Check_By_Eliminate : constant String_List_Access :=
149      new String_List'((Naming_String, Eliminate_String, Compiler_String));
150
151    Packages_To_Check_By_Finder    : constant String_List_Access :=
152      new String_List'((Naming_String, Finder_String));
153
154    Packages_To_Check_By_Linker    : constant String_List_Access :=
155      new String_List'((Naming_String, Linker_String));
156
157    Packages_To_Check_By_Gnatls    : constant String_List_Access :=
158      new String_List'((Naming_String, Gnatls_String));
159
160    Packages_To_Check_By_Pretty    : constant String_List_Access :=
161      new String_List'((Naming_String, Pretty_String, Compiler_String));
162
163    Packages_To_Check_By_Stack     : constant String_List_Access :=
164      new String_List'((Naming_String, Stack_String));
165
166    Packages_To_Check_By_Gnatstub  : constant String_List_Access :=
167      new String_List'((Naming_String, Gnatstub_String, Compiler_String));
168
169    Packages_To_Check_By_Metric  : constant String_List_Access :=
170      new String_List'((Naming_String, Metric_String, Compiler_String));
171
172    Packages_To_Check_By_Xref      : constant String_List_Access :=
173      new String_List'((Naming_String, Xref_String));
174
175    Packages_To_Check : String_List_Access := Prj.All_Packages;
176
177    ----------------------------------
178    -- Declarations for GNATCMD use --
179    ----------------------------------
180
181    The_Command : Command_Type;
182    --  The command specified in the invocation of the GNAT driver
183
184    Command_Arg : Positive := 1;
185    --  The index of the command in the arguments of the GNAT driver
186
187    My_Exit_Status : Exit_Status := Success;
188    --  The exit status of the spawned tool. Used to set the correct VMS
189    --  exit status.
190
191    Current_Work_Dir : constant String := Get_Current_Dir;
192    --  The path of the working directory
193
194    All_Projects : Boolean := False;
195    --  Flag used for GNAT CHECK, GNAT PRETTY, GNAT METRIC, and GNAT STACK to
196    --  indicate that the underlying tool (gnatcheck, gnatpp or gnatmetric)
197    --  should be invoked for all sources of all projects.
198
199    -----------------------
200    -- Local Subprograms --
201    -----------------------
202
203    procedure Add_To_Carg_Switches (Switch : String_Access);
204    --  Add a switch to the Carg_Switches table. If it is the first one, put the
205    --  switch "-cargs" at the beginning of the table.
206
207    procedure Add_To_Rules_Switches (Switch : String_Access);
208    --  Add a switch to the Rules_Switches table. If it is the first one, put
209    --  the switch "-crules" at the beginning of the table.
210
211    procedure Check_Files;
212    --  For GNAT LIST, GNAT PRETTY, GNAT METRIC, and GNAT STACK, check if a
213    --  project file is specified, without any file arguments and without a
214    --  switch -files=. If it is the case, invoke the GNAT tool with the proper
215    --  list of files, derived from the sources of the project.
216
217    function Check_Project
218      (Project      : Project_Id;
219       Root_Project : Project_Id) return Boolean;
220    --  Returns True if Project = Root_Project or if we want to consider all
221    --  sources of all projects. For GNAT METRIC, also returns True if Project
222    --  is extended by Root_Project.
223
224    procedure Check_Relative_Executable (Name : in out String_Access);
225    --  Check if an executable is specified as a relative path. If it is, and
226    --  the path contains directory information, fail. Otherwise, prepend the
227    --  exec directory. This procedure is only used for GNAT LINK when a project
228    --  file is specified.
229
230    function Configuration_Pragmas_File return Path_Name_Type;
231    --  Return an argument, if there is a configuration pragmas file to be
232    --  specified for Project, otherwise return No_Name. Used for gnatstub (GNAT
233    --  STUB), gnatpp (GNAT PRETTY), gnatelim (GNAT ELIM), and gnatmetric (GNAT
234    --  METRIC).
235
236    function Mapping_File return Path_Name_Type;
237    --  Create and return the path name of a mapping file. Used for gnatstub
238    --  (GNAT STUB), gnatpp (GNAT PRETTY), gnatelim (GNAT ELIM), and gnatmetric
239    --  (GNAT METRIC).
240
241    procedure Delete_Temp_Config_Files;
242    --  Delete all temporary config files. The caller is responsible for
243    --  ensuring that Keep_Temporary_Files is False.
244
245    procedure Get_Closure;
246    --  Get the sources in the closure of the ASIS_Main and add them to the
247    --  list of arguments.
248
249    function Index (Char : Character; Str : String) return Natural;
250    --  Returns first occurrence of Char in Str, returns 0 if Char not in Str
251
252    procedure Non_VMS_Usage;
253    --  Display usage for platforms other than VMS
254
255    procedure Process_Link;
256    --  Process GNAT LINK, when there is a project file specified
257
258    procedure Set_Library_For
259      (Project           : Project_Id;
260       Libraries_Present : in out Boolean);
261    --  If Project is a library project, add the correct -L and -l switches to
262    --  the linker invocation.
263
264    procedure Set_Libraries is
265       new For_Every_Project_Imported (Boolean, Set_Library_For);
266    --  Add the -L and -l switches to the linker for all of the library
267    --  projects.
268
269    procedure Test_If_Relative_Path
270      (Switch : in out String_Access;
271       Parent : String);
272    --  Test if Switch is a relative search path switch. If it is and it
273    --  includes directory information, prepend the path with Parent. This
274    --  subprogram is only called when using project files.
275
276    --------------------------
277    -- Add_To_Carg_Switches --
278    --------------------------
279
280    procedure Add_To_Carg_Switches (Switch : String_Access) is
281    begin
282       --  If the Carg_Switches table is empty, put "-cargs" at the beginning
283
284       if Carg_Switches.Last = 0 then
285          Carg_Switches.Increment_Last;
286          Carg_Switches.Table (Carg_Switches.Last) := new String'("-cargs");
287       end if;
288
289       Carg_Switches.Increment_Last;
290       Carg_Switches.Table (Carg_Switches.Last) := Switch;
291    end Add_To_Carg_Switches;
292
293    ---------------------------
294    -- Add_To_Rules_Switches --
295    ---------------------------
296
297    procedure Add_To_Rules_Switches (Switch : String_Access) is
298    begin
299       --  If the Rules_Switches table is empty, put "-rules" at the beginning
300
301       if Rules_Switches.Last = 0 then
302          Rules_Switches.Increment_Last;
303          Rules_Switches.Table (Rules_Switches.Last) := new String'("-rules");
304       end if;
305
306       Rules_Switches.Increment_Last;
307       Rules_Switches.Table (Rules_Switches.Last) := Switch;
308    end Add_To_Rules_Switches;
309
310    -----------------
311    -- Check_Files --
312    -----------------
313
314    procedure Check_Files is
315       Add_Sources : Boolean := True;
316       Unit        : Prj.Unit_Index;
317       Subunit     : Boolean := False;
318       FD          : File_Descriptor := Invalid_FD;
319       Status      : Integer;
320       Success     : Boolean;
321
322    begin
323       --  Check if there is at least one argument that is not a switch or if
324       --  there is a -files= switch.
325
326       for Index in 1 .. Last_Switches.Last loop
327          if Last_Switches.Table (Index).all'Length > 7
328            and then Last_Switches.Table (Index) (1 .. 7) = "-files="
329          then
330             Add_Sources := False;
331             exit;
332
333          elsif Last_Switches.Table (Index) (1) /= '-' then
334             if Index = 1
335               or else
336                 (The_Command = Check
337                    and then Last_Switches.Table (Index - 1).all /= "-o")
338               or else
339                 (The_Command = Pretty
340                    and then Last_Switches.Table (Index - 1).all /= "-o"
341                    and then Last_Switches.Table (Index - 1).all /= "-of")
342               or else
343                 (The_Command = Metric
344                    and then
345                      Last_Switches.Table (Index - 1).all /= "-o"  and then
346                      Last_Switches.Table (Index - 1).all /= "-og" and then
347                      Last_Switches.Table (Index - 1).all /= "-ox" and then
348                      Last_Switches.Table (Index - 1).all /= "-d")
349               or else
350                 (The_Command /= Check  and then
351                  The_Command /= Pretty and then
352                  The_Command /= Metric)
353             then
354                Add_Sources := False;
355                exit;
356             end if;
357          end if;
358       end loop;
359
360       --  If all arguments are switches and there is no switch -files=, add
361       --  the path names of all the sources of the main project.
362
363       if Add_Sources then
364
365          --  For gnatcheck, gnatpp, and gnatmetric, create a temporary file
366          --  and put the list of sources in it.
367
368          if The_Command = Check  or else
369             The_Command = Pretty or else
370             The_Command = Metric
371          then
372             Tempdir.Create_Temp_File (FD, Temp_File_Name);
373             Last_Switches.Increment_Last;
374             Last_Switches.Table (Last_Switches.Last) :=
375               new String'("-files=" & Get_Name_String (Temp_File_Name));
376          end if;
377
378          declare
379             Proj : Project_List;
380
381          begin
382             --  Gnatstack needs to add the .ci file for the binder generated
383             --  files corresponding to all of the library projects and main
384             --  units belonging to the application.
385
386             if The_Command = Stack then
387                Proj := Project_Tree.Projects;
388                while Proj /= null loop
389                   if Check_Project (Proj.Project, Project) then
390                      declare
391                         Main : String_List_Id;
392                         File : String_Access;
393
394                      begin
395                         --  Include binder generated files for main programs
396
397                         Main := Proj.Project.Mains;
398                         while Main /= Nil_String loop
399                            File :=
400                              new String'
401                                (Get_Name_String
402                                  (Proj.Project.Object_Directory.Name)        &
403                                 B_Start.all                                  &
404                                 MLib.Fil.Ext_To
405                                   (Get_Name_String
406                                      (Project_Tree.String_Elements.Table
407                                         (Main).Value),
408                                    "ci"));
409
410                            if Is_Regular_File (File.all) then
411                               Last_Switches.Increment_Last;
412                               Last_Switches.Table (Last_Switches.Last) := File;
413                            end if;
414
415                            Main :=
416                              Project_Tree.String_Elements.Table (Main).Next;
417                         end loop;
418
419                         if Proj.Project.Library then
420
421                            --  Include the .ci file for the binder generated
422                            --  files that contains the initialization and
423                            --  finalization of the library.
424
425                            File :=
426                              new String'
427                                (Get_Name_String
428                                  (Proj.Project.Object_Directory.Name)        &
429                                 B_Start.all                                  &
430                                 Get_Name_String (Proj.Project.Library_Name)  &
431                                 ".ci");
432
433                            if Is_Regular_File (File.all) then
434                               Last_Switches.Increment_Last;
435                               Last_Switches.Table (Last_Switches.Last) := File;
436                            end if;
437                         end if;
438                      end;
439                   end if;
440
441                   Proj := Proj.Next;
442                end loop;
443             end if;
444
445             Unit := Units_Htable.Get_First (Project_Tree.Units_HT);
446             while Unit /= No_Unit_Index loop
447
448                --  For gnatls, we only need to put the library units, body or
449                --  spec, but not the subunits.
450
451                if The_Command = List then
452                   if Unit.File_Names (Impl) /= null
453                     and then not Unit.File_Names (Impl).Locally_Removed
454                   then
455                      --  There is a body, check if it is for this project
456
457                      if All_Projects
458                        or else Unit.File_Names (Impl).Project = Project
459                      then
460                         Subunit := False;
461
462                         if Unit.File_Names (Spec) = null
463                           or else Unit.File_Names (Spec).Locally_Removed
464                         then
465                            --  We have a body with no spec: we need to check if
466                            --  this is a subunit, because gnatls will complain
467                            --  about subunits.
468
469                            declare
470                               Src_Ind : constant Source_File_Index :=
471                                           Sinput.P.Load_Project_File
472                                             (Get_Name_String
473                                               (Unit.File_Names
474                                                 (Impl).Path.Name));
475                            begin
476                               Subunit :=
477                                 Sinput.P.Source_File_Is_Subunit (Src_Ind);
478                            end;
479                         end if;
480
481                         if not Subunit then
482                            Last_Switches.Increment_Last;
483                            Last_Switches.Table (Last_Switches.Last) :=
484                              new String'
485                                (Get_Name_String
486                                     (Unit.File_Names
487                                          (Impl).Display_File));
488                         end if;
489                      end if;
490
491                   elsif Unit.File_Names (Spec) /= null
492                     and then not Unit.File_Names (Spec).Locally_Removed
493                   then
494                      --  We have a spec with no body. Check if it is for this
495                      --  project.
496
497                      if All_Projects or else
498                         Unit.File_Names (Spec).Project = Project
499                      then
500                         Last_Switches.Increment_Last;
501                         Last_Switches.Table (Last_Switches.Last) :=
502                           new String'(Get_Name_String
503                                        (Unit.File_Names (Spec).Display_File));
504                      end if;
505                   end if;
506
507                --  For gnatstack, we put the .ci files corresponding to the
508                --  different units, including the binder generated files. We
509                --  only need to do that for the library units, body or spec,
510                --  but not the subunits.
511
512                elsif The_Command = Stack then
513                   if Unit.File_Names (Impl) /= null
514                     and then not Unit.File_Names (Impl).Locally_Removed
515                   then
516                      --  There is a body. Check if .ci files for this project
517                      --  must be added.
518
519                      if Check_Project
520                           (Unit.File_Names (Impl).Project, Project)
521                      then
522                         Subunit := False;
523
524                         if Unit.File_Names (Spec) = null
525                           or else Unit.File_Names (Spec).Locally_Removed
526                         then
527                            --  We have a body with no spec: we need to check
528                            --  if this is a subunit, because .ci files are not
529                            --  generated for subunits.
530
531                            declare
532                               Src_Ind : constant Source_File_Index :=
533                                           Sinput.P.Load_Project_File
534                                             (Get_Name_String
535                                               (Unit.File_Names
536                                                 (Impl).Path.Name));
537                            begin
538                               Subunit :=
539                                 Sinput.P.Source_File_Is_Subunit (Src_Ind);
540                            end;
541                         end if;
542
543                         if not Subunit then
544                            Last_Switches.Increment_Last;
545                            Last_Switches.Table (Last_Switches.Last) :=
546                              new String'
547                                (Get_Name_String
548                                  (Unit.File_Names
549                                    (Impl).Project. Object_Directory.Name)  &
550                                 MLib.Fil.Ext_To
551                                   (Get_Name_String
552                                      (Unit.File_Names (Impl).Display_File),
553                                    "ci"));
554                         end if;
555                      end if;
556
557                   elsif Unit.File_Names (Spec) /= null
558                     and then not Unit.File_Names (Spec).Locally_Removed
559                   then
560                      --  Spec with no body, check if it is for this project
561
562                      if Check_Project
563                           (Unit.File_Names (Spec).Project, Project)
564                      then
565                         Last_Switches.Increment_Last;
566                         Last_Switches.Table (Last_Switches.Last) :=
567                           new String'
568                             (Get_Name_String
569                               (Unit.File_Names
570                                 (Spec).Project. Object_Directory.Name)     &
571                              Dir_Separator                                 &
572                              MLib.Fil.Ext_To
573                                (Get_Name_String (Unit.File_Names (Spec).File),
574                                 "ci"));
575                      end if;
576                   end if;
577
578                else
579                   --  For gnatcheck, gnatsync, gnatpp and gnatmetric, put all
580                   --  sources of the project, or of all projects if -U was
581                   --  specified.
582
583                   for Kind in Spec_Or_Body loop
584                      if Unit.File_Names (Kind) /= null
585                        and then Check_Project
586                                   (Unit.File_Names (Kind).Project, Project)
587                        and then not Unit.File_Names (Kind).Locally_Removed
588                      then
589                         Name_Len := 0;
590                         Add_Char_To_Name_Buffer ('"');
591                         Add_Str_To_Name_Buffer
592                           (Get_Name_String
593                             (Unit.File_Names (Kind).Path.Display_Name));
594                         Add_Char_To_Name_Buffer ('"');
595
596                         if FD /= Invalid_FD then
597                            Name_Len := Name_Len + 1;
598                            Name_Buffer (Name_Len) := ASCII.LF;
599                            Status :=
600                              Write (FD, Name_Buffer (1)'Address, Name_Len);
601
602                            if Status /= Name_Len then
603                               Osint.Fail ("disk full");
604                            end if;
605
606                         else
607                            Last_Switches.Increment_Last;
608                            Last_Switches.Table (Last_Switches.Last) :=
609                              new String'(Get_Name_String
610                                           (Unit.File_Names
611                                             (Kind).Path.Display_Name));
612                         end if;
613                      end if;
614                   end loop;
615                end if;
616
617                Unit := Units_Htable.Get_Next (Project_Tree.Units_HT);
618             end loop;
619          end;
620
621          if FD /= Invalid_FD then
622             Close (FD, Success);
623
624             if not Success then
625                Osint.Fail ("disk full");
626             end if;
627          end if;
628       end if;
629    end Check_Files;
630
631    -------------------
632    -- Check_Project --
633    -------------------
634
635    function Check_Project
636      (Project      : Project_Id;
637       Root_Project : Project_Id) return Boolean
638    is
639       Proj : Project_Id;
640
641    begin
642       if Project = No_Project then
643          return False;
644
645       elsif All_Projects or else Project = Root_Project then
646          return True;
647
648       elsif The_Command = Metric then
649          Proj := Root_Project;
650          while Proj.Extends /= No_Project loop
651             if Project = Proj.Extends then
652                return True;
653             end if;
654
655             Proj := Proj.Extends;
656          end loop;
657       end if;
658
659       return False;
660    end Check_Project;
661
662    -------------------------------
663    -- Check_Relative_Executable --
664    -------------------------------
665
666    procedure Check_Relative_Executable (Name : in out String_Access) is
667       Exec_File_Name : constant String := Name.all;
668
669    begin
670       if not Is_Absolute_Path (Exec_File_Name) then
671          for Index in Exec_File_Name'Range loop
672             if Exec_File_Name (Index) = Directory_Separator then
673                Fail ("relative executable (""" &
674                        Exec_File_Name &
675                        """) with directory part not allowed " &
676                        "when using project files");
677             end if;
678          end loop;
679
680          Get_Name_String (Project.Exec_Directory.Name);
681
682          if Name_Buffer (Name_Len) /= Directory_Separator then
683             Name_Len := Name_Len + 1;
684             Name_Buffer (Name_Len) := Directory_Separator;
685          end if;
686
687          Name_Buffer (Name_Len + 1 ..
688                         Name_Len + Exec_File_Name'Length) :=
689            Exec_File_Name;
690          Name_Len := Name_Len + Exec_File_Name'Length;
691          Name := new String'(Name_Buffer (1 .. Name_Len));
692       end if;
693    end Check_Relative_Executable;
694
695    --------------------------------
696    -- Configuration_Pragmas_File --
697    --------------------------------
698
699    function Configuration_Pragmas_File return Path_Name_Type is
700    begin
701       Prj.Env.Create_Config_Pragmas_File (Project, Project_Tree);
702       return Project.Config_File_Name;
703    end Configuration_Pragmas_File;
704
705    ------------------------------
706    -- Delete_Temp_Config_Files --
707    ------------------------------
708
709    procedure Delete_Temp_Config_Files is
710       Success : Boolean;
711       Proj    : Project_List;
712       pragma Warnings (Off, Success);
713
714    begin
715       --  This should only be called if Keep_Temporary_Files is False
716
717       pragma Assert (not Keep_Temporary_Files);
718
719       if Project /= No_Project then
720          Proj := Project_Tree.Projects;
721          while Proj /= null loop
722             if Proj.Project.Config_File_Temp then
723                Delete_Temporary_File
724                  (Project_Tree, Proj.Project.Config_File_Name);
725             end if;
726
727             Proj := Proj.Next;
728          end loop;
729       end if;
730
731       --  If a temporary text file that contains a list of files for a tool
732       --  has been created, delete this temporary file.
733
734       if Temp_File_Name /= No_Path then
735          Delete_Temporary_File (Project_Tree, Temp_File_Name);
736       end if;
737    end Delete_Temp_Config_Files;
738
739    -----------------
740    -- Get_Closure --
741    -----------------
742
743    procedure Get_Closure is
744       Args : constant Argument_List :=
745                (1 => new String'("-q"),
746                 2 => new String'("-b"),
747                 3 => new String'("-P"),
748                 4 => Project_File,
749                 5 => ASIS_Main,
750                 6 => new String'("-bargs"),
751                 7 => new String'("-R"),
752                 8 => new String'("-Z"));
753       --  Arguments for the invocation of gnatmake which are added to the
754       --  Last_Arguments list by this procedure.
755
756       FD : File_Descriptor;
757       --  File descriptor for the temp file that will get the output of the
758       --  invocation of gnatmake.
759
760       Name : Path_Name_Type;
761       --  Path of the file FD
762
763       GN_Name : constant String := Program_Name ("gnatmake", "gnat").all;
764       --  Name for gnatmake
765
766       GN_Path : constant String_Access := Locate_Exec_On_Path (GN_Name);
767       --  Path of gnatmake
768
769       Return_Code : Integer;
770
771       Unused : Boolean;
772       pragma Warnings (Off, Unused);
773
774       File : Ada.Text_IO.File_Type;
775       Line : String (1 .. 250);
776       Last : Natural;
777       --  Used to read file if there is an error, it is good enough to display
778       --  just 250 characters if the first line of the file is very long.
779
780       Unit  : Unit_Index;
781       Path  : Path_Name_Type;
782
783    begin
784       if GN_Path = null then
785          Put_Line (Standard_Error, "could not locate " & GN_Name);
786          raise Error_Exit;
787       end if;
788
789       --  Create the temp file
790
791       Tempdir.Create_Temp_File (FD, Name);
792
793       --  And close it, because on VMS Spawn with a file descriptor created
794       --  with Create_Temp_File does not redirect output.
795
796       Close (FD);
797
798       --  Spawn "gnatmake -q -b -P <project> <main> -bargs -R -Z"
799
800       Spawn
801         (Program_Name => GN_Path.all,
802          Args         => Args,
803          Output_File  => Get_Name_String (Name),
804          Success      => Unused,
805          Return_Code  => Return_Code,
806          Err_To_Out   => True);
807
808       Close (FD);
809
810       --  Read the output of the invocation of gnatmake
811
812       Open (File, In_File, Get_Name_String (Name));
813
814       --  If it was unsuccessful, display the first line in the file and exit
815       --  with error.
816
817       if Return_Code /= 0 then
818          Get_Line (File, Line, Last);
819
820          if not Keep_Temporary_Files then
821             Delete (File);
822          else
823             Close (File);
824          end if;
825
826          Put_Line (Standard_Error, Line (1 .. Last));
827          Put_Line
828            (Standard_Error, "could not get closure of " & ASIS_Main.all);
829          raise Error_Exit;
830
831       else
832          --  Get each file name in the file, find its path and add it the
833          --  list of arguments.
834
835          while not End_Of_File (File) loop
836             Get_Line (File, Line, Last);
837             Path := No_Path;
838
839             Unit := Units_Htable.Get_First (Project_Tree.Units_HT);
840             while Unit /= No_Unit_Index loop
841                if Unit.File_Names (Spec) /= null
842                  and then
843                    Get_Name_String (Unit.File_Names (Spec).File) =
844                       Line (1 .. Last)
845                then
846                   Path := Unit.File_Names (Spec).Path.Name;
847                   exit;
848
849                elsif Unit.File_Names (Impl) /= null
850                  and then
851                    Get_Name_String (Unit.File_Names (Impl).File) =
852                      Line (1 .. Last)
853                then
854                   Path := Unit.File_Names (Impl).Path.Name;
855                   exit;
856                end if;
857
858                Unit := Units_Htable.Get_Next (Project_Tree.Units_HT);
859             end loop;
860
861             Last_Switches.Increment_Last;
862
863             if Path /= No_Path then
864                Last_Switches.Table (Last_Switches.Last) :=
865                   new String'(Get_Name_String (Path));
866
867             else
868                Last_Switches.Table (Last_Switches.Last) :=
869                  new String'(Line (1 .. Last));
870             end if;
871          end loop;
872
873          if not Keep_Temporary_Files then
874             Delete (File);
875          else
876             Close (File);
877          end if;
878       end if;
879    end Get_Closure;
880
881    -----------
882    -- Index --
883    -----------
884
885    function Index (Char : Character; Str : String) return Natural is
886    begin
887       for Index in Str'Range loop
888          if Str (Index) = Char then
889             return Index;
890          end if;
891       end loop;
892
893       return 0;
894    end Index;
895
896    ------------------
897    -- Mapping_File --
898    ------------------
899
900    function Mapping_File return Path_Name_Type is
901       Result : Path_Name_Type;
902    begin
903       Prj.Env.Create_Mapping_File
904         (Project  => Project,
905          Language => Name_Ada,
906          In_Tree  => Project_Tree,
907          Name     => Result);
908       return Result;
909    end Mapping_File;
910
911    ------------------
912    -- Process_Link --
913    ------------------
914
915    procedure Process_Link is
916       Look_For_Executable : Boolean := True;
917       Libraries_Present   : Boolean := False;
918       Path_Option         : constant String_Access :=
919                               MLib.Linker_Library_Path_Option;
920       Prj                 : Project_Id := Project;
921       Arg                 : String_Access;
922       Last                : Natural := 0;
923       Skip_Executable     : Boolean := False;
924
925    begin
926       --  Add the default search directories, to be able to find
927       --  libgnat in call to MLib.Utl.Lib_Directory.
928
929       Add_Default_Search_Dirs;
930
931       Library_Paths.Set_Last (0);
932
933       --  Check if there are library project files
934
935       if MLib.Tgt.Support_For_Libraries /= None then
936          Set_Libraries (Project, Libraries_Present);
937       end if;
938
939       --  If there are, add the necessary additional switches
940
941       if Libraries_Present then
942
943          --  Add -L<lib_dir> -lgnarl -lgnat -Wl,-rpath,<lib_dir>
944
945          Last_Switches.Increment_Last;
946          Last_Switches.Table (Last_Switches.Last) :=
947            new String'("-L" & MLib.Utl.Lib_Directory);
948          Last_Switches.Increment_Last;
949          Last_Switches.Table (Last_Switches.Last) :=
950            new String'("-lgnarl");
951          Last_Switches.Increment_Last;
952          Last_Switches.Table (Last_Switches.Last) :=
953            new String'("-lgnat");
954
955          --  If Path_Option is not null, create the switch ("-Wl,-rpath," or
956          --  equivalent) with all the library dirs plus the standard GNAT
957          --  library dir.
958
959          if Path_Option /= null then
960             declare
961                Option  : String_Access;
962                Length  : Natural := Path_Option'Length;
963                Current : Natural;
964
965             begin
966                if MLib.Separate_Run_Path_Options then
967
968                   --  We are going to create one switch of the form
969                   --  "-Wl,-rpath,dir_N" for each directory to consider.
970
971                   --  One switch for each library directory
972
973                   for Index in
974                     Library_Paths.First .. Library_Paths.Last
975                   loop
976                      Last_Switches.Increment_Last;
977                      Last_Switches.Table
978                        (Last_Switches.Last) := new String'
979                        (Path_Option.all &
980                         Last_Switches.Table (Index).all);
981                   end loop;
982
983                   --  One switch for the standard GNAT library dir
984
985                   Last_Switches.Increment_Last;
986                   Last_Switches.Table
987                     (Last_Switches.Last) := new String'
988                     (Path_Option.all & MLib.Utl.Lib_Directory);
989
990                else
991                   --  First, compute the exact length for the switch
992
993                   for Index in
994                     Library_Paths.First .. Library_Paths.Last
995                   loop
996                      --  Add the length of the library dir plus one for the
997                      --  directory separator.
998
999                      Length :=
1000                        Length +
1001                          Library_Paths.Table (Index)'Length + 1;
1002                   end loop;
1003
1004                   --  Finally, add the length of the standard GNAT library dir
1005
1006                   Length := Length + MLib.Utl.Lib_Directory'Length;
1007                   Option := new String (1 .. Length);
1008                   Option (1 .. Path_Option'Length) := Path_Option.all;
1009                   Current := Path_Option'Length;
1010
1011                   --  Put each library dir followed by a dir separator
1012
1013                   for Index in
1014                     Library_Paths.First .. Library_Paths.Last
1015                   loop
1016                      Option
1017                        (Current + 1 ..
1018                           Current +
1019                             Library_Paths.Table (Index)'Length) :=
1020                        Library_Paths.Table (Index).all;
1021                      Current :=
1022                        Current +
1023                          Library_Paths.Table (Index)'Length + 1;
1024                      Option (Current) := Path_Separator;
1025                   end loop;
1026
1027                   --  Finally put the standard GNAT library dir
1028
1029                   Option
1030                     (Current + 1 ..
1031                        Current + MLib.Utl.Lib_Directory'Length) :=
1032                       MLib.Utl.Lib_Directory;
1033
1034                   --  And add the switch to the last switches
1035
1036                   Last_Switches.Increment_Last;
1037                   Last_Switches.Table (Last_Switches.Last) :=
1038                     Option;
1039                end if;
1040             end;
1041          end if;
1042       end if;
1043
1044       --  Check if the first ALI file specified can be found, either in the
1045       --  object directory of the main project or in an object directory of a
1046       --  project file extended by the main project. If the ALI file can be
1047       --  found, replace its name with its absolute path.
1048
1049       Skip_Executable := False;
1050
1051       Switch_Loop : for J in 1 .. Last_Switches.Last loop
1052
1053          --  If we have an executable just reset the flag
1054
1055          if Skip_Executable then
1056             Skip_Executable := False;
1057
1058          --  If -o, set flag so that next switch is not processed
1059
1060          elsif Last_Switches.Table (J).all = "-o" then
1061             Skip_Executable := True;
1062
1063          --  Normal case
1064
1065          else
1066             declare
1067                Switch    : constant String :=
1068                              Last_Switches.Table (J).all;
1069                ALI_File  : constant String (1 .. Switch'Length + 4) :=
1070                              Switch & ".ali";
1071
1072                Test_Existence : Boolean := False;
1073
1074             begin
1075                Last := Switch'Length;
1076
1077                --  Skip real switches
1078
1079                if Switch'Length /= 0
1080                  and then Switch (Switch'First) /= '-'
1081                then
1082                   --  Append ".ali" if file name does not end with it
1083
1084                   if Switch'Length <= 4
1085                     or else Switch (Switch'Last - 3 .. Switch'Last) /= ".ali"
1086                   then
1087                      Last := ALI_File'Last;
1088                   end if;
1089
1090                   --  If file name includes directory information, stop if ALI
1091                   --  file exists.
1092
1093                   if Is_Absolute_Path (ALI_File (1 .. Last)) then
1094                      Test_Existence := True;
1095
1096                   else
1097                      for K in Switch'Range loop
1098                         if Switch (K) = '/'
1099                           or else Switch (K) = Directory_Separator
1100                         then
1101                            Test_Existence := True;
1102                            exit;
1103                         end if;
1104                      end loop;
1105                   end if;
1106
1107                   if Test_Existence then
1108                      if Is_Regular_File (ALI_File (1 .. Last)) then
1109                         exit Switch_Loop;
1110                      end if;
1111
1112                   --  Look in object directories if ALI file exists
1113
1114                   else
1115                      Project_Loop : loop
1116                         declare
1117                            Dir : constant String :=
1118                                    Get_Name_String (Prj.Object_Directory.Name);
1119                         begin
1120                            if Is_Regular_File
1121                                 (Dir &
1122                                  ALI_File (1 .. Last))
1123                            then
1124                               --  We have found the correct project, so we
1125                               --  replace the file with the absolute path.
1126
1127                               Last_Switches.Table (J) :=
1128                                 new String'(Dir & ALI_File (1 .. Last));
1129
1130                               --  And we are done
1131
1132                               exit Switch_Loop;
1133                            end if;
1134                         end;
1135
1136                         --  Go to the project being extended, if any
1137
1138                         Prj := Prj.Extends;
1139                         exit Project_Loop when Prj = No_Project;
1140                      end loop Project_Loop;
1141                   end if;
1142                end if;
1143             end;
1144          end if;
1145       end loop Switch_Loop;
1146
1147       --  If a relative path output file has been specified, we add the exec
1148       --  directory.
1149
1150       for J in reverse 1 .. Last_Switches.Last - 1 loop
1151          if Last_Switches.Table (J).all = "-o" then
1152             Check_Relative_Executable
1153               (Name => Last_Switches.Table (J + 1));
1154             Look_For_Executable := False;
1155             exit;
1156          end if;
1157       end loop;
1158
1159       if Look_For_Executable then
1160          for J in reverse 1 .. First_Switches.Last - 1 loop
1161             if First_Switches.Table (J).all = "-o" then
1162                Look_For_Executable := False;
1163                Check_Relative_Executable
1164                  (Name => First_Switches.Table (J + 1));
1165                exit;
1166             end if;
1167          end loop;
1168       end if;
1169
1170       --  If no executable is specified, then find the name of the first ALI
1171       --  file on the command line and issue a -o switch with the absolute path
1172       --  of the executable in the exec directory.
1173
1174       if Look_For_Executable then
1175          for J in 1 .. Last_Switches.Last loop
1176             Arg  := Last_Switches.Table (J);
1177             Last := 0;
1178
1179             if Arg'Length /= 0 and then Arg (Arg'First) /= '-' then
1180                if Arg'Length > 4
1181                  and then Arg (Arg'Last - 3 .. Arg'Last) = ".ali"
1182                then
1183                   Last := Arg'Last - 4;
1184
1185                elsif Is_Regular_File (Arg.all & ".ali") then
1186                   Last := Arg'Last;
1187                end if;
1188
1189                if Last /= 0 then
1190                   Last_Switches.Increment_Last;
1191                   Last_Switches.Table (Last_Switches.Last) :=
1192                     new String'("-o");
1193                   Get_Name_String (Project.Exec_Directory.Name);
1194                   Last_Switches.Increment_Last;
1195                   Last_Switches.Table (Last_Switches.Last) :=
1196                     new String'(Name_Buffer (1 .. Name_Len) &
1197                                 Executable_Name
1198                                   (Base_Name (Arg (Arg'First .. Last))));
1199                   exit;
1200                end if;
1201             end if;
1202          end loop;
1203       end if;
1204    end Process_Link;
1205
1206    ---------------------
1207    -- Set_Library_For --
1208    ---------------------
1209
1210    procedure Set_Library_For
1211      (Project           : Project_Id;
1212       Libraries_Present : in out Boolean)
1213    is
1214       Path_Option : constant String_Access :=
1215                       MLib.Linker_Library_Path_Option;
1216
1217    begin
1218       --  Case of library project
1219
1220       if Project.Library then
1221          Libraries_Present := True;
1222
1223          --  Add the -L switch
1224
1225          Last_Switches.Increment_Last;
1226          Last_Switches.Table (Last_Switches.Last) :=
1227            new String'("-L" & Get_Name_String (Project.Library_Dir.Name));
1228
1229          --  Add the -l switch
1230
1231          Last_Switches.Increment_Last;
1232          Last_Switches.Table (Last_Switches.Last) :=
1233            new String'("-l" & Get_Name_String (Project.Library_Name));
1234
1235          --  Add the directory to table Library_Paths, to be processed later
1236          --  if library is not static and if Path_Option is not null.
1237
1238          if Project.Library_Kind /= Static
1239            and then Path_Option /= null
1240          then
1241             Library_Paths.Increment_Last;
1242             Library_Paths.Table (Library_Paths.Last) :=
1243               new String'(Get_Name_String (Project.Library_Dir.Name));
1244          end if;
1245       end if;
1246    end Set_Library_For;
1247
1248    ---------------------------
1249    -- Test_If_Relative_Path --
1250    ---------------------------
1251
1252    procedure Test_If_Relative_Path
1253      (Switch : in out String_Access;
1254       Parent : String)
1255    is
1256    begin
1257       Makeutl.Test_If_Relative_Path
1258         (Switch, Parent, Including_Non_Switch => False, Including_RTS => True);
1259    end Test_If_Relative_Path;
1260
1261    -------------------
1262    -- Non_VMS_Usage --
1263    -------------------
1264
1265    procedure Non_VMS_Usage is
1266    begin
1267       Output_Version;
1268       New_Line;
1269       Put_Line ("List of available commands");
1270       New_Line;
1271
1272       for C in Command_List'Range loop
1273
1274          --  No usage for VMS only command or for Sync
1275
1276          if not Command_List (C).VMS_Only and then C /= Sync then
1277             if Targparm.AAMP_On_Target then
1278                Put ("gnaampcmd ");
1279             else
1280                Put ("gnat ");
1281             end if;
1282
1283             Put (To_Lower (Command_List (C).Cname.all));
1284             Set_Col (25);
1285
1286             --  Never call gnatstack with a prefix
1287
1288             if C = Stack then
1289                Put (Command_List (C).Unixcmd.all);
1290             else
1291                Put (Program_Name (Command_List (C).Unixcmd.all, "gnat").all);
1292             end if;
1293
1294             declare
1295                Sws : Argument_List_Access renames Command_List (C).Unixsws;
1296             begin
1297                if Sws /= null then
1298                   for J in Sws'Range loop
1299                      Put (' ');
1300                      Put (Sws (J).all);
1301                   end loop;
1302                end if;
1303             end;
1304
1305             New_Line;
1306          end if;
1307       end loop;
1308
1309       New_Line;
1310       Put_Line ("All commands except chop, krunch and preprocess " &
1311                 "accept project file switches -vPx, -Pprj and -Xnam=val");
1312       New_Line;
1313    end Non_VMS_Usage;
1314
1315    -------------------------------------
1316    -- Start of processing for GNATCmd --
1317    -------------------------------------
1318
1319 begin
1320    --  Initializations
1321
1322    Csets.Initialize;
1323    Snames.Initialize;
1324
1325    Project_Node_Tree := new Project_Node_Tree_Data;
1326    Prj.Tree.Initialize (Project_Node_Tree);
1327
1328    Prj.Initialize (Project_Tree);
1329
1330    Last_Switches.Init;
1331    Last_Switches.Set_Last (0);
1332
1333    First_Switches.Init;
1334    First_Switches.Set_Last (0);
1335    Carg_Switches.Init;
1336    Carg_Switches.Set_Last (0);
1337    Rules_Switches.Init;
1338    Rules_Switches.Set_Last (0);
1339
1340    VMS_Conv.Initialize;
1341
1342    --  Add the default search directories, to be able to find system.ads in the
1343    --  subsequent call to Targparm.Get_Target_Parameters.
1344
1345    Add_Default_Search_Dirs;
1346
1347    --  Get target parameters so that AAMP_On_Target will be set, for testing in
1348    --  Osint.Program_Name to handle the mapping of GNAAMP tool names.
1349
1350    Targparm.Get_Target_Parameters;
1351
1352    --  Add the directory where the GNAT driver is invoked in front of the path,
1353    --  if the GNAT driver is invoked with directory information. Do not do this
1354    --  for VMS, where the notion of path does not really exist.
1355
1356    if not OpenVMS then
1357       declare
1358          Command : constant String := Command_Name;
1359
1360       begin
1361          for Index in reverse Command'Range loop
1362             if Command (Index) = Directory_Separator then
1363                declare
1364                   Absolute_Dir : constant String :=
1365                                    Normalize_Pathname
1366                                      (Command (Command'First .. Index));
1367
1368                   PATH : constant String :=
1369                            Absolute_Dir & Path_Separator & Getenv ("PATH").all;
1370
1371                begin
1372                   Setenv ("PATH", PATH);
1373                end;
1374
1375                exit;
1376             end if;
1377          end loop;
1378       end;
1379    end if;
1380
1381    --  If on VMS, or if VMS emulation is on, convert VMS style /qualifiers,
1382    --  filenames and pathnames to Unix style.
1383
1384    if Hostparm.OpenVMS
1385      or else To_Lower (Getenv ("EMULATE_VMS").all) = "true"
1386    then
1387       VMS_Conversion (The_Command);
1388
1389       B_Start := new String'("b__");
1390
1391    --  If not on VMS, scan the command line directly
1392
1393    else
1394       if Argument_Count = 0 then
1395          Non_VMS_Usage;
1396          return;
1397       else
1398          begin
1399             loop
1400                if Argument_Count > Command_Arg
1401                  and then Argument (Command_Arg) = "-v"
1402                then
1403                   Verbose_Mode := True;
1404                   Command_Arg := Command_Arg + 1;
1405
1406                elsif Argument_Count > Command_Arg
1407                  and then Argument (Command_Arg) = "-dn"
1408                then
1409                   Keep_Temporary_Files := True;
1410                   Command_Arg := Command_Arg + 1;
1411
1412                else
1413                   exit;
1414                end if;
1415             end loop;
1416
1417             The_Command := Real_Command_Type'Value (Argument (Command_Arg));
1418
1419             if Command_List (The_Command).VMS_Only then
1420                Non_VMS_Usage;
1421                Fail
1422                  ("Command """
1423                   & Command_List (The_Command).Cname.all
1424                   & """ can only be used on VMS");
1425             end if;
1426
1427          exception
1428             when Constraint_Error =>
1429
1430                --  Check if it is an alternate command
1431
1432                declare
1433                   Alternate : Alternate_Command;
1434
1435                begin
1436                   Alternate := Alternate_Command'Value
1437                                               (Argument (Command_Arg));
1438                   The_Command := Corresponding_To (Alternate);
1439
1440                exception
1441                   when Constraint_Error =>
1442                      Non_VMS_Usage;
1443                      Fail ("Unknown command: " & Argument (Command_Arg));
1444                end;
1445          end;
1446
1447          --  Get the arguments from the command line and from the eventual
1448          --  argument file(s) specified on the command line.
1449
1450          for Arg in Command_Arg + 1 .. Argument_Count loop
1451             declare
1452                The_Arg : constant String := Argument (Arg);
1453
1454             begin
1455                --  Check if an argument file is specified
1456
1457                if The_Arg (The_Arg'First) = '@' then
1458                   declare
1459                      Arg_File : Ada.Text_IO.File_Type;
1460                      Line     : String (1 .. 256);
1461                      Last     : Natural;
1462
1463                   begin
1464                      --  Open the file and fail if the file cannot be found
1465
1466                      begin
1467                         Open
1468                           (Arg_File, In_File,
1469                            The_Arg (The_Arg'First + 1 .. The_Arg'Last));
1470
1471                      exception
1472                         when others =>
1473                            Put
1474                              (Standard_Error, "Cannot open argument file """);
1475                            Put
1476                              (Standard_Error,
1477                               The_Arg (The_Arg'First + 1 .. The_Arg'Last));
1478
1479                            Put_Line (Standard_Error, """");
1480                            raise Error_Exit;
1481                      end;
1482
1483                      --  Read line by line and put the content of each non-
1484                      --  empty line in the Last_Switches table.
1485
1486                      while not End_Of_File (Arg_File) loop
1487                         Get_Line (Arg_File, Line, Last);
1488
1489                         if Last /= 0 then
1490                            Last_Switches.Increment_Last;
1491                            Last_Switches.Table (Last_Switches.Last) :=
1492                              new String'(Line (1 .. Last));
1493                         end if;
1494                      end loop;
1495
1496                      Close (Arg_File);
1497                   end;
1498
1499                else
1500                   --  It is not an argument file; just put the argument in
1501                   --  the Last_Switches table.
1502
1503                   Last_Switches.Increment_Last;
1504                   Last_Switches.Table (Last_Switches.Last) :=
1505                     new String'(The_Arg);
1506                end if;
1507             end;
1508          end loop;
1509       end if;
1510    end if;
1511
1512    declare
1513       Program   : String_Access;
1514       Exec_Path : String_Access;
1515
1516    begin
1517       if The_Command = Stack then
1518
1519          --  Never call gnatstack with a prefix
1520
1521          Program := new String'(Command_List (The_Command).Unixcmd.all);
1522
1523       else
1524          Program :=
1525            Program_Name (Command_List (The_Command).Unixcmd.all, "gnat");
1526       end if;
1527
1528       --  Locate the executable for the command
1529
1530       Exec_Path := Locate_Exec_On_Path (Program.all);
1531
1532       if Exec_Path = null then
1533          Put_Line (Standard_Error, "could not locate " & Program.all);
1534          raise Error_Exit;
1535       end if;
1536
1537       --  If there are switches for the executable, put them as first switches
1538
1539       if Command_List (The_Command).Unixsws /= null then
1540          for J in Command_List (The_Command).Unixsws'Range loop
1541             First_Switches.Increment_Last;
1542             First_Switches.Table (First_Switches.Last) :=
1543               Command_List (The_Command).Unixsws (J);
1544          end loop;
1545       end if;
1546
1547       --  For BIND, CHECK, ELIM, FIND, LINK, LIST, METRIC, PRETTY, STACK, STUB,
1548       --  SYNC and XREF, look for project file related switches.
1549
1550       case The_Command is
1551          when Bind =>
1552             Tool_Package_Name := Name_Binder;
1553             Packages_To_Check := Packages_To_Check_By_Binder;
1554          when Check =>
1555             Tool_Package_Name := Name_Check;
1556             Packages_To_Check := Packages_To_Check_By_Check;
1557          when Elim =>
1558             Tool_Package_Name := Name_Eliminate;
1559             Packages_To_Check := Packages_To_Check_By_Eliminate;
1560          when Find =>
1561             Tool_Package_Name := Name_Finder;
1562             Packages_To_Check := Packages_To_Check_By_Finder;
1563          when Link =>
1564             Tool_Package_Name := Name_Linker;
1565             Packages_To_Check := Packages_To_Check_By_Linker;
1566          when List =>
1567             Tool_Package_Name := Name_Gnatls;
1568             Packages_To_Check := Packages_To_Check_By_Gnatls;
1569          when Metric =>
1570             Tool_Package_Name := Name_Metrics;
1571             Packages_To_Check := Packages_To_Check_By_Metric;
1572          when Pretty =>
1573             Tool_Package_Name := Name_Pretty_Printer;
1574             Packages_To_Check := Packages_To_Check_By_Pretty;
1575          when Stack =>
1576             Tool_Package_Name := Name_Stack;
1577             Packages_To_Check := Packages_To_Check_By_Stack;
1578          when Stub =>
1579             Tool_Package_Name := Name_Gnatstub;
1580             Packages_To_Check := Packages_To_Check_By_Gnatstub;
1581          when Sync =>
1582             Tool_Package_Name := Name_Synchronize;
1583             Packages_To_Check := Packages_To_Check_By_Sync;
1584          when Xref =>
1585             Tool_Package_Name := Name_Cross_Reference;
1586             Packages_To_Check := Packages_To_Check_By_Xref;
1587          when others =>
1588             Tool_Package_Name := No_Name;
1589       end case;
1590
1591       if Tool_Package_Name /= No_Name then
1592
1593          --  Check that the switches are consistent. Detect project file
1594          --  related switches.
1595
1596          Inspect_Switches : declare
1597             Arg_Num : Positive := 1;
1598             Argv    : String_Access;
1599
1600             procedure Remove_Switch (Num : Positive);
1601             --  Remove a project related switch from table Last_Switches
1602
1603             -------------------
1604             -- Remove_Switch --
1605             -------------------
1606
1607             procedure Remove_Switch (Num : Positive) is
1608             begin
1609                Last_Switches.Table (Num .. Last_Switches.Last - 1) :=
1610                  Last_Switches.Table (Num + 1 .. Last_Switches.Last);
1611                Last_Switches.Decrement_Last;
1612             end Remove_Switch;
1613
1614          --  Start of processing for Inspect_Switches
1615
1616          begin
1617             while Arg_Num <= Last_Switches.Last loop
1618                Argv := Last_Switches.Table (Arg_Num);
1619
1620                if Argv (Argv'First) = '-' then
1621                   if Argv'Length = 1 then
1622                      Fail
1623                        ("switch character cannot be followed by a blank");
1624                   end if;
1625
1626                   --  The two style project files (-p and -P) cannot be used
1627                   --  together
1628
1629                   if (The_Command = Find or else The_Command = Xref)
1630                     and then Argv (2) = 'p'
1631                   then
1632                      Old_Project_File_Used := True;
1633                      if Project_File /= null then
1634                         Fail ("-P and -p cannot be used together");
1635                      end if;
1636                   end if;
1637
1638                   --  --subdirs=... Specify Subdirs
1639
1640                   if Argv'Length > Makeutl.Subdirs_Option'Length
1641                     and then
1642                       Argv
1643                        (Argv'First ..
1644                         Argv'First + Makeutl.Subdirs_Option'Length - 1) =
1645                           Makeutl.Subdirs_Option
1646                   then
1647                      Subdirs :=
1648                        new String'
1649                          (Argv
1650                            (Argv'First + Makeutl.Subdirs_Option'Length ..
1651                             Argv'Last));
1652
1653                      Remove_Switch (Arg_Num);
1654
1655                   --  -aPdir  Add dir to the project search path
1656
1657                   elsif Argv'Length > 3
1658                     and then Argv (Argv'First + 1 .. Argv'First + 2) = "aP"
1659                   then
1660                      Add_Search_Project_Directory
1661                        (Project_Node_Tree, Argv (Argv'First + 3 .. Argv'Last));
1662
1663                      Remove_Switch (Arg_Num);
1664
1665                   --  -eL  Follow links for files
1666
1667                   elsif Argv.all = "-eL" then
1668                      Follow_Links_For_Files := True;
1669                      Follow_Links_For_Dirs  := True;
1670
1671                      Remove_Switch (Arg_Num);
1672
1673                   --  -vPx  Specify verbosity while parsing project files
1674
1675                   elsif Argv'Length = 4
1676                     and then Argv (Argv'First + 1 .. Argv'First + 2) = "vP"
1677                   then
1678                      case Argv (Argv'Last) is
1679                         when '0' =>
1680                            Current_Verbosity := Prj.Default;
1681                         when '1' =>
1682                            Current_Verbosity := Prj.Medium;
1683                         when '2' =>
1684                            Current_Verbosity := Prj.High;
1685                         when others =>
1686                            Fail ("Invalid switch: " & Argv.all);
1687                      end case;
1688
1689                      Remove_Switch (Arg_Num);
1690
1691                   --  -Pproject_file  Specify project file to be used
1692
1693                   elsif Argv (Argv'First + 1) = 'P' then
1694
1695                      --  Only one -P switch can be used
1696
1697                      if Project_File /= null then
1698                         Fail
1699                           (Argv.all
1700                            & ": second project file forbidden (first is """
1701                            & Project_File.all
1702                            & """)");
1703
1704                      --  The two style project files (-p and -P) cannot be
1705                      --  used together.
1706
1707                      elsif Old_Project_File_Used then
1708                         Fail ("-p and -P cannot be used together");
1709
1710                      elsif Argv'Length = 2 then
1711
1712                         --  There is space between -P and the project file
1713                         --  name. -P cannot be the last option.
1714
1715                         if Arg_Num = Last_Switches.Last then
1716                            Fail ("project file name missing after -P");
1717
1718                         else
1719                            Remove_Switch (Arg_Num);
1720                            Argv := Last_Switches.Table (Arg_Num);
1721
1722                            --  After -P, there must be a project file name,
1723                            --  not another switch.
1724
1725                            if Argv (Argv'First) = '-' then
1726                               Fail ("project file name missing after -P");
1727
1728                            else
1729                               Project_File := new String'(Argv.all);
1730                            end if;
1731                         end if;
1732
1733                      else
1734                         --  No space between -P and project file name
1735
1736                         Project_File :=
1737                           new String'(Argv (Argv'First + 2 .. Argv'Last));
1738                      end if;
1739
1740                      Remove_Switch (Arg_Num);
1741
1742                   --  -Xexternal=value Specify an external reference to be
1743                   --                   used in project files
1744
1745                   elsif Argv'Length >= 5
1746                     and then Argv (Argv'First + 1) = 'X'
1747                   then
1748                      declare
1749                         Equal_Pos : constant Natural :=
1750                                       Index
1751                                         ('=',
1752                                          Argv (Argv'First + 2 .. Argv'Last));
1753                      begin
1754                         if Equal_Pos >= Argv'First + 3
1755                           and then Equal_Pos /= Argv'Last
1756                         then
1757                            Add (Project_Node_Tree,
1758                                 External_Name =>
1759                                   Argv (Argv'First + 2 .. Equal_Pos - 1),
1760                                 Value => Argv (Equal_Pos + 1 .. Argv'Last));
1761                         else
1762                            Fail
1763                              (Argv.all
1764                               & " is not a valid external assignment.");
1765                         end if;
1766                      end;
1767
1768                      Remove_Switch (Arg_Num);
1769
1770                   elsif
1771                     (The_Command = Check  or else
1772                      The_Command = Sync   or else
1773                      The_Command = Pretty or else
1774                      The_Command = Metric or else
1775                      The_Command = Stack  or else
1776                      The_Command = List)
1777                     and then Argv'Length = 2
1778                     and then Argv (2) = 'U'
1779                   then
1780                      All_Projects := True;
1781                      Remove_Switch (Arg_Num);
1782
1783                   else
1784                      Arg_Num := Arg_Num + 1;
1785                   end if;
1786
1787                elsif ((The_Command = Check and then Argv (Argv'First) /= '+')
1788                         or else The_Command = Sync
1789                         or else The_Command = Metric
1790                         or else The_Command = Pretty)
1791                  and then Project_File /= null
1792                  and then All_Projects
1793                then
1794                   if ASIS_Main /= null then
1795                      Fail ("cannot specify more than one main after -U");
1796                   else
1797                      ASIS_Main := Argv;
1798                      Remove_Switch (Arg_Num);
1799                   end if;
1800
1801                else
1802                   Arg_Num := Arg_Num + 1;
1803                end if;
1804             end loop;
1805          end Inspect_Switches;
1806       end if;
1807
1808       --  If there is a project file specified, parse it, get the switches
1809       --  for the tool and setup PATH environment variables.
1810
1811       if Project_File /= null then
1812          Prj.Pars.Set_Verbosity (To => Current_Verbosity);
1813
1814          Prj.Pars.Parse
1815            (Project           => Project,
1816             In_Tree           => Project_Tree,
1817             In_Node_Tree      => Project_Node_Tree,
1818             Project_File_Name => Project_File.all,
1819             Flags             => Gnatmake_Flags,
1820             Packages_To_Check => Packages_To_Check);
1821
1822          if Project = Prj.No_Project then
1823             Fail ("""" & Project_File.all & """ processing failed");
1824          end if;
1825
1826          --  Check if a package with the name of the tool is in the project
1827          --  file and if there is one, get the switches, if any, and scan them.
1828
1829          declare
1830             Pkg : constant Prj.Package_Id :=
1831                     Prj.Util.Value_Of
1832                       (Name        => Tool_Package_Name,
1833                        In_Packages => Project.Decl.Packages,
1834                        In_Tree     => Project_Tree);
1835
1836             Element : Package_Element;
1837
1838             Switches_Array : Array_Element_Id;
1839
1840             The_Switches : Prj.Variable_Value;
1841             Current      : Prj.String_List_Id;
1842             The_String   : String_Element;
1843
1844             Main : String_Access := null;
1845
1846          begin
1847             if Pkg /= No_Package then
1848                Element := Project_Tree.Packages.Table (Pkg);
1849
1850                --  Packages Gnatls and Gnatstack have a single attribute
1851                --  Switches, that is not an associative array.
1852
1853                if The_Command = List or else The_Command = Stack then
1854                   The_Switches :=
1855                     Prj.Util.Value_Of
1856                     (Variable_Name => Snames.Name_Switches,
1857                      In_Variables  => Element.Decl.Attributes,
1858                      In_Tree       => Project_Tree);
1859
1860                --  Packages Binder (for gnatbind), Cross_Reference (for
1861                --  gnatxref), Linker (for gnatlink), Finder (for gnatfind),
1862                --  Pretty_Printer (for gnatpp), Eliminate (for gnatelim), Check
1863                --  (for gnatcheck), and Metric (for gnatmetric) have an
1864                --  attributed Switches, an associative array, indexed by the
1865                --  name of the file.
1866
1867                --  They also have an attribute Default_Switches, indexed by the
1868                --  name of the programming language.
1869
1870                else
1871                   --  First check if there is a single main
1872
1873                   for J in 1 .. Last_Switches.Last loop
1874                      if Last_Switches.Table (J) (1) /= '-' then
1875                         if Main = null then
1876                            Main := Last_Switches.Table (J);
1877
1878                         else
1879                            Main := null;
1880                            exit;
1881                         end if;
1882                      end if;
1883                   end loop;
1884
1885                   if Main /= null then
1886                      Switches_Array :=
1887                        Prj.Util.Value_Of
1888                          (Name      => Name_Switches,
1889                           In_Arrays => Element.Decl.Arrays,
1890                           In_Tree   => Project_Tree);
1891                      Name_Len := 0;
1892                      Add_Str_To_Name_Buffer (Main.all);
1893                      The_Switches := Prj.Util.Value_Of
1894                        (Index     => Name_Find,
1895                         Src_Index => 0,
1896                         In_Array  => Switches_Array,
1897                         In_Tree   => Project_Tree);
1898                   end if;
1899
1900                   if The_Switches.Kind = Prj.Undefined then
1901                      Switches_Array :=
1902                        Prj.Util.Value_Of
1903                          (Name      => Name_Default_Switches,
1904                           In_Arrays => Element.Decl.Arrays,
1905                           In_Tree   => Project_Tree);
1906                      The_Switches := Prj.Util.Value_Of
1907                        (Index     => Name_Ada,
1908                         Src_Index => 0,
1909                         In_Array  => Switches_Array,
1910                         In_Tree   => Project_Tree);
1911                   end if;
1912                end if;
1913
1914                --  If there are switches specified in the package of the
1915                --  project file corresponding to the tool, scan them.
1916
1917                case The_Switches.Kind is
1918                   when Prj.Undefined =>
1919                      null;
1920
1921                   when Prj.Single =>
1922                      declare
1923                         Switch : constant String :=
1924                                    Get_Name_String (The_Switches.Value);
1925
1926                      begin
1927                         if Switch'Length > 0 then
1928                            First_Switches.Increment_Last;
1929                            First_Switches.Table (First_Switches.Last) :=
1930                              new String'(Switch);
1931                         end if;
1932                      end;
1933
1934                   when Prj.List =>
1935                      Current := The_Switches.Values;
1936                      while Current /= Prj.Nil_String loop
1937                         The_String := Project_Tree.String_Elements.
1938                                         Table (Current);
1939
1940                         declare
1941                            Switch : constant String :=
1942                              Get_Name_String (The_String.Value);
1943
1944                         begin
1945                            if Switch'Length > 0 then
1946                               First_Switches.Increment_Last;
1947                               First_Switches.Table (First_Switches.Last) :=
1948                                 new String'(Switch);
1949                            end if;
1950                         end;
1951
1952                         Current := The_String.Next;
1953                      end loop;
1954                end case;
1955             end if;
1956          end;
1957
1958          if        The_Command = Bind
1959            or else The_Command = Link
1960            or else The_Command = Elim
1961          then
1962             Change_Dir (Get_Name_String (Project.Object_Directory.Name));
1963          end if;
1964
1965          --  Set up the env vars for project path files
1966
1967          Prj.Env.Set_Ada_Paths
1968            (Project, Project_Tree, Including_Libraries => False);
1969
1970          --  For gnatcheck, gnatstub, gnatmetric, gnatpp and gnatelim, create
1971          --  a configuration pragmas file, if necessary.
1972
1973          if        The_Command = Pretty
1974            or else The_Command = Metric
1975            or else The_Command = Stub
1976            or else The_Command = Elim
1977            or else The_Command = Check
1978            or else The_Command = Sync
1979          then
1980             --  If there are switches in package Compiler, put them in the
1981             --  Carg_Switches table.
1982
1983             declare
1984                Pkg  : constant Prj.Package_Id :=
1985                         Prj.Util.Value_Of
1986                           (Name        => Name_Compiler,
1987                            In_Packages => Project.Decl.Packages,
1988                            In_Tree     => Project_Tree);
1989
1990                Element : Package_Element;
1991
1992                Switches_Array : Array_Element_Id;
1993
1994                The_Switches : Prj.Variable_Value;
1995                Current      : Prj.String_List_Id;
1996                The_String   : String_Element;
1997
1998                Main    : String_Access := null;
1999                Main_Id : Name_Id;
2000
2001             begin
2002                if Pkg /= No_Package then
2003
2004                   --  First, check if there is a single main specified.
2005
2006                   for J in 1  .. Last_Switches.Last loop
2007                      if Last_Switches.Table (J) (1) /= '-' then
2008                         if Main = null then
2009                            Main := Last_Switches.Table (J);
2010
2011                         else
2012                            Main := null;
2013                            exit;
2014                         end if;
2015                      end if;
2016                   end loop;
2017
2018                   Element := Project_Tree.Packages.Table (Pkg);
2019
2020                   --  If there is a single main and there is compilation
2021                   --  switches specified in the project file, use them.
2022
2023                   if Main /= null and then not All_Projects then
2024                      Name_Len := Main'Length;
2025                      Name_Buffer (1 .. Name_Len) := Main.all;
2026                      Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
2027                      Main_Id := Name_Find;
2028
2029                      Switches_Array :=
2030                        Prj.Util.Value_Of
2031                          (Name      => Name_Switches,
2032                           In_Arrays => Element.Decl.Arrays,
2033                           In_Tree   => Project_Tree);
2034                      The_Switches := Prj.Util.Value_Of
2035                        (Index     => Main_Id,
2036                         Src_Index => 0,
2037                         In_Array  => Switches_Array,
2038                         In_Tree   => Project_Tree);
2039                   end if;
2040
2041                   --  Otherwise, get the Default_Switches ("Ada")
2042
2043                   if The_Switches.Kind = Undefined then
2044                      Switches_Array :=
2045                        Prj.Util.Value_Of
2046                          (Name      => Name_Default_Switches,
2047                           In_Arrays => Element.Decl.Arrays,
2048                           In_Tree   => Project_Tree);
2049                      The_Switches := Prj.Util.Value_Of
2050                        (Index     => Name_Ada,
2051                         Src_Index => 0,
2052                         In_Array  => Switches_Array,
2053                         In_Tree   => Project_Tree);
2054                   end if;
2055
2056                   --  If there are switches specified, put them in the
2057                   --  Carg_Switches table.
2058
2059                   case The_Switches.Kind is
2060                      when Prj.Undefined =>
2061                         null;
2062
2063                      when Prj.Single =>
2064                         declare
2065                            Switch : constant String :=
2066                                       Get_Name_String (The_Switches.Value);
2067                         begin
2068                            if Switch'Length > 0 then
2069                               Add_To_Carg_Switches (new String'(Switch));
2070                            end if;
2071                         end;
2072
2073                      when Prj.List =>
2074                         Current := The_Switches.Values;
2075                         while Current /= Prj.Nil_String loop
2076                            The_String :=
2077                              Project_Tree.String_Elements.Table (Current);
2078
2079                            declare
2080                               Switch : constant String :=
2081                                          Get_Name_String (The_String.Value);
2082                            begin
2083                               if Switch'Length > 0 then
2084                                  Add_To_Carg_Switches (new String'(Switch));
2085                               end if;
2086                            end;
2087
2088                            Current := The_String.Next;
2089                         end loop;
2090                   end case;
2091                end if;
2092             end;
2093
2094             --  If -cargs is one of the switches, move the following switches
2095             --  to the Carg_Switches table.
2096
2097             for J in 1 .. First_Switches.Last loop
2098                if First_Switches.Table (J).all = "-cargs" then
2099                   declare
2100                      K    : Positive;
2101                      Last : Natural;
2102
2103                   begin
2104                      --  Move the switches that are before -rules when the
2105                      --  command is CHECK.
2106
2107                      K := J + 1;
2108                      while K <= First_Switches.Last
2109                        and then
2110                         (The_Command /= Check
2111                           or else First_Switches.Table (K).all /= "-rules")
2112                      loop
2113                         Add_To_Carg_Switches (First_Switches.Table (K));
2114                         K := K + 1;
2115                      end loop;
2116
2117                      if K > First_Switches.Last then
2118                         First_Switches.Set_Last (J - 1);
2119
2120                      else
2121                         Last := J - 1;
2122                         while K <= First_Switches.Last loop
2123                            Last := Last + 1;
2124                            First_Switches.Table (Last) :=
2125                              First_Switches.Table (K);
2126                            K := K + 1;
2127                         end loop;
2128
2129                         First_Switches.Set_Last (Last);
2130                      end if;
2131                   end;
2132
2133                   exit;
2134                end if;
2135             end loop;
2136
2137             for J in 1 .. Last_Switches.Last loop
2138                if Last_Switches.Table (J).all = "-cargs" then
2139                   declare
2140                      K    : Positive;
2141                      Last : Natural;
2142
2143                   begin
2144                      --  Move the switches that are before -rules when the
2145                      --  command is CHECK.
2146
2147                      K := J + 1;
2148                      while K <= Last_Switches.Last
2149                        and then
2150                         (The_Command /= Check
2151                           or else Last_Switches.Table (K).all /= "-rules")
2152                      loop
2153                         Add_To_Carg_Switches (Last_Switches.Table (K));
2154                         K := K + 1;
2155                      end loop;
2156
2157                      if K > Last_Switches.Last then
2158                         Last_Switches.Set_Last (J - 1);
2159
2160                      else
2161                         Last := J - 1;
2162                         while K <= Last_Switches.Last loop
2163                            Last := Last + 1;
2164                            Last_Switches.Table (Last) :=
2165                              Last_Switches.Table (K);
2166                            K := K + 1;
2167                         end loop;
2168
2169                         Last_Switches.Set_Last (Last);
2170                      end if;
2171                   end;
2172
2173                   exit;
2174                end if;
2175             end loop;
2176
2177             declare
2178                CP_File : constant Path_Name_Type := Configuration_Pragmas_File;
2179                M_File  : constant Path_Name_Type := Mapping_File;
2180
2181             begin
2182                if CP_File /= No_Path then
2183                   if The_Command = Elim then
2184                      First_Switches.Increment_Last;
2185                      First_Switches.Table (First_Switches.Last)  :=
2186                        new String'("-C" & Get_Name_String (CP_File));
2187
2188                   else
2189                      Add_To_Carg_Switches
2190                        (new String'("-gnatec=" & Get_Name_String (CP_File)));
2191                   end if;
2192                end if;
2193
2194                if M_File /= No_Path then
2195                   Add_To_Carg_Switches
2196                     (new String'("-gnatem=" & Get_Name_String (M_File)));
2197                end if;
2198
2199                --  For gnatcheck, also indicate a global configuration pragmas
2200                --  file and, if -U is not used, a local one.
2201
2202                if The_Command = Check then
2203                   declare
2204                      Pkg  : constant Prj.Package_Id :=
2205                               Prj.Util.Value_Of
2206                                 (Name        => Name_Builder,
2207                                  In_Packages => Project.Decl.Packages,
2208                                  In_Tree     => Project_Tree);
2209
2210                      Variable : Variable_Value :=
2211                                   Prj.Util.Value_Of
2212                                     (Name                    => No_Name,
2213                                      Attribute_Or_Array_Name =>
2214                                        Name_Global_Configuration_Pragmas,
2215                                      In_Package              => Pkg,
2216                                      In_Tree                 => Project_Tree);
2217
2218                   begin
2219                      if (Variable = Nil_Variable_Value
2220                           or else Length_Of_Name (Variable.Value) = 0)
2221                        and then Pkg /= No_Package
2222                      then
2223                         Variable :=
2224                           Prj.Util.Value_Of
2225                             (Name                    => Name_Ada,
2226                              Attribute_Or_Array_Name =>
2227                                Name_Global_Config_File,
2228                              In_Package              => Pkg,
2229                              In_Tree                 => Project_Tree);
2230                      end if;
2231
2232                      if Variable /= Nil_Variable_Value
2233                        and then Length_Of_Name (Variable.Value) /= 0
2234                      then
2235                         Add_To_Carg_Switches
2236                           (new String'
2237                              ("-gnatec=" & Get_Name_String (Variable.Value)));
2238                      end if;
2239                   end;
2240
2241                   if not All_Projects then
2242                      declare
2243                         Pkg : constant Prj.Package_Id :=
2244                                 Prj.Util.Value_Of
2245                                   (Name        => Name_Compiler,
2246                                    In_Packages => Project.Decl.Packages,
2247                                    In_Tree     => Project_Tree);
2248
2249                         Variable : Variable_Value :=
2250                                      Prj.Util.Value_Of
2251                                        (Name        => No_Name,
2252                                         Attribute_Or_Array_Name =>
2253                                           Name_Local_Configuration_Pragmas,
2254                                         In_Package  => Pkg,
2255                                         In_Tree     => Project_Tree);
2256
2257                      begin
2258                         if (Variable = Nil_Variable_Value
2259                              or else Length_Of_Name (Variable.Value) = 0)
2260                           and then Pkg /= No_Package
2261                         then
2262                            Variable :=
2263                              Prj.Util.Value_Of
2264                                (Name                    => Name_Ada,
2265                                 Attribute_Or_Array_Name =>
2266                                   Name_Local_Config_File,
2267                                 In_Package              => Pkg,
2268                                 In_Tree                 => Project_Tree);
2269                         end if;
2270
2271                         if Variable /= Nil_Variable_Value
2272                           and then Length_Of_Name (Variable.Value) /= 0
2273                         then
2274                            Add_To_Carg_Switches
2275                              (new String'
2276                                 ("-gnatec=" &
2277                                  Get_Name_String (Variable.Value)));
2278                         end if;
2279                      end;
2280                   end if;
2281                end if;
2282             end;
2283          end if;
2284
2285          if The_Command = Link then
2286             Process_Link;
2287          end if;
2288
2289          if The_Command = Link or else The_Command = Bind then
2290
2291             --  For files that are specified as relative paths with directory
2292             --  information, we convert them to absolute paths, with parent
2293             --  being the current working directory if specified on the command
2294             --  line and the project directory if specified in the project
2295             --  file. This is what gnatmake is doing for linker and binder
2296             --  arguments.
2297
2298             for J in 1 .. Last_Switches.Last loop
2299                GNATCmd.Test_If_Relative_Path
2300                  (Last_Switches.Table (J), Current_Work_Dir);
2301             end loop;
2302
2303             Get_Name_String (Project.Directory.Name);
2304
2305             declare
2306                Project_Dir : constant String := Name_Buffer (1 .. Name_Len);
2307             begin
2308                for J in 1 .. First_Switches.Last loop
2309                   GNATCmd.Test_If_Relative_Path
2310                     (First_Switches.Table (J), Project_Dir);
2311                end loop;
2312             end;
2313
2314          elsif The_Command = Stub then
2315             declare
2316                File_Index : Integer := 0;
2317                Dir_Index  : Integer := 0;
2318                Last       : constant Integer := Last_Switches.Last;
2319                Lang       : constant Language_Ptr :=
2320                               Get_Language_From_Name (Project, "ada");
2321
2322             begin
2323                for Index in 1 .. Last loop
2324                   if Last_Switches.Table (Index)
2325                     (Last_Switches.Table (Index)'First) /= '-'
2326                   then
2327                      File_Index := Index;
2328                      exit;
2329                   end if;
2330                end loop;
2331
2332                --  If the project file naming scheme is not standard, and if
2333                --  the file name ends with the spec suffix, then indicate to
2334                --  gnatstub the name of the body file with a -o switch.
2335
2336                if not Is_Standard_GNAT_Naming (Lang.Config.Naming_Data) then
2337                   if File_Index /= 0 then
2338                      declare
2339                         Spec : constant String :=
2340                                  Base_Name
2341                                    (Last_Switches.Table (File_Index).all);
2342                         Last : Natural := Spec'Last;
2343
2344                      begin
2345                         Get_Name_String (Lang.Config.Naming_Data.Spec_Suffix);
2346
2347                         if Spec'Length > Name_Len
2348                           and then Spec (Last - Name_Len + 1 .. Last) =
2349                                                   Name_Buffer (1 .. Name_Len)
2350                         then
2351                            Last := Last - Name_Len;
2352                            Get_Name_String
2353                              (Lang.Config.Naming_Data.Body_Suffix);
2354                            Last_Switches.Increment_Last;
2355                            Last_Switches.Table (Last_Switches.Last) :=
2356                              new String'("-o");
2357                            Last_Switches.Increment_Last;
2358                            Last_Switches.Table (Last_Switches.Last) :=
2359                              new String'(Spec (Spec'First .. Last) &
2360                                            Name_Buffer (1 .. Name_Len));
2361                         end if;
2362                      end;
2363                   end if;
2364                end if;
2365
2366                --  Add the directory of the spec as the destination directory
2367                --  of the body, if there is no destination directory already
2368                --  specified.
2369
2370                if File_Index /= 0 then
2371                   for Index in File_Index + 1 .. Last loop
2372                      if Last_Switches.Table (Index)
2373                          (Last_Switches.Table (Index)'First) /= '-'
2374                      then
2375                         Dir_Index := Index;
2376                         exit;
2377                      end if;
2378                   end loop;
2379
2380                   if Dir_Index = 0 then
2381                      Last_Switches.Increment_Last;
2382                      Last_Switches.Table (Last_Switches.Last) :=
2383                        new String'
2384                              (Dir_Name (Last_Switches.Table (File_Index).all));
2385                   end if;
2386                end if;
2387             end;
2388          end if;
2389
2390          --  For gnatmetric, the generated files should be put in the object
2391          --  directory. This must be the first switch, because it may be
2392          --  overridden by a switch in package Metrics in the project file or
2393          --  by a command line option. Note that we don't add the -d= switch
2394          --  if there is no object directory available.
2395
2396          if The_Command = Metric
2397            and then Project.Object_Directory /= No_Path_Information
2398          then
2399             First_Switches.Increment_Last;
2400             First_Switches.Table (2 .. First_Switches.Last) :=
2401               First_Switches.Table (1 .. First_Switches.Last - 1);
2402             First_Switches.Table (1) :=
2403               new String'("-d=" &
2404                           Get_Name_String (Project.Object_Directory.Name));
2405          end if;
2406
2407          --  For gnat check, -rules and the following switches need to be the
2408          --  last options, so move all these switches to table Rules_Switches.
2409
2410          if The_Command = Check then
2411             declare
2412                New_Last : Natural;
2413                --  Set to rank of options preceding "-rules"
2414
2415                In_Rules_Switches : Boolean;
2416                --  Set to True when options "-rules" is found
2417
2418             begin
2419                New_Last := First_Switches.Last;
2420                In_Rules_Switches := False;
2421
2422                for J in 1 .. First_Switches.Last loop
2423                   if In_Rules_Switches then
2424                      Add_To_Rules_Switches (First_Switches.Table (J));
2425
2426                   elsif First_Switches.Table (J).all = "-rules" then
2427                      New_Last := J - 1;
2428                      In_Rules_Switches := True;
2429                   end if;
2430                end loop;
2431
2432                if In_Rules_Switches then
2433                   First_Switches.Set_Last (New_Last);
2434                end if;
2435
2436                New_Last := Last_Switches.Last;
2437                In_Rules_Switches := False;
2438
2439                for J in 1 .. Last_Switches.Last loop
2440                   if In_Rules_Switches then
2441                      Add_To_Rules_Switches (Last_Switches.Table (J));
2442
2443                   elsif Last_Switches.Table (J).all = "-rules" then
2444                      New_Last := J - 1;
2445                      In_Rules_Switches := True;
2446                   end if;
2447                end loop;
2448
2449                if In_Rules_Switches then
2450                   Last_Switches.Set_Last (New_Last);
2451                end if;
2452             end;
2453          end if;
2454
2455          --  For gnat check, sync, metric or pretty with -U + a main, get the
2456          --  list of sources from the closure and add them to the arguments.
2457
2458          if ASIS_Main /= null then
2459             Get_Closure;
2460
2461             --  On VMS, set up the env var again for source dirs file. This is
2462             --  because the call to gnatmake has set this env var to another
2463             --  file that has now been deleted.
2464
2465             if Hostparm.OpenVMS then
2466
2467                --  First make sure that the recorded file names are empty
2468
2469                Prj.Env.Initialize (Project_Tree);
2470
2471                Prj.Env.Set_Ada_Paths
2472                  (Project, Project_Tree, Including_Libraries => False);
2473             end if;
2474
2475          --  For gnat check, gnat sync, gnat pretty, gnat metric, gnat list,
2476          --  and gnat stack, if no file has been put on the command line, call
2477          --  tool with all the sources of the main project.
2478
2479          elsif The_Command = Check  or else
2480                The_Command = Sync   or else
2481                The_Command = Pretty or else
2482                The_Command = Metric or else
2483                The_Command = List   or else
2484                The_Command = Stack
2485          then
2486             Check_Files;
2487          end if;
2488       end if;
2489
2490       --  Gather all the arguments and invoke the executable
2491
2492       declare
2493          The_Args : Argument_List
2494                       (1 .. First_Switches.Last +
2495                             Last_Switches.Last +
2496                             Carg_Switches.Last +
2497                             Rules_Switches.Last);
2498          Arg_Num  : Natural := 0;
2499
2500       begin
2501          for J in 1 .. First_Switches.Last loop
2502             Arg_Num := Arg_Num + 1;
2503             The_Args (Arg_Num) := First_Switches.Table (J);
2504          end loop;
2505
2506          for J in 1 .. Last_Switches.Last loop
2507             Arg_Num := Arg_Num + 1;
2508             The_Args (Arg_Num) := Last_Switches.Table (J);
2509          end loop;
2510
2511          for J in 1 .. Carg_Switches.Last loop
2512             Arg_Num := Arg_Num + 1;
2513             The_Args (Arg_Num) := Carg_Switches.Table (J);
2514          end loop;
2515
2516          for J in 1 .. Rules_Switches.Last loop
2517             Arg_Num := Arg_Num + 1;
2518             The_Args (Arg_Num) := Rules_Switches.Table (J);
2519          end loop;
2520
2521          --  If Display_Command is on, only display the generated command
2522
2523          if Display_Command then
2524             Put (Standard_Error, "generated command -->");
2525             Put (Standard_Error, Exec_Path.all);
2526
2527             for Arg in The_Args'Range loop
2528                Put (Standard_Error, " ");
2529                Put (Standard_Error, The_Args (Arg).all);
2530             end loop;
2531
2532             Put (Standard_Error, "<--");
2533             New_Line (Standard_Error);
2534             raise Normal_Exit;
2535          end if;
2536
2537          if Verbose_Mode then
2538             Output.Write_Str (Exec_Path.all);
2539
2540             for Arg in The_Args'Range loop
2541                Output.Write_Char (' ');
2542                Output.Write_Str (The_Args (Arg).all);
2543             end loop;
2544
2545             Output.Write_Eol;
2546          end if;
2547
2548          My_Exit_Status :=
2549            Exit_Status (Spawn (Exec_Path.all, The_Args));
2550          raise Normal_Exit;
2551       end;
2552    end;
2553
2554 exception
2555    when Error_Exit =>
2556       if not Keep_Temporary_Files then
2557          Prj.Delete_All_Temp_Files (Project_Tree);
2558          Delete_Temp_Config_Files;
2559       end if;
2560
2561       Set_Exit_Status (Failure);
2562
2563    when Normal_Exit =>
2564       if not Keep_Temporary_Files then
2565          Prj.Delete_All_Temp_Files (Project_Tree);
2566          Delete_Temp_Config_Files;
2567       end if;
2568
2569       --  Since GNATCmd is normally called from DCL (the VMS shell), it must
2570       --  return an understandable VMS exit status. However the exit status
2571       --  returned *to* GNATCmd is a Posix style code, so we test it and return
2572       --  just a simple success or failure on VMS.
2573
2574       if Hostparm.OpenVMS and then My_Exit_Status /= Success then
2575          Set_Exit_Status (Failure);
2576       else
2577          Set_Exit_Status (My_Exit_Status);
2578       end if;
2579 end GNATCmd;