mlib-tgt.ads: (Build_Dynamic_Library): New parameter Options_2
authorVincent Celier <celier@gnat.com>
Tue, 5 Oct 2004 08:13:11 +0000 (08:13 +0000)
committerArnaud Charlet <charlet@gcc.gnu.org>
Tue, 5 Oct 2004 08:13:11 +0000 (10:13 +0200)
2004-10-05  Vincent Celier  <celier@gnat.com>

* mlib-tgt.ads: (Build_Dynamic_Library): New parameter Options_2

From-SVN: r88548

gcc/ada/ChangeLog
gcc/ada/mlib-tgt.ads

index 31ab953f7403195102c0524e7e8b732903a6946c..300c0a7eefb65425ade38e7946f70221b6775930 100644 (file)
@@ -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
index 971325ff54421baf9595db76a989bb928d10a0bf..9b1a71a8fc494386d5cdf4f7212c5f9df3159cb8 100644 (file)
@@ -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.