From ad8c38ed9da0221550a5f9ee955945bb3c3b83ec Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 4 Oct 2010 04:28:46 -0700 Subject: [PATCH] Remove cycc requirement. --- compiling.txt | 21 +++++++++++++++++---- makefile | 10 ++++++++-- 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/compiling.txt b/compiling.txt index 411d0b16..72d30403 100644 --- a/compiling.txt +++ b/compiling.txt @@ -1,5 +1,18 @@ 0) use a Mac (I'm sorry, I really am) -1) install Cydia Substrate (in beta) -2) install Fink (the only sane choice) -3) activate Fink (. /sw/bin/init.sh) -4) fink install bash ldid wget +1) install the official Apple iOS SDK + +2) build a sysroot/ of Telesphoreo by: + + a) downloading and extracting this tarball: + http://test.saurik.com/cydia/sysroot-2.tgz + + -or- + + b) doing the following crazy stunts: + i) install Cydia Substrate (in beta) + ii) install Fink (the only sane choice) + iii) activate Fink (. /sw/bin/init.sh) + iv) fink install bash ldid tar wget + v) run ./sysroot.sh and wait a bit + +3) type "make" to compile the executable diff --git a/makefile b/makefile index 9236ff6f..71b35876 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,9 @@ link := #dpkg := /Library/Cydia/bin/dpkg-deb -Zlzma dpkg := dpkg-deb -flags += -F/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS$(ios).sdk/System/Library/PrivateFrameworks +sdk := /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS$(ios).sdk + +flags += -F$(sdk)/System/Library/PrivateFrameworks flags += -I. -isystem sysroot/usr/include -Lsysroot/usr/lib flags += -Wall -Werror -Wno-deprecated-declarations flags += -fmessage-length=0 @@ -31,13 +33,17 @@ link += -lpcre link += -multiply_defined suppress +#cycc = cycc -r4.2 -i$(ios) -o$@ +gxx := /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++ +cycc = $(gxx) -arch armv6 -o $@ -mcpu=arm1176jzf-s -miphoneos-version-min=$(ios) -isysroot $(sdk) -idirafter /usr/include -F/Library/Frameworks + all: Cydia clean: rm -f Cydia Cydia: Cydia.mm Reachability.mm UICaboodle/*.mm iPhonePrivate.h - cycc -r4.2 -i$(ios) -o$@ -- $(filter %.mm,$^) $(flags) $(link) + $(cycc) $(filter %.mm,$^) $(flags) $(link) package: Cydia sudo rm -rf _ -- 2.45.2