about summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-04-09 00:45:36 -0700
committerKartik Agaram <vc@akkartik.com>2020-04-09 00:56:32 -0700
commitd260b01748a29d15a5f1d498934aa286a017db97 (patch)
tree310527ac2f867615d18d3eb4d6c6f598811589f8 /README.md
parent35af489c740a94c9326c9c416d34616e85b1bcb9 (diff)
downloadmu-d260b01748a29d15a5f1d498934aa286a017db97.tar.gz
6200 - --dump is not needed for incremental traces
This undoes commit 5764, which was ill-considered. We already had incremental
prints at that point to 'last_run'. As long as we don't run out of RAM
on large traces, there doesn't seem any need to print to stderr.

Now '--dump' is only needed when juggling multiple traces.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index ff5508a5..857446fb 100644
--- a/README.md
+++ b/README.md
@@ -470,7 +470,7 @@ rudimentary but hopefully still workable toolkit:
   `./translate_subx_debug`, and then running:
 
   ```
-  ./bootstrap --debug --trace --dump run a.elf test 2>&1 |grep 'label test'
+  ./bootstrap --trace --dump run a.elf test 2>&1 |grep 'label test'
   ```
 
   Just read out the last test printed out before the segfault.