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-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 Darwin version of the body
33 with Output
; use Output
;
35 package body MLib
.Tgt
.Specific
is
37 -- Non default subprograms
39 function Archive_Indexer_Options
return String_List_Access
;
41 procedure Build_Dynamic_Library
42 (Ofiles
: Argument_List
;
43 Options
: Argument_List
;
44 Interfaces
: Argument_List
;
45 Lib_Filename
: String;
47 Symbol_Data
: Symbol_Record
;
48 Driver_Name
: Name_Id
:= No_Name
;
49 Lib_Version
: String := "";
50 Auto_Init
: Boolean := False);
52 function DLL_Ext
return String;
54 function Dynamic_Option
return String;
56 function Is_Archive_Ext
(Ext
: String) return Boolean;
60 Flat_Namespace
: aliased String := "-Wl,-flat_namespace";
61 -- Instruct the linker to build the shared library as a flat
62 -- namespace image. The default is a two-level namespace image.
64 Shared_Libgcc
: aliased String := "-shared-libgcc";
66 Shared_Options
: constant Argument_List
:=
67 (1 => Flat_Namespace
'Access,
68 2 => Shared_Libgcc
'Access);
70 -----------------------------
71 -- Archive_Indexer_Options --
72 -----------------------------
74 function Archive_Indexer_Options
return String_List_Access
is
76 return new String_List
'(1 => new String'("-c"));
77 end Archive_Indexer_Options
;
79 ---------------------------
80 -- Build_Dynamic_Library --
81 ---------------------------
83 procedure Build_Dynamic_Library
84 (Ofiles
: Argument_List
;
85 Options
: Argument_List
;
86 Interfaces
: Argument_List
;
87 Lib_Filename
: String;
89 Symbol_Data
: Symbol_Record
;
90 Driver_Name
: Name_Id
:= No_Name
;
91 Lib_Version
: String := "";
92 Auto_Init
: Boolean := False)
94 pragma Unreferenced
(Interfaces
);
95 pragma Unreferenced
(Symbol_Data
);
96 pragma Unreferenced
(Auto_Init
);
98 Lib_File
: constant String :=
99 "lib" & Fil
.Append_To
(Lib_Filename
, DLL_Ext
);
101 Lib_Path
: constant String :=
102 Lib_Dir
& Directory_Separator
& Lib_File
;
104 Symbolic_Link_Needed
: Boolean := False;
107 if Opt
.Verbose_Mode
then
108 Write_Str
("building relocatable shared library ");
109 Write_Line
(Lib_File
);
112 -- If specified, add automatic elaboration/finalization
114 if Lib_Version
= "" then
116 (Output_File
=> Lib_Path
,
118 Options
=> Options
& Shared_Options
,
119 Driver_Name
=> Driver_Name
,
120 Options_2
=> No_Argument_List
);
124 Maj_Version
: constant String :=
125 Major_Id_Name
(Lib_File
, Lib_Version
);
127 if Is_Absolute_Path
(Lib_Version
) then
129 (Output_File
=> Lib_Version
,
131 Options
=> Options
& Shared_Options
,
132 Driver_Name
=> Driver_Name
,
133 Options_2
=> No_Argument_List
);
134 Symbolic_Link_Needed
:= Lib_Version
/= Lib_Path
;
138 (Output_File
=> Lib_Dir
& Directory_Separator
& Lib_Version
,
140 Options
=> Options
& Shared_Options
,
141 Driver_Name
=> Driver_Name
,
142 Options_2
=> No_Argument_List
);
143 Symbolic_Link_Needed
:=
144 Lib_Dir
& Directory_Separator
& Lib_Version
/= Lib_Path
;
147 if Symbolic_Link_Needed
then
149 (Lib_Path
, Lib_Version
, Lib_Dir
, Maj_Version
);
153 end Build_Dynamic_Library
;
159 function DLL_Ext
return String is
168 function Dynamic_Option
return String is
170 return "-dynamiclib";
177 function Is_Archive_Ext
(Ext
: String) return Boolean is
179 return Ext
= ".dylib" or else Ext
= ".a";
183 Archive_Indexer_Options_Ptr
:= Archive_Indexer_Options
'Access;
184 Build_Dynamic_Library_Ptr
:= Build_Dynamic_Library
'Access;
185 DLL_Ext_Ptr
:= DLL_Ext
'Access;
186 Dynamic_Option_Ptr
:= Dynamic_Option
'Access;
187 Is_Archive_Ext_Ptr
:= Is_Archive_Ext
'Access;
188 end MLib
.Tgt
.Specific
;