Skip to content

Commit

Permalink
lammps: mark as broken for 32 bit lapack & blas
Browse files Browse the repository at this point in the history
  • Loading branch information
doronbehar committed Jun 7, 2023
1 parent 66c6053 commit 64bed84
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ stdenv.mkDerivation rec {
homepage = "https://lammps.sandia.gov";
license = licenses.gpl2Plus;
platforms = platforms.linux;
# compiling lammps with 64 bit support blas and lapack might cause runtime
# segfaults. In anycase both blas and lapack should have the same #bits
# support.
broken = (blas.isILP64 && lapack.isILP64);
maintainers = [ maintainers.costrouc maintainers.doronbehar ];
};
}

0 comments on commit 64bed84

Please sign in to comment.