Commit 92f33770 authored by Greg Ward's avatar Greg Ward

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

'link_static_lib()'.
parent 169f91b8
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment