Skip to content

Commit

Permalink
qrupdate: fix build with gfortran 10
Browse files Browse the repository at this point in the history
  • Loading branch information
r-burns committed Apr 12, 2022
1 parent 6240a56 commit 1f776fb
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pkgs/development/libraries/qrupdate/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ stdenv.mkDerivation rec {
"LAPACK=-L${lapack}/lib -llapack"
"BLAS=-L${blas}/lib -lblas"
"PREFIX=${placeholder "out"}"
${lib.optionalString blas.isILP64
# If another application intends to use qrupdate compiled with blas with
# 64 bit support, it should add this to it's FFLAGS as well. See (e.g):
# https://savannah.gnu.org/bugs/?50339
"FFLAGS=-fdefault-integer-8"
}
"FFLAGS=${toString ([
"-std=legacy"
] ++ lib.optionals blas.isILP64 [
# If another application intends to use qrupdate compiled with blas with
# 64 bit support, it should add this to it's FFLAGS as well. See (e.g):
# https://savannah.gnu.org/bugs/?50339
"-fdefault-integer-8"
])}"
)
'';

Expand Down

0 comments on commit 1f776fb

Please sign in to comment.