Esempio n. 1
0
 def set_executables(self, **args):
     """Has no linker subsystem option for shared libraries"""
     Mingw32CCompiler.set_executables(self, **args)
     try:
         self.linker_so = difference(self.linker_so, subsystem_options)
     except TypeError:
         pass
 def set_executables (self, **args):
     """Has no linker subsystem option for shared libraries"""
     Mingw32CCompiler.set_executables(self, **args)
     try:
         self.linker_so = difference (self.linker_so, subsystem_options)
     except TypeError:
         pass
Esempio n. 3
0
 def set_executables(self, **args):
     """Has console subsystem linker option for shared libraries."""
     Mingw32CCompiler.set_executables(self, **args)
     try:
         linker_so = difference(self.linker_so, subsystem_options)
     except TypeError:
         linker_so = subsystem_options[1:2]
     else:
         linker_so.append(subsystem_options[1])
     self.linker_so = linker_so
 def set_executables (self, **args):
     """Has console subsystem linker option for shared libraries."""
     Mingw32CCompiler.set_executables(self, **args)
     try:
         linker_so = difference(self.linker_so, subsystem_options)
     except TypeError:
         linker_so = subsystem_options[1:2]
     else:
         linker_so.append(subsystem_options[1])
     self.linker_so = linker_so