* expr.c (gfc_copy_shape_excluding): Change && to ||.
[official-gcc.git] / gcc / ada / makeutl.ads
blob0a3f11a0aafa9caa66338880d80129252c931eb4
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- M A K E U T L --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004 Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
27 with Osint;
28 with Prj; use Prj;
29 with Types; use Types;
31 with GNAT.OS_Lib; use GNAT.OS_Lib;
33 package Makeutl is
35 type Fail_Proc is access procedure
36 (S1 : String;
37 S2 : String := "";
38 S3 : String := "");
39 Do_Fail : Fail_Proc := Osint.Fail'Access;
40 -- Comment required ???
42 function Unit_Index_Of (ALI_File : File_Name_Type) return Int;
43 -- Find the index of a unit in a source file. Return zero if the file
44 -- is not a multi-unit source file.
46 function Is_External_Assignment (Argv : String) return Boolean;
47 -- Verify that an external assignment switch is syntactically correct
49 -- Correct forms are:
51 -- -Xname=value
52 -- -X"name=other value"
54 -- Assumptions: 'First = 1, Argv (1 .. 2) = "-X"
55 -- When this function returns True, the external assignment has
56 -- been entered by a call to Prj.Ext.Add, so that in a project
57 -- file, External ("name") will return "value".
59 function Linker_Options_Switches (Project : Project_Id) return String_List;
60 -- Comment required ???
62 -- Package Mains is used to store the mains specified on the command line
63 -- and to retrieve them when a project file is used, to verify that the
64 -- files exist and that they belong to a project file.
66 package Mains is
68 -- Mains are stored in a table. An index is used to retrieve the mains
69 -- from the table.
71 procedure Add_Main (Name : String);
72 -- Add one main to the table
74 procedure Delete;
75 -- Empty the table
77 procedure Reset;
78 -- Reset the index to the beginning of the table
80 function Next_Main return String;
81 -- Increase the index and return the next main.
82 -- If table is exhausted, return an empty string.
84 function Number_Of_Mains return Natural;
85 -- Returns the number of mains added with Add_Main since the last call
86 -- to Delete.
88 end Mains;
90 procedure Test_If_Relative_Path
91 (Switch : in out String_Access;
92 Parent : String_Access;
93 Including_L_Switch : Boolean := True);
94 -- Test if Switch is a relative search path switch.
95 -- If it is, fail if Parent is null, otherwise prepend the path with
96 -- Parent. This subprogram is only called when using project files.
97 -- For gnatbind switches, Including_L_Switch is False, because the
98 -- argument of the -L switch is not a path.
100 ----------------------
101 -- Marking Routines --
102 ----------------------
104 procedure Mark (Source_File : File_Name_Type; Index : Int := 0);
105 -- Mark a unit, identified by its source file and, when Index is not 0,
106 -- the index of the unit in the source file. Marking is used to signal
107 -- that the unit has already been inserted in the Q.
109 function Is_Marked
110 (Source_File : File_Name_Type;
111 Index : Int := 0) return Boolean;
112 -- Returns True if the unit was previously marked.
114 procedure Delete_All_Marks;
115 -- Remove all file/index couples marked
117 end Makeutl;