mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Catch up with change to CCompiler API: call 'create_static_lib()', not
'link_static_lib()'.
This commit is contained in:
parent
169f91b808
commit
92f3377078
1 changed files with 3 additions and 3 deletions
|
@ -190,9 +190,9 @@ class build_clib (Command):
|
|||
# Now "link" the object files together into a static library.
|
||||
# (On Unix at least, this isn't really linking -- it just
|
||||
# builds an archive. Whatever.)
|
||||
self.compiler.link_static_lib (objects, lib_name,
|
||||
output_dir=self.build_clib,
|
||||
debug=self.debug)
|
||||
self.compiler.create_static_lib (objects, lib_name,
|
||||
output_dir=self.build_clib,
|
||||
debug=self.debug)
|
||||
|
||||
# for libraries
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue