Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2009-02-04 01:15:08 +0300
committerZoltan Varga <vargaz@gmail.com>2009-02-04 01:15:08 +0300
commit7509f947ae71eabfbf08b508fceccc26ec0333d7 (patch)
tree752cb383b7bfe99c801237e8359db2e3cd1b5ad7 /data
parenta136e4ca1a79846bc2b465361f34b402b42d4445 (diff)
2009-02-03 Zoltan Varga <vargaz@gmail.com>
* mono-gdb.py: Remove the --64 argument to as, it is not needed. svn path=/trunk/mono/; revision=125608
Diffstat (limited to 'data')
-rw-r--r--data/gdb/ChangeLog11
-rw-r--r--data/gdb/mono-gdb.py2
2 files changed, 12 insertions, 1 deletions
diff --git a/data/gdb/ChangeLog b/data/gdb/ChangeLog
index cf333ba17b3..9834266f5f6 100644
--- a/data/gdb/ChangeLog
+++ b/data/gdb/ChangeLog
@@ -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
diff --git a/data/gdb/mono-gdb.py b/data/gdb/mono-gdb.py
index df5690e2986..5ab44193700 100644
--- a/data/gdb/mono-gdb.py
+++ b/data/gdb/mono-gdb.py
@@ -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