修正了一些错误

This commit is contained in:
2026-07-20 11:13:23 +08:00
parent a557718ba5
commit 6eb3d22eba
9 changed files with 2921 additions and 6 deletions

View File

@@ -249,7 +249,11 @@ def main() -> int:
ph1_temp: str = Config.TempDir
if ph1_temp is None:
ph1_temp = "."
stdio.printf("[DBG MAIN] before Phase1: Inc=%s temp=%s\n", Config.IncludesDir, ph1_temp)
stdio.fflush(0)
Phase1.RunPhase1(mb, Config.IncludesDir, ph1_temp, log)
stdio.printf("[DBG MAIN] after Phase1\n")
stdio.fflush(0)
# 如果仅 Phase1不执行 Phase2直接退出
if do_phase2 == 0:
stdio.printf("[phase] Phase1 完成,退出\n")