OSDN Git Service

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