aboutsummaryrefslogtreecommitdiff
path: root/salis.py
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2026-06-28 02:58:56 +0200
committerPaul Oliver <contact@pauloliver.dev>2026-06-28 02:58:56 +0200
commite422518afc868a1ad783c4208ea3a44f89f07687 (patch)
tree6428db20ef7a646443138bbcd1cc85d202cf8c46 /salis.py
parent95fd6ae836ab5fee7387f4df46b727165a05b723 (diff)
Renames dummy VM architecture
Diffstat (limited to 'salis.py')
-rwxr-xr-xsalis.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/salis.py b/salis.py
index f86cd2e..4fe102b 100755
--- a/salis.py
+++ b/salis.py
@@ -92,7 +92,7 @@ options = {
(("u", "ui"), (new, load), fmt_id): {"metavar": "UI", "help": "user interface", "default": "curses", "required": False, "type": str},
(("U", "ui-path"), (new, load), fmt_id): {"metavar": "PATH", "help": "path to search for UIs", "default": "ui", "required": False, "type": str},
(("v", "no-vsync"), (client,), fmt_id): {"action": "store_true", "help": "disable vsync", "required": False},
- (("v", "vm-arch"), (new,), fmt_id): {"metavar": "ARCH", "help": "VM architecture", "default": "dummy", "required": False, "type": str},
+ (("v", "vm-arch"), (new,), fmt_id): {"metavar": "ARCH", "help": "VM architecture", "default": "null", "required": False, "type": str},
(("x", "cpp-compiler"), (client,), fmt_id): {"metavar": "CXX", "help": "C++ compiler to use", "default": "g++", "required": False, "type": str},
(("X", "cpp-compiler-flags"), (client,), fmt_id): {"metavar": "FLAGS", "help": "base set of flags to pass to C++ compiler", "default": "-Wall -Wextra -Werror -pedantic -std=c++20 -lstdc++", "required": False, "type": str},
(("y", "sync-pow"), (new,), fmt_id): {"metavar": "POW", "help": "core sync interval exponent; sync events occur every N steps, where N = 2^{POW}", "default": 20, "required": False, "type": pos},