OSDN Git Service

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