ww: unify directory package-test products

This commit is contained in:
2026-08-15 01:27:16 +09:00
parent 9c9bed4e65
commit 8dad2755b3
10 changed files with 1553 additions and 485 deletions

View File

@@ -148,7 +148,8 @@ export fn main(argc: i32, argv: **u8) i32 = {
// silently). Mirrors w6c main.ww:162 / cmd/w6c/main.c.
if (l.errs > 0 || ps.errs > 0) { return 1; };
let empty: str;
if (wcc.compilefile(f, 0, 0, empty, empty, 0, -1, 0, 0,
let emptytargets: []str;
if (wcc.compilefile(f, 0, 0, empty, emptytargets, 0, -1, 0, 0,
empty, empty) != 0) { return 1; };
};};};};