summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2010-09-25 07:46:44 -0600
committerCharles Harris <charlesr.harris@gmail.com>2010-09-25 07:46:44 -0600
commita1d54a888bfa33d9f97881f78cafe92a39839b3f (patch)
tree82e3095684c2a026d6812b082bf5cfb186fe471f
parent50479e9a6f6d07e92fa2f16dbb8abfadf83c332d (diff)
downloadnumpy-a1d54a888bfa33d9f97881f78cafe92a39839b3f.tar.gz
ENH: Update absoft fortran flags for v11.0.
-rw-r--r--numpy/distutils/fcompiler/absoft.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/absoft.py b/numpy/distutils/fcompiler/absoft.py
index f14502d10..e36f0ff78 100644
--- a/numpy/distutils/fcompiler/absoft.py
+++ b/numpy/distutils/fcompiler/absoft.py
@@ -91,7 +91,9 @@ class AbsoftFCompiler(FCompiler):
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'])