Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index e65a5e5d..a334a345 100644
--- a/flake.nix
+++ b/flake.nix
@@ -57,7 +57,7 @@
# Devshell behavior is preserved.
devShells.default = let
- commonRustFlagsEnv = "-C link-arg=-fuse-ld=mold -C target-cpu=native --cfg tokio_unstable";
+ commonRustFlagsEnv = "-C link-arg=-fuse-ld=lld -C target-cpu=native --cfg tokio_unstable";
platformRustFlagsEnv = pkgs.lib.optionalString pkgs.stdenv.isLinux "-Clink-arg=-Wl,--no-rosegment";
in
pkgs.mkShell
@@ -65,7 +65,7 @@
inputsFrom = [self.checks.${system}.helix];
nativeBuildInputs = with pkgs;
[
- mold
+ lld
cargo-flamegraph
rust-bin.nightly.latest.rust-analyzer
]