aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada
diff options
context:
space:
mode:
authorVincent Celier <celier@gnat.com>2004-10-05 08:13:11 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2004-10-05 10:13:11 +0200
commit88a6ecb6f2950f8e6644bddc508b2e7ccaf53b06 (patch)
treefc7618786afc9a7582b5ea806669576e071d54e3 /gcc/ada
parentd840bfd345a08e0102ace6422dcfd95ef4f3bffa (diff)
downloadgcc-88a6ecb6f2950f8e6644bddc508b2e7ccaf53b06.zip
gcc-88a6ecb6f2950f8e6644bddc508b2e7ccaf53b06.tar.gz
gcc-88a6ecb6f2950f8e6644bddc508b2e7ccaf53b06.tar.bz2
mlib-tgt.ads: (Build_Dynamic_Library): New parameter Options_2
2004-10-05 Vincent Celier <celier@gnat.com> * mlib-tgt.ads: (Build_Dynamic_Library): New parameter Options_2 From-SVN: r88548
Diffstat (limited to 'gcc/ada')
-rw-r--r--gcc/ada/ChangeLog6
-rw-r--r--gcc/ada/mlib-tgt.ads7
2 files changed, 10 insertions, 3 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 31ab953..300c0a7 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,8 +1,12 @@
+2004-10-05 Vincent Celier <celier@gnat.com>
+
+ * mlib-tgt.ads: (Build_Dynamic_Library): New parameter Options_2
+
2004-10-04 Laurent GUERBY <laurent@guerby.net>
PR ada/15156
* Makefile.in: Define and use RANLIB_FLAGS.
-
+
2004-10-04 Pascal Obry <obry@gnat.com>
* tracebak.c: Always set LOWEST_ADDR to 0 on Win32 (as done on all
diff --git a/gcc/ada/mlib-tgt.ads b/gcc/ada/mlib-tgt.ads
index 971325f..9b1a71a 100644
--- a/gcc/ada/mlib-tgt.ads
+++ b/gcc/ada/mlib-tgt.ads
@@ -101,6 +101,7 @@ package MLib.Tgt is
Foreign : Argument_List;
Afiles : Argument_List;
Options : Argument_List;
+ Options_2 : Argument_List;
Interfaces : Argument_List;
Lib_Filename : String;
Lib_Dir : String;
@@ -116,8 +117,10 @@ package MLib.Tgt is
--
-- Afiles is the list of ALI files for the Ada object files
--
- -- Options is a list of options to be passed to the tool (gcc or other)
- -- that effectively builds the dynamic library.
+ -- Options and Options_2 are lists of options to be passed to the tool
+ -- (gcc or other) that effectively builds the dynamic library. Options
+ -- are passed before the object files, Options_2 are passed after the
+ -- object files.
--
-- Interfaces is the list of ALI files for the interfaces of a SAL.
-- It is empty if the library is not a SAL.