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
feat(aarch64): default to musl-static toolchain on non-x86 Linux
Bare `mcpp build` (new project, no [toolchain]) on aarch64 tried to install
the glibc default gcc@16.1.0 + glibc + linux-headers, which have no aarch64
assets (HTTP 404). On non-x86_64 Linux, default to gcc@15.1.0-musl instead:
it's published for aarch64, self-contained (skip glibc/linux-headers deps),
and yields portable static binaries (ideal for aarch64/Termux). x86_64 keeps
the glibc default. Seeds the host triple so the <host>-linux-musl-g++ frontend
resolves for the no---target default.
Also: fresh-install CI self-hosts mcpp AND xlings via --target aarch64-linux-musl
(their manifests pin a glibc default).
0 commit comments