summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler
Commit message (Collapse)AuthorAgeFilesLines
* Added Portland Group compiler support for Darwin platform (thanks to Josef ↵Pearu Peterson2010-10-062-4/+23
| | | | Koller).
* ENH: Update absoft fortran flags for v11.0.Charles Harris2010-09-251-1/+3
|
* BUG: distutils: make is_free_format et al. not choke on non-ascii Fortran filesPauli Virtanen2010-09-111-3/+5
|
* BUG: Enable compiling Fortran code on OS X for ppc64 arch.rgommers2010-06-021-8/+8
| | | | Thanks to David Warde-Farley. Fixes #1399.
* BUG: Fix #1376, indentation problem.Travis Oliphant2010-02-041-2/+2
|
* Apply ifort.patch from ticket #1372 to allow Intel Fortran Compiler 11.1 to ↵Travis Oliphant2010-01-242-4/+17
| | | | be called by numpy.distutils.
* BUG: fix 1087, thanks to Leek for the fix.David Cournapeau2009-12-101-16/+17
|
* 3K: distutils: remove unnecessary non-ascii characters in intel.pyPauli Virtanen2009-12-061-8/+0
|
* 3K: distutils: ordering between None and str is undefined in Py3K, so ↵Pauli Virtanen2009-12-061-1/+4
| | | | fcompiler should raise CompilerNotFound when version is undefined
* 3K: distutils: there is no types.InstanceType in Py3, so don't use itPauli Virtanen2009-12-061-1/+2
|
* Py3k: Fix comparison when version is None.David Cournapeau2009-12-031-2/+5
|
* Fix version comparison when version is None.David Cournapeau2009-12-031-1/+1
|
* BUG: fix mixed tab/space indentation.David Cournapeau2009-12-031-10/+10
|
* Py3k: make fcompiler.compaq py3k-importable.David Cournapeau2009-12-031-5/+9
|
* Py3k: make fcompiler module py3k-importable.David Cournapeau2009-12-031-12/+16
|
* Fix print statements in fcompiler for python3.David Cournapeau2009-12-0315-25/+25
|
* Apply fix for sun compilation from beffa. Closes ticket #1248.Charles Harris2009-11-031-1/+1
|
* BUG: fix the detection of architectures on OS X.Robert Kern2009-09-021-4/+3
|
* Use subprocess instead of exec_command to detect universal archs of gfortran.David Cournapeau2009-08-271-1/+4
|
* Update mingw-w64 support for gfortran.David Cournapeau2009-08-261-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 Cournapeau2009-06-301-0/+2
|
* Update gfortran support on win64David Cournapeau2009-06-301-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.
* BUG: update version_match for recent version of ifort for IA-64 (#1145).David Cournapeau2009-06-201-1/+1
|
* Add x86_64 arch flag if gfortran supports it.David Cournapeau2009-04-201-1/+1
|
* Make _can_target a function.David Cournapeau2009-04-201-17/+14
|
* Remove tabs and unnecessary whitespace.Stefan van der Walt2009-04-161-2/+2
|
* Do not detect universal flags on platform != darwin.David Cournapeau2009-03-281-0/+2
|
* BUG: Fix goftran universal flags settings (#1067).David Cournapeau2009-03-281-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.
* Trap another kind of exception for MSVC9 in compaq fcompiler.David Cournapeau2009-02-251-0/+4
|
* Unhelpful message for compaq fortran compiler.David Cournapeau2009-02-201-1/+1
|
* Trust user's specification of MACOSX_DEPLOYMENT_TARGET [patch by BrianStefan van der Walt2009-02-121-14/+22
| | | | Granger].
* ran reindentJarrod Millman2008-12-311-21/+21
|
* BUG (#970): this commit should fix the actual bug, which albeeit linked to ↵David Cournapeau2008-12-271-0/+4
| | | | commir r6200, was caused in anoter code path.
* Add mingw32 and mingwex libraries as runtime libraries for extensions which ↵David Cournapeau2008-12-161-0/+7
| | | | use fortran and are built with gfortran+MS compiler.
* Fix overriding of library_dirs.David Cournapeau2008-12-161-1/+1
|
* Add target specific lib dir for gfortran on windows when msvc is the C compiler.David Cournapeau2008-12-161-0/+15
|
* Fix get_target.David Cournapeau2008-12-161-1/+1
|
* Add a function to get configured target for gfortran.David Cournapeau2008-12-161-0/+11
|
* BUG: Do not harcode fortran runtime when copying it on windows. Should fix #969.David Cournapeau2008-12-161-2/+2
|
* Remove cpu/arch specific optimization flags for GNU fortran compilers: they ↵David Cournapeau2008-11-061-97/+1
| | | | are too fragile, and are more likely not that useful anyway.
* Fix debug mode with fortran compiler: the tuple for debug was too big, with ↵David Cournapeau2008-08-241-1/+1
| | | | an extra None (#539)
* Add VisualCompaq compiler to the list of fortran compilers if platform is ↵David Cournapeau2008-03-221-1/+1
| | | | cygwin.
* Fix type. Sorry about that.Pearu Peterson2008-02-121-3/+3
|
* hpux fortran compiler support: patch from an user feedback.Pearu Peterson2008-02-121-2/+5
|
* Also link with Python.Robert Kern2007-12-161-1/+1
|
* Typo.Robert Kern2007-12-041-1/+1
|
* Use the correct link parameters for shared libraries with Intel Fortran on OS X.Robert Kern2007-12-041-0/+10
|
* The PIC flag changed in the 10 version of the Intel Fortran compiler.Robert Kern2007-12-041-10/+8
|
* ran reindent.py to clean up whitespaceJarrod Millman2007-10-291-1/+1
|
* distutils/fcompiler/gnu.py: add -march=k8 when cpu.is_AMD64()cookedm2007-10-021-0/+3
|