From 5c3db8f500ff206f3a675d8f4184cb0d61f94804 Mon Sep 17 00:00:00 2001 From: historia Date: Fri, 28 Aug 2026 02:43:27 -0400 Subject: feat: cuda arch detection for shorter builds, build failure detection --- app/backends/audiocpp/wizard.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'app/backends/audiocpp/wizard.py') diff --git a/app/backends/audiocpp/wizard.py b/app/backends/audiocpp/wizard.py index 46b6638..c59da8f 100644 --- a/app/backends/audiocpp/wizard.py +++ b/app/backends/audiocpp/wizard.py @@ -574,7 +574,11 @@ def _execute_lanes(settings: dict, def build_step(emit, cancel): rc = _build.build_audiocpp(audiocpp_dir, settings["backend"], emit=emit, cancel=cancel) - if rc != 0: + if rc == 124: + print("[WARNING] build went silent and was stopped; the " + "server.json was still written — build " + "audiocpp_server manually before starting it") + elif rc != 0: print(f"[WARNING] build exited with code {rc}; the server.json " "was still written — build audiocpp_server manually " "before starting it") -- cgit v1.2.3