diff options
author | Travis Oliphant <oliphant@enthought.com> | 2004-03-11 20:20:03 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2004-03-11 20:20:03 +0000 |
commit | 8d935d1126580300b0340a5ef65b4ec6378a50d9 (patch) | |
tree | 24324335b5d5a344f21ddf35b2a8392632cd9a68 /scipy_distutils/absoftfcompiler.py | |
parent | cf8d1e6eedf7171969771dcec1218a8258d1731f (diff) | |
download | numpy-8d935d1126580300b0340a5ef65b4ec6378a50d9.tar.gz |
Fixed dependency libraries on absoft compiler.
Diffstat (limited to 'scipy_distutils/absoftfcompiler.py')
-rw-r--r-- | scipy_distutils/absoftfcompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/absoftfcompiler.py b/scipy_distutils/absoftfcompiler.py index 15dfa9ef6..eea051162 100644 --- a/scipy_distutils/absoftfcompiler.py +++ b/scipy_distutils/absoftfcompiler.py @@ -42,7 +42,7 @@ class AbsoftFCompiler(FCompiler): def get_libraries(self): opt = FCompiler.get_libraries(self) - opt.extend(['fio','f77math','f90math']) + opt.extend(['fio','f90math','fmath']) if os.name =='nt': opt.append('COMDLG32') return opt |