OSDN Git Service

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