pydistmesh icon indicating copy to clipboard operation
pydistmesh copied to clipboard

Use NumPy to locate LAPACK

Open bfroehle opened this issue 11 years ago • 3 comments

We should ask NumPy what the preferred LAPACK is and use that to compile the extension module.

bfroehle avatar Oct 22 '13 00:10 bfroehle

>>> from numpy.distutils import system_info
>>> system_info.get_info('lapack')
{'language': 'f77', 'libraries': ['lapack'], 'library_dirs': ['/usr/lib']}

dhermes avatar May 30 '14 16:05 dhermes

In progress: https://codereview.appspot.com/102920044

dhermes avatar May 30 '14 16:05 dhermes

http://stackoverflow.com/questions/23252036 seems to indicate language is not needed in the Extension data.

dhermes avatar May 30 '14 16:05 dhermes