Catch up with change to CCompiler API: call 'create_static_lib()', not
'link_static_lib()'.
This commit is contained in:
parent
169f91b808
commit
92f3377078
|
@ -190,7 +190,7 @@ class build_clib (Command):
|
||||||
# Now "link" the object files together into a static library.
|
# Now "link" the object files together into a static library.
|
||||||
# (On Unix at least, this isn't really linking -- it just
|
# (On Unix at least, this isn't really linking -- it just
|
||||||
# builds an archive. Whatever.)
|
# builds an archive. Whatever.)
|
||||||
self.compiler.link_static_lib (objects, lib_name,
|
self.compiler.create_static_lib (objects, lib_name,
|
||||||
output_dir=self.build_clib,
|
output_dir=self.build_clib,
|
||||||
debug=self.debug)
|
debug=self.debug)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue