Searched refs:cc_args (Results 1 – 7 of 7) sorted by relevance
/third_party/grpc/tools/distrib/python/grpcio_tools/ |
D | _parallel_compile_patch.py | 44 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.py | 47 cc_args = self._get_cc_args(pp_opts, debug, extra_preargs) 54 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
|
D | commands.py | 245 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.py | 358 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/ |
D | ccompiler.py | 355 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
|
D | unixccompiler.py | 111 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] +
|
D | cygwinccompiler.py | 157 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument 167 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
|