Searched refs:otherLibs (Results 1 – 5 of 5) sorted by relevance
| /petsc/config/PETSc/ |
| H A D | petsc.py | 219 def setOtherLibs(self, otherLibs): argument 220 self._otherLibs = otherLibs 221 otherLibs = property(getOtherLibs, setOtherLibs, doc = 'Libraries needed to link PETSc') variable in Configure 236 …(self.libraries.check(libraries, 'PetscInitializeNoArguments', otherLibs = self.otherLibs, prototy… 237 …self.libraries.check(libraries, 'VecDestroy', otherLibs = self.otherLibs, prototype = 'typedef str… 238 …self.libraries.check(libraries, 'MatDestroy', otherLibs = self.otherLibs, prototype = 'typedef str… 239 …self.libraries.check(libraries, 'DMDestroy', otherLibs = self.otherLibs, prototype = 'typedef stru… 240 …self.libraries.check(libraries, 'KSPDestroy', otherLibs = self.otherLibs, prototype = 'typedef str… 241 …self.libraries.check(libraries, 'SNESDestroy', otherLibs = self.otherLibs, prototype = 'typedef st… 242 …self.libraries.check(libraries, 'TSDestroy', otherLibs = self.otherLibs, prototype = 'typedef stru… [all …]
|
| /petsc/config/BuildSystem/config/ |
| H A D | libraries.py | 112 …def add(self, libName, funcs, libDir = None, otherLibs = [], prototype = '', call = '', fortranMan… argument 117 if self.check(libName, funcs, libDir, otherLibs, prototype, call, fortranMangle): 186 …def check(self, libName, funcs, libDir = None, otherLibs = [], prototype = '', call = '', fortranM… argument 225 self.logPrint('No functions to check for in library '+str(libName)+' '+str(otherLibs)) 227 …ogPrint('Checking for functions ['+' '.join(funcs)+'] in library '+str(libName)+' '+str(otherLibs)) 256 if libName and otherLibs: 257 self.setCompilers.LIBS = ' '+self.toString(libName+otherLibs) +' '+ self.setCompilers.LIBS 258 elif otherLibs: 259 self.setCompilers.LIBS = ' '+self.toString(otherLibs) +' '+ self.setCompilers.LIBS 303 …def checkClassify(self, libName, funcs, libDir=None, otherLibs=[], prototype='', call='', fortranM… argument [all …]
|
| /petsc/config/BuildSystem/config/packages/ |
| H A D | BlasLapack.py | 86 otherLibs = [] 88 otherLibs += blasLibrary 89 otherLibs += self.dlib 90 return otherLibs 92 def checkBlas(self, blasLibrary, otherLibs, mangling = None, routinesIn = ['dot']): argument 98 _, missing = self.libraries.checkClassify(blasLibrary, routines, otherLibs = otherLibs) 102 def checkLapack(self, lapackLibrary, otherLibs, mangling = None, routinesIn = ['getrs','geev']): argument 107 _, missing = self.libraries.checkClassify(lapackLibrary, routines, otherLibs = otherLibs)
|
| H A D | ParMETIS.py | 45 …if self.libraries.check(self.lib, 'ParMETIS_ComputeVertexSeparator',otherLibs=self.metis.lib+self.…
|
| H A D | Chaco.py | 59 if not self.libraries.check(self.lib, 'ddot_chaco',otherLibs=self.mathlib.lib):
|