mirror of
https://github.com/ast-grep/ast-grep.git
synced 2026-05-06 06:06:46 -04:00
19 lines
416 B
TOML
19 lines
416 B
TOML
[target.aarch64-unknown-linux-gnu]
|
|
linker = "aarch64-linux-gnu-gcc"
|
|
|
|
[target.armv7-unknown-linux-gnueabihf]
|
|
linker = "arm-linux-gnueabihf-gcc"
|
|
|
|
[target.x86_64-unknown-linux-musl]
|
|
rustflags = [
|
|
"-C",
|
|
"target-feature=-crt-static",
|
|
]
|
|
|
|
[target.aarch64-unknown-linux-musl]
|
|
linker = "aarch64-linux-musl-gcc"
|
|
rustflags = ["-C", "target-feature=-crt-static"]
|
|
|
|
[alias]
|
|
xtask = "run --manifest-path ./xtask/Cargo.toml --"
|