superlu: use generic blas vendor on all platforms

This commit is contained in:
qbisi
2025-10-05 23:58:59 +08:00
parent f2e23a1ac9
commit 04e483ed80
+1 -3
View File
@@ -45,11 +45,9 @@ stdenv.mkDerivation (finalAttrs: {
cmakeFlags = [
(lib.cmakeBool "BUILD_SHARED_LIBS" true)
(lib.cmakeBool "enable_fortran" true)
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# prevent cmake from using Accelerate, which causes tests to segfault
# https://github.com/xiaoyeli/superlu/issues/155
"-DBLA_VENDOR=Generic"
(lib.cmakeFeature "BLA_VENDOR" "Generic")
];
doCheck = true;