示例#1
0
文件: setup.py 项目: pabloua/pyzmq
    def build_extension(self, ext):
        with fix_cxx(self.compiler, ext):
            super().build_extension(ext)

        ext_path = self.get_ext_fullpath(ext.name)
        patch_lib_paths(ext_path, self.compiler.library_dirs)
示例#2
0
文件: setup.py 项目: fwph/pyzmq
 def build_extension(self, ext):
     build_ext.build_extension(self, ext)
     ext_path = self.get_ext_fullpath(ext.name)
     patch_lib_paths(ext_path, self.compiler.library_dirs)
示例#3
0
文件: setup.py 项目: ezhangle/pyzmq
 def build_extension(self, ext):
     build_ext.build_extension(self, ext)
     ext_path = self.get_ext_fullpath(ext.name)
     patch_lib_paths(ext_path, self.compiler.library_dirs)