You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,16 +41,16 @@ The `infs build` command compiles a single `.inf` source file through three phas
41
41
2.**Analyze** (`--analyze`) – Perform type checking and semantic validation (WIP)
42
42
3.**Codegen** (`--codegen`) – Emit WebAssembly binary with optional Rocq translation
43
43
44
-
You must specify at least one phase flag; phases run in canonical order (parse → analyze → codegen).
44
+
Phases run in canonical order (parse → analyze → codegen). When no phase flag is given, `infs build` defaults to full compilation and writes the WASM binary to disk.
45
45
46
46
### Basic Usage
47
47
48
48
```bash
49
-
#Via cargo
50
-
cargo run -p infs -- build path/to/file.inf --parse
0 commit comments