Home
last modified time | relevance | path

Searched refs:cc_args (Results 1 – 7 of 7) sorted by relevance

/third_party/grpc/tools/distrib/python/grpcio_tools/
D_parallel_compile_patch.py44 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
51 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/third_party/grpc/src/python/grpcio/
D_parallel_compile_patch.py47 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
54 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
Dcommands.py245 def new_compile(obj, src, ext, cc_args, extra_postargs, pp_opts): argument
250 return old_compile(obj, src, ext, cc_args, extra_postargs,
/third_party/python/Lib/
D_osx_support.py358 def compiler_fixup(compiler_so, cc_args): argument
376 stripArch = '-arch' in cc_args
377 stripSysroot = any(arg for arg in cc_args if arg.startswith('-isysroot'))
416 argvar = cc_args
417 indices = [i for i,x in enumerate(cc_args) if x.startswith('-isysroot')]
/third_party/python/Lib/distutils/
Dccompiler.py355 cc_args = pp_opts + ['-c']
357 cc_args[:0] = ['-g']
359 cc_args[:0] = before
360 return cc_args
567 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
574 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
579 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
Dunixccompiler.py111 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
115 cc_args + extra_postargs)
117 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
Dcygwinccompiler.py157 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
167 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +