OSDN Git Service

* tree-data-ref.c: Rename DDR_SIZE_VECT to DDR_NB_LOOPS.
[pf3gnuchains/gcc-fork.git] / gcc / ada / mlib-tgt-lynxos.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             M L I B . T G T                              --
6 --                             (LynxOS Version)                             --
7 --                                                                          --
8 --                                 B o d y                                  --
9 --                                                                          --
10 --           Copyright (C) 2003-2005 Free Software Foundation, Inc.         --
11 --                                                                          --
12 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
13 -- terms of the  GNU General Public License as published  by the Free Soft- --
14 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
15 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
18 -- for  more details.  You should have  received  a copy of the GNU General --
19 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
20 -- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
21 -- Boston, MA 02110-1301, USA.                                              --
22 --                                                                          --
23 -- GNAT was originally developed  by the GNAT team at  New York University. --
24 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
25 --                                                                          --
26 ------------------------------------------------------------------------------
27
28 --  This package provides a set of target dependent routines to build
29 --  static libraries.
30
31 --  This is the LynxOS version of the body
32
33 with MLib.Fil;
34 with Namet;  use Namet;
35 with Prj.Com;
36
37 package body MLib.Tgt is
38
39    ---------------------
40    -- Archive_Builder --
41    ---------------------
42
43    function Archive_Builder return String is
44    begin
45       return "ar";
46    end Archive_Builder;
47
48    -----------------------------
49    -- Archive_Builder_Options --
50    -----------------------------
51
52    function Archive_Builder_Options return String_List_Access is
53    begin
54       return new String_List'(1 => new String'("cr"));
55    end Archive_Builder_Options;
56
57    -----------------
58    -- Archive_Ext --
59    -----------------
60
61    function Archive_Ext return String is
62    begin
63       return "a";
64    end Archive_Ext;
65
66    ---------------------
67    -- Archive_Indexer --
68    ---------------------
69
70    function Archive_Indexer return String is
71    begin
72       return "ranlib";
73    end Archive_Indexer;
74
75    -----------------------------
76    -- Archive_Indexer_Options --
77    -----------------------------
78
79    function Archive_Indexer_Options return String_List_Access is
80    begin
81       return new String_List (1 .. 0);
82    end Archive_Indexer_Options;
83
84    ---------------------------
85    -- Build_Dynamic_Library --
86    ---------------------------
87
88    procedure Build_Dynamic_Library
89      (Ofiles       : Argument_List;
90       Foreign      : Argument_List;
91       Afiles       : Argument_List;
92       Options      : Argument_List;
93       Options_2    : Argument_List;
94       Interfaces   : Argument_List;
95       Lib_Filename : String;
96       Lib_Dir      : String;
97       Symbol_Data  : Symbol_Record;
98       Driver_Name  : Name_Id := No_Name;
99       Lib_Version  : String  := "";
100       Auto_Init    : Boolean := False)
101    is
102       pragma Unreferenced (Ofiles);
103       pragma Unreferenced (Foreign);
104       pragma Unreferenced (Afiles);
105       pragma Unreferenced (Options);
106       pragma Unreferenced (Options_2);
107       pragma Unreferenced (Interfaces);
108       pragma Unreferenced (Lib_Filename);
109       pragma Unreferenced (Lib_Dir);
110       pragma Unreferenced (Symbol_Data);
111       pragma Unreferenced (Driver_Name);
112       pragma Unreferenced (Lib_Version);
113       pragma Unreferenced (Auto_Init);
114
115    begin
116       null;
117    end Build_Dynamic_Library;
118
119    -------------
120    -- DLL_Ext --
121    -------------
122
123    function DLL_Ext return String is
124    begin
125       return "";
126    end DLL_Ext;
127
128    ----------------
129    -- DLL_Prefix --
130    ----------------
131
132    function DLL_Prefix return String is
133    begin
134       return "lib";
135    end DLL_Prefix;
136
137    --------------------
138    -- Dynamic_Option --
139    --------------------
140
141    function Dynamic_Option return String is
142    begin
143       return "";
144    end Dynamic_Option;
145
146    -------------------
147    -- Is_Object_Ext --
148    -------------------
149
150    function Is_Object_Ext (Ext : String) return Boolean is
151    begin
152       return Ext = ".o";
153    end Is_Object_Ext;
154
155    --------------
156    -- Is_C_Ext --
157    --------------
158
159    function Is_C_Ext (Ext : String) return Boolean is
160    begin
161       return Ext = ".c";
162    end Is_C_Ext;
163
164    --------------------
165    -- Is_Archive_Ext --
166    --------------------
167
168    function Is_Archive_Ext (Ext : String) return Boolean is
169    begin
170       return Ext = ".a";
171    end Is_Archive_Ext;
172
173    -------------
174    -- Libgnat --
175    -------------
176
177    function Libgnat return String is
178    begin
179       return "libgnat.a";
180    end Libgnat;
181
182    ------------------------
183    -- Library_Exists_For --
184    ------------------------
185
186    function Library_Exists_For
187      (Project : Project_Id; In_Tree : Project_Tree_Ref) return Boolean
188    is
189    begin
190       if not In_Tree.Projects.Table (Project).Library then
191          Prj.Com.Fail ("INTERNAL ERROR: Library_Exists_For called " &
192                        "for non library project");
193          return False;
194
195       else
196          declare
197             Lib_Dir : constant String :=
198               Get_Name_String
199                 (In_Tree.Projects.Table (Project).Library_Dir);
200             Lib_Name : constant String :=
201               Get_Name_String
202                 (In_Tree.Projects.Table (Project).Library_Name);
203
204          begin
205             if In_Tree.Projects.Table (Project).Library_Kind =
206               Static
207             then
208                return Is_Regular_File
209                  (Lib_Dir & Directory_Separator & "lib" &
210                   Fil.Ext_To (Lib_Name, Archive_Ext));
211
212             else
213                return Is_Regular_File
214                  (Lib_Dir & Directory_Separator & "lib" &
215                   Fil.Ext_To (Lib_Name, DLL_Ext));
216             end if;
217          end;
218       end if;
219    end Library_Exists_For;
220
221    ---------------------------
222    -- Library_File_Name_For --
223    ---------------------------
224
225    function Library_File_Name_For
226      (Project : Project_Id;
227       In_Tree : Project_Tree_Ref) return Name_Id
228    is
229    begin
230       if not In_Tree.Projects.Table (Project).Library then
231          Prj.Com.Fail ("INTERNAL ERROR: Library_File_Name_For called " &
232                        "for non library project");
233          return No_Name;
234
235       else
236          declare
237             Lib_Name : constant String :=
238               Get_Name_String
239                 (In_Tree.Projects.Table (Project).Library_Name);
240
241          begin
242             Name_Len := 3;
243             Name_Buffer (1 .. Name_Len) := "lib";
244
245             if In_Tree.Projects.Table (Project).Library_Kind =
246               Static
247             then
248                Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, Archive_Ext));
249
250             else
251                Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, DLL_Ext));
252             end if;
253
254             return Name_Find;
255          end;
256       end if;
257    end Library_File_Name_For;
258
259    ----------------
260    -- Object_Ext --
261    ----------------
262
263    function Object_Ext return String is
264    begin
265       return "o";
266    end Object_Ext;
267
268    ----------------
269    -- PIC_Option --
270    ----------------
271
272    function PIC_Option return String is
273    begin
274       return "";
275    end PIC_Option;
276
277    -----------------------------------------------
278    -- Standalone_Library_Auto_Init_Is_Supported --
279    -----------------------------------------------
280
281    function Standalone_Library_Auto_Init_Is_Supported return Boolean is
282    begin
283       return False;
284    end Standalone_Library_Auto_Init_Is_Supported;
285
286    ---------------------------
287    -- Support_For_Libraries --
288    ---------------------------
289
290    function Support_For_Libraries return Library_Support is
291    begin
292       return Static_Only;
293    end Support_For_Libraries;
294
295 end MLib.Tgt;