Пример #1
0
 def get_libraries(self):
     opt = FCompiler.get_libraries(self)
     if self.get_version() >= '10.0':
         opt.extend(['af90math', 'afio', 'af77math', 'U77'])
     elif self.get_version() >= '8.0':
         opt.extend(['f90math','fio','f77math','U77'])
     else:
         opt.extend(['fio','f90math','fmath','U77'])
     if os.name =='nt':
         opt.append('COMDLG32')
     return opt
Пример #2
0
 def get_libraries(self):
     opt = FCompiler.get_libraries(self)
     if self.get_version() >= "10.0":
         opt.extend(["af90math", "afio", "af77math", "U77"])
     elif self.get_version() >= "8.0":
         opt.extend(["f90math", "fio", "f77math", "U77"])
     else:
         opt.extend(["fio", "f90math", "fmath", "U77"])
     if os.name == "nt":
         opt.append("COMDLG32")
     return opt
Пример #3
0
 def get_libraries(self):
     opt = FCompiler.get_libraries(self)
     if self.get_version() >= '10.0':
         opt.extend(['af90math', 'afio', 'af77math', 'U77'])
     elif self.get_version() >= '8.0':
         opt.extend(['f90math', 'fio', 'f77math', 'U77'])
     else:
         opt.extend(['fio', 'f90math', 'fmath', 'U77'])
     if os.name == 'nt':
         opt.append('COMDLG32')
     return opt
Пример #4
0
 def get_libraries(self):
     opt = FCompiler.get_libraries(self)
     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"])
     else:
         opt.extend(["fio", "f90math", "fmath", "U77"])
     if os.name == "nt":
         opt.append("COMDLG32")
     return opt
Пример #5
0
 def get_libraries(self):
     opt = FCompiler.get_libraries(self)
     opt.extend(['flang', 'flangrti', 'ompstub'])
     return opt
Пример #6
0
Файл: pg.py Проект: Horta/numpy
 def get_libraries(self):
     opt = FCompiler.get_libraries(self)
     opt.extend(['flang', 'flangrti', 'ompstub'])
     return opt
Пример #7
0
 def get_libraries(self):
     opt = FCompiler.get_libraries(self)
     opt.extend(["flang", "flangrti", "ompstub"])
     return opt