OSDN Git Service

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