Skip to content
Snippets Groups Projects
Unverified Commit 56f0f3df authored by Charles Hall's avatar Charles Hall
Browse files

only use musl on x86_64

Since that's all I've tested it on. Apparently this caused issues on
aarch64 even though it allegedly shouldn't.
parent ad06d475
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,8 @@
let
pkgs = nixpkgs.legacyPackages.${system};
# Use mold on Linux
stdenv = if pkgs.stdenv.isLinux then
# Use mold where possible
stdenv = if pkgs.stdenv.isLinux && pkgs.stdenv.isx86_64 then
pkgs.stdenvAdapters.useMoldLinker pkgs.stdenv
else
pkgs.stdenv;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment