Lines Matching +full:cross +full:- +full:spawn
129 you can try compiling with MingW32, by passing "-c mingw32" to setup.py.""")
154 if i == -1:
158 majorVersion = int(s[:-2]) - 6
179 if i == -1:
207 # as it really isn't necessary for this sort of single-compiler class.
291 self.compile_options = [ '/nologo', '/Ox', '/MD', '/W3', '/GS-' ,
293 self.compile_options_debug = ['/nologo', '/Od', '/MDd', '/W3', '/GS-',
309 # -- Worker methods ------------------------------------------------
315 # Copied from ccompiler.py, extended to return .res as 'object'-file
379 self.spawn([self.rc] + pp_opts +
386 # * '-h dir' specifies the directory for the
388 # * '-r dir' specifies the target directory of the
393 # we use the source-directory for the include file and
400 self.spawn([self.mc] +
401 ['-h', h_dir, '-r', rc_dir] + [src])
405 self.spawn([self.rc] +
418 self.spawn([self.cc] + compile_opts + pp_opts +
445 self.spawn([self.lib] + lib_args)
449 log.debug("skipping %s (up-to-date)", output_filename)
523 self.spawn([self.linker] + ld_args)
528 log.debug("skipping %s (up-to-date)", output_filename)
531 # -- Miscellaneous methods -----------------------------------------
641 # get_build_architecture not really relevant now we support cross-compile