diff options
author | cookedm <cookedm@localhost> | 2007-05-28 17:59:49 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2007-05-28 17:59:49 +0000 |
commit | 9474991300d3e59a1d7249d155e85c7d9f162fe9 (patch) | |
tree | e4c2a96f3c9bf9a36aba81c55c6b7f36adee0b0e /numpy/distutils/fcompiler/absoft.py | |
parent | 60eed2d138f5fd08fc8fa016debbac097371a47d (diff) | |
download | numpy-9474991300d3e59a1d7249d155e85c7d9f162fe9.tar.gz |
fix my mistake in fcompiler/absoft.py and fcompiler/intel.py
Diffstat (limited to 'numpy/distutils/fcompiler/absoft.py')
-rw-r--r-- | numpy/distutils/fcompiler/absoft.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/fcompiler/absoft.py b/numpy/distutils/fcompiler/absoft.py index 32a58fd31..b14a59b26 100644 --- a/numpy/distutils/fcompiler/absoft.py +++ b/numpy/distutils/fcompiler/absoft.py @@ -30,7 +30,7 @@ class AbsoftFCompiler(FCompiler): # Note that fink installs g77 as f77, so need to use f90 for detection. executables = { - 'version_cmd' : None, + 'version_cmd' : ['<F90>', None], 'compiler_f77' : ["f77"], 'compiler_fix' : ["f90"], 'compiler_f90' : ["f90"], @@ -45,9 +45,9 @@ class AbsoftFCompiler(FCompiler): module_dir_switch = None module_include_switch = '-p' - def get_version_cmd(self): + def get_flags_version(self): f = cyg2win32(dummy_fortran_file()) - return ['<F90>', '-V', '-c', f+'.f', '-o', f+'.o'] + return ['-V', '-c', f+'.f', '-o', f+'.o'] def get_flags_linker_so(self): if os.name=='nt': |