You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coordinates work via the AIRC queue substrate (airc#562). Edit this card by commenting OR by running airc queue claim/airc queue release/airc queue heartbeat (later PRs).
{
"kind": "airc-queue-card-v1",
"id": "#1007",
"owner": "claude-tab-2",
"status": "claimed",
"evidence": "Adopted existing GitHub issue into airc queue.",
"next_action": "Triage, claim, or close this adopted backlog card."
}
Close this issue when the work is done (status=merged/abandoned).
Original issue body
Pre-adoption body
Found during Carl-OOTB Windows validation 2026-05-02 by continuum-b69f, on Windows 11 + WSL2 Ubuntu + RTX 5090 (CUDA available).
After Building Continuum / TypeScript compilation succeeded ✅, install.sh's auto-launch path (npm start → bash scripts/parallel-start.sh) re-invokes the Rust build, which crashes:
[Rust] error: the compiler unexpectedly panicked. this is a bug.
[Rust] note: rustc 1.94.0 (4a4ef493e 2026-03-02) running on x86_64-unknown-linux-gnu
[Rust] note: compiler flags: --crate-type cdylib --crate-type rlib -C opt-level=3 -C strip=symbols -C link-arg=-Wl,--allow-multiple-definition
[Rust] query stack during panic:
[Rust] #0 [early_lint_checks] perform lints prior to AST lowering
[Rust] #1 [hir_crate] getting the crate HIR
[Rust] error: could not compile `continuum-core` (lib); 7 warnings emitted
Caused by a continuum-core lib compile in /home/joel/continuum/src/workers/. Crate features active when ICE fired: cuda, default, livekit-webrtc, load-dynamic-ort.
Why this matters for Carl-OOTB
A fresh-Windows user running irm install.ps1 | iex:
Install proceeds through all 8 install steps and reports ✅ Continuum Tower installed!.
Auto-launch immediately rebuilds Rust workers in release mode and hits this ICE.
They never get to a working chat.
Suggested fix surfaces (not implemented in this issue)
Skip the auto-launch Rust rebuild when a fresh build already completed in step 5/8 of the install. Right now the install builds, reports success, then the auto-launch IMMEDIATELY rebuilds — same code, same toolchain, same target dir. The second build is redundant and (when it ICEs) breaks the OOTB flow.
Lower opt-level for the auto-launch rebuild. rustc ICEs are sometimes -C opt-level=3 specific; falling back to opt-level=2 on ICE could complete.
Pin rustc to a version known to compile this codebase. 1.94.0 is current stable; if 1.93.x or 1.95.x works, the rust-toolchain.toml could pin.
Catch the ICE and surface a recovery hint ("rustup update; cargo clean; cargo build --release"). Today it's just walls of stack trace + script exit.
Repro
Windows 11, WSL2 Ubuntu + RTX 5090, post-Phase-3 Continuum Tower install completes successfully. The auto-launch's Rust rebuild ICEs deterministically.
Workaround used
I'll try cargo clean && cargo build from the WSL continuum dir to see if a fresh build works, separately from the install.ps1 chain.
airc-queue card
Coordinates work via the AIRC queue substrate (airc#562). Edit this card by commenting OR by running
airc queue claim/airc queue release/airc queue heartbeat(later PRs).{ "kind": "airc-queue-card-v1", "id": "#1007", "owner": "claude-tab-2", "status": "claimed", "evidence": "Adopted existing GitHub issue into airc queue.", "next_action": "Triage, claim, or close this adopted backlog card." }Close this issue when the work is done (status=merged/abandoned).
Original issue body
Pre-adoption body
Found during Carl-OOTB Windows validation 2026-05-02 by continuum-b69f, on Windows 11 + WSL2 Ubuntu + RTX 5090 (CUDA available).
Status
Symptom
After
Building Continuum / TypeScript compilation succeeded ✅, install.sh's auto-launch path (npm start→bash scripts/parallel-start.sh) re-invokes the Rust build, which crashes:Caused by a continuum-core lib compile in
/home/joel/continuum/src/workers/. Crate features active when ICE fired:cuda,default,livekit-webrtc,load-dynamic-ort.Why this matters for Carl-OOTB
A fresh-Windows user running
irm install.ps1 | iex:✅ Continuum Tower installed!.Suggested fix surfaces (not implemented in this issue)
Repro
Windows 11, WSL2 Ubuntu + RTX 5090, post-Phase-3 Continuum Tower install completes successfully. The auto-launch's Rust rebuild ICEs deterministically.
Workaround used
I'll try
cargo clean && cargo buildfrom the WSL continuum dir to see if a fresh build works, separately from the install.ps1 chain.— continuum-b69f