1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- M L I B . T G T . S P E C I F I C --
6 -- (Solaris Version) --
10 -- Copyright (C) 2002-2008, Free Software Foundation, Inc. --
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 3, 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 COPYING3. If not, go to --
20 -- http://www.gnu.org/licenses for a complete copy of the license. --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
25 ------------------------------------------------------------------------------
27 -- This is the Solaris version of the body
32 with Output
; use Output
;
34 package body MLib
.Tgt
.Specific
is
36 -- Non default subprograms
38 procedure Build_Dynamic_Library
39 (Ofiles
: Argument_List
;
40 Options
: Argument_List
;
41 Interfaces
: Argument_List
;
42 Lib_Filename
: String;
44 Symbol_Data
: Symbol_Record
;
45 Driver_Name
: Name_Id
:= No_Name
;
46 Lib_Version
: String := "";
47 Auto_Init
: Boolean := False);
49 function Is_Archive_Ext
(Ext
: String) return Boolean;
51 ---------------------------
52 -- Build_Dynamic_Library --
53 ---------------------------
55 procedure Build_Dynamic_Library
56 (Ofiles
: Argument_List
;
57 Options
: Argument_List
;
58 Interfaces
: Argument_List
;
59 Lib_Filename
: String;
61 Symbol_Data
: Symbol_Record
;
62 Driver_Name
: Name_Id
:= No_Name
;
63 Lib_Version
: String := "";
64 Auto_Init
: Boolean := False)
66 pragma Unreferenced
(Interfaces
);
67 pragma Unreferenced
(Symbol_Data
);
68 pragma Unreferenced
(Auto_Init
);
70 Lib_File
: constant String :=
71 "lib" & Fil
.Append_To
(Lib_Filename
, DLL_Ext
);
73 Lib_Path
: constant String :=
74 Lib_Dir
& Directory_Separator
& Lib_File
;
76 Version_Arg
: String_Access
;
77 Symbolic_Link_Needed
: Boolean := False;
80 if Opt
.Verbose_Mode
then
81 Write_Str
("building relocatable shared library ");
82 Write_Line
(Lib_Path
);
85 if Lib_Version
= "" then
87 (Output_File
=> Lib_Path
,
90 Options_2
=> No_Argument_List
,
91 Driver_Name
=> Driver_Name
);
95 Maj_Version
: constant String :=
96 Major_Id_Name
(Lib_File
, Lib_Version
);
98 if Maj_Version
'Length /= 0 then
99 Version_Arg
:= new String'("-Wl,-h," & Maj_Version);
102 Version_Arg := new String'("-Wl,-h," & Lib_Version
);
105 if Is_Absolute_Path
(Lib_Version
) then
107 (Output_File
=> Lib_Version
,
109 Options
=> Options
& Version_Arg
,
110 Options_2
=> No_Argument_List
,
111 Driver_Name
=> Driver_Name
);
112 Symbolic_Link_Needed
:= Lib_Version
/= Lib_Path
;
116 (Output_File
=> Lib_Dir
& Directory_Separator
& Lib_Version
,
118 Options
=> Options
& Version_Arg
,
119 Options_2
=> No_Argument_List
,
120 Driver_Name
=> Driver_Name
);
121 Symbolic_Link_Needed
:=
122 Lib_Dir
& Directory_Separator
& Lib_Version
/= Lib_Path
;
125 if Symbolic_Link_Needed
then
127 (Lib_Path
, Lib_Version
, Lib_Dir
, Maj_Version
);
131 end Build_Dynamic_Library
;
137 function Is_Archive_Ext
(Ext
: String) return Boolean is
139 return Ext
= ".a" or else Ext
= ".so";
143 Build_Dynamic_Library_Ptr
:= Build_Dynamic_Library
'Access;
144 Is_Archive_Ext_Ptr
:= Is_Archive_Ext
'Access;
145 end MLib
.Tgt
.Specific
;