Repositories
/
ecl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ad584e
)
Some documentation about debugging.
author
Philipp Marek
<philipp@marek.priv.at>
Wed, 26 Feb 2014 20:14:22 +0000
(21:14 +0100)
committer
Philipp Marek
<philipp@marek.priv.at>
Wed, 26 Feb 2014 20:14:22 +0000
(21:14 +0100)
README.1st
patch
|
blob
|
blame
|
history
diff --git
a/README.1st
b/README.1st
index
bcc88f7
..
68193fc
100644
(file)
--- a/
README.1st
+++ b/
README.1st
@@
-1,5
+1,20
@@
You can find the preprocessed documentation in ./doc in HTML format.
+Debugging via GDB:
+------------------
+
+src/util/gdbinit (and, therefore, build/.gdbinit) defines
+a few convenience things - T, NIL, and, even more important,
+ecl_print.
+
+This is a GDB function that prints a 'cl_object' human-readably:
+
+ (gdb) ecl_print x
+ $39 = t_fixnum
+ $40 = (ecl_base_char *) 0x42b4000 "10652336"
+
+
+
About testing:
--------------