* c-common.c (get_priority): Add check for
[official-gcc.git] / gcc / ada / mlib-tgt-mingw.adb
blob675f015217597c48ae35cdbe03771618564463da
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- M L I B . T G T --
6 -- (Windows Version) --
7 -- --
8 -- B o d y --
9 -- --
10 -- Copyright (C) 2002-2006, 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 ------------------------------------------------------------------------------
28 -- This package provides a set of target dependent routines to build
29 -- static, dynamic and shared libraries.
31 -- This is the Windows version of the body. Works only with GCC versions
32 -- supporting the "-shared" option.
34 with Namet; use Namet;
35 with Opt;
36 with Output; use Output;
37 with Prj.Com;
39 with MLib.Fil;
40 with MLib.Utl;
42 package body MLib.Tgt is
44 package Files renames MLib.Fil;
45 package Tools renames MLib.Utl;
47 No_Argument_List : constant String_List := (1 .. 0 => null);
48 -- Used as value of parameter Options or Options2 in calls to Gcc
50 ---------------------
51 -- Archive_Builder --
52 ---------------------
54 function Archive_Builder return String is
55 begin
56 return "ar";
57 end Archive_Builder;
59 -----------------------------
60 -- Archive_Builder_Options --
61 -----------------------------
63 function Archive_Builder_Options return String_List_Access is
64 begin
65 return new String_List'(1 => new String'("cr"));
66 end Archive_Builder_Options;
68 -----------------
69 -- Archive_Ext --
70 -----------------
72 function Archive_Ext return String is
73 begin
74 return "a";
75 end Archive_Ext;
77 ---------------------
78 -- Archive_Indexer --
79 ---------------------
81 function Archive_Indexer return String is
82 begin
83 return "ranlib";
84 end Archive_Indexer;
86 -----------------------------
87 -- Archive_Indexer_Options --
88 -----------------------------
90 function Archive_Indexer_Options return String_List_Access is
91 begin
92 return new String_List (1 .. 0);
93 end Archive_Indexer_Options;
95 ---------------------------
96 -- Build_Dynamic_Library --
97 ---------------------------
99 procedure Build_Dynamic_Library
100 (Ofiles : Argument_List;
101 Foreign : Argument_List;
102 Afiles : Argument_List;
103 Options : Argument_List;
104 Options_2 : Argument_List;
105 Interfaces : Argument_List;
106 Lib_Filename : String;
107 Lib_Dir : String;
108 Symbol_Data : Symbol_Record;
109 Driver_Name : Name_Id := No_Name;
110 Lib_Version : String := "";
111 Auto_Init : Boolean := False)
113 pragma Unreferenced (Foreign);
114 pragma Unreferenced (Afiles);
115 pragma Unreferenced (Symbol_Data);
116 pragma Unreferenced (Interfaces);
117 pragma Unreferenced (Lib_Version);
118 pragma Unreferenced (Auto_Init);
120 Lib_File : constant String :=
121 Lib_Dir & Directory_Separator &
122 Files.Append_To (Lib_Filename, DLL_Ext);
124 -- Start of processing for Build_Dynamic_Library
126 begin
127 if Opt.Verbose_Mode then
128 Write_Str ("building relocatable shared library ");
129 Write_Line (Lib_File);
130 end if;
132 Tools.Gcc
133 (Output_File => Lib_File,
134 Objects => Ofiles,
135 Options => No_Argument_List,
136 Options_2 => Options & Options_2,
137 Driver_Name => Driver_Name);
138 end Build_Dynamic_Library;
140 -------------
141 -- DLL_Ext --
142 -------------
144 function DLL_Ext return String is
145 begin
146 return "dll";
147 end DLL_Ext;
149 ----------------
150 -- DLL_Prefix --
151 ----------------
153 function DLL_Prefix return String is
154 begin
155 return "";
156 end DLL_Prefix;
158 --------------------
159 -- Dynamic_Option --
160 --------------------
162 function Dynamic_Option return String is
163 begin
164 return "-shared";
165 end Dynamic_Option;
167 -------------------
168 -- Is_Object_Ext --
169 -------------------
171 function Is_Object_Ext (Ext : String) return Boolean is
172 begin
173 return Ext = ".o";
174 end Is_Object_Ext;
176 --------------
177 -- Is_C_Ext --
178 --------------
180 function Is_C_Ext (Ext : String) return Boolean is
181 begin
182 return Ext = ".c";
183 end Is_C_Ext;
185 --------------------
186 -- Is_Archive_Ext --
187 --------------------
189 function Is_Archive_Ext (Ext : String) return Boolean is
190 begin
191 return Ext = ".a" or else Ext = ".dll";
192 end Is_Archive_Ext;
194 -------------
195 -- Libgnat --
196 -------------
198 function Libgnat return String is
199 begin
200 return "libgnat.a";
201 end Libgnat;
203 ------------------------
204 -- Library_Exists_For --
205 ------------------------
207 function Library_Exists_For
208 (Project : Project_Id;
209 In_Tree : Project_Tree_Ref) return Boolean is
210 begin
211 if not In_Tree.Projects.Table (Project).Library then
212 Prj.Com.Fail ("INTERNAL ERROR: Library_Exists_For called " &
213 "for non library project");
214 return False;
216 else
217 declare
218 Lib_Dir : constant String :=
219 Get_Name_String
220 (In_Tree.Projects.Table (Project).Library_Dir);
221 Lib_Name : constant String :=
222 Get_Name_String
223 (In_Tree.Projects.Table (Project).Library_Name);
225 begin
226 if In_Tree.Projects.Table (Project).Library_Kind = Static then
227 return Is_Regular_File
228 (Lib_Dir & Directory_Separator & "lib" &
229 MLib.Fil.Append_To (Lib_Name, Archive_Ext));
231 else
232 return Is_Regular_File
233 (Lib_Dir & Directory_Separator &
234 MLib.Fil.Append_To (Lib_Name, DLL_Ext));
235 end if;
236 end;
237 end if;
238 end Library_Exists_For;
240 ---------------------------
241 -- Library_File_Name_For --
242 ---------------------------
244 function Library_File_Name_For
245 (Project : Project_Id;
246 In_Tree : Project_Tree_Ref) return Name_Id is
247 begin
248 if not In_Tree.Projects.Table (Project).Library then
249 Prj.Com.Fail ("INTERNAL ERROR: Library_File_Name_For called " &
250 "for non library project");
251 return No_Name;
253 else
254 declare
255 Lib_Name : constant String :=
256 Get_Name_String
257 (In_Tree.Projects.Table (Project).Library_Name);
259 begin
260 if In_Tree.Projects.Table (Project).Library_Kind =
261 Static
262 then
263 Name_Len := 3;
264 Name_Buffer (1 .. Name_Len) := "lib";
265 Add_Str_To_Name_Buffer (Fil.Append_To (Lib_Name, Archive_Ext));
267 else
268 Name_Len := 0;
269 Add_Str_To_Name_Buffer (Fil.Append_To (Lib_Name, DLL_Ext));
270 end if;
272 return Name_Find;
273 end;
274 end if;
275 end Library_File_Name_For;
277 ----------------
278 -- Object_Ext --
279 ----------------
281 function Object_Ext return String is
282 begin
283 return "o";
284 end Object_Ext;
286 ----------------
287 -- PIC_Option --
288 ----------------
290 function PIC_Option return String is
291 begin
292 return "";
293 end PIC_Option;
295 -----------------------------------------------
296 -- Standalone_Library_Auto_Init_Is_Supported --
297 -----------------------------------------------
299 function Standalone_Library_Auto_Init_Is_Supported return Boolean is
300 begin
301 return True;
302 end Standalone_Library_Auto_Init_Is_Supported;
304 ---------------------------
305 -- Support_For_Libraries --
306 ---------------------------
308 function Support_For_Libraries return Library_Support is
309 begin
310 return Full;
311 end Support_For_Libraries;
313 end MLib.Tgt;