Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pkgs/development/libraries/science/math/openblas/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,12 @@ stdenv.mkDerivation (finalAttrs: {

doCheck = true;

# Disables the test zblas3, which is very slow (>1h runtime) when building for i686
Comment thread
Nivalux marked this conversation as resolved.
# https://github.com/NixOS/nixpkgs/issues/534670
preCheck = lib.optionalString (stdenv.hostPlatform.system == "i686-linux") ''
checkFlagsArray+=("ARGS=-E zblas3")
'';

postInstall = ''
# Provide headers in /include directly for compat with some consumers like flint
(cd $dev/include && ln -sf openblas/*.h .)
Expand Down
Loading