1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- M L I B . T G T . S P E C I F I C --
10 -- Copyright (C) 2001-2011, 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 Darwin version of the body
33 with Output
; use Output
;
35 package body MLib
.Tgt
.Specific
is
37 -- Non default subprograms
39 procedure Build_Dynamic_Library
40 (Ofiles
: Argument_List
;
41 Options
: Argument_List
;
42 Interfaces
: Argument_List
;
43 Lib_Filename
: String;
45 Symbol_Data
: Symbol_Record
;
46 Driver_Name
: Name_Id
:= No_Name
;
47 Lib_Version
: String := "";
48 Auto_Init
: Boolean := False);
50 function DLL_Ext
return String;
52 function Dynamic_Option
return String;
54 function Is_Archive_Ext
(Ext
: String) return Boolean;
58 Shared_Libgcc
: aliased String := "-shared-libgcc";
60 Shared_Options
: constant Argument_List
:=
61 (1 => Shared_Libgcc
'Access);
63 ---------------------------
64 -- Build_Dynamic_Library --
65 ---------------------------
67 procedure Build_Dynamic_Library
68 (Ofiles
: Argument_List
;
69 Options
: Argument_List
;
70 Interfaces
: Argument_List
;
71 Lib_Filename
: String;
73 Symbol_Data
: Symbol_Record
;
74 Driver_Name
: Name_Id
:= No_Name
;
75 Lib_Version
: String := "";
76 Auto_Init
: Boolean := False)
78 pragma Unreferenced
(Interfaces
);
79 pragma Unreferenced
(Symbol_Data
);
80 pragma Unreferenced
(Auto_Init
);
82 Lib_File
: constant String :=
83 "lib" & Fil
.Append_To
(Lib_Filename
, DLL_Ext
);
85 Lib_Path
: constant String :=
86 Lib_Dir
& Directory_Separator
& Lib_File
;
88 Symbolic_Link_Needed
: Boolean := False;
91 if Opt
.Verbose_Mode
then
92 Write_Str
("building relocatable shared library ");
93 Write_Line
(Lib_File
);
96 -- If specified, add automatic elaboration/finalization
98 if Lib_Version
= "" then
100 (Output_File
=> Lib_Path
,
102 Options
=> Options
& Shared_Options
,
103 Driver_Name
=> Driver_Name
,
104 Options_2
=> No_Argument_List
);
108 Maj_Version
: constant String :=
109 Major_Id_Name
(Lib_File
, Lib_Version
);
111 if Is_Absolute_Path
(Lib_Version
) then
113 (Output_File
=> Lib_Version
,
115 Options
=> Options
& Shared_Options
,
116 Driver_Name
=> Driver_Name
,
117 Options_2
=> No_Argument_List
);
118 Symbolic_Link_Needed
:= Lib_Version
/= Lib_Path
;
122 (Output_File
=> Lib_Dir
& Directory_Separator
& Lib_Version
,
124 Options
=> Options
& Shared_Options
,
125 Driver_Name
=> Driver_Name
,
126 Options_2
=> No_Argument_List
);
127 Symbolic_Link_Needed
:=
128 Lib_Dir
& Directory_Separator
& Lib_Version
/= Lib_Path
;
131 if Symbolic_Link_Needed
then
133 (Lib_Path
, Lib_Version
, Lib_Dir
, Maj_Version
);
137 end Build_Dynamic_Library
;
143 function DLL_Ext
return String is
152 function Dynamic_Option
return String is
154 return "-dynamiclib";
161 function Is_Archive_Ext
(Ext
: String) return Boolean is
163 return Ext
= ".dylib" or else Ext
= ".a";
167 Build_Dynamic_Library_Ptr
:= Build_Dynamic_Library
'Access;
168 DLL_Ext_Ptr
:= DLL_Ext
'Access;
169 Dynamic_Option_Ptr
:= Dynamic_Option
'Access;
170 Is_Archive_Ext_Ptr
:= Is_Archive_Ext
'Access;
171 end MLib
.Tgt
.Specific
;