コード例 #1
0
 def __init__(self, verbose=0, dry_run=0, force=0):
     CCompiler.__init__(self, verbose, dry_run, force)
     self.__version = get_build_version()
     self.__arch = get_build_architecture()
     if self.__arch == 'Intel':
         if self.__version >= 7:
             self.__root = 'Software\\Microsoft\\VisualStudio'
             self.__macros = MacroExpander(self.__version)
         else:
             self.__root = 'Software\\Microsoft\\Devstudio'
         self.__product = 'Visual Studio version %s' % self.__version
     else:
         self.__product = 'Microsoft SDK compiler %s' % (self.__version + 6)
     self.initialized = False
コード例 #2
0
ファイル: msvccompiler.py プロジェクト: 415ec080/finalPrj
    def __init__(self, verbose=0, dry_run=0, force=0):
        CCompiler.__init__(self, verbose, dry_run, force)
        self.__version = get_build_version()
        self.__arch = get_build_architecture()
        if self.__arch == "Intel":
            # x86
            if self.__version >= 7:
                self.__root = r"Software\Microsoft\VisualStudio"
                self.__macros = MacroExpander(self.__version)
            else:
                self.__root = r"Software\Microsoft\Devstudio"
            self.__product = "Visual Studio version %s" % self.__version
        else:
            # Win64. Assume this was built with the platform SDK
            self.__product = "Microsoft SDK compiler %s" % (self.__version + 6)

        self.initialized = False