mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
Renamed 'link_static_lib() to 'create_static_lib()'.
This commit is contained in:
parent
329e4be05a
commit
036c805958
2 changed files with 19 additions and 18 deletions
|
@ -140,11 +140,11 @@ class UnixCCompiler (CCompiler):
|
|||
# compile ()
|
||||
|
||||
|
||||
def link_static_lib (self,
|
||||
objects,
|
||||
output_libname,
|
||||
output_dir=None,
|
||||
debug=0):
|
||||
def create_static_lib (self,
|
||||
objects,
|
||||
output_libname,
|
||||
output_dir=None,
|
||||
debug=0):
|
||||
|
||||
(objects, output_dir) = self._fix_link_args (objects, output_dir, takes_libs=0)
|
||||
|
||||
|
@ -160,7 +160,7 @@ class UnixCCompiler (CCompiler):
|
|||
else:
|
||||
self.announce ("skipping %s (up-to-date)" % output_filename)
|
||||
|
||||
# link_static_lib ()
|
||||
# create_static_lib ()
|
||||
|
||||
|
||||
def link_shared_lib (self,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue