Декомпилировать платформу Obj C

Я хочу декомпилировать платформу Twitter для iOS, на самом деле я беру файл twitterd из симулятора xcode, который предварительно скомпилирован для работы на x86 (?) , а не ARM. Что касается инструмента, я использую http://code.google.com/p/i386codedump/ Инструкция:

Usage: code-dump [options]  where options are:
    -a             show instance variable offsets
    -A             show implementation addresses
    --arch   choose a specific architecture from a universal binary (ppc, i386, etc.)
    -C      only display classes matching regular expression
    -H             generate header files in current directory, or directory specified with -o
    -I             sort classes, categories, and protocols by inheritance (overrides -s)
    -o        output directory used for -H
    -r             recursively expand frameworks and fixed VM shared libraries
    -s             sort classes and categories by name
    -S             sort methods by name
    -t             suppress header in output, for testing
    -d             decompile
    -D        decompilation architecture

Я вроде не понимаю какие варианты мне нужно выбрать, что я пытаюсь:

iMac:documents $ ./code-dump -d twitterd
2011-12-02 18:56:35.885 code-dump[1643:707] feedface, ao: 0
2011-12-02 18:56:35.886 code-dump[1643:707] process: feedface (86000)
/*
 *     Generated by code-dump 2.0.
 */
This file does not contain any Objective-C runtime information.
2011-12-02 18:56:35.888 code-dump[1643:707] Building lookup table...
2011-12-02 18:56:40.308 code-dump[1643:707] Finished lookup table
/usr/bin/lipo: input file (twitterd) must be a fat file when the -extract option is specified
2011-12-02 18:56:40.868 code-dump[1643:707] CDAssemblyProcessor, 22288 instructions, 0 functions
Segmentation fault: 11

Что это значит, что мне нужно делать? :)

5
задан artysx 2 December 2011 в 16:59
поделиться