當前位置: 首頁>>代碼示例>>Python>>正文


Python CCompiler.__init__方法代碼示例

本文整理匯總了Python中distutils.ccompiler.CCompiler.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python CCompiler.__init__方法的具體用法?Python CCompiler.__init__怎麽用?Python CCompiler.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在distutils.ccompiler.CCompiler的用法示例。


在下文中一共展示了CCompiler.__init__方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from distutils.ccompiler import CCompiler [as 別名]
# 或者: from distutils.ccompiler.CCompiler import __init__ [as 別名]
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 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:19,代碼來源:msvccompiler.py

示例2: __init__

# 需要導入模塊: from distutils.ccompiler import CCompiler [as 別名]
# 或者: from distutils.ccompiler.CCompiler import __init__ [as 別名]
def __init__ (self,
                  verbose=0,
                  dry_run=0,
                  force=0):

        CCompiler.__init__ (self, verbose, dry_run, force)

        # These executables are assumed to all be in the path.
        # Borland doesn't seem to use any special registry settings to
        # indicate their installation locations.

        self.cc = "bcc32.exe"
        self.linker = "ilink32.exe"
        self.lib = "tlib.exe"

        self.preprocess_options = None
        self.compile_options = ['/tWM', '/O2', '/q', '/g0']
        self.compile_options_debug = ['/tWM', '/Od', '/q', '/g0']

        self.ldflags_shared = ['/Tpd', '/Gn', '/q', '/x']
        self.ldflags_shared_debug = ['/Tpd', '/Gn', '/q', '/x']
        self.ldflags_static = []
        self.ldflags_exe = ['/Gn', '/q', '/x']
        self.ldflags_exe_debug = ['/Gn', '/q', '/x','/r']


    # -- Worker methods ------------------------------------------------ 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:29,代碼來源:bcppcompiler.py

示例3: __init__

# 需要導入模塊: from distutils.ccompiler import CCompiler [as 別名]
# 或者: from distutils.ccompiler.CCompiler import __init__ [as 別名]
def __init__(self, version):
        self.macros = {}
        self.vsbase = VS_BASE % version
        self.load_macros(version) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:6,代碼來源:msvc9compiler.py


注:本文中的distutils.ccompiler.CCompiler.__init__方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。