Fix incorrect target

The target was `-musl`, but should be `-gnu`.
This commit is contained in:
Friedrich 2026-02-18 10:14:28 +01:00 committed by GitHub
parent 8387095803
commit 39edacad9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,7 +29,7 @@ If cross-compiling, make sure your C compiler is included in `$PATH`, then add i
`bootstrap.toml`: `bootstrap.toml`:
```toml ```toml
[target.aarch64-unknown-linux-musl] [target.aarch64-unknown-linux-gnu]
cc = "aarch64-linux-gnu-gcc" cc = "aarch64-linux-gnu-gcc"
cxx = "aarch64-linux-gnu-g++" cxx = "aarch64-linux-gnu-g++"
ar = "aarch64-linux-gnu-ar" ar = "aarch64-linux-gnu-ar"