summaryrefslogtreecommitdiff
path: root/numpy/distutils/command
Commit message (Collapse)AuthorAgeFilesLines
* Does not replace g++ by c++ compiler name.David Cournapeau2008-04-231-5/+1
|
* Do not show the whole scons command for silent modes.David Cournapeau2008-04-211-1/+4
|
* Add one more level for silent modes in scons command.David Cournapeau2008-04-131-4/+5
|
* Fix typo (bug #704).David Cournapeau2008-03-211-1/+1
|
* Add pkg name at the beginning of logging scons call.David Cournapeau2008-03-161-1/+1
|
* ran reindentJarrod Millman2008-02-081-10/+10
|
* Return as soon as possible of no sconscripts is detected in scons command, toDavid Cournapeau2008-01-251-0/+3
| | | | avoid importing numscons when not needed
* Make distutils command build run scons commandDavid Cournapeau2008-01-251-0/+6
|
* Define various scons related functions to call numscons instead of beingDavid Cournapeau2008-01-061-3/+6
| | | | | defined directly in numpy, for bootstrapping issues.
* Use separate numscons package instead of internal local copyDavid Cournapeau2008-01-061-2/+9
|
* Add scons command to numpy distutils.David Cournapeau2008-01-061-0/+322
|
* Merged revisions 4612-4617,4628-4631,4638 via svnmerge from David Cournapeau2008-01-061-0/+15
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | http://svn.scipy.org/svn/numpy/branches/cleanconfig_rtm ................ r4612 | cdavid | 2007-12-18 17:58:13 +0900 (Tue, 18 Dec 2007) | 3 lines Initialized merge tracking via "svnmerge" with revisions "1-4611" from http://svn.scipy.org/svn/numpy/trunk ................ r4613 | cdavid | 2007-12-18 18:26:38 +0900 (Tue, 18 Dec 2007) | 1 line Clean ndarrayobject.h headers: do not use SIZEOF_*, but NPY_SIZEOF... ................ r4614 | cdavid | 2007-12-18 18:33:11 +0900 (Tue, 18 Dec 2007) | 1 line Refactor the NPY_ALLOW_THREAD logic outside config.h generation, and put it inside numpy headers ................ r4615 | cdavid | 2007-12-18 18:46:34 +0900 (Tue, 18 Dec 2007) | 1 line separate config.h (private header) and numpyconfig.h (public header) ................ r4616 | cdavid | 2007-12-18 18:57:21 +0900 (Tue, 18 Dec 2007) | 2 lines Add CHAR_BITS as a public symbol in numpyconfig header ................ r4617 | cdavid | 2007-12-18 19:05:38 +0900 (Tue, 18 Dec 2007) | 1 line Fix escaping problem when generating numpyconfig.h on win32 ................ r4628 | cdavid | 2007-12-22 12:20:08 +0900 (Sat, 22 Dec 2007) | 1 line Add code to test for a declaration in header ................ r4629 | cdavid | 2007-12-22 14:52:38 +0900 (Sat, 22 Dec 2007) | 1 line Add a check_decl function to check for declaration ................ r4630 | cdavid | 2007-12-22 15:28:11 +0900 (Sat, 22 Dec 2007) | 1 line Remove distutils test for C declaration from numpy.core, since it is put in distutils now ................ r4631 | cdavid | 2007-12-22 15:58:15 +0900 (Sat, 22 Dec 2007) | 18 lines Merged revisions 4612-4630 via svnmerge from http://svn.scipy.org/svn/numpy/trunk ........ r4620 | cdavid | 2007-12-18 19:41:22 +0900 (Tue, 18 Dec 2007) | 3 lines Initialized merge tracking via "svnmerge" with revisions "1-4619" from http://svn.scipy.org/svn/numpy/branches/distutils_scons_command ........ r4624 | rc | 2007-12-20 19:30:45 +0900 (Thu, 20 Dec 2007) | 2 lines fixed setmember1d for string arrays ........ r4626 | stefan | 2007-12-21 18:00:24 +0900 (Fri, 21 Dec 2007) | 2 lines Add test for setdiff1d on character arrays. ........ ................ r4638 | cdavid | 2007-12-22 18:21:25 +0900 (Sat, 22 Dec 2007) | 1 line Get MATHLIB from numpyconfig.h, not from config.h anymore ................
| * Add a check_decl function to check for declarationDavid Cournapeau2007-12-221-0/+15
| |
* | Replace numpy.distutils.exec_command.splitcmdline with shlex.split instead.cookedm2007-12-261-3/+3
|/ | | | | | | | It has the same problems as our old numpy.distutils.ccompiler.split_quoted. splitcmdline still exists, but uses shlex.split, and issues a DeprecationWarning This has the positive side effect of not having numpy.distutils pulled in when numpy is imported -- there was a use of splitcmdline in numpy.testing.
* Make sure the develop command can handle generated script files.Robert Kern2007-12-122-2/+9
|
* Make the 'develop' command from setuptools run build_src --inplace in ↵Robert Kern2007-12-122-0/+15
| | | | addition to build_ext --inplace. This allows SWIG wrappers to be correctly generated.
* use 'in' keyword to test dictionary membershipJarrod Millman2007-11-282-5/+5
|
* Back out change made in r4380 which causes scipy.fftpack not to build correctly.Travis Oliphant2007-11-081-6/+1
|
* numpy.distutils.command.build_ext: append build C libraries as dependencies ofcookedm2007-11-031-1/+7
| | | | the extension, to force recompiling if they change. (It should really only force relinking, but adding that is tougher.)
* Refactor Pyrex source building into a separate method in build_src.pycookedm2007-11-031-25/+33
|
* ran reindent.py to clean up whitespaceJarrod Millman2007-10-292-2/+1
|
* fixing link error: fixed. Removing debug messages and added a warning ↵Pearu Peterson2007-09-231-2/+0
| | | | message on the situation that triggered this issue: numpy.distutils must always be imported before distutils.
* fixing link error: added debug message, 3.Pearu Peterson2007-09-231-0/+2
|
* Optionally use setuptools for commands that setuptools customizes.Robert Kern2007-08-082-2/+10
|
* More fixes for building scipy with Mingw32 compilers.Pearu Peterson2007-07-253-8/+13
|
* Import Pyrex.Compiler.Main explicitly since in 0.9.5.1, it does not appear ↵Robert Kern2007-07-021-1/+1
| | | | to be imported with a plain 'import Pyrex.Compiler'
* Better version handling in fcompilercookedm2007-06-152-5/+6
| | | | | | | | | | | | | | | | | | | | | | * Remove FCompiler.get_version_cmd, FCompiler.get_flags_version, FCompiler.get_linker_so_cmd, and FCompiler.get_linker_exe_cmd; subclasses should do this in FCompiler.update_executables() * FCompiler attributes .compiler_f77, .version_cmd, etc., are now properties that read from the .executables dictionary. * Update intel.py and absoft.py for above * Add extra asserts for defensive programming. Most of our problems here seem to come from bad values being generated, and the error not being caught until later. * must call FCompiler.customize() before FCompiler.get_version(); command/build_ext.py and command/config.py updated * verify that commands make sense earlier -- must be None or lists of strings Also, * add IA-32 as another pattern to search for in 32-bit Intel compiler version. * minor formatting * add debugging helpers to environment.py:EnvironmentConfig class
* Minor refactoring of build_clib (break up build_library a bit)cookedm2007-06-151-153/+156
|
* Fix issues with undetected Fortran compilers.Pearu Peterson2007-05-312-3/+9
|
* do an appropiate behaviour in the distutils commands when new_fcompiler ↵cookedm2007-05-313-15/+18
| | | | returns None
* Use log.info instead of print in setup.py'scookedm2007-05-281-2/+4
|
* distutils: clean up imports (found by running pyflakes)cookedm2007-05-253-7/+8
|
* merge from distutils-revamp branch (step 3)cookedm2007-05-251-25/+19
| | | | - minor command/build_src cleanup
* minor cleanups in numpy.distutils (style mostly)cookedm2007-05-215-71/+60
|
* Clean up and completed (hopefully) MSVC support.Pearu Peterson2007-05-192-9/+41
|
* win32: fix install when build has been carried out earlier.Pearu Peterson2007-05-191-4/+4
|
* More typo fixes.Pearu Peterson2007-05-191-3/+1
|
* Fix typo.Pearu Peterson2007-05-191-1/+1
|
* Fix atlas version detection when using MSVC compilerPearu Peterson2007-05-191-0/+38
|
* Fix fcompiler/compiler unification warning.Pearu Peterson2007-05-191-2/+6
|
* Fix for win32 platform.Pearu Peterson2007-05-191-0/+1
|
* Add descriptions to config_fc and config_cc commands.Pearu Peterson2007-05-181-1/+4
|
* Added --fcompiler,--help-fcompiler options to build command parallel to ↵Pearu Peterson2007-05-182-5/+22
| | | | --compiler,--help-compiler options.
* show less messages in --help-fcompilerPearu Peterson2007-05-181-1/+1
|
* Added --help-fcompiler option to build_ext command.Pearu Peterson2007-05-181-1/+6
|
* added config to --fcompiler option unification method. introduced config_cc ↵Pearu Peterson2007-05-183-13/+46
| | | | for unifying --compiler options.
* unify config_fc, build_clib, build_ext commands --fcompiler options so that ↵Pearu Peterson2007-05-184-11/+23
| | | | --fcompiler can be specified only once in a command line
* Fixed warnings on language changes.Pearu Peterson2007-05-181-1/+1
|
* Extension modules and libraries are built with suitable compilers/linkers. ↵Pearu Peterson2007-05-182-177/+295
| | | | Improved failure handling.
* build_src: introduced --swig and other related options (as in std distutils ↵Pearu Peterson2007-05-181-51/+97
| | | | build_ext command), use --f2py-opts instead of --f2pyflags, improved error messages.