OSDN Git Service

Fix aliasing bug that also caused memory usage problems.
[pf3gnuchains/gcc-fork.git] / gcc / ada / mlib-tgt.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             M L I B . T G T                              --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --              Copyright (C) 2001-2004, Ada Core Technologies, Inc.        --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 --  This package provides a set of target dependent routines to build
28 --  static, dynamic and shared libraries.
29
30 --  There are several versions for the body of this package.
31
32 --  In the default version, libraries are not supported, so function
33 --  Support_For_Libraries return None.
34
35 with GNAT.OS_Lib; use GNAT.OS_Lib;
36 with Prj;         use Prj;
37
38 package MLib.Tgt is
39
40    type Library_Support is (None, Static_Only, Full);
41    --  Support for Library Project File.
42    --  - None: Library Project Files are not supported at all
43    --  - Static_Only: Library Project Files are only supported for static
44    --    libraries.
45    --  - Full: Library Project Files are supported for static and dynamic
46    --    (shared) libraries.
47
48    function Support_For_Libraries return Library_Support;
49    --  Indicates how building libraries by gnatmake is supported by the GNAT
50    --  implementation for the platform.
51
52    function Standalone_Library_Auto_Init_Is_Supported return Boolean;
53    --  Indicates if when building a dynamic Standalone Library,
54    --  automatic initialization is supported. If it is, then it is the default,
55    --  unless attribute Library_Auto_Init has the value "false".
56
57    function Archive_Builder return String;
58    --  Returns the name of the archive builder program, usually "ar"
59
60    function Archive_Builder_Options return String_List_Access;
61    --  A list of options to invoke the Archive_Builder, usually "cr" for "ar"
62
63    function Archive_Indexer return String;
64    --  Returns the name of the program, if any, that generates an index
65    --  to the contents of an archive, usually "ranlib".
66
67    function Dynamic_Option return String;
68    --  gcc option to create a dynamic library.
69    --  For Unix, returns "-shared", for Windows returns "-mdll".
70
71    function Libgnat return String;
72    --  System dependent static GNAT library
73
74    function Archive_Ext return  String;
75    --  System dependent static library extension, without leading dot.
76    --  For Unix and Windows, return "a".
77
78    function Object_Ext return String;
79    --  System dependent object extension, without leadien dot.
80    --  On Unix, returns "o".
81
82    function DLL_Ext return String;
83    --  System dependent dynamic library extension, without leading dot.
84    --  On Windows, returns "dll". On Unix, usually returns "so", but not
85    --  always, e.g. on HP-UX the extension for shared libraries is "sl".
86
87    function PIC_Option return String;
88    --  Position independent code option
89
90    function Is_Object_Ext (Ext : String) return Boolean;
91    --  Returns True iff Ext is an object file extension
92
93    function Is_C_Ext (Ext : String) return Boolean;
94    --  Returns True iff Ext is a C file extension
95
96    function Is_Archive_Ext (Ext : String) return Boolean;
97    --  Returns True iff Ext is an extension for a library
98
99    procedure Build_Dynamic_Library
100      (Ofiles       : Argument_List;
101       Foreign      : Argument_List;
102       Afiles       : Argument_List;
103       Options      : Argument_List;
104       Interfaces   : Argument_List;
105       Lib_Filename : String;
106       Lib_Dir      : String;
107       Symbol_Data  : Symbol_Record;
108       Driver_Name  : Name_Id := No_Name;
109       Lib_Version  : String  := "";
110       Auto_Init    : Boolean := False);
111    --  Build a dynamic/relocatable library
112    --
113    --  Ofiles is the list of all object files in the library
114    --
115    --  Foreign is the list of non Ada object files (also included in Ofiles)
116    --
117    --  Afiles is the list of ALI files for the Ada object files
118    --
119    --  Options is a list of options to be passed to the tool (gcc or other)
120    --  that effectively builds the dynamic library.
121    --
122    --  Interfaces is the list of ALI files for the interfaces of a SAL.
123    --  It is empty if the library is not a SAL.
124    --
125    --  Lib_Filename is the name of the library, without any prefix or
126    --  extension. For example, on Unix, if Lib_Filename is "toto", the
127    --  name of the library file will be "libtoto.so".
128    --
129    --  Lib_Dir is the directory path where the library will be located
130    --
131    --  For OSes that support symbolic links, Lib_Version, if non null,
132    --  is the actual file name of the library. For example on Unix, if
133    --  Lib_Filename is "toto" and Lib_Version is "libtoto.so.2.1",
134    --  "libtoto.so" will be a symbolic link to "libtoto.so.2.1" which
135    --  will be the actual library file.
136    --
137    --  Symbol_Data is used for some patforms, including VMS, to generate
138    --  the symbols to be exported by the library.
139    --
140    --  Note: Depending on the OS, some of the parameters may not be taken
141    --  into account. For example, on Linux, Foreign, Afiles Lib_Address and
142    --  Relocatable are ignored.
143
144    function Library_Exists_For (Project : Project_Id) return Boolean;
145    --  Return True if the library file for a library project already exists.
146    --  This function can only be called for library projects.
147
148    function Library_File_Name_For (Project : Project_Id) return Name_Id;
149    --  Returns the file name of the library file of a library project.
150    --  This function can only be called for library projects.
151
152 end MLib.Tgt;