1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
Macholib - Analyze and edit Mach-O headers
==========================================
macholib can be used to analyze and edit Mach-O headers, the executable
format used by Mac OS X.
It's typically used as a dependency analysis tool, and also to rewrite dylib
references in Mach-O headers to be ``@executable_path`` relative.
Though this tool targets a platform specific file format, it is pure python
code that is platform and endian independent.
General documentation
---------------------
.. toctree::
:maxdepth: 1
changelog
license
scripts
Reference Guide
---------------
.. toctree::
:maxdepth: 1
MachO
MachoOGraph
MachoOStandalone
SymbolTable
dyld
dylib
framework
macho_o
ptypes
Online Resources
----------------
* `Sourcecode repository on bitbucket <https://github.com/ronaldoussoren/macholib/>`_
* `The issue tracker <https://github.com/ronaldoussoren/macholib/issues>`_
* `Mac OS X ABI Mach-O File Format Reference at Apple <http://developer.apple.com/library/mac/#documentation/DeveloperTools/Conceptual/MachORuntime/Reference/reference.html>`_
Contributors
------------
Macholib was written by Bob Ippolito and is currently maintained by Ronald Oussoren <ronaldoussoren@mac.com>.
Indices and tables
------------------
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
|