Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BUG: Enable compiling Fortran code on OS X for ppc64 arch. | rgommers | 2010-06-02 | 1 | -8/+8 |
| | | | | Thanks to David Warde-Farley. Fixes #1399. | ||||
* | BUG: Fix #1376, indentation problem. | Travis Oliphant | 2010-02-04 | 1 | -2/+2 |
| | |||||
* | BUG: fix 1087, thanks to Leek for the fix. | David Cournapeau | 2009-12-10 | 1 | -16/+17 |
| | |||||
* | Py3k: Fix comparison when version is None. | David Cournapeau | 2009-12-03 | 1 | -2/+5 |
| | |||||
* | BUG: fix mixed tab/space indentation. | David Cournapeau | 2009-12-03 | 1 | -10/+10 |
| | |||||
* | Fix print statements in fcompiler for python3. | David Cournapeau | 2009-12-03 | 1 | -3/+3 |
| | |||||
* | BUG: fix the detection of architectures on OS X. | Robert Kern | 2009-09-02 | 1 | -4/+3 |
| | |||||
* | Use subprocess instead of exec_command to detect universal archs of gfortran. | David Cournapeau | 2009-08-27 | 1 | -1/+4 |
| | |||||
* | Update mingw-w64 support for gfortran. | David Cournapeau | 2009-08-26 | 1 | -1/+2 |
| | | | | | Gfortran does not append a leading underscore anymore, so the -fno-leading-underscore is not necessary anymore. | ||||
* | Fix missing variable def in gfortran tool. | David Cournapeau | 2009-06-30 | 1 | -0/+2 |
| | |||||
* | Update gfortran support on win64 | David Cournapeau | 2009-06-30 | 1 | -3/+23 |
| | | | | | | | We don't link the gfortran runtime when built with MS compilers: there are some incompatibilities between libgfortran and dependent libraries (mingwex, etc..) and the MS C runtime. Instead, we will implement the needed function from libgfortran and compile it with MS compiler, with the MS C runtime. | ||||
* | Add x86_64 arch flag if gfortran supports it. | David Cournapeau | 2009-04-20 | 1 | -1/+1 |
| | |||||
* | Make _can_target a function. | David Cournapeau | 2009-04-20 | 1 | -17/+14 |
| | |||||
* | Do not detect universal flags on platform != darwin. | David Cournapeau | 2009-03-28 | 1 | -0/+2 |
| | |||||
* | BUG: Fix goftran universal flags settings (#1067). | David Cournapeau | 2009-03-28 | 1 | -35/+36 |
| | | | | | | | | Arch flags were detected and set for both linkers and compiler. Since they both used the compiler_f90 as the underlying command, arch flags were added twice to the compiler command for universal detection, which rendered the verbose output of gfortran useless. | ||||
* | Trust user's specification of MACOSX_DEPLOYMENT_TARGET [patch by Brian | Stefan van der Walt | 2009-02-12 | 1 | -14/+22 |
| | | | | Granger]. | ||||
* | ran reindent | Jarrod Millman | 2008-12-31 | 1 | -21/+21 |
| | |||||
* | Add mingw32 and mingwex libraries as runtime libraries for extensions which ↵ | David Cournapeau | 2008-12-16 | 1 | -0/+7 |
| | | | | use fortran and are built with gfortran+MS compiler. | ||||
* | Fix overriding of library_dirs. | David Cournapeau | 2008-12-16 | 1 | -1/+1 |
| | |||||
* | Add target specific lib dir for gfortran on windows when msvc is the C compiler. | David Cournapeau | 2008-12-16 | 1 | -0/+15 |
| | |||||
* | Fix get_target. | David Cournapeau | 2008-12-16 | 1 | -1/+1 |
| | |||||
* | Add a function to get configured target for gfortran. | David Cournapeau | 2008-12-16 | 1 | -0/+11 |
| | |||||
* | BUG: Do not harcode fortran runtime when copying it on windows. Should fix #969. | David Cournapeau | 2008-12-16 | 1 | -2/+2 |
| | |||||
* | Remove cpu/arch specific optimization flags for GNU fortran compilers: they ↵ | David Cournapeau | 2008-11-06 | 1 | -97/+1 |
| | | | | are too fragile, and are more likely not that useful anyway. | ||||
* | distutils/fcompiler/gnu.py: add -march=k8 when cpu.is_AMD64() | cookedm | 2007-10-02 | 1 | -0/+3 |
| | |||||
* | Add support for universal GCC Fortran compilers on OS X (#571) | cookedm | 2007-09-10 | 1 | -0/+45 |
| | |||||
* | More fixes for building scipy with Mingw32 compilers. | Pearu Peterson | 2007-07-25 | 1 | -1/+4 |
| | |||||
* | Don't use _nt_quote_args as exec_command should | Pearu Peterson | 2007-07-25 | 1 | -3/+9 |
| | | | | | | handle spaces in program path. This fixes building numpy/scipy on Windows using mingw32 g77 with full path=C:\Program Files\MinGW\g77.exe. | ||||
* | Add support for aliases for Fortran compilers. | cookedm | 2007-07-06 | 1 | -0/+2 |
| | | | | - 'g77' for gnu, 'gfortran' for gnu95, 'ifort' for intel | ||||
* | Better version handling in fcompiler | cookedm | 2007-06-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | * 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 | ||||
* | distutils: clean up imports (found by running pyflakes) | cookedm | 2007-05-25 | 1 | -3/+1 |
| | |||||
* | merge from distutils-revamp branch (step 2) | cookedm | 2007-05-25 | 1 | -37/+26 |
| | | | | | | - fcompiler changes. All flags, executables, etc., should be overridable by the user with config_fc (either command line or setup.cfg) or by environment variables | ||||
* | With gfortran, compile modern Xeon's with EM64T with -march=nocona (#515) | cookedm | 2007-05-14 | 1 | -0/+2 |
| | |||||
* | Better version handling for gnu and intel Fortran compilers | cookedm | 2007-04-22 | 1 | -21/+61 |
| | | | | | | | | | - gnu compilers check if the version is >= 4, in which case it's gfortran - add a test file for gnu compiler check - simplify version matching on intel compilers to be more flexible - add FCompiler.find_executables so that subclasses can find executables at .customize() time, instead of when the class is created. | ||||
* | Make the gfortran version matching regex accept gfortran 4.3 on OS X | Robert Kern | 2007-03-25 | 1 | -1/+2 |
| | |||||
* | Fixed detection of Core2 CPUs (scipy ticket #349) | edschofield | 2007-02-05 | 1 | -1/+8 |
| | |||||
* | Revert semi-intelligent handling of MACOSX_DEPLOYMENT_TARGET to work around ↵ | Robert Kern | 2007-01-30 | 1 | -5/+6 |
| | | | | broken MacPorts Python. | ||||
* | Generalize the setting of MACOSX_DEPLOYMENT_TARGET. | Robert Kern | 2007-01-27 | 1 | -4/+7 |
| | |||||
* | Whitespace cleanup. | Stefan van der Walt | 2007-01-08 | 1 | -2/+1 |
| | |||||
* | numpy.distutils: use language flag or source file extension to select ↵ | Pearu Peterson | 2006-10-08 | 1 | -1/+3 |
| | | | | default f77 or f90 compiler. | ||||
* | Fix bugs in gnu and vast fcompilers (should fix #214) | cookedm | 2006-07-29 | 1 | -1/+1 |
| | |||||
* | Fix #114: Problems with building with MSVC and GCC under Cygwin | cookedm | 2006-07-28 | 1 | -11/+34 |
| | |||||
* | Add power to integer scalar types. | cookedm | 2006-06-06 | 1 | -3/+3 |
| | |||||
* | Removed cc_dynamic from libraries list for Gnu95FCompiler (darwin). | Pearu Peterson | 2006-04-08 | 1 | -0/+6 |
| | |||||
* | whoops, readd cc_dynamic to libs to link with for darwin platform. | cookedm | 2006-03-21 | 1 | -2/+2 |
| | |||||
* | For version checking of compilers, first look for a .version_match method | cookedm | 2006-03-18 | 1 | -5/+7 |
| | | | | | | | to call, then check the version_pattern regex if not found. Also add a simple_version_match function to ccompiler which does a fuzzy match. Update the GNU Fortran compilers to use version_match. | ||||
* | Run reindent.py (script distributed with Python) over the source to remove ↵ | cookedm | 2006-03-10 | 1 | -5/+5 |
| | | | | extraneous whitespace | ||||
* | Fixing mingw32 building: fixes undefined referece __EH_FRAME_BEGIN__ linker ↵ | Pearu Peterson | 2006-02-18 | 1 | -1/+5 |
| | | | | failure. | ||||
* | Applied Matthew Brett patch: clean up the logic in gnu.get_flags_arch, ↵ | Pearu Peterson | 2006-02-15 | 1 | -52/+59 |
| | | | | support to more recent cpus. | ||||
* | Back out mistaken commit | Robert Kern | 2006-02-09 | 1 | -1/+1 |
| |