예제 #1
0
파일: absoft.py 프로젝트: Ademan/NumPy-GSoC
 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
파일: absoft.py 프로젝트: freddycra/numpy
 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
파일: pg.py 프로젝트: trschwab/csci479
 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