| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
avoid importing numscons when not needed
|
| |
|
|
|
|
|
| |
defined directly in numpy, for bootstrapping issues.
|
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
................
|
| | |
|
|/
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
addition to build_ext --inplace. This allows SWIG wrappers to be correctly generated.
|
| |
|
| |
|
|
|
|
| |
the extension, to force recompiling if they change. (It should really only force relinking, but adding that is tougher.)
|
| |
|
| |
|
|
|
|
| |
message on the situation that triggered this issue: numpy.distutils must always be imported before distutils.
|
| |
|
| |
|
| |
|
|
|
|
| |
to be imported with a plain 'import Pyrex.Compiler'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
| |
|
| |
|
|
|
|
| |
returns None
|
| |
|
| |
|
|
|
|
| |
- minor command/build_src cleanup
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
--compiler,--help-compiler options.
|
| |
|
| |
|
|
|
|
| |
for unifying --compiler options.
|
|
|
|
| |
--fcompiler can be specified only once in a command line
|
| |
|
|
|
|
| |
Improved failure handling.
|
|
|
|
| |
build_ext command), use --f2py-opts instead of --f2pyflags, improved error messages.
|