OSDN Git Service

2003-12-05 Thomas Quinot <quinot@act-europe.fr>
[pf3gnuchains/gcc-fork.git] / gcc / ada / 5sml-tgt.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-2003 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       Interfaces   : Argument_List;
101       Lib_Filename : String;
102       Lib_Dir      : String;
103       Symbol_Data  : Symbol_Record;
104       Driver_Name  : Name_Id := No_Name;
105       Lib_Address  : String  := "";
106       Lib_Version  : String  := "";
107       Relocatable  : Boolean := False;
108       Auto_Init    : Boolean := False)
109    is
110       pragma Unreferenced (Foreign);
111       pragma Unreferenced (Afiles);
112       pragma Unreferenced (Interfaces);
113       pragma Unreferenced (Symbol_Data);
114       pragma Unreferenced (Lib_Address);
115       pragma Unreferenced (Relocatable);
116
117       Lib_File : constant String :=
118         Lib_Dir & Directory_Separator & "lib" &
119         Fil.Ext_To (Lib_Filename, DLL_Ext);
120
121       Version_Arg          : String_Access;
122       Symbolic_Link_Needed : Boolean := False;
123
124       Init_Fini : Argument_List_Access := Empty_Argument_List;
125
126    begin
127       if Opt.Verbose_Mode then
128          Write_Str ("building relocatable shared library ");
129          Write_Line (Lib_File);
130       end if;
131
132       --  If specified, add automatic elaboration/finalization
133       if Auto_Init then
134          Init_Fini := Init_Fini_List;
135          Init_Fini (1) :=
136            new String'(Wl_Init_String & Lib_Filename & "init");
137          Init_Fini (2) :=
138            new String'(Wl_Fini_String & Lib_Filename & "final");
139       end if;
140
141       if Lib_Version = "" then
142          Utl.Gcc
143            (Output_File => Lib_File,
144             Objects     => Ofiles,
145             Options     => Options & Init_Fini.all,
146             Driver_Name => Driver_Name);
147
148       else
149          Version_Arg := new String'("-Wl,-h," & Lib_Version);
150
151          if Is_Absolute_Path (Lib_Version) then
152             Utl.Gcc
153               (Output_File => Lib_Version,
154                Objects     => Ofiles,
155                Options     => Options & Version_Arg & Init_Fini.all,
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                Driver_Name => Driver_Name);
165             Symbolic_Link_Needed :=
166               Lib_Dir & Directory_Separator & Lib_Version /= Lib_File;
167          end if;
168
169          if Symbolic_Link_Needed then
170             declare
171                Success : Boolean;
172                Oldpath : String (1 .. Lib_Version'Length + 1);
173                Newpath : String (1 .. Lib_File'Length + 1);
174                Result  : Integer;
175
176                function Symlink
177                  (Oldpath : System.Address;
178                   Newpath : System.Address)
179                   return    Integer;
180                pragma Import (C, Symlink, "__gnat_symlink");
181
182             begin
183                Oldpath (1 .. Lib_Version'Length) := Lib_Version;
184                Oldpath (Oldpath'Last)            := ASCII.NUL;
185                Newpath (1 .. Lib_File'Length)    := Lib_File;
186                Newpath (Newpath'Last)            := ASCII.NUL;
187
188                Delete_File (Lib_File, Success);
189
190                Result := Symlink (Oldpath'Address, Newpath'Address);
191             end;
192          end if;
193       end if;
194    end Build_Dynamic_Library;
195
196    -------------------------
197    -- Default_DLL_Address --
198    -------------------------
199
200    function Default_DLL_Address return String is
201    begin
202       return "";
203    end Default_DLL_Address;
204
205    -------------
206    -- DLL_Ext --
207    -------------
208
209    function DLL_Ext return String is
210    begin
211       return "so";
212    end DLL_Ext;
213
214    --------------------
215    -- Dynamic_Option --
216    --------------------
217
218    function Dynamic_Option return String is
219    begin
220       return "-shared";
221    end Dynamic_Option;
222
223    -------------------
224    -- Is_Object_Ext --
225    -------------------
226
227    function Is_Object_Ext (Ext : String) return Boolean is
228    begin
229       return Ext = ".o";
230    end Is_Object_Ext;
231
232    --------------
233    -- Is_C_Ext --
234    --------------
235
236    function Is_C_Ext (Ext : String) return Boolean is
237    begin
238       return Ext = ".c";
239    end Is_C_Ext;
240
241    --------------------
242    -- Is_Archive_Ext --
243    --------------------
244
245    function Is_Archive_Ext (Ext : String) return Boolean is
246    begin
247       return Ext = ".a" or else Ext = ".so";
248    end Is_Archive_Ext;
249
250    -------------
251    -- Libgnat --
252    -------------
253
254    function Libgnat return String is
255    begin
256       return "libgnat.a";
257    end Libgnat;
258
259    ------------------------
260    -- Library_Exists_For --
261    ------------------------
262
263    function Library_Exists_For (Project : Project_Id) return Boolean is
264    begin
265       if not Projects.Table (Project).Library then
266          Prj.Com.Fail ("INTERNAL ERROR: Library_Exists_For called " &
267                        "for non library project");
268          return False;
269
270       else
271          declare
272             Lib_Dir : constant String :=
273               Get_Name_String (Projects.Table (Project).Library_Dir);
274             Lib_Name : constant String :=
275               Get_Name_String (Projects.Table (Project).Library_Name);
276
277          begin
278             if Projects.Table (Project).Library_Kind = Static then
279                return Is_Regular_File
280                  (Lib_Dir & Directory_Separator & "lib" &
281                   Fil.Ext_To (Lib_Name, Archive_Ext));
282
283             else
284                return Is_Regular_File
285                  (Lib_Dir & Directory_Separator & "lib" &
286                   Fil.Ext_To (Lib_Name, DLL_Ext));
287             end if;
288          end;
289       end if;
290    end Library_Exists_For;
291
292    ---------------------------
293    -- Library_File_Name_For --
294    ---------------------------
295
296    function Library_File_Name_For (Project : Project_Id) return Name_Id is
297    begin
298       if not Projects.Table (Project).Library then
299          Prj.Com.Fail ("INTERNAL ERROR: Library_File_Name_For called " &
300                        "for non library project");
301          return No_Name;
302
303       else
304          declare
305             Lib_Name : constant String :=
306               Get_Name_String (Projects.Table (Project).Library_Name);
307
308          begin
309             Name_Len := 3;
310             Name_Buffer (1 .. Name_Len) := "lib";
311
312             if Projects.Table (Project).Library_Kind = Static then
313                Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, Archive_Ext));
314
315             else
316                Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, DLL_Ext));
317             end if;
318
319             return Name_Find;
320          end;
321       end if;
322    end Library_File_Name_For;
323
324    --------------------------------
325    -- Linker_Library_Path_Option --
326    --------------------------------
327
328    function Linker_Library_Path_Option return String_Access is
329    begin
330       return new String'("-Wl,-R,");
331    end Linker_Library_Path_Option;
332
333    ----------------
334    -- Object_Ext --
335    ----------------
336
337    function Object_Ext return String is
338    begin
339       return "o";
340    end Object_Ext;
341
342    ----------------
343    -- PIC_Option --
344    ----------------
345
346    function PIC_Option return String is
347    begin
348       return "-fPIC";
349    end PIC_Option;
350
351    -----------------------------------------------
352    -- Standalone_Library_Auto_Init_Is_Supported --
353    -----------------------------------------------
354
355    function Standalone_Library_Auto_Init_Is_Supported return Boolean is
356    begin
357       return True;
358    end Standalone_Library_Auto_Init_Is_Supported;
359
360    ---------------------------
361    -- Support_For_Libraries --
362    ---------------------------
363
364    function Support_For_Libraries return Library_Support is
365    begin
366       return Full;
367    end Support_For_Libraries;
368
369 end MLib.Tgt;