Searched refs:pp_opts (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Lib/distutils/ |
D | ccompiler.py | 341 pp_opts = gen_preprocess_options(macros, incdirs) 351 return macros, objects, extra, pp_opts, build 353 def _get_cc_args(self, pp_opts, debug, before): argument 355 cc_args = pp_opts + ['-c'] 564 macros, objects, extra_postargs, pp_opts, build = \ 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 1056 pp_opts = [] 1065 pp_opts.append("-U%s" % macro[0]) [all …]
|
D | bcppcompiler.py | 85 macros, objects, extra_postargs, pp_opts, build = \ 135 self.spawn ([self.cc] + compile_opts + pp_opts + 371 pp_opts = gen_preprocess_options(macros, include_dirs) 372 pp_args = ['cpp32.exe'] + pp_opts
|
D | unixccompiler.py | 89 pp_opts = gen_preprocess_options(macros, include_dirs) 90 pp_args = self.preprocessor + pp_opts 111 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
|
D | _msvccompiler.py | 326 macros, objects, extra_postargs, pp_opts, build = compile_info 359 self.spawn([self.rc] + pp_opts + [output_opt, input_opt]) 393 args = [self.cc] + compile_opts + pp_opts
|
D | msvccompiler.py | 351 macros, objects, extra_postargs, pp_opts, build = compile_info 380 self.spawn([self.rc] + pp_opts + 419 self.spawn([self.cc] + compile_opts + pp_opts +
|
D | msvc9compiler.py | 463 macros, objects, extra_postargs, pp_opts, build = compile_info 492 self.spawn([self.rc] + pp_opts + 531 self.spawn([self.cc] + compile_opts + pp_opts +
|
D | cygwinccompiler.py | 157 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
|
/third_party/grpc/tools/distrib/python/grpcio_tools/ |
D | _parallel_compile_patch.py | 42 macros, objects, extra_postargs, pp_opts, build = self._setup_compile( 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 | 45 macros, objects, extra_postargs, pp_opts, build = self._setup_compile( 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 251 pp_opts)
|