Home
last modified time | relevance | path

Searched refs:compile_opts (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/distutils/
Dbcppcompiler.py88 compile_opts = extra_preargs or []
89 compile_opts.append ('-c')
91 compile_opts.extend (self.compile_options_debug)
93 compile_opts.extend (self.compile_options)
135 self.spawn ([self.cc] + compile_opts + pp_opts +
Dmsvccompiler.py358 compile_opts = extra_preargs or []
359 compile_opts.append ('/c')
361 compile_opts.extend(self.compile_options_debug)
363 compile_opts.extend(self.compile_options)
427 self.spawn ([self.cc] + compile_opts + pp_opts +
Dmsvc9compiler.py478 compile_opts = extra_preargs or []
479 compile_opts.append ('/c')
481 compile_opts.extend(self.compile_options_debug)
483 compile_opts.extend(self.compile_options)
544 self.spawn([self.cc] + compile_opts + pp_opts +
/external/python/cpython3/Lib/distutils/
Dbcppcompiler.py88 compile_opts = extra_preargs or []
89 compile_opts.append ('-c')
91 compile_opts.extend (self.compile_options_debug)
93 compile_opts.extend (self.compile_options)
135 self.spawn ([self.cc] + compile_opts + pp_opts +
D_msvccompiler.py351 compile_opts = extra_preargs or []
352 compile_opts.append('/c')
354 compile_opts.extend(self.compile_options_debug)
356 compile_opts.extend(self.compile_options)
416 args = [self.cc] + compile_opts + pp_opts
Dmsvccompiler.py353 compile_opts = extra_preargs or []
354 compile_opts.append ('/c')
356 compile_opts.extend(self.compile_options_debug)
358 compile_opts.extend(self.compile_options)
419 self.spawn([self.cc] + compile_opts + pp_opts +
Dmsvc9compiler.py466 compile_opts = extra_preargs or []
467 compile_opts.append ('/c')
469 compile_opts.extend(self.compile_options_debug)
471 compile_opts.extend(self.compile_options)
532 self.spawn([self.cc] + compile_opts + pp_opts +
/external/dnsmasq/src/
Ddnsmasq.c39 static char* compile_opts = variable
153 read_opts(argc, argv, compile_opts); in main()
416 my_syslog(LOG_INFO, _("compile time options: %s"), compile_opts); in main()
Ddnsmasq.h717 void read_opts(int argc, char** argv, char* compile_opts);
Doption.c2430 void read_opts(int argc, char** argv, char* compile_opts) { in read_opts() argument
2488 printf(_("Compile time options %s\n\n"), compile_opts); in read_opts()