mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-02 10:27:46 +03:00
flake: Use mold for linking in devShell
Our `lld` was a bit out of date. Mold seems to be slightly faster anyways and seems to work well on both Linux & macOS.
This commit is contained in:
parent
b6e58c0fa4
commit
fab08c0981
1 changed files with 2 additions and 2 deletions
|
@ -57,7 +57,7 @@
|
|||
|
||||
# Devshell behavior is preserved.
|
||||
devShells.default = let
|
||||
commonRustFlagsEnv = "-C link-arg=-fuse-ld=lld -C target-cpu=native --cfg tokio_unstable";
|
||||
commonRustFlagsEnv = "-C link-arg=-fuse-ld=mold -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;
|
||||
[
|
||||
lld_13
|
||||
mold
|
||||
cargo-flamegraph
|
||||
rust-bin.nightly.latest.rust-analyzer
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue