Crafter.Build/interfaces
Repository files (latest commit first)
Filename Latest commit message Latest commit date
catbot 8e2d21a2bc fix: decide a build step by its exit code, not by whether it printed
RunCommand merged stderr into stdout, dropped pclose's status and returned
the text; every compile, link and archive site then read "printed something"
as "failed". A warning is printing something, so a translation unit that
warned failed the build — but only on the run that actually recompiled it,
since warnings aren't re-emitted for an object that's already up to date.
The same unchanged source therefore passed or failed depending on the state
of the build tree: flaky-looking tests locally, and a cold CI checkout
surfacing every latent warning in a project at once as unrelated failures.

RunCommand is gone, replaced by RunBuildCommand: it goes through
RunCommandChecked, returns "" when the command exited 0 (so every caller's
`if (!result.empty())` error path is unchanged) and hands any warnings to
the new Progress::Diagnostic instead of to the error path. That also closes
the quiet half of the bug — a compiler killed by the OOM killer prints
nothing, so it used to read as success and leave the build carrying on with
a missing object; it now reports the signal that killed it.

Warnings are now shown rather than swallowed, which they weren't in either
direction before: invisible on an incremental build, fatal on a cold one.
Failing on them stays a project's choice, via -Werror in compileFlags.
2026-08-26 00:51:15 +00:00
..
Crafter.Build-Api.h linting 2026-07-23 01:24:42 +02:00
Crafter.Build-Asset.cppm linting 2026-07-23 01:24:42 +02:00
Crafter.Build-Clang.cppm fix(lint): constexpr-constant asks clang's evaluator, not the initialiser tokens 2026-07-31 02:05:37 +02:00
Crafter.Build-External.cppm feat(lint): no-char-pointer reads the AST, retiring the interop denylist 2026-07-30 23:46:32 +02:00
Crafter.Build-Implementation.cppm fix: re-resolve module imports before checking staleness 2026-07-30 17:12:24 +00:00
Crafter.Build-Interface.cppm fix: track what a primary module interface imports 2026-07-30 18:19:04 +00:00
Crafter.Build-Lint.cppm feat(lint): AST layer over libclang cursors 2026-07-30 23:30:41 +02:00
Crafter.Build-Platform.cppm fix: decide a build step by its exit code, not by whether it printed 2026-08-26 00:51:15 +00:00
Crafter.Build-Progress.cppm fix: decide a build step by its exit code, not by whether it printed 2026-08-26 00:51:15 +00:00
Crafter.Build-Shader.cppm linting 2026-07-23 01:24:42 +02:00
Crafter.Build-Test.cppm linting 2026-07-23 01:24:42 +02:00
Crafter.Build.cppm linting 2026-07-23 01:24:42 +02:00