Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
5answers
2k views

Building OSX App Bundle

Hi Suppose I have have made a an osX app without using Xcode. After compiling with GCC I get an executable which is linked to several other libraries. Some of those libraries might again be ...
7
votes
2answers
503 views

MacOSX: How to collect dependencies into a local bundle?

I am creating a plugin application (dylib) that depends on several other libraries. These other libraries are installed on my system, but are not guaranteed to be installed on any user's system. So I ...
3
votes
3answers
241 views

How can I determine the location of disassembled code within an executable?

I've got an executable file (C++, i386, compiled under MacOS/X Tiger, if it matters) that contains a bug. The fix for the bug is straightforward -- there's a place in the code where it calls fork() ...
3
votes
2answers
896 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 dylib reference to ...
1
vote
1answer
721 views

Disassemble default iOS apps with otool

When I try to disassemble the stock iOS apps (not app store ones) with otool it isn't split into different methods. It's just one massive section. Here's the command I'm using: otool -tV ...
1
vote
0answers
106 views

Adding symbol to external names directory of static library

I am confused by the difference in the symbol lists produced by otool and nm for a particular static library. I am trying to link a few static libraries to create the final executable but the linker ...
1
vote
0answers
215 views

howto turn otool output into compilable form?

Greetings, I've created a couple of text files from mac i386 binary (via otx and otool -tV ), but when I try to recompile them again, I fail. I've tried cc -x assembler test.s But I keep getting ...
1
vote
1answer
132 views

Meaning of otool “caps” field

When I run otool -favh some/library.so there are the following fields: Mach header magic cputype cpusubtype caps filetype ncmds sizeofcmds flags MH_MAGIC_64 X86_64 ALL LIB64 ...
1
vote
1answer
107 views

Why is the first column of the results from otool not continuous?

I'm sorry if this is a really noob question. I'm using otool to disassemble a file and this is the result of a method that I'm interested in: _KTDriverIsRunning: 0000000000000d98 pushq %rbp ...
0
votes
0answers
51 views

XQuartz dynamic loading error

I updated XQuartz, and now it doesn't load, complaining that: Dyld Error Message: Library not loaded: /opt/X11/lib/libfreetype.6.dylib Referenced from: ...
0
votes
0answers
29 views

When running tests that use bundle injection, how do I force double-free's to be an error?

When running tests (via otool) in an XCode project that uses the legacy ObjC runtime (without the garbage collector), I will sometimes get a double-free that is ignored. While I do get told of this ...
0
votes
1answer
57 views

xcode is not building static libraries properly (functions are not in them)

Basically I am able to create and compile a static library in xcode4 but the functions are not being read in by otool. I managed to do it once so that it would work but every other time since then it ...
0
votes
1answer
321 views

Problem with understanding arm assembly code structure

code is listed as follows, I want to know in the ending part 0000e0b4 001d22d0 ldrsbeq r2, [sp], -r0 does this do calculation for this line of code since it loads the address defined in the ...
0
votes
1answer
1k views

Using otool (recursively) to find shared libraries needed by an app

I have a Cocoa app that uses otool to find required shared libraries that an app needs to function properly. For example, say I run otool -L on an app that uses QTKit.framework. I get a list of the ...
0
votes
1answer
2k views

What's the trick to use otool on the mac?

I want to see the headers of an application. I try this: myMac:~ me$ /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/otool [-fahlLDtdorSTMRIHvVcXm] /Developer/Platforms/TheIPhoneApplication ...