Пример #1
0
 def __init__(
   self,
   configuration,
   clExe=None,
   libExe=None,
   linkExe=None,
   mtExe=None,
   rcExe=None,
   bscExe=None,
   binPaths=None,
   includePaths=None,
   libraryPaths=None,
   architecture=None,
   ):
   Compiler.__init__(
     self,
     configuration=configuration,
     binPaths=binPaths,
     includePaths=includePaths,
     libraryPaths=libraryPaths,
     )
   self.__clExe = clExe
   self.__libExe = libExe
   self.__linkExe = linkExe
   self.__mtExe = mtExe
   self.__rcExe = rcExe
   self.__bscExe = bscExe
   self.__architecture = architecture
   self.__messageExpression = re.compile(r'^(\s*)(.+)\(\d+\) :', re.MULTILINE)
   self.forcedUsings = []
Пример #2
0
 def __init__(
   self,
   configuration,
   clExe=None,
   libExe=None,
   linkExe=None,
   mtExe=None,
   rcExe=None,
   bscExe=None,
   binPaths=None,
   includePaths=None,
   libraryPaths=None,
   architecture=None,
   ):
   Compiler.__init__(
     self,
     configuration=configuration,
     binPaths=binPaths,
     includePaths=includePaths,
     libraryPaths=libraryPaths,
     )
   self.__clExe = clExe
   self.__libExe = libExe
   self.__linkExe = linkExe
   self.__mtExe = mtExe
   self.__rcExe = rcExe
   self.__bscExe = bscExe
   self.__architecture = architecture
   self.__messageExpression = re.compile(r'^(\s*)(.+)\(\d+\) :', re.MULTILINE)
   self.forcedUsings = []
Пример #3
0
 def __init__(
     self,
     configuration,
     ccExe=None,
     ldExe=None,
     binPaths=None,
 ):
     Compiler.__init__(self, configuration=configuration, binPaths=binPaths)
     self.__ccExe = ccExe
     self.__ldExe = ldExe
Пример #4
0
 def __init__(self,
              configuration,
              clangExe,
              llvmArExe,
              binPaths):
   Compiler.__init__(self, configuration=configuration, binPaths=binPaths)
   self._clangExe = clangExe
   self._llvmArExe = llvmArExe
   self.version = _getClangVersion(clangExe)
   self.versionTuple = _makeVersionTuple(self.version)
Пример #5
0
 def __init__(
   self,
   configuration,
   ccExe=None,
   ldExe=None,
   binPaths=None,
   ):
   Compiler.__init__(self, configuration=configuration, binPaths=binPaths)
   self.__ccExe = ccExe
   self.__ldExe = ldExe
Пример #6
0
 def __init__(
   self,
   configuration,
   arExe=None,
   gccExe=None,
   libtoolExe=None,
   binPaths=None,
   version=None,
   ):
   Compiler.__init__(self, configuration=configuration, binPaths=binPaths)
   self._arExe = arExe
   self._gccExe = gccExe
   self._libtoolExe = libtoolExe
   self.__version = version
   self.__messageExpression = re.compile(r'^(.+?):(\d+)(:\d+)?:', re.MULTILINE)
Пример #7
0
 def __init__(
     self,
     configuration,
     arExe=None,
     gccExe=None,
     libtoolExe=None,
     binPaths=None,
     version=None,
 ):
     Compiler.__init__(self, configuration=configuration, binPaths=binPaths)
     self._arExe = arExe
     self._gccExe = gccExe
     self._libtoolExe = libtoolExe
     self.__version = version
     self.__messageExpression = re.compile(r'^(.+?):(\d+)(:\d+)?:',
                                           re.MULTILINE)
Пример #8
0
 def __init__(self, configuration):
     Compiler.__init__(self, configuration)
Пример #9
0
 def __init__(self, configuration):
   Compiler.__init__(self, configuration)
Пример #10
0
 def _outputStderr(self, text):
   Compiler._outputStderr(self, self._formatMessage(text))
Пример #11
0
 def _outputStderr(self, text):
     Compiler._outputStderr(self, self._formatMessage(text))
Пример #12
0
 def __init__(self, configuration, clangExe, llvmArExe, binPaths):
     Compiler.__init__(self, configuration=configuration, binPaths=binPaths)
     self._clangExe = clangExe
     self._llvmArExe = llvmArExe
     self.version = _getClangVersion(clangExe)
     self.versionTuple = _makeVersionTuple(self.version)