aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/mdll.ads
diff options
context:
space:
mode:
authorPascal Obry <obry@gnat.com>2001-10-31 00:21:37 +0000
committerGeert Bosch <bosch@gcc.gnu.org>2001-10-31 01:21:37 +0100
commit5e257178526c3ffa66107c136dfc8b74b176cca7 (patch)
tree2df6b6c5dfa63cfc2e2322fec03020eaf7228012 /gcc/ada/mdll.ads
parent1753e0ad5fadd0ed95fc1ea9eec0b2820d561c13 (diff)
downloadgcc-5e257178526c3ffa66107c136dfc8b74b176cca7.zip
gcc-5e257178526c3ffa66107c136dfc8b74b176cca7.tar.gz
gcc-5e257178526c3ffa66107c136dfc8b74b176cca7.tar.bz2
gnatdll.adb (Parse_Command_Line): handle -g option to be passed to the binder and linker.
* gnatdll.adb (Parse_Command_Line): handle -g option to be passed to the binder and linker. Minor style fix. * mdll.ads: Fix layout. Update copyright notice. * mdll.adb: Fix layout. Update copyright notice. From-SVN: r46662
Diffstat (limited to 'gcc/ada/mdll.ads')
-rw-r--r--gcc/ada/mdll.ads32
1 files changed, 17 insertions, 15 deletions
diff --git a/gcc/ada/mdll.ads b/gcc/ada/mdll.ads
index 2a13be1..2a011dc 100644
--- a/gcc/ada/mdll.ads
+++ b/gcc/ada/mdll.ads
@@ -6,9 +6,9 @@
-- --
-- S p e c --
-- --
--- $Revision: 1.5 $
+-- $Revision$
-- --
--- Copyright (C) 1992-2000 Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2001 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -52,17 +52,18 @@ package MDLL is
Kill_Suffix : Boolean := False;
- procedure Build_Dynamic_Library (Ofiles : in Argument_List;
- Afiles : in Argument_List;
- Options : in Argument_List;
- Bargs_Options : in Argument_List;
- Largs_Options : in Argument_List;
- Lib_Filename : in String;
- Def_Filename : in String;
- Lib_Address : in String := "";
- Build_Import : in Boolean := False;
- Relocatable : in Boolean := False);
- -- build a DLL and the import library to link against the DLL.
+ procedure Build_Dynamic_Library
+ (Ofiles : Argument_List;
+ Afiles : Argument_List;
+ Options : Argument_List;
+ Bargs_Options : Argument_List;
+ Largs_Options : Argument_List;
+ Lib_Filename : String;
+ Def_Filename : String;
+ Lib_Address : String := "";
+ Build_Import : Boolean := False;
+ Relocatable : Boolean := False);
+ -- Build a DLL and the import library to link against the DLL.
-- this function handles relocatable and non relocatable DLL.
-- If the Afiles argument list contains some Ada units then it will
-- generate the right adainit and adafinal and integrate it in the DLL.
@@ -70,8 +71,9 @@ package MDLL is
-- provided) then it will not try to build a binder file. This is ok to
-- build DLL containing no Ada code.
- procedure Build_Import_Library (Lib_Filename : in String;
- Def_Filename : in String);
+ procedure Build_Import_Library
+ (Lib_Filename : String;
+ Def_Filename : String);
-- Build an import library (.a) from a definition files. An import library
-- is needed to link against a DLL.