/external/python/cpython2/Lib/ |
D | _osx_support.py | 304 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.py | 304 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/ |
D | ccompiler.py | 369 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
|
D | unixccompiler.py | 115 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] +
|
D | emxccompiler.py | 77 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): argument 86 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
|
D | cygwinccompiler.py | 154 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/ |
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 | 159 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/ |
D | update.py | 647 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)
|