Catch up with change to CCompiler API: call 'create_static_lib()', not

'link_static_lib()'.
This commit is contained in:
Greg Ward 2000-03-10 02:02:44 +00:00
parent 169f91b808
commit 92f3377078
1 changed files with 3 additions and 3 deletions

View File

@ -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