a45a2ecd49
- Lexer (Nim + Bux): resolve escape sequences (\n, \t, \r, etc) instead of keeping raw source text in token. This was the root cause of \n being double-escaped to \\n in generated C code. - Manifest parser (src_bux/manifest.bux): use bux_strlen instead of broken String_SplitCount(s, "") hack for string length; fix quote stripping. - CLI (src_bux/cli.bux): --version/--help now recognized alongside version/help. - Remove ~30+ debug Print statements from cli, parser, lexer, sema, main. - Clean up unneeded Print/PrintInt extern declarations. - _selfhost/src/: synced from src_bux/.
24 lines
618 B
Plaintext
24 lines
618 B
Plaintext
// main.bux — Entry point for the Bux self-hosting compiler
|
|
module Main {
|
|
|
|
// C runtime for command-line args
|
|
extern func bux_argc() -> int;
|
|
extern func bux_argv(index: int) -> String;
|
|
extern func bux_alloc(size: uint) -> *void;
|
|
|
|
// Forward declaration from Cli module
|
|
func Cli_Run(args: *String, argCount: int) -> int;
|
|
|
|
func Main() -> int {
|
|
let count: int = bux_argc();
|
|
// Allocate array of String pointers
|
|
let args: *String = bux_alloc(count as uint * 8) as *String;
|
|
var i: int = 0;
|
|
while i < count {
|
|
args[i] = bux_argv(i);
|
|
i = i + 1;
|
|
}
|
|
return Cli_Run(args, count);
|
|
}
|
|
}
|