Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BUG: core: use #if check instead of #ifdef in checking HAVE_DECL_ISFINITE ↵ | Pauli Virtanen | 2010-10-06 | 1 | -0/+16 |
| | | | | | | | (ticket #1625) Python #defines HAVE_DECL_ISFINITE 0 when the function is not available, so the proper check to do is #if. | ||||
* | BUG: distutils: use // in a binary search (fixes #1604 on Python 3) | Pauli Virtanen | 2010-09-04 | 1 | -1/+1 |
| | |||||
* | Implemented detection of gfortran usage for ATLAS linkage. get_atlas_version ↵ | Pearu Peterson | 2010-08-30 | 1 | -3/+26 |
| | | | | 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. | ||||
* | Fix bug to ensure that swig generated .py files are installed. | Pearu Peterson | 2010-08-25 | 2 | -1/+9 |
| | |||||
* | Fix swig target extension when swig target is not defined by the .i file but ↵ | Pearu Peterson | 2010-08-25 | 1 | -3/+11 |
| | | | | should be c++. | ||||
* | Make extension swig_opts effective to build_src command. | Pearu Peterson | 2010-08-25 | 1 | -2/+6 |
| | |||||
* | remove has_key from config. | David Cournapeau | 2009-12-03 | 1 | -2/+2 |
| | |||||
* | Fix callable in build_src command. | David Cournapeau | 2009-12-03 | 1 | -3/+3 |
| | |||||
* | Py3k: make scons command py3k importable. | David Cournapeau | 2009-12-03 | 1 | -2/+5 |
| | |||||
* | Make build_src and build_clib python3 importable. | David Cournapeau | 2009-12-03 | 2 | -7/+6 |
| | |||||
* | Fix print/repr/raise python3 incompatibilities in system_info and build_ext ↵ | David Cournapeau | 2009-12-03 | 1 | -5/+5 |
| | | | | command. | ||||
* | Py3k: make config command py3k importable. | David Cournapeau | 2009-12-03 | 1 | -5/+8 |
| | |||||
* | BUG: retrieve build_clib in build_ext even if it has already been run. | David Cournapeau | 2009-11-16 | 1 | -0/+1 |
| | |||||
* | BUG: setuptools does not run install_clib automatically -- run it manually ↵ | Pauli Virtanen | 2009-11-12 | 2 | -2/+16 |
| | | | | in install_data, if setuptools is present (fix #1194) | ||||
* | BUG: pkg_paths was wrongly set when using --package-list for numscons build. | David Cournapeau | 2009-10-27 | 1 | -1/+1 |
| | |||||
* | Add a pkg_path option to add_sconcript. | David Cournapeau | 2009-10-01 | 1 | -4/+9 |
| | | | | | This is necessary to handle some cases where scons scripts and packages are not in the same directory. | ||||
* | Put scons data into its own class. | David Cournapeau | 2009-10-01 | 1 | -9/+11 |
| | |||||
* | Add debug option to scons command. | David Cournapeau | 2009-09-19 | 1 | -0/+6 |
| | |||||
* | Add option to import user environment into numscons. | David Cournapeau | 2009-09-17 | 1 | -0/+3 |
| | |||||
* | BUG: fix #1194. | David Cournapeau | 2009-09-16 | 1 | -4/+4 |
| | |||||
* | BUG: fix clib install directory for scons command. | David Cournapeau | 2009-09-14 | 1 | -1/+7 |
| | |||||
* | Start adding library options for scons option. | David Cournapeau | 2009-09-14 | 1 | -1/+22 |
| | |||||
* | Re-indent scons command options. | David Cournapeau | 2009-09-14 | 1 | -20/+20 |
| | |||||
* | Further whitespace/tab fixes. | David Cournapeau | 2009-09-14 | 1 | -3/+3 |
| | |||||
* | Move scons call command line building into its own private function. | David Cournapeau | 2009-09-14 | 1 | -71/+75 |
| | |||||
* | Fix tab/space issue in scons command. | David Cournapeau | 2009-09-14 | 1 | -3/+3 |
| | |||||
* | Do not import pyrex in distutils unless there are some pyrex source files. | David Cournapeau | 2009-09-14 | 1 | -7/+9 |
| | |||||
* | BUG: we were protecting c++ and fortran compiler path twice, which made ↵ | David Cournapeau | 2009-09-09 | 1 | -2/+2 |
| | | | | scons interpret the path as target. | ||||
* | Tell scons whether we are in bypass mode or not. | David Cournapeau | 2009-09-09 | 1 | -0/+1 |
| | |||||
* | Do not pass compiler path options to scons if they were not set. | David Cournapeau | 2009-09-09 | 1 | -3/+6 |
| | |||||
* | Require numscons 0.11 or above. | David Cournapeau | 2009-09-09 | 1 | -2/+2 |
| | |||||
* | Add a bypass option to scons command. | David Cournapeau | 2009-09-09 | 1 | -11/+18 |
| | | | | | | | We sometimes want to bypass distutils compiler detection, and the bypass option tells the scons command to do exactly that. The compiler options are simply passed directly to scons, which will then try to to detect the compiler from there. | ||||
* | Handle None in protect path. | David Cournapeau | 2009-09-09 | 1 | -3/+6 |
| | |||||
* | Add user options for compilers in scons command. | David Cournapeau | 2009-09-09 | 1 | -2/+16 |
| | | | | | | When removing build_ext options, we removed the compiler options as well. We add the compiler options back, and treat C, C++ and Fortran compilers as separate. | ||||
* | Always set up scons_* compilers, and use those when building the scons ↵ | David Cournapeau | 2009-09-09 | 1 | -9/+19 |
| | | | | command call. | ||||
* | Do not reuse build_ext options - most do not make sense for scons command. | David Cournapeau | 2009-09-09 | 1 | -13/+12 |
| | |||||
* | Remove infunc imports. | David Cournapeau | 2009-09-09 | 1 | -3/+10 |
| | |||||
* | Refactor numscons check in scons command. | David Cournapeau | 2009-09-09 | 1 | -26/+31 |
| | |||||
* | Move compiler initialization into their own private functions. | David Cournapeau | 2009-09-09 | 1 | -45/+47 |
| | |||||
* | Move import at the top of the file. | David Cournapeau | 2009-09-09 | 1 | -4/+4 |
| | |||||
* | Remove debug print in scons command. | David Cournapeau | 2009-08-27 | 1 | -1/+0 |
| | |||||
* | Do not finalize install_cmd if already finalized. | David Cournapeau | 2009-08-04 | 1 | -1/+2 |
| | |||||
* | BUG: fix building of npy-pkg-config file so that one can reliably get the ↵ | David Cournapeau | 2009-08-04 | 1 | -3/+12 |
| | | | | install prefix from the install command, | ||||
* | Fix typo in install_clib fix. | David Cournapeau | 2009-08-04 | 1 | -1/+1 |
| | |||||
* | BUG: fix install_clib failure on win32. | David Cournapeau | 2009-08-04 | 1 | -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 Cournapeau | 2009-08-04 | 1 | -1/+1 |
| | |||||
* | Fix scons build w.r.t pkg-config and installed C lib location. | David Cournapeau | 2009-07-26 | 1 | -5/+3 |
| | |||||
* | Update numscons build to support pkg-config-like files. | David Cournapeau | 2009-07-26 | 1 | -1/+14 |
| | |||||
* | Add add_installed_pkg_config function, for automatic pkg-config-like ↵ | David Cournapeau | 2009-07-26 | 1 | -1/+68 |
| | | | | generation/handling. | ||||
* | Require 0.10.2 version of numscons - needed for installed C libraries. | David Cournapeau | 2009-07-26 | 1 | -1/+1 |
| |