Files
waggle-os/app/src-tauri/.cargo/config.toml
Oleg Maslov 0c3e2ead3b
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled
moving
2026-09-02 10:10:29 +02:00

18 lines
966 B
TOML

# Intentionally NO `linker` override here.
#
# A previous version pinned the MSVC linker to an absolute, version-stamped path
# (…/MSVC/14.44.35207/…/link.exe) so Git Bash's GNU coreutils `link` couldn't
# shadow MSVC's linker on one local machine. That pin rotted: windows-latest CI
# ships a different MSVC toolset, and so does any dev box without that exact
# version, so cargo failed with:
# error: linker `…14.44.35207…\link.exe` not found
# note: The system cannot find the path specified. (os error 3)
#
# rustc/cc auto-detect the MSVC linker via vswhere on a properly installed
# toolchain — windows-latest works out of the box, no override needed.
#
# If Git's `link` shadows MSVC's linker locally, fix it in the ENVIRONMENT, not
# here: build from a "Developer Command Prompt for VS 2022" (or run
# vcvarsall.bat) so MSVC's bin precedes Git on PATH. Do NOT re-pin an absolute,
# version-stamped path — it breaks CI and every other machine.