Commit 04e483ed authored by qbisi's avatar qbisi
Browse files

superlu: use generic blas vendor on all platforms

parent f2e23a1a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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;