From: Albert S. <fu...@gm...> - 2006-10-07 12:20:07
|
Hello all > -----Original Message----- > From: num...@li... [mailto:numpy- > dis...@li...] On Behalf Of Karol Langner > Sent: 07 October 2006 14:07 > To: NumPy List > Subject: [Numpy-discussion] problem with lapack_lite / BLAS > > Dear list, > > I'm trying to compile ATLAS 3.6.0 and LAPACK 3.0 (+ update) and use them > with > the latest numpy (checked out today). Installation seems to be fine, all > the > libraries are detected. When I import numpy, however, I get this: > > <snip> > ImportError: /home/langner/apps/python/lib/python2.5/site- > packages/numpy/linalg/lapack_lite.so: > undefined symbol: xerbla_ > > Does anyone know where this comes from? xerbla is an error handler for the LAPACK routines. Make sure you included xerbla.f when building your LAPACK library. Check the symbols included in the library with strings or objdump. Hope this helps. Cheers, Albert |