Navigation Menu

Skip to content

Commit

Permalink
ENH: Update absoft fortran flags for v11.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
charris committed Sep 25, 2010
1 parent b288b51 commit 288178e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion numpy/distutils/fcompiler/absoft.py
Expand Up @@ -91,7 +91,9 @@ def get_library_dirs(self):

def get_libraries(self):
opt = FCompiler.get_libraries(self)
if self.get_version() >= '10.0':
if self.get_version() >= '11.0':
opt.extend(['af90math', 'afio', 'af77math', 'amisc'])
elif self.get_version() >= '10.0':
opt.extend(['af90math', 'afio', 'af77math', 'U77'])
elif self.get_version() >= '8.0':
opt.extend(['f90math','fio','f77math','U77'])
Expand Down

0 comments on commit 288178e

Please sign in to comment.