Searched refs:ld_args (Results 1 – 5 of 5) sorted by relevance
/third_party/python/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 | 613 ld_args = (ldflags + lib_opts + export_opts + 628 ld_args.append ('/IMPLIB:' + implib_file) 630 self.manifest_setup_ldargs(output_filename, build_temp, ld_args) 633 ld_args[:0] = extra_preargs 635 ld_args.extend(extra_postargs) 639 self.spawn([self.linker] + ld_args) 648 mfinfo = self.manifest_get_embed_info(target_desc, ld_args) 660 def manifest_setup_ldargs(self, output_filename, build_temp, ld_args): argument 670 ld_args.append('/MANIFESTFILE:' + temp_manifest) 672 def manifest_get_embed_info(self, target_desc, ld_args): argument [all …]
|
D | _msvccompiler.py | 471 ld_args = (ldflags + lib_opts + export_opts + 486 ld_args.append ('/IMPLIB:' + implib_file) 489 ld_args[:0] = extra_preargs 491 ld_args.extend(extra_postargs) 496 log.debug('Executing "%s" %s', self.linker, ' '.join(ld_args)) 497 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)
|