On Sat, Jul 16, 2011 at 4:34 AM, Sandro Tosi <[email protected]> wrote: > Hello, > while preparing a test upload for 1.6.1rc3 in Debian, I noticed that > it gets an error when building blas with python 2.7 in the debug > flavor, the build log is at [1]. It's also been confirmed it fails > also with 1.5.1 [2] > > [1] http://people.debian.org/~morph/python-numpy_1.6.1~rc3-1_amd64.build > [2] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634012 > > I think it might be a toolchain change in Debian (since 1.5.1 was > built successfully and now it fails), but could you please give me a > hand in debugging the issue? > > Thanks in advance, > -- > Sandro Tosi (aka morph, morpheus, matrixhasu) > My website: http://matrixhasu.altervista.org/ > Me at Debian: http://wiki.debian.org/SandroTosi > _______________________________________________ > NumPy-Discussion mailing list > [email protected] > http://mail.scipy.org/mailman/listinfo/numpy-discussion > Hi, What do you mean by 'python2.7 debug'?
Numpy 1.6.1rc's and earlier build and install with Python 2.7 build in debug mode ($ ./configure --with-pydebug ) on 64-bit Fedora 14 and 15. But, if I can follow you build process (should be the plain 'python setup.py build' to be useful) I think numpy is not finding the correct blas/lapack/atlas libraries so either you may need a site.cfg for that system or install those in the Linux standard locations such as /usr/lib64. You should probably try building without blas, lapack and atlas etc.: BLAS=None LAPACK=None ATLAS=None python setup.py build Bruce _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
