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
 }
171' href='#n171'>171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338