Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
D_osx_support.py304 def compiler_fixup(compiler_so, cc_args): argument
322 stripArch = '-arch' in cc_args
323 stripSysroot = '-isysroot' in cc_args
352 if '-isysroot' in cc_args:
353 idx = cc_args.index('-isysroot')
354 sysroot = cc_args[idx+1]
/external/python/cpython3/Lib/
D_osx_support.py304 def compiler_fixup(compiler_so, cc_args): argument
322 stripArch = '-arch' in cc_args
323 stripSysroot = '-isysroot' in cc_args
352 if '-isysroot' in cc_args:
353 idx = cc_args.index('-isysroot')
354 sysroot = cc_args[idx+1]
/external/python/cpython2/Lib/distutils/
Dccompiler.py369 cc_args = pp_opts + ['-c']
371 cc_args[:0] = ['-g']
373 cc_args[:0] = before
374 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.py115 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
119 cc_args + extra_postargs)
121 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
Demxccompiler.py77 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
86 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
Dcygwinccompiler.py154 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
163 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
/external/python/cpython3/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.py159 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument
169 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
/external/v8/tools/clang/scripts/
Dupdate.py647 cc_args = base_cmake_args if sys.platform != 'win32' else cmake_args
648 if cc is not None: cc_args.append('-DCMAKE_C_COMPILER=' + cc)
649 if cxx is not None: cc_args.append('-DCMAKE_CXX_COMPILER=' + cxx)