bottom/.cargo/config.toml
Clement Tsang c864f53d24
other: Comment out cross ARM targets (#376)
Comment out some linkers set in `.config/cargo.toml` for ARM targets.
2020-12-26 16:24:06 -05:00

17 lines
464 B
TOML

[target.x86_64-pc-windows-msvc]
rustflags = ["-C", "target-feature=+crt-static"]
[target.i686-pc-windows-msvc]
rustflags = ["-C", "target-feature=+crt-static"]
# [target.arm-unknown-linux-gnueabihf]
# linker = "arm-linux-gnueabihf-gcc"
# [target.armv7-unknown-linux-gnueabihf]
# linker = "arm-linux-gnueabihf-gcc"
# [target.aarch64-unknown-linux-gnu]
# linker = "aarch64-linux-gnu-gcc"
# [target.aarch64-unknown-linux-musl]
# linker = "aarch64-linux-musl-gcc"