octave: clean up configure flags - remove --enable-dl
This commit is contained in:
parent
40c2fb8b1e
commit
acf2ad3876
@ -92,14 +92,15 @@ stdenv.mkDerivation rec {
|
|||||||
# See https://savannah.gnu.org/bugs/?50339
|
# See https://savannah.gnu.org/bugs/?50339
|
||||||
F77_INTEGER_8_FLAG = if openblas.blas64 then "-fdefault-integer-8" else "";
|
F77_INTEGER_8_FLAG = if openblas.blas64 then "-fdefault-integer-8" else "";
|
||||||
|
|
||||||
configureFlags =
|
configureFlags = [
|
||||||
[ "--enable-readline"
|
"--enable-readline"
|
||||||
"--enable-dl"
|
|
||||||
"--with-blas=openblas"
|
"--with-blas=openblas"
|
||||||
"--with-lapack=openblas"
|
"--with-lapack=openblas"
|
||||||
]
|
]
|
||||||
++ stdenv.lib.optional openblas.blas64 "--enable-64"
|
++ stdenv.lib.optionals openblas.blas64 [ "--enable-64" ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ "--with-x=no" ]
|
++ stdenv.lib.optionals stdenv.isDarwin [ "--with-x=no" ]
|
||||||
|
++ stdenv.lib.optionals enableQt [ "--with-qt=5" ]
|
||||||
|
++ stdenv.lib.optionals enableJIT [ "--enable-jit" ]
|
||||||
;
|
;
|
||||||
|
|
||||||
# Keep a copy of the octave tests detailed results in the output
|
# Keep a copy of the octave tests detailed results in the output
|
||||||
|
Loading…
Reference in New Issue
Block a user