- .cargo/config.toml: rust-lld linker pinned for x86_64 + aarch64 musl targets (RUSTFLAGS no longer needed) - scripts/d2000-deploy.ps1: build -> AArch64 ELF check -> scp deploy - docs/d2000-dev-plan.md: M2 done; rustup mirror gotcha documented (cached channel manifest pins absolute mirror URLs; patch it to static.rust-lang.org when a component 404s) - verified: target/aarch64-unknown-linux-musl/release/el6695-rt is a static AArch64 ELF (e_machine=0xB7), ~1MB
6 lines
112 B
TOML
6 lines
112 B
TOML
[target.x86_64-unknown-linux-musl]
|
|
linker = "rust-lld"
|
|
|
|
[target.aarch64-unknown-linux-musl]
|
|
linker = "rust-lld"
|