qrupdate: fix build with gfortran 10

This commit is contained in:
Ryan Burns 2021-12-05 14:01:27 -08:00
parent 6240a5697f
commit 1f776fb0cc

View file

@ -25,12 +25,14 @@ stdenv.mkDerivation rec {
"LAPACK=-L${lapack}/lib -llapack" "LAPACK=-L${lapack}/lib -llapack"
"BLAS=-L${blas}/lib -lblas" "BLAS=-L${blas}/lib -lblas"
"PREFIX=${placeholder "out"}" "PREFIX=${placeholder "out"}"
${lib.optionalString blas.isILP64 "FFLAGS=${toString ([
# If another application intends to use qrupdate compiled with blas with "-std=legacy"
# 64 bit support, it should add this to it's FFLAGS as well. See (e.g): ] ++ lib.optionals blas.isILP64 [
# https://savannah.gnu.org/bugs/?50339 # If another application intends to use qrupdate compiled with blas with
"FFLAGS=-fdefault-integer-8" # 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"
])}"
) )
''; '';