aboutsummaryrefslogtreecommitdiff
path: root/README.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'README.adoc')
-rw-r--r--README.adoc12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.adoc b/README.adoc
index 5944529..2302dda 100644
--- a/README.adoc
+++ b/README.adoc
@@ -35,6 +35,18 @@ When no input file is specified, standard input is used. Similarly, the default
output filename is `a.out`. After the compilation, the resulting file can be
run on the target platform.
+gdb
+---
+You may have noticed the `gdb-experiment.go` file. It is a non-optimizing
+version of the compiler targeting Linux only that adds DWARF debugging
+information mapping code locations onto lines in the `ir-dump.txt` byproduct
+output file. It's been rewritten in Go since managing all those binary buffers
+required to build the symbol table proved to be too painful in C.
+
+ $ go run gdb-experiment.go [INPUT-FILE] [OUTPUT-FILE]
+
+Use `break *0x4000b7` to get a breakpoint at the first Brainfuck instruction.
+
Contributing and Support
------------------------
Use this project's GitHub to report any bugs, request features, or submit pull