summaryrefslogtreecommitdiff
path: root/numpy/distutils/system_info.py
Commit message (Collapse)AuthorAgeFilesLines
* Implemented detection of gfortran usage for ATLAS linkage. get_atlas_version ↵Pearu Peterson2010-08-301-25/+39
| | | | returns now a tuple (version_str, info_dict). Nice thing about the patch is that specifying gnu95 compiler is not needed anymore for numpy (neither for scipy) build when using ATLAS containing gfortran compiled blas/lapack.
* BUG: Use correct include path when multiple copies of NumPy is installed.Stefan van der Walt2010-05-251-0/+7
|
* 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reducePauli Virtanen2010-02-201-0/+3
| | | | Instead, manually import reduce where necessary.
* fixed a whole bunch of doctestsPaul Ivanov2009-12-281-2/+2
|
* BUG: fix system_info broken by py3k changes.David Cournapeau2009-12-031-4/+4
|
* Py3k: make system_info importable from py3k.David Cournapeau2009-12-031-4/+11
|
* Fix print/repr/raise python3 incompatibilities in system_info and build_ext ↵David Cournapeau2009-12-031-1/+1
| | | | command.
* Update system_info.py for new files in Lapack 3.2.1.Pearu Peterson2009-09-301-0/+4
|
* Warn if site.cfg specifies invalid directories.Stefan van der Walt2009-05-011-1/+6
|
* Fix another bug, see last commit.Pearu Peterson2009-02-061-1/+2
|
* Fix a bug: python system_info.py failed because _pkg_config_info defined ↵Pearu Peterson2009-02-061-2/+3
| | | | section to be None.
* can't use append an int to a stringJarrod Millman2009-01-091-1/+1
|
* removed unneeded importJarrod Millman2009-01-091-2/+0
|
* switch the order [lib,lib64] --> [lib64,lib] Jarrod Millman2009-01-091-4/+4
|
* simplification suggested by stefanJarrod Millman2009-01-091-3/+4
|
* better default library paths for 64bit archJarrod Millman2009-01-091-7/+44
|
* should be more reliable way to determine what bit platformJarrod Millman2009-01-091-7/+6
|
* add default include dir for Fedora/Red Hat (see SciPy ticket 817)Jarrod Millman2009-01-011-1/+2
|
* Disable looking for 3gf libraries; it causes more problem than it solves.David Cournapeau2008-11-071-2/+3
|
* Fix typo (g3f->3gf).David Cournapeau2008-11-071-1/+1
|
* Deal with g3f extension used by Debian/Ubuntu for gfortrab ABI transition.David Cournapeau2008-11-071-0/+4
|
* In site.cfg, change DEFAULT section to ALL to accommodate building on Python ↵Stefan van der Walt2008-03-191-5/+5
| | | | 2.6.
* use 'in' keyword to test dictionary membershipJarrod Millman2007-11-281-8/+8
|
* ran reindent.py to clean up whitespaceJarrod Millman2007-10-291-2/+2
|
* Fix vectorize to work with strings. Fix where 64-bit looks for X11 ↵Travis Oliphant2007-10-181-1/+12
| | | | libraries. Fix comment.
* More fixes for building scipy with Mingw32 compilers.Pearu Peterson2007-07-251-1/+4
|
* Fixed LAPACK_SRC build for lapack-3.1.1.Pearu Peterson2007-07-201-2/+16
|
* merge from distutils-revamp branch (step 1)cookedm2007-05-251-1/+1
|\ | | | | | | | | | | - minor cleanups - find_executable returns None when no file found (instead of having to check with os.path.isfile)
| * Branch numpy.distutils to distutils-revampcookedm2006-07-061-1864/+0
| |
* | Fix atlas version detection when using MSVC compilerPearu Peterson2007-05-191-1/+1
| |
* | Using meaningful NotFoundError exception for blas_opt and lapack_opt resources.Pearu Peterson2007-05-111-0/+4
| |
* | Fix typo.Robert Kern2007-04-301-1/+1
| |
* | Add patch to system_info for building with MKL on Win32 #504Travis Oliphant2007-04-241-2/+9
| |
* | Add another place to check for configuration, namely ~/.numpy-site.cfg, to ↵Robert Kern2007-04-151-2/+4
| | | | | | | | help automatic installation where one can't edit the source checkout. I've added the alternate name to make it hidden because that's just considerate.
* | remove some remaining references to scipy. fixes #428Tim Leslie2007-01-261-1/+1
| |
* | Whitespace cleanup.Stefan van der Walt2007-01-081-1/+1
| |
* | Add .dylib as a valid OS X shared library extension.Robert Kern2006-10-021-0/+2
| |
* | For the MKL library, define the macro SCIPY_MKL_Hcookedm2006-09-281-1/+4
| |
* | Fix #114: Problems with building with MSVC and GCC under Cygwincookedm2006-07-281-23/+46
| |
* | TypoTravis Oliphant2006-07-281-4/+3
| |
* | Add NPY_MAXARGS to arrayobject.h for Multi-iterator object. Don't fail if ↵Travis Oliphant2006-07-281-3/+18
|/ | | | get_atlas_version can't execute the code.
* cache the ATLAS version computationcookedm2006-07-061-3/+8
|
* Fixed typos in distutils.system_infoedschofield2006-07-061-2/+2
|
* Fixed lapack finding on intel-macTravis Oliphant2006-06-301-10/+32
|
* Checkin another error I found and not checked in, in numpy.distutils.system_infocookedm2006-06-121-1/+0
|
* Fix logging when 'None' is used to disable environment-variableTravis Oliphant2006-06-121-2/+2
|
* Fix typo in system_info (at 6am 'libray' looks like 'library')cookedm2006-06-091-1/+1
|
* Make system_info saner.cookedm2006-06-091-146/+116
| | | | | | * Add a get_output() method to the config command, which compiles, links, and runs a program, and returns the output from that program. * Also cleaned up some stuff. system_info uses log instead of print.
* Set NUMERIX env variable in get_info('numerix')Pearu Peterson2006-05-181-0/+1
|
* get_info returns deep copy of a dictionary, fixes bugs when one modifies ↵Pearu Peterson2006-05-031-2/+2
| | | | info dictionary objects.