1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- M L I B . T G T . S P E C I F I C --
6 -- (Default empty version) --
10 -- Copyright (C) 2007, AdaCore --
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 ------------------------------------------------------------------------------
29 package body MLib
.Tgt
.Specific
is
31 -- By default, libraries are not supported at all
33 function Support_For_Libraries
return Library_Support
;
34 -- Function indicating if libraries are supported
36 ---------------------------
37 -- Support_For_Libraries --
38 ---------------------------
40 function Support_For_Libraries
return Library_Support
is
43 end Support_For_Libraries
;
46 Support_For_Libraries_Ptr
:= Support_For_Libraries
'Access;
47 end MLib
.Tgt
.Specific
;