2009-02-03 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Tue, 3 Feb 2009 22:15:08 +0000 (22:15 -0000)
committerZoltan Varga <vargaz@gmail.com>
Tue, 3 Feb 2009 22:15:08 +0000 (22:15 -0000)
* mono-gdb.py: Remove the --64 argument to as, it is not needed.

svn path=/trunk/mono/; revision=125608

data/gdb/ChangeLog
data/gdb/mono-gdb.py

index cf333ba17b3ee4438482ce95c33149fe61718a87..9834266f5f62a7a20ce2ae63c94db715b0f16d8a 100644 (file)
@@ -1,3 +1,14 @@
+2009-02-03  Zoltan Varga  <vargaz@gmail.com>
+
+       * mono-gdb.py: Remove the --64 argument to as, it is not needed.
+       
+       * mono-gdb.py (stringify_class_name): Helper function to print base types
+       using their short name. Also add a prototype implementation of registering
+       the hooks from python code instead of needing the mono-gdbinit file.
+
+       * gdb-python.diff: Changes against the gdb archer branch at 
+       http://sourceware.org/gdb/wiki/PythonGdb to fix some problems/add functionality.
+       
 2009-02-03  Geoff Norton  <gnorton@novell.com>
 
        * mono-gdbinit: Hook into backtrace as hook-stop seems to crash gdb
index df5690e298609c650e04ac38cf5623acf6c39ddb..5ab441937000f92c12562dc5cf2563a731d59ccd 100644 (file)
@@ -150,7 +150,7 @@ class MonoSupport(object):
             new_size = os.stat ("xdb.s").st_size
             if new_size > self.s_size:
                 sofile = "xdb.so"
-                gdb.execute ("shell as --64 -o xdb.o xdb.s && ld -shared -o %s xdb.o" % sofile)
+                gdb.execute ("shell as -o xdb.o xdb.s && ld -shared -o %s xdb.o" % sofile)
                 # FIXME: This prints messages which couldn't be turned off
                 gdb.execute ("add-symbol-file %s 0" % sofile)
                 self.s_size = new_size