Skip to content

Commit

Permalink
ci: add mold support
Browse files Browse the repository at this point in the history
  • Loading branch information
HoKim98 committed Mar 9, 2024
1 parent 08d3cf2 commit abdf8f1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit abdf8f1

Please sign in to comment.