diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..cf2eb55 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,11 @@ +[target.aarch64-unknown-linux-musl] +linker = "clang" +rustflags = ["-C", "link-arg=-fuse-ld=mold"] + +[target.x86_64-unknown-linux-gnu] +linker = "clang" +rustflags = ["-C", "link-arg=-fuse-ld=mold"] + +[target.x86_64-unknown-linux-musl] +linker = "clang" +rustflags = ["-C", "link-arg=-fuse-ld=mold"]