Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove print statements which should not have been committed. | David Cournapeau | 2009-04-21 | 1 | -3/+0 | |
| | ||||||
* | Move is_bootstrapping outside scons command, may be useful elsewhere. | David Cournapeau | 2009-04-21 | 1 | -0/+3 | |
| | ||||||
* | Remove tabs and unnecessary whitespace. | Stefan van der Walt | 2009-04-16 | 1 | -4/+4 | |
| | ||||||
* | Back out VS 2003 hack - it is too fragile. | David Cournapeau | 2009-03-12 | 1 | -4/+1 | |
| | ||||||
* | Ugly hack to workaround some bug in mingw to make VS 2003 work with gfortran. | David Cournapeau | 2009-03-11 | 1 | -1/+14 | |
| | ||||||
* | Remove handling of MS_WIN64 in commands: deal with it in mingw tool only. | David Cournapeau | 2008-12-20 | 1 | -8/+0 | |
| | ||||||
* | Fix macro def. | David Cournapeau | 2008-12-19 | 1 | -1/+1 | |
| | ||||||
* | Use a tuple when defining the MS_WIN64 macro. | David Cournapeau | 2008-12-19 | 1 | -1/+1 | |
| | ||||||
* | Forgot to import get_build_architecture. | David Cournapeau | 2008-12-19 | 1 | -1/+1 | |
| | ||||||
* | Add MS_WIN64 macro when built on amd64 + mingw. | David Cournapeau | 2008-12-19 | 1 | -0/+8 | |
| | ||||||
* | BUG: reinitialize_command(**kwds) is a setuptools override of the distutils ↵ | Robert Kern | 2008-08-23 | 1 | -1/+2 | |
| | | | | API. Set the attribute directly, instead. | |||||
* | Run scons command in build_ext instead of build. | David Cournapeau | 2008-08-20 | 1 | -0/+5 | |
| | | | | | | | setuptools develop run build_ext inplace, not build, so develop command in setuptools would not call the scons command. Now, the develop mode should work with numscons. | |||||
* | use 'in' keyword to test dictionary membership | Jarrod Millman | 2007-11-28 | 1 | -2/+2 | |
| | ||||||
* | Back out change made in r4380 which causes scipy.fftpack not to build correctly. | Travis Oliphant | 2007-11-08 | 1 | -6/+1 | |
| | ||||||
* | numpy.distutils.command.build_ext: append build C libraries as dependencies of | cookedm | 2007-11-03 | 1 | -1/+7 | |
| | | | | the extension, to force recompiling if they change. (It should really only force relinking, but adding that is tougher.) | |||||
* | fixing link error: fixed. Removing debug messages and added a warning ↵ | Pearu Peterson | 2007-09-23 | 1 | -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 Peterson | 2007-09-23 | 1 | -0/+2 | |
| | ||||||
* | More fixes for building scipy with Mingw32 compilers. | Pearu Peterson | 2007-07-25 | 1 | -5/+7 | |
| | ||||||
* | Better version handling in fcompiler | cookedm | 2007-06-15 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | * 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 | |||||
* | Fix issues with undetected Fortran compilers. | Pearu Peterson | 2007-05-31 | 1 | -2/+8 | |
| | ||||||
* | do an appropiate behaviour in the distutils commands when new_fcompiler ↵ | cookedm | 2007-05-31 | 1 | -2/+2 | |
| | | | | returns None | |||||
* | minor cleanups in numpy.distutils (style mostly) | cookedm | 2007-05-21 | 1 | -51/+53 | |
| | ||||||
* | Clean up and completed (hopefully) MSVC support. | Pearu Peterson | 2007-05-19 | 1 | -5/+31 | |
| | ||||||
* | Fix for win32 platform. | Pearu Peterson | 2007-05-19 | 1 | -0/+1 | |
| | ||||||
* | Added --help-fcompiler option to build_ext command. | Pearu Peterson | 2007-05-18 | 1 | -1/+6 | |
| | ||||||
* | unify config_fc, build_clib, build_ext commands --fcompiler options so that ↵ | Pearu Peterson | 2007-05-18 | 1 | -4/+1 | |
| | | | | --fcompiler can be specified only once in a command line | |||||
* | Fixed warnings on language changes. | Pearu Peterson | 2007-05-18 | 1 | -1/+1 | |
| | ||||||
* | Extension modules and libraries are built with suitable compilers/linkers. ↵ | Pearu Peterson | 2007-05-18 | 1 | -152/+212 | |
| | | | | Improved failure handling. | |||||
* | Some distutils work: | cookedm | 2007-04-22 | 1 | -26/+14 | |
| | | | | | | | | | | | | | | - Add better support for C++ in numpy.distutils. Instead of munging the C compiler command, build_clib and build_ext call the new Compiler.cxx_compiler() method to get a version of the compiler suitable for C++ (this also takes care of the special needs of AIX). - If config_fc is specified in the Extension definition, merge that info instead of replacing it (otherwise, the name of the Fortran compiler is overwritten). This is done at the key level (ex., compiler options are replaced instead of appended). - clean up compiler.py a bit - clean up linking in build_ext | |||||
* | Fix command dependencies for build_ext. This should fix a number of problems ↵ | Robert Kern | 2007-04-15 | 1 | -3/+2 | |
| | | | | where the full 'build_src build_clib build_ext' chain of commands needed to be specified. | |||||
* | Fix typo. | Stefan van der Walt | 2006-11-04 | 1 | -1/+1 | |
| | ||||||
* | numpy.distutils: use language flag or source file extension to select ↵ | Pearu Peterson | 2006-10-08 | 1 | -1/+9 | |
| | | | | default f77 or f90 compiler. | |||||
* | Fix #114: Problems with building with MSVC and GCC under Cygwin | cookedm | 2006-07-28 | 1 | -4/+33 | |
| | ||||||
* | Fixed ticket 4 | Pearu Peterson | 2006-02-15 | 1 | -0/+3 | |
| | ||||||
* | Back out mistaken commit | Robert Kern | 2006-02-09 | 1 | -1/+0 | |
| | ||||||
* | Fixed join() -> os.path.join() | Robert Kern | 2006-02-09 | 1 | -0/+1 | |
| | ||||||
* | Remove unused imports | cookedm | 2006-02-02 | 1 | -7/+6 | |
| | ||||||
* | Replace type(a) is (something) with appropiate is_string/is_sequence tests | cookedm | 2006-02-01 | 1 | -3/+2 | |
| | ||||||
* | Changed all references to scipy to numpy | Travis Oliphant | 2006-01-04 | 1 | -5/+5 | |
| | ||||||
* | Moved scipy directory to numpy | Travis Oliphant | 2006-01-04 | 1 | -0/+349 | |