* config/arm/arm.md (addsi3_cbranch_scratch): Correct constraints.
[official-gcc.git] / gcc / ada / mlib-tgt-hpux.adb
bloba438b762f6e2efb28da248970d1a699766a2e8e8
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 ------------------------------------------------------------------------------
28 -- This package provides a set of target dependent routines to build
29 -- libraries (static only on HP-UX).
31 -- This is the HP-UX version of the body.
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;
41 package body MLib.Tgt is
43 No_Arguments : aliased Argument_List := (1 .. 0 => null);
44 Empty_Argument_List : constant Argument_List_Access := No_Arguments'Access;
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;
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 ---------------------
61 function Archive_Builder return String is
62 begin
63 return "ar";
64 end Archive_Builder;
66 -----------------------------
67 -- Archive_Builder_Options --
68 -----------------------------
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;
75 -----------------
76 -- Archive_Ext --
77 -----------------
79 function Archive_Ext return String is
80 begin
81 return "a";
82 end Archive_Ext;
84 ---------------------
85 -- Archive_Indexer --
86 ---------------------
88 function Archive_Indexer return String is
89 begin
90 return "ranlib";
91 end Archive_Indexer;
93 ---------------------------
94 -- Build_Dynamic_Library --
95 ---------------------------
97 procedure Build_Dynamic_Library
98 (Ofiles : Argument_List;
99 Foreign : Argument_List;
100 Afiles : Argument_List;
101 Options : Argument_List;
102 Options_2 : Argument_List;
103 Interfaces : Argument_List;
104 Lib_Filename : String;
105 Lib_Dir : String;
106 Symbol_Data : Symbol_Record;
107 Driver_Name : Name_Id := No_Name;
108 Lib_Version : String := "";
109 Auto_Init : Boolean := False)
111 pragma Unreferenced (Foreign);
112 pragma Unreferenced (Afiles);
113 pragma Unreferenced (Interfaces);
114 pragma Unreferenced (Symbol_Data);
116 Lib_File : constant String :=
117 Lib_Dir & Directory_Separator & "lib" &
118 MLib.Fil.Ext_To (Lib_Filename, DLL_Ext);
120 Version_Arg : String_Access;
121 Symbolic_Link_Needed : Boolean := False;
123 Init_Fini : Argument_List_Access := Empty_Argument_List;
125 Common_Options : constant Argument_List :=
126 Options & new String'(PIC_Option);
127 -- Common set of options to the gcc command performing the link.
128 -- On HPUX, this command eventually resorts to collect2, which may
129 -- generate a C file and compile it on the fly. This compilation shall
130 -- also generate position independant code for the final link to
131 -- succeed.
132 begin
133 if Opt.Verbose_Mode then
134 Write_Str ("building relocatable shared library ");
135 Write_Line (Lib_File);
136 end if;
138 -- If specified, add automatic elaboration/finalization
140 if Auto_Init then
141 Init_Fini := Init_Fini_List;
142 Init_Fini (2) := new String'("-Wl," & Lib_Filename & "init");
143 Init_Fini (4) := new String'("-Wl," & Lib_Filename & "final");
144 end if;
146 if Lib_Version = "" then
147 MLib.Utl.Gcc
148 (Output_File => Lib_File,
149 Objects => Ofiles,
150 Options => Common_Options & Init_Fini.all,
151 Options_2 => Options_2,
152 Driver_Name => Driver_Name);
154 else
155 Version_Arg := new String'("-Wl,+h," & Lib_Version);
157 if Is_Absolute_Path (Lib_Version) then
158 MLib.Utl.Gcc
159 (Output_File => Lib_Version,
160 Objects => Ofiles,
161 Options => Common_Options & Version_Arg & Init_Fini.all,
162 Options_2 => Options_2,
163 Driver_Name => Driver_Name);
164 Symbolic_Link_Needed := Lib_Version /= Lib_File;
166 else
167 MLib.Utl.Gcc
168 (Output_File => Lib_Dir & Directory_Separator & 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 :=
174 Lib_Dir & Directory_Separator & Lib_Version /= Lib_File;
175 end if;
177 if Symbolic_Link_Needed then
178 declare
179 Success : Boolean;
180 Oldpath : String (1 .. Lib_Version'Length + 1);
181 Newpath : String (1 .. Lib_File'Length + 1);
183 Result : Integer;
184 pragma Unreferenced (Result);
186 function Symlink
187 (Oldpath : System.Address;
188 Newpath : System.Address) return Integer;
189 pragma Import (C, Symlink, "__gnat_symlink");
191 begin
192 Oldpath (1 .. Lib_Version'Length) := Lib_Version;
193 Oldpath (Oldpath'Last) := ASCII.NUL;
194 Newpath (1 .. Lib_File'Length) := Lib_File;
195 Newpath (Newpath'Last) := ASCII.NUL;
197 Delete_File (Lib_File, Success);
199 Result := Symlink (Oldpath'Address, Newpath'Address);
200 end;
201 end if;
202 end if;
203 end Build_Dynamic_Library;
205 -------------
206 -- DLL_Ext --
207 -------------
209 function DLL_Ext return String is
210 begin
211 return "sl";
212 end DLL_Ext;
214 --------------------
215 -- Dynamic_Option --
216 --------------------
218 function Dynamic_Option return String is
219 begin
220 return "-shared";
221 end Dynamic_Option;
223 -------------------
224 -- Is_Object_Ext --
225 -------------------
227 function Is_Object_Ext (Ext : String) return Boolean is
228 begin
229 return Ext = ".o";
230 end Is_Object_Ext;
232 --------------
233 -- Is_C_Ext --
234 --------------
236 function Is_C_Ext (Ext : String) return Boolean is
237 begin
238 return Ext = ".c";
239 end Is_C_Ext;
241 --------------------
242 -- Is_Archive_Ext --
243 --------------------
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;
250 -------------
251 -- Libgnat --
252 -------------
254 function Libgnat return String is
255 begin
256 return "libgnat.a";
257 end Libgnat;
259 ------------------------
260 -- Library_Exists_For --
261 ------------------------
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;
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);
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));
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;
292 ---------------------------
293 -- Library_File_Name_For --
294 ---------------------------
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;
303 else
304 declare
305 Lib_Name : constant String :=
306 Get_Name_String (Projects.Table (Project).Library_Name);
308 begin
309 Name_Len := 3;
310 Name_Buffer (1 .. Name_Len) := "lib";
312 if Projects.Table (Project).Library_Kind = Static then
313 Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, Archive_Ext));
315 else
316 Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, DLL_Ext));
317 end if;
319 return Name_Find;
320 end;
321 end if;
322 end Library_File_Name_For;
324 ----------------
325 -- Object_Ext --
326 ----------------
328 function Object_Ext return String is
329 begin
330 return "o";
331 end Object_Ext;
333 ----------------
334 -- PIC_Option --
335 ----------------
337 function PIC_Option return String is
338 begin
339 return "-fPIC";
340 end PIC_Option;
342 -----------------------------------------------
343 -- Standalone_Library_Auto_Init_Is_Supported --
344 -----------------------------------------------
346 function Standalone_Library_Auto_Init_Is_Supported return Boolean is
347 begin
348 return True;
349 end Standalone_Library_Auto_Init_Is_Supported;
351 ---------------------------
352 -- Support_For_Libraries --
353 ---------------------------
355 function Support_For_Libraries return Library_Support is
356 begin
357 return Full;
358 end Support_For_Libraries;
360 end MLib.Tgt;