X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/2c81c6df02e9a20c96234524b0a1db7801d542ec..15024d7e7c224d837592094932a2da18d17ee015:/Darwin.mk diff --git a/Darwin.mk b/Darwin.mk index d55abb2..c95a594 100644 --- a/Darwin.mk +++ b/Darwin.mk @@ -1,5 +1,3 @@ -# XXX: objective-c exists on non-Darwin - dll := dylib link += -lobjc -framework CoreFoundation console += -framework Foundation @@ -9,6 +7,12 @@ library += -framework JavaScriptCore # XXX: do I just need WebCore? library += -framework WebKit library += -liconv +flags += -I/usr/include/ffi +apr_config := /usr/bin/apr-1-config + +ifeq ($(uname_p),i386) +flags += -m32 +endif flags += -DCY_ATTACH code += Handler.o @@ -16,7 +20,10 @@ inject += Mach/Inject.o Mach/Inject.o: Trampoline.t.hpp Baton.hpp %.t.hpp: %.t.cpp - $(target)gcc -c -fno-exceptions -Iinclude -o $*.t.o $< && { file=($$($(target)otool -l $*.t.o | sed -e 'x; /^1/ { x; /^ *filesize / { s/^.* //; p; }; /^ *fileoff / { s/^.* //; p; }; x; }; x; /^ *cmd LC_SEGMENT$$/ { s/.*/1/; x; }; d;')); od -t x1 -j $${file[0]} -N $${file[1]} $*.t.o | sed -e 's/^[^ ]*//' | tr $$'\n' ' ' | sed -e 's/ */ /g;s/^ *//;s/ $$//;s/ /,/g;s/\([^,][^,]\)/0x\1/g' | sed -e 's/^/static const char $*_[] = {/;s/$$/};/' && echo && echo "/*" && $(target)otool -vVt $*.t.o && echo "*/"; } >$@ && rm -f $*.t.o + $(target)gcc -c -fno-exceptions -Iinclude -o $*.t.o $< $(flags) && { file=($$($(target)otool -l $*.t.o | sed -e 'x; /^1/ { x; /^ *filesize / { s/^.* //; p; }; /^ *fileoff / { s/^.* //; p; }; x; }; x; /^ *cmd LC_SEGMENT$$/ { s/.*/1/; x; }; d;')); od -t x1 -j $${file[0]} -N $${file[1]} $*.t.o | sed -e 's/^[^ ]*//' | tr $$'\n' ' ' | sed -e 's/ */ /g;s/^ *//;s/ $$//;s/ /,/g;s/\([^,][^,]\)/0x\1/g' | sed -e 's/^/static const char $*_[] = {/;s/$$/};/' && echo && echo "/*" && $(target)otool -vVt $*.t.o && echo "*/"; } >$@ && rm -f $*.t.o + +clean:: + rm -f Trampoline.t.hpp include Execute.mk include ObjectiveC.mk