summaryrefslogtreecommitdiff
path: root/gcc/ada/mdll.ads
diff options
context:
space:
mode:
authorbosch <bosch@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-31 00:21:37 +0000
committerbosch <bosch@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-31 00:21:37 +0000
commitc492ad464cd9c8a0ec8d34b5f72757e868702a7c (patch)
tree2df6b6c5dfa63cfc2e2322fec03020eaf7228012 /gcc/ada/mdll.ads
parentf6f5e2e749c47e687814a29569b641d88e83327b (diff)
downloadgcc-c492ad464cd9c8a0ec8d34b5f72757e868702a7c.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46662 138bc75d-0d04-0410-961f-82ee72b054a4
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 2a13be1830b..2a011dc5675 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.