Searched refs:ld_args (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Lib/distutils/ |
D | bcppcompiler.py | 206 ld_args = self.ldflags_exe_debug[:] 208 ld_args = self.ldflags_exe[:] 212 ld_args = self.ldflags_shared_debug[:] 214 ld_args = self.ldflags_shared[:] 246 ld_args.append("/L%s" % os.path.normpath(l)) 247 ld_args.append("/L.") # we sometimes use relative paths 250 ld_args.extend(objects) 263 ld_args.extend([',',output_filename]) 265 ld_args.append(',,') 272 ld_args.append(lib) [all …]
|
D | unixccompiler.py | 166 ld_args = (objects + self.objects + 169 ld_args[:0] = ['-g'] 171 ld_args[:0] = extra_preargs 173 ld_args.extend(extra_postargs) 202 linker = _osx_support.compiler_fixup(linker, ld_args) 204 self.spawn(linker + ld_args)
|
D | msvc9compiler.py | 614 ld_args = (ldflags + lib_opts + export_opts + 629 ld_args.append ('/IMPLIB:' + implib_file) 631 self.manifest_setup_ldargs(output_filename, build_temp, ld_args) 634 ld_args[:0] = extra_preargs 636 ld_args.extend(extra_postargs) 640 self.spawn([self.linker] + ld_args) 649 mfinfo = self.manifest_get_embed_info(target_desc, ld_args) 661 def manifest_setup_ldargs(self, output_filename, build_temp, ld_args): argument 671 ld_args.append('/MANIFESTFILE:' + temp_manifest) 673 def manifest_get_embed_info(self, target_desc, ld_args): argument [all …]
|
D | _msvccompiler.py | 494 ld_args = (ldflags + lib_opts + export_opts + 509 ld_args.append ('/IMPLIB:' + implib_file) 512 ld_args[:0] = extra_preargs 514 ld_args.extend(extra_postargs) 519 log.debug('Executing "%s" %s', self.linker, ' '.join(ld_args)) 520 self.spawn([self.linker] + ld_args)
|
D | msvccompiler.py | 501 ld_args = (ldflags + lib_opts + export_opts + 515 ld_args.append ('/IMPLIB:' + implib_file) 518 ld_args[:0] = extra_preargs 520 ld_args.extend(extra_postargs) 524 self.spawn([self.linker] + ld_args)
|
/external/python/cpython2/Lib/distutils/ |
D | bcppcompiler.py | 206 ld_args = self.ldflags_exe_debug[:] 208 ld_args = self.ldflags_exe[:] 212 ld_args = self.ldflags_shared_debug[:] 214 ld_args = self.ldflags_shared[:] 246 ld_args.append("/L%s" % os.path.normpath(l)) 247 ld_args.append("/L.") # we sometimes use relative paths 250 ld_args.extend(objects) 263 ld_args.extend([',',output_filename]) 265 ld_args.append(',,') 272 ld_args.append(lib) [all …]
|
D | unixccompiler.py | 169 ld_args = (objects + self.objects + 172 ld_args[:0] = ['-g'] 174 ld_args[:0] = extra_preargs 176 ld_args.extend(extra_postargs) 198 linker = _osx_support.compiler_fixup(linker, ld_args) 200 self.spawn(linker + ld_args)
|
D | msvc9compiler.py | 626 ld_args = (ldflags + lib_opts + export_opts + 641 ld_args.append ('/IMPLIB:' + implib_file) 643 self.manifest_setup_ldargs(output_filename, build_temp, ld_args) 646 ld_args[:0] = extra_preargs 648 ld_args.extend(extra_postargs) 652 self.spawn([self.linker] + ld_args) 661 mfinfo = self.manifest_get_embed_info(target_desc, ld_args) 673 def manifest_setup_ldargs(self, output_filename, build_temp, ld_args): argument 683 ld_args.append('/MANIFESTFILE:' + temp_manifest) 685 def manifest_get_embed_info(self, target_desc, ld_args): argument [all …]
|
D | msvccompiler.py | 511 ld_args = (ldflags + lib_opts + export_opts + 525 ld_args.append ('/IMPLIB:' + implib_file) 528 ld_args[:0] = extra_preargs 530 ld_args.extend(extra_postargs) 534 self.spawn ([self.linker] + ld_args)
|