diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-20 21:47:15 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-20 21:47:15 +0000 |
commit | 162bec714f575c1986b4c5ba57a7dbebb15002a0 (patch) | |
tree | 7f5fd3e758913dfa605a30c832abb95c82ccc288 /scipy_distutils/absoftfcompiler.py | |
parent | b90246483e3c5454bb9ee695ff864597804697b0 (diff) | |
download | numpy-162bec714f575c1986b4c5ba57a7dbebb15002a0.tar.gz |
Completed support for darwin native blas/lapack
Diffstat (limited to 'scipy_distutils/absoftfcompiler.py')
-rw-r--r-- | scipy_distutils/absoftfcompiler.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scipy_distutils/absoftfcompiler.py b/scipy_distutils/absoftfcompiler.py index efee2dde9..84dd00a16 100644 --- a/scipy_distutils/absoftfcompiler.py +++ b/scipy_distutils/absoftfcompiler.py @@ -13,6 +13,10 @@ class AbsoftFCompiler(FCompiler): compiler_type = 'absoft' version_pattern = r'FORTRAN 77 Compiler (?P<version>[^\s*,]*).*?Absoft Corp' + # samt5735(8)$ f90 -V -c dummy.f + # f90: Copyright Absoft Corporation 1994-2002; Absoft Pro FORTRAN Version 8.0 + # Note that fink installs g77 as f77, so need to use f90 for detection. + executables = { 'version_cmd' : ["f77", "-V -c %(fname)s.f -o %(fname)s.o" \ % {'fname':dummy_fortran_file()}], |