summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/install_clib.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in install_clib fix.David Cournapeau2009-08-041-1/+1
|
* BUG: fix install_clib failure on win32.David Cournapeau2009-08-041-4/+8
| | | | | | When the compiler is customized in build_clib, install_clib did not reuse it, but created a new instance. Instead, we use the build_clib compiler if already instanciated.
* Move import at the top of module.David Cournapeau2009-08-041-1/+1
|
* Installing a clib now works.David Cournapeau2009-07-261-4/+18
| | | | | | | | Installable libraries are built exactly like conventional clib (they are added to the NumpyDistribution instance libraries member, and build_clib is not aware of the libraries/installable libraries distinction). Everything is done in the install_clib. The library cannot be used yet by external code, though.
* Add a install_clib command.David Cournapeau2009-07-261-0/+19