Lines Matching refs:compilers
93 self.compilers = framework.require('config.compilers', self)
214 libs = self.compilers.flibs[:]
234 oldLibs = self.compilers.LIBS
244 self.compilers.LIBS = oldLibs
249 oldFlags = self.compilers.CPPFLAGS
250 self.compilers.CPPFLAGS += ' '.join([self.headers.getIncludeArgument(inc) for inc in includeDir])
252 self.compilers.CPPFLAGS += ' '+self.otherIncludes
256 self.compilers.CPPFLAGS = oldFlags
262 oldFlags = self.compilers.CPPFLAGS
263 self.compilers.CPPFLAGS += ' '.join([self.headers.getIncludeArgument(inc) for inc in self.getInclude(useTrial = 1)])
265 self.compilers.CPPFLAGS += ' '+self.otherIncludes
266 oldLibs = self.compilers.LIBS
267 self.compilers.LIBS = ' '.join([self.libraries.getLibArgument(lib) for lib in self.getLib(useTrial = 1)+self.otherLibs])+' '+self.compilers.LIBS
270 self.compilers.CPPFLAGS = oldFlags
271 self.compilers.LIBS = oldLibs
283 if hasattr(self.compilers, 'CXX') and self.languages.clanguage == 'C':
293 if hasattr(self.compilers, 'FC'):