about summary refs log tree commit diff stats
path: root/001help.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-02 01:41:55 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-02 02:01:41 -0800
commit9e5e87ca3776efa5f0d772ed8cf348bf6ee4d08e (patch)
tree5134d5ff1629cb5262e5feda38831456a2d1467d /001help.cc
parentdf8498fb8294cb07d02076cf3881617b5af07974 (diff)
downloadmu-9e5e87ca3776efa5f0d772ed8cf348bf6ee4d08e.tar.gz
5865
Give the bootstrap C++ program a less salient name.
Diffstat (limited to '001help.cc')
-rw-r--r--001help.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/001help.cc b/001help.cc
index d5e2b9a2..9dcc99e9 100644
--- a/001help.cc
+++ b/001help.cc
@@ -66,22 +66,22 @@ void init_help() {
     "programming directly in machine code, but you have to stick to the\n"
     "instructions it supports.\n"
     "\n"
-    "== Ways to invoke subx\n"
+    "== Ways to invoke bootstrap\n"
     "- Run tests:\n"
-    "    subx test\n"
+    "    bootstrap test\n"
     "- See this message:\n"
-    "    subx --help\n"
+    "    bootstrap --help\n"
     "- Convert a textual SubX program into a standard ELF binary that you can\n"
     "  run on your computer:\n"
-    "    subx translate input1.subx input2.subx ... -o <output ELF binary>\n"
+    "    bootstrap translate input1.subx input2.subx ... -o <output ELF binary>\n"
     "- Run a SubX binary using SubX itself (for better error messages):\n"
-    "    subx run <ELF binary>\n"
+    "    bootstrap run <ELF binary>\n"
     "\n"
     "== Debugging aids\n"
     "- Add '--trace' to any of these commands to save a trace to disk at the end.\n"
     "  This can run out of memory for long-running commands.\n"
-    "- Add '--debug' to add information to traces. 'subx --debug translate' will\n"
-    "  save metadata to disk that 'subx --debug --trace run' uses to make traces\n"
+    "- Add '--debug' to add information to traces. 'bootstrap --debug translate'\n"
+    "  will save metadata to disk that 'bootstrap --trace run' uses to make traces\n"
     "  more informative.\n"
     "- Add '--dump --trace' to emit a trace incrementally to stderr.\n"
     "  This approach will work even for long-running programs.\n"
@@ -92,7 +92,7 @@ void init_help() {
     "\n"
     "To start learning how to write SubX programs, see Readme.md (particularly\n"
     "the section on the x86 instruction set) and then run:\n"
-    "  subx help\n"
+    "  bootstrap help\n"
   );
   // End Help Texts
 }