2002-08-24 Martin Baulig <martin@gnome.org>
authorMartin Baulig <martin@novell.com>
Sat, 24 Aug 2002 15:57:45 +0000 (15:57 -0000)
committerMartin Baulig <martin@novell.com>
Sat, 24 Aug 2002 15:57:45 +0000 (15:57 -0000)
* codegen.cs (CodeGen.InitMonoSymbolWriter): The symbol file is
now called proggie.dbg and it's a binary file.

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

mcs/mcs/ChangeLog
mcs/mcs/codegen.cs

index 6748bf0045d3fd08d165084d8ad3521c647af3b0..1af35c750debbacaf39fedf44e573a153c2f86e5 100755 (executable)
@@ -1,3 +1,8 @@
+2002-08-24  Martin Baulig  <martin@gnome.org>
+
+       * codegen.cs (CodeGen.InitMonoSymbolWriter): The symbol file is
+       now called proggie.dbg and it's a binary file.
+
 2002-08-23  Martin Baulig  <martin@gnome.org>
 
        * decl.cs (MemberCache.AddMethods): Ignore varargs methods.
index 8c18dc29b571128077e3fc93e04cbad77e86ee9d..bc9ca7b853445a03fc319e2ce350a67a0e8155ce 100755 (executable)
@@ -68,7 +68,7 @@ namespace Mono.CSharp {
                static bool InitMonoSymbolWriter (string basename, string output_file,
                                                  string[] debug_args)
                {
-                       string symbol_output = basename + "-debug.s";
+                       string symbol_output = basename + ".dbg";
 
                        Type itype = SymbolWriter.GetType ();
                        if (itype == null)