Object archiver¶
The object archiver has similar function to the GNU ar utility. Essentially an archive is a zip with object files.
Module reference¶
Grouping of multiple object files into a single archive.
-
class
ppci.binutils.archive.Archive(objs)¶ The archive. Holder of object files. Similar to GNU ar.
-
classmethod
load(f)¶ Load archive from disk.
-
save(output_file)¶ Save archive to file.
-
classmethod
-
ppci.binutils.archive.archive(objs)¶ Create an archive from multiple object files.
-
ppci.binutils.archive.get_archive(filename)¶ Load an archive from file.