13 lines
388 B
TOML
13 lines
388 B
TOML
[target.aarch64-unknown-linux-gnu]
|
|
linker = "aarch64-linux-gnu-gcc"
|
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
linker = "gcc"
|
|
|
|
[target.x86_64-unknown-linux-musl]
|
|
rustflags = ["-C", "target-feature=+crt-static", "-C", "link-self-contained=yes"]
|
|
|
|
[target.aarch64-unknown-linux-musl]
|
|
linker = "aarch64-linux-gnu-gcc"
|
|
rustflags = ["-C", "target-feature=+crt-static", "-C", "link-self-contained=yes"]
|