2006-06-30 Andrew Pinski <pinskia@gmail.com>
[official-gcc.git] / gcc / ada / mlib-tgt-aix.adb
blob86fd3934ffa8787b05cc98d2cb64a8050fd7f285
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- M L I B . T G T --
6 -- (AIX Version) --
7 -- --
8 -- B o d y --
9 -- --
10 -- Copyright (C) 2003-2005, AdaCore --
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, 51 Franklin Street, Fifth Floor, --
21 -- Boston, MA 02110-1301, 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 -- static, dynamic or relocatable libraries.
31 -- This is the AIX version of the body
33 with Ada.Strings.Fixed; use Ada.Strings.Fixed;
35 with MLib.Fil;
36 with MLib.Utl;
37 with Namet; use Namet;
38 with Opt;
39 with Output; use Output;
40 with Prj.Com;
41 with Prj.Util; use Prj.Util;
43 package body MLib.Tgt is
45 No_Arguments : aliased Argument_List := (1 .. 0 => null);
46 Empty_Argument_List : constant Argument_List_Access := No_Arguments'Access;
48 Bexpall : aliased String := "-Wl,-bexpall";
49 Bexpall_Option : constant String_Access := Bexpall'Access;
50 -- The switch to export all symbols
52 Lpthreads : aliased String := "-lpthreads";
53 Native_Thread_Options : aliased Argument_List := (1 => Lpthreads'Access);
54 -- The switch to use when linking a library against libgnarl when using
55 -- Native threads.
57 Lgthreads : aliased String := "-lgthreads";
58 Lmalloc : aliased String := "-lmalloc";
59 FSU_Thread_Options : aliased Argument_List :=
60 (1 => Lgthreads'Access, 2 => Lmalloc'Access);
61 -- The switches to use when linking a library against libgnarl when using
62 -- FSU threads.
64 Thread_Options : Argument_List_Access := Empty_Argument_List;
65 -- Designate the thread switches to used when linking a library against
66 -- libgnarl. Depends on the thread library (Native or FSU). Resolved for
67 -- the first library linked against libgnarl.
69 ---------------------
70 -- Archive_Builder --
71 ---------------------
73 function Archive_Builder return String is
74 begin
75 return "ar";
76 end Archive_Builder;
78 -----------------------------
79 -- Archive_Builder_Options --
80 -----------------------------
82 function Archive_Builder_Options return String_List_Access is
83 begin
84 return new String_List'(1 => new String'("cr"));
85 end Archive_Builder_Options;
87 -----------------
88 -- Archive_Ext --
89 -----------------
91 function Archive_Ext return String is
92 begin
93 return "a";
94 end Archive_Ext;
96 ---------------------
97 -- Archive_Indexer --
98 ---------------------
100 function Archive_Indexer return String is
101 begin
102 return "ranlib";
103 end Archive_Indexer;
105 -----------------------------
106 -- Archive_Indexer_Options --
107 -----------------------------
109 function Archive_Indexer_Options return String_List_Access is
110 begin
111 return new String_List (1 .. 0);
112 end Archive_Indexer_Options;
114 ---------------------------
115 -- Build_Dynamic_Library --
116 ---------------------------
118 procedure Build_Dynamic_Library
119 (Ofiles : Argument_List;
120 Foreign : Argument_List;
121 Afiles : Argument_List;
122 Options : Argument_List;
123 Options_2 : Argument_List;
124 Interfaces : Argument_List;
125 Lib_Filename : String;
126 Lib_Dir : String;
127 Symbol_Data : Symbol_Record;
128 Driver_Name : Name_Id := No_Name;
129 Lib_Version : String := "";
130 Auto_Init : Boolean := False)
132 pragma Unreferenced (Foreign);
133 pragma Unreferenced (Afiles);
134 pragma Unreferenced (Interfaces);
135 pragma Unreferenced (Symbol_Data);
136 pragma Unreferenced (Lib_Version);
137 pragma Unreferenced (Auto_Init);
139 Lib_File : constant String :=
140 Lib_Dir & Directory_Separator & "lib" &
141 MLib.Fil.Ext_To (Lib_Filename, DLL_Ext);
142 -- The file name of the library
144 Thread_Opts : Argument_List_Access := Empty_Argument_List;
145 -- Set to Thread_Options if -lgnarl is found in the Options
147 begin
148 if Opt.Verbose_Mode then
149 Write_Str ("building relocatable shared library ");
150 Write_Line (Lib_File);
151 end if;
153 -- Look for -lgnarl in Options. If found, set the thread options
155 for J in Options'Range loop
156 if Options (J).all = "-lgnarl" then
158 -- If Thread_Options is null, read s-osinte.ads to discover the
159 -- thread library and set Thread_Options accordingly.
161 if Thread_Options = null then
162 declare
163 File : Text_File;
164 Line : String (1 .. 100);
165 Last : Natural;
167 begin
168 Open
169 (File, Include_Dir_Default_Prefix & "/s-osinte.ads");
171 while not End_Of_File (File) loop
172 Get_Line (File, Line, Last);
174 if Index (Line (1 .. Last), "-lpthreads") /= 0 then
175 Thread_Options := Native_Thread_Options'Access;
176 exit;
178 elsif Index (Line (1 .. Last), "-lgthreads") /= 0 then
179 Thread_Options := FSU_Thread_Options'Access;
180 exit;
181 end if;
182 end loop;
184 Close (File);
186 if Thread_Options = null then
187 Prj.Com.Fail ("cannot find the thread library in use");
188 end if;
190 exception
191 when others =>
192 Prj.Com.Fail ("cannot open s-osinte.ads");
193 end;
194 end if;
196 Thread_Opts := Thread_Options;
197 exit;
198 end if;
199 end loop;
201 -- Finally, call GCC (or the driver specified) to build the library
203 MLib.Utl.Gcc
204 (Output_File => Lib_File,
205 Objects => Ofiles,
206 Options => Options & Bexpall_Option,
207 Driver_Name => Driver_Name,
208 Options_2 => Options_2 & Thread_Opts.all);
209 end Build_Dynamic_Library;
211 -------------
212 -- DLL_Ext --
213 -------------
215 function DLL_Ext return String is
216 begin
217 return "a";
218 end DLL_Ext;
220 ----------------
221 -- DLL_Prefix --
222 ----------------
224 function DLL_Prefix return String is
225 begin
226 return "lib";
227 end DLL_Prefix;
229 --------------------
230 -- Dynamic_Option --
231 --------------------
233 function Dynamic_Option return String is
234 begin
235 return "-shared";
236 end Dynamic_Option;
238 -------------------
239 -- Is_Object_Ext --
240 -------------------
242 function Is_Object_Ext (Ext : String) return Boolean is
243 begin
244 return Ext = ".o";
245 end Is_Object_Ext;
247 --------------
248 -- Is_C_Ext --
249 --------------
251 function Is_C_Ext (Ext : String) return Boolean is
252 begin
253 return Ext = ".c";
254 end Is_C_Ext;
256 --------------------
257 -- Is_Archive_Ext --
258 --------------------
260 function Is_Archive_Ext (Ext : String) return Boolean is
261 begin
262 return Ext = ".a";
263 end Is_Archive_Ext;
265 -------------
266 -- Libgnat --
267 -------------
269 function Libgnat return String is
270 begin
271 return "libgnat.a";
272 end Libgnat;
274 ------------------------
275 -- Library_Exists_For --
276 ------------------------
278 function Library_Exists_For
279 (Project : Project_Id; In_Tree : Project_Tree_Ref) return Boolean
281 begin
282 if not In_Tree.Projects.Table (Project).Library then
283 Prj.Com.Fail ("INTERNAL ERROR: Library_Exists_For called " &
284 "for non library project");
285 return False;
287 else
288 declare
289 Lib_Dir : constant String :=
290 Get_Name_String
291 (In_Tree.Projects.Table (Project).Library_Dir);
293 Lib_Name : constant String :=
294 Get_Name_String
295 (In_Tree.Projects.Table (Project).Library_Name);
297 begin
298 if In_Tree.Projects.Table (Project).Library_Kind =
299 Static
300 then
301 return Is_Regular_File
302 (Lib_Dir & Directory_Separator & "lib" &
303 Fil.Ext_To (Lib_Name, Archive_Ext));
305 else
306 return Is_Regular_File
307 (Lib_Dir & Directory_Separator & "lib" &
308 Fil.Ext_To (Lib_Name, DLL_Ext));
309 end if;
310 end;
311 end if;
312 end Library_Exists_For;
314 ---------------------------
315 -- Library_File_Name_For --
316 ---------------------------
318 function Library_File_Name_For
319 (Project : Project_Id;
320 In_Tree : Project_Tree_Ref) return Name_Id
322 begin
323 if not In_Tree.Projects.Table (Project).Library then
324 Prj.Com.Fail ("INTERNAL ERROR: Library_File_Name_For called " &
325 "for non library project");
326 return No_Name;
328 else
329 declare
330 Lib_Name : constant String :=
331 Get_Name_String
332 (In_Tree.Projects.Table (Project).Library_Name);
334 begin
335 Name_Len := 3;
336 Name_Buffer (1 .. Name_Len) := "lib";
338 if In_Tree.Projects.Table (Project).Library_Kind =
339 Static
340 then
341 Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, Archive_Ext));
343 else
344 Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, DLL_Ext));
345 end if;
347 return Name_Find;
348 end;
349 end if;
350 end Library_File_Name_For;
352 ----------------
353 -- Object_Ext --
354 ----------------
356 function Object_Ext return String is
357 begin
358 return "o";
359 end Object_Ext;
361 ----------------
362 -- PIC_Option --
363 ----------------
365 function PIC_Option return String is
366 begin
367 return "-fPIC";
368 end PIC_Option;
370 -----------------------------------------------
371 -- Standalone_Library_Auto_Init_Is_Supported --
372 -----------------------------------------------
374 function Standalone_Library_Auto_Init_Is_Supported return Boolean is
375 begin
376 return True;
377 end Standalone_Library_Auto_Init_Is_Supported;
379 ---------------------------
380 -- Support_For_Libraries --
381 ---------------------------
383 function Support_For_Libraries return Library_Support is
384 begin
385 return Static_Only;
386 end Support_For_Libraries;
388 end MLib.Tgt;