2002-07-11 Miguel de Icaza <miguel@ximian.com>
authorMiguel de Icaza <miguel@gnome.org>
Thu, 11 Jul 2002 23:50:12 +0000 (23:50 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Thu, 11 Jul 2002 23:50:12 +0000 (23:50 -0000)
* driver.cs: Add the System directory to the link path at the end,
after all the other -L arguments.

svn path=/trunk/mcs/; revision=5712

mcs/mcs/ChangeLog
mcs/mcs/driver.cs

index 30d1d264c686bb13be0d0e8c79da9cfff017735b..0de7deddd0ab3f94e5021693bdebfb8ba213f881 100755 (executable)
@@ -1,5 +1,8 @@
 2002-07-11  Miguel de Icaza  <miguel@ximian.com>
 
+       * driver.cs: Add the System directory to the link path at the end,
+       after all the other -L arguments. 
+
        * expression.cs (ArrayAccess.EmitLoadOpcode): I was using the
        wrong opcode for loading bytes and bools (ldelem.i1 instead of
        ldelem.u1) and using the opposite for sbytes.
index 2095136de44676c434043392fc1560842703931d..a0c2a9404b3bdc0d2a3cdc81ec34e9a3c0be7957 100755 (executable)
@@ -914,7 +914,6 @@ namespace Mono.CSharp
                        // This is not required because Assembly.Load knows about this
                        // path.
                        //
-                       link_paths.Add (GetSystemDir ());
 
                        int argc = args.Length;
                        for (i = 0; i < argc; i++){
@@ -1002,6 +1001,7 @@ namespace Mono.CSharp
                        //
                        if (timestamps)
                                ShowTime ("Loading references");
+                       link_paths.Add (GetSystemDir ());
                        LoadReferences ();
                        
                        if (timestamps)