OSDN Git Service

Delete all lines containing "$Revision:".
[pf3gnuchains/gcc-fork.git] / gcc / ada / mdll-utl.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                            M D L L . T O O L S                           --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --                                                                          --
10 --          Copyright (C) 1992-2001 Free Software Foundation, Inc.          --
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 2,  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 COPYING.  If not, write --
20 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
21 -- MA 02111-1307, USA.                                                      --
22 --                                                                          --
23 -- GNAT was originally developed  by the GNAT team at  New York University. --
24 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
25 --                                                                          --
26 ------------------------------------------------------------------------------
27
28 --  Interface to externals tools used to build DLL and import libraries
29
30 package MDLL.Utl is
31
32    procedure Dlltool
33      (Def_Filename : String;
34       DLL_Name     : String;
35       Library      : String;
36       Exp_Table    : String := "";
37       Base_File    : String := "";
38       Build_Import : Boolean);
39    --  Run dlltool binary.
40    --  This tools is used to build an import library and an export table
41
42    procedure Gcc
43      (Output_File : String;
44       Files       : Argument_List;
45       Options     : Argument_List;
46       Base_File   : String := "";
47       Build_Lib   : Boolean := False);
48    --  Run gcc binary.
49
50    procedure Gnatbind
51      (Alis : Argument_List;
52       Args : Argument_List := Null_Argument_List);
53    --  Run gnatbind binary to build the binder program.
54    --  it Runs the command : gnatbind -n alis... to build the binder program.
55
56    procedure Gnatlink
57      (Ali  : String;
58       Args : Argument_List := Null_Argument_List);
59    --  Run gnatlink binary.
60    --  It runs the command : gnatlink ali arg1 arg2...
61
62    procedure Locate;
63    --  Look for the needed tools in the path and record the full path for each
64    --  one in a variable.
65
66 end MDLL.Utl;