Skip to content

libtool

create_library

create_library(object_files, library_base_name, dynamic=True)

Link object files into a static or dynamic library.

Args:

    object_files:                   The object files to link.

    library_base_name:                      The base name of the library. The base name will be prefixed with lib and suffixed                      with .a for a static library, or .dylib for a dynamic library.

select

select(min_version=None, max_version=None)

Request the use of libtool in the specified version range.

Parameters:

Name Type Description Default
min_version str | None

The minimum version of libtool to use.

None
max_version str | None

The maximum version of libtool to use.

None