Easy static/shared libraries with distutils
Even though, in retrospect, the API docs were always there, somehow looking at distutils innards led me in an awkward direction for the longest time. Given some source files, the actual basic use case is very simple:
from distutils.ccompiler import new_compiler
# Create compiler with default options
c = new_compiler()
workdir = "."
# Optionally add include directories etc.
# c.add_include_dir("some/include")
# Compile into .o files
objects = c.compile(["a.c", "b.c"])
# Create static or shared library
c.create_static_lib(objects, "foo", output_dir=workdir)
c.link_shared_lib(objects, "foo", output_dir=workdir)
Written by Dimitri Tcaciuc
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Python
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#