diff --git a/.cargo/config.toml b/.cargo/config.toml index 29fd467..847a918 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,9 +1,9 @@ [target.'cfg(target_os="linux")'] # using mold breaks cargo cross on musl (the image is based on focal, which does not have a mold package) -#rustflags = ["-C", "link-arg=-fuse-ld=mold"] +rustflags = ["-C", "link-arg=-fuse-ld=lld"] [target.'cfg(target_os="windows")'] -rustflags = ["-C", "link-arg=-fuse-ld=lld"] +rustflags = ["-C", "link-arg=-fuse-ld=lld"] # On Windows MSVC, statically link the C runtime so that the resulting EXE does # not depend on the vcruntime DLL.