Skip to content

Commit

Permalink
Merge pull request #202172 from markuskowa/fix-elpa
Browse files Browse the repository at this point in the history
elpa: explicity disable the use of SSE assembly on non x86
  • Loading branch information
markuskowa authored Nov 21, 2022
2 parents 1793308 + 4a0ceec commit 3790568
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/development/libraries/elpa/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ stdenv.mkDerivation rec {
++ lib.optional (!avx2Support) "--disable-avx2"
++ lib.optional (!avx512Support) "--disable-avx512"
++ lib.optional (!stdenv.hostPlatform.isx86_64) "--disable-sse"
++ lib.optional (!stdenv.hostPlatform.isx86_64) "--disable-sse-assembly"
++ lib.optional stdenv.hostPlatform.isx86_64 "--enable-sse-assembly"
++ lib.optionals enableCuda [ "--enable-nvidia-gpu" "--with-NVIDIA-GPU-compute-capability=${nvidiaArch}" ];

Expand Down

0 comments on commit 3790568

Please sign in to comment.