[NumPy-Tickets] [NumPy] #431: default_x11_lib_dirs should contain 64 bit library paths
NumPy Trac
numpy-tickets@scipy....
Sun Dec 12 06:07:40 CST 2010
#431: default_x11_lib_dirs should contain 64 bit library paths
------------------------------+---------------------------------------------
Reporter: LevGivon | Owner: cookedm
Type: defect | Status: closed
Priority: normal | Milestone: Unscheduled
Component: numpy.distutils | Version: devel
Resolution: fixed | Keywords: lib64, X11
------------------------------+---------------------------------------------
Changes (by rgommers):
* status: accepted => closed
* resolution: => fixed
Comment:
It does include these now (commit:ff368ca2), they get included in line
199:
{{{
default_x11_lib_dirs = libpaths(['/usr/X11R6/lib','/usr/X11/lib',
'/usr/lib'], platform_bits)
}}}
And checking 'by hand':
{{{
>>> from numpy.distutils.system_info import *
>>> libpaths(default_x11_lib_dirs,32)
['/usr/X11R6/lib', '/usr/X11/lib', '/usr/lib']
>>> libpaths(default_x11_lib_dirs,64)
['/usr/X11R6/lib64', '/usr/X11R6/lib', '/usr/X11/lib64', '/usr/X11/lib',
'/usr/lib64', '/usr/lib']
}}}
--
Ticket URL: <http://projects.scipy.org/numpy/ticket/431#comment:4>
NumPy <http://projects.scipy.org/numpy>
My example project
More information about the NumPy-Tickets
mailing list