Tagged Questions

0
votes
1answer
21 views

Parser for 32-bit and 64-bit Mach-O binary/executable formats in C++

I'm looking for a C++ library that can parse 32-bit and 64-bit Mach-O binary format. I don't need anything fancy, just a disassembly and splitting the file into its sections, so no …
0
votes
1answer
26 views

OS X: Do sections in the __TEXT segment get modified by other programs?

Hi, Does it happen that some program (or even the OS itself) changes the contents of an executable's __TEXT segment, for whatever reason? Note: Here, I'm referring to the "__TE …
2
votes
1answer
27 views

How do I embed data into a Mac OS X mach-o binary file’s TEXT Section?

I have a Mac OS X command-line tool that would benefit from having some data embedded in the binary file itself. I know mach-o files support multiple segments, some of which can b …
1
vote
1answer
58 views

reconstructing symbols stripped from Mach-O binary

Using Mac OS X 10.5 I'm trying to figure out how to use dtrace to track the execution of a Mach-O binary. However, it seems the symbols have all be stripped out so any attempts to …
2
votes
4answers
4k views

How do I create a dynamic library (dylib) with Xcode?

I'm building few command-line utilities in Xcode (plain C, no Cocoa). I want all of them to use my customized version of libpng, and I want to save space by sharing one copy of the …
0
votes
1answer
254 views

Mach-O binary editor for OSX?

py-macholib does not work properly on osx (using darwin ports). I have not found any other alternative. Any ideas?
2
votes
1answer
199 views

How to insert a LC_LOAD_DYLIB command into a Mach-O binary (OSX)

I'm looking to patch a piece of abandonware with some code. The software is carbon based, so I can not use an InputManager (at least, I do not think I can). My idea was to add a d …
1
vote
2answers
135 views

Mac OS X: What is the best way to estimate the code & static data size of program?

I want to be able to get an estimate of how much code & static data is used by my C++ program? Is there a way to find this out by looking at the executable or object files? O …