I attempted to get octave 3.4.3 working with atlas, but it also builds and crashes at
plot(1), as 3.6.0 also did. I don't know what's wrong there. Program received signal SIGSEGV, Segmentation fault. 0x00007ffff694e3ad in dtrtri_ Exact as 3.6.0. I'll revert to the old octave version that worked without any blas or lapack implementation. --This line, and those below, will be ignored-e- M pkgs/development/interpreters/octave/default.nix svn path=/nixpkgs/trunk/; revision=32460
This commit is contained in:
parent
da2159548a
commit
47e9932cd2
@ -1,19 +1,21 @@
|
|||||||
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
|
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
|
||||||
libX11, graphicsmagick, pcre, blas, clapack, texLive }:
|
libX11, graphicsmagick, pcre, atlas, clapack, texLive }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "octave-3.6.0";
|
name = "octave-3.4.3";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/octave/${name}.tar.bz2";
|
url = "mirror://gnu/octave/${name}.tar.bz2";
|
||||||
sha256 = "1mwj5pbbdzfbmcqyk0vx6si7mh8yhayppwnb1i63v871gxy775z5";
|
sha256 = "0j61kpfbv8l8rw3r9cwcmskvvav3q2f6plqdq3lnb153jg61klcl";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11
|
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11
|
||||||
graphicsmagick pcre blas clapack texLive ];
|
graphicsmagick pcre clapack atlas texLive ];
|
||||||
|
|
||||||
NIX_LDFLAGS = "-lf2c"; # For clapack
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
configureFlags = "--enable-readline --enable-dl --disable-docs";
|
preConfigure = ''
|
||||||
|
configureFlagsArray=('--with-blas=-L${atlas}/lib -lf77blas -latlas'
|
||||||
|
'--with-lapack=-L${clapack}/lib -llapack -lf2c')
|
||||||
|
'';
|
||||||
|
configureFlags = [ "--enable-readline" "--enable-dl" ];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user