Lines Matching +full:cross +full:- +full:spawn
136 you can try compiling with MingW32, by passing "-c mingw32" to setup.py.""")
162 if i == -1:
166 majorVersion = int(s[:-2]) - 6
184 if i == -1:
212 # as it really isn't necessary for this sort of single-compiler class.
296 self.compile_options = [ '/nologo', '/Ox', '/MD', '/W3', '/GS-' ,
298 self.compile_options_debug = ['/nologo', '/Od', '/MDd', '/W3', '/GS-',
314 # -- Worker methods ------------------------------------------------
320 # Copied from ccompiler.py, extended to return .res as 'object'-file
385 self.spawn ([self.rc] + pp_opts +
393 # * '-h dir' specifies the directory for the
395 # * '-r dir' specifies the target directory of the
400 # we use the source-directory for the include file and
408 self.spawn ([self.mc] +
409 ['-h', h_dir, '-r', rc_dir] + [src])
413 self.spawn ([self.rc] +
427 self.spawn ([self.cc] + compile_opts + pp_opts +
455 self.spawn ([self.lib] + lib_args)
460 log.debug("skipping %s (up-to-date)", output_filename)
534 self.spawn ([self.linker] + ld_args)
539 log.debug("skipping %s (up-to-date)", output_filename)
544 # -- Miscellaneous methods -----------------------------------------
658 # get_build_architecture not really relevant now we support cross-compile