]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ada/mlib-tgt-solaris.adb
4052debc4fc99191361a6f9933f94d6ef33136de
[thirdparty/gcc.git] / gcc / ada / mlib-tgt-solaris.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- M L I B . T G T --
6 -- (Solaris Version) --
7 -- --
8 -- B o d y --
9 -- --
10 -- Copyright (C) 2002-2004 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, 59 Temple Place - Suite 330, Boston, --
21 -- MA 02111-1307, 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, dynamic and shared libraries.
30
31 -- This is the Solaris version of the body
32
33 with MLib.Fil;
34 with MLib.Utl;
35 with Namet; use Namet;
36 with Opt;
37 with Output; use Output;
38 with Prj.Com;
39 with System;
40
41 package body MLib.Tgt is
42
43 No_Arguments : aliased Argument_List := (1 .. 0 => null);
44 Empty_Argument_List : constant Argument_List_Access := No_Arguments'Access;
45
46 Wl_Init_String : constant String := "-Wl,-zinitarray=";
47 Wl_Fini_String : constant String := "-Wl,-zfiniarray=";
48
49 Init_Fini_List : constant Argument_List_Access :=
50 new Argument_List'(1 => null,
51 2 => null);
52
53 -- Used to put switches for automatic elaboration/finalization
54
55 ---------------------
56 -- Archive_Builder --
57 ---------------------
58
59 function Archive_Builder return String is
60 begin
61 return "ar";
62 end Archive_Builder;
63
64 -----------------------------
65 -- Archive_Builder_Options --
66 -----------------------------
67
68 function Archive_Builder_Options return String_List_Access is
69 begin
70 return new String_List'(1 => new String'("cr"));
71 end Archive_Builder_Options;
72
73 -----------------
74 -- Archive_Ext --
75 -----------------
76
77 function Archive_Ext return String is
78 begin
79 return "a";
80 end Archive_Ext;
81
82 ---------------------
83 -- Archive_Indexer --
84 ---------------------
85
86 function Archive_Indexer return String is
87 begin
88 return "ranlib";
89 end Archive_Indexer;
90
91 ---------------------------
92 -- Build_Dynamic_Library --
93 ---------------------------
94
95 procedure Build_Dynamic_Library
96 (Ofiles : Argument_List;
97 Foreign : Argument_List;
98 Afiles : Argument_List;
99 Options : Argument_List;
100 Options_2 : Argument_List;
101 Interfaces : Argument_List;
102 Lib_Filename : String;
103 Lib_Dir : String;
104 Symbol_Data : Symbol_Record;
105 Driver_Name : Name_Id := No_Name;
106 Lib_Version : String := "";
107 Auto_Init : Boolean := False)
108 is
109 pragma Unreferenced (Foreign);
110 pragma Unreferenced (Afiles);
111 pragma Unreferenced (Interfaces);
112 pragma Unreferenced (Symbol_Data);
113
114 Lib_File : constant String :=
115 Lib_Dir & Directory_Separator & "lib" &
116 Fil.Ext_To (Lib_Filename, DLL_Ext);
117
118 Version_Arg : String_Access;
119 Symbolic_Link_Needed : Boolean := False;
120
121 Init_Fini : Argument_List_Access := Empty_Argument_List;
122
123 begin
124 if Opt.Verbose_Mode then
125 Write_Str ("building relocatable shared library ");
126 Write_Line (Lib_File);
127 end if;
128
129 -- If specified, add automatic elaboration/finalization
130
131 if Auto_Init then
132 Init_Fini := Init_Fini_List;
133 Init_Fini (1) :=
134 new String'(Wl_Init_String & Lib_Filename & "init");
135 Init_Fini (2) :=
136 new String'(Wl_Fini_String & Lib_Filename & "final");
137 end if;
138
139 if Lib_Version = "" then
140 Utl.Gcc
141 (Output_File => Lib_File,
142 Objects => Ofiles,
143 Options => Options & Init_Fini.all,
144 Options_2 => Options_2,
145 Driver_Name => Driver_Name);
146
147 else
148 Version_Arg := new String'("-Wl,-h," & Lib_Version);
149
150 if Is_Absolute_Path (Lib_Version) then
151 Utl.Gcc
152 (Output_File => Lib_Version,
153 Objects => Ofiles,
154 Options => Options & Version_Arg & Init_Fini.all,
155 Options_2 => Options_2,
156 Driver_Name => Driver_Name);
157 Symbolic_Link_Needed := Lib_Version /= Lib_File;
158
159 else
160 Utl.Gcc
161 (Output_File => Lib_Dir & Directory_Separator & Lib_Version,
162 Objects => Ofiles,
163 Options => Options & Version_Arg & Init_Fini.all,
164 Options_2 => Options_2,
165 Driver_Name => Driver_Name);
166 Symbolic_Link_Needed :=
167 Lib_Dir & Directory_Separator & Lib_Version /= Lib_File;
168 end if;
169
170 if Symbolic_Link_Needed then
171 declare
172 Success : Boolean;
173 Oldpath : String (1 .. Lib_Version'Length + 1);
174 Newpath : String (1 .. Lib_File'Length + 1);
175
176 Result : Integer;
177 pragma Unreferenced (Result);
178
179 function Symlink
180 (Oldpath : System.Address;
181 Newpath : System.Address)
182 return Integer;
183 pragma Import (C, Symlink, "__gnat_symlink");
184
185 begin
186 Oldpath (1 .. Lib_Version'Length) := Lib_Version;
187 Oldpath (Oldpath'Last) := ASCII.NUL;
188 Newpath (1 .. Lib_File'Length) := Lib_File;
189 Newpath (Newpath'Last) := ASCII.NUL;
190
191 Delete_File (Lib_File, Success);
192
193 Result := Symlink (Oldpath'Address, Newpath'Address);
194 end;
195 end if;
196 end if;
197 end Build_Dynamic_Library;
198
199 -------------
200 -- DLL_Ext --
201 -------------
202
203 function DLL_Ext return String is
204 begin
205 return "so";
206 end DLL_Ext;
207
208 --------------------
209 -- Dynamic_Option --
210 --------------------
211
212 function Dynamic_Option return String is
213 begin
214 return "-shared";
215 end Dynamic_Option;
216
217 -------------------
218 -- Is_Object_Ext --
219 -------------------
220
221 function Is_Object_Ext (Ext : String) return Boolean is
222 begin
223 return Ext = ".o";
224 end Is_Object_Ext;
225
226 --------------
227 -- Is_C_Ext --
228 --------------
229
230 function Is_C_Ext (Ext : String) return Boolean is
231 begin
232 return Ext = ".c";
233 end Is_C_Ext;
234
235 --------------------
236 -- Is_Archive_Ext --
237 --------------------
238
239 function Is_Archive_Ext (Ext : String) return Boolean is
240 begin
241 return Ext = ".a" or else Ext = ".so";
242 end Is_Archive_Ext;
243
244 -------------
245 -- Libgnat --
246 -------------
247
248 function Libgnat return String is
249 begin
250 return "libgnat.a";
251 end Libgnat;
252
253 ------------------------
254 -- Library_Exists_For --
255 ------------------------
256
257 function Library_Exists_For (Project : Project_Id) return Boolean is
258 begin
259 if not Projects.Table (Project).Library then
260 Prj.Com.Fail ("INTERNAL ERROR: Library_Exists_For called " &
261 "for non library project");
262 return False;
263
264 else
265 declare
266 Lib_Dir : constant String :=
267 Get_Name_String (Projects.Table (Project).Library_Dir);
268 Lib_Name : constant String :=
269 Get_Name_String (Projects.Table (Project).Library_Name);
270
271 begin
272 if Projects.Table (Project).Library_Kind = Static then
273 return Is_Regular_File
274 (Lib_Dir & Directory_Separator & "lib" &
275 Fil.Ext_To (Lib_Name, Archive_Ext));
276
277 else
278 return Is_Regular_File
279 (Lib_Dir & Directory_Separator & "lib" &
280 Fil.Ext_To (Lib_Name, DLL_Ext));
281 end if;
282 end;
283 end if;
284 end Library_Exists_For;
285
286 ---------------------------
287 -- Library_File_Name_For --
288 ---------------------------
289
290 function Library_File_Name_For (Project : Project_Id) return Name_Id is
291 begin
292 if not Projects.Table (Project).Library then
293 Prj.Com.Fail ("INTERNAL ERROR: Library_File_Name_For called " &
294 "for non library project");
295 return No_Name;
296
297 else
298 declare
299 Lib_Name : constant String :=
300 Get_Name_String (Projects.Table (Project).Library_Name);
301
302 begin
303 Name_Len := 3;
304 Name_Buffer (1 .. Name_Len) := "lib";
305
306 if Projects.Table (Project).Library_Kind = Static then
307 Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, Archive_Ext));
308
309 else
310 Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, DLL_Ext));
311 end if;
312
313 return Name_Find;
314 end;
315 end if;
316 end Library_File_Name_For;
317
318 ----------------
319 -- Object_Ext --
320 ----------------
321
322 function Object_Ext return String is
323 begin
324 return "o";
325 end Object_Ext;
326
327 ----------------
328 -- PIC_Option --
329 ----------------
330
331 function PIC_Option return String is
332 begin
333 return "-fPIC";
334 end PIC_Option;
335
336 -----------------------------------------------
337 -- Standalone_Library_Auto_Init_Is_Supported --
338 -----------------------------------------------
339
340 function Standalone_Library_Auto_Init_Is_Supported return Boolean is
341 begin
342 return True;
343 end Standalone_Library_Auto_Init_Is_Supported;
344
345 ---------------------------
346 -- Support_For_Libraries --
347 ---------------------------
348
349 function Support_For_Libraries return Library_Support is
350 begin
351 return Full;
352 end Support_For_Libraries;
353
354 end MLib.Tgt;