File : mlib-tgt-specific.adb


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