# Eventually rust might support cross compilation out of the box, but until then
# we have to tell it which external linker to use:
# https://rust-lang.github.io/rustup/cross-compilation.html
[target.x86_64-apple-darwin]
linker = "x86_64-apple-darwin15-clang"
ar = "x86_64-apple-darwin15-ar"
[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw32-gcc"
[target.aarch64-unknown-linux-musl]
linker = "aarch64-unknown-linux-musl-gcc"
