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
fix: xlings on Windows must cd to XLINGS_HOME (self-contained sandbox)
Root cause: xlings resolves its home from the working directory or
binary location. On Linux, build_command_prefix does `cd <home> &&`
before invoking xlings. On Windows this was missing — xlings
installed packages to its default location instead of mcpp's sandbox.
Fix: add `cd /d "<home>" &&` to all Windows xlings invocations
(build_command_prefix, install_with_progress, ensure_init).
Also removed the fallback that copied from ~/.xlings/ — mcpp must
be self-contained, not depend on system xlings.
0 commit comments