X-Git-Url: https://git.saurik.com/cydia.git/blobdiff_plain/10ff766486cd8cf207f20ceeb0c952806741a48a..e3799a2e08946d914e75ae16d8286868660ba862:/makefile diff --git a/makefile b/makefile index 31a3bee5..ce94153b 100644 --- a/makefile +++ b/makefile @@ -1,56 +1,52 @@ -sdks := /Developer/Platforms/iPhoneOS.platform/Developer/SDKs -ioss := $(sort $(patsubst $(sdks)/iPhoneOS%.sdk,%,$(wildcard $(sdks)/iPhoneOS*.sdk))) - -ios := $(word $(words $(ioss)),$(ioss)) -gcc := 4.2 +gxx := $(shell xcrun --sdk iphoneos -f g++) +sdk := $(shell xcodebuild -sdk iphoneos -version Path) flags := link := +libs := -ifeq (o,O) # gzip is actually better -dpkg := /Library/Cydia/bin/dpkg-deb -ifeq ($(wildcard $(dpkg)),$(dpkg)) -dpkg := $(dpkg) -zlzma -else -dpkg := dpkg-deb -zbzip2 -endif -else -dpkg := dpkg-deb -endif - -sdk := $(sdks)/iPhoneOS$(ios).sdk +dpkg := dpkg-deb -Zlzma flags += -F$(sdk)/System/Library/PrivateFrameworks -flags += -I. -isystem sysroot/usr/include -Lsysroot/usr/lib -flags += -Wall -Werror -Wno-deprecated-declarations +flags += -I. -isystem sysroot/usr/include flags += -fmessage-length=0 flags += -g0 -O2 -flags += -fobjc-exceptions -flags += -fno-guess-branch-probability flags += -fvisibility=hidden +flags += -idirafter icu/icuSources/common +flags += -idirafter icu/icuSources/i18n + +flags += -Wall + +flags += -Wno-unknown-warning-option +flags += -Wno-logical-op-parentheses +flags += -Wno-dangling-else +flags += -Wno-shift-op-parentheses +flags += -Wno-deprecated-declarations + xflags := xflags += -fobjc-call-cxx-cdtors xflags += -fvisibility-inlines-hidden -link += -framework CoreFoundation -link += -framework CoreGraphics -link += -framework Foundation -link += -framework GraphicsServices -link += -framework IOKit -link += -framework JavaScriptCore -link += -framework QuartzCore -link += -framework SpringBoardServices -link += -framework SystemConfiguration -link += -framework WebCore -link += -framework WebKit - -link += -lapr-1 -link += -lapt-pkg -link += -lpcre - +link += -Lsysroot/usr/lib link += -multiply_defined suppress +libs += -framework CoreFoundation +libs += -framework CoreGraphics +libs += -framework Foundation +libs += -framework GraphicsServices +libs += -framework IOKit +libs += -framework QuartzCore +libs += -framework SpringBoardServices +libs += -framework SystemConfiguration +libs += -framework WebCore +libs += -framework WebKit + +libs += -lapr-1 +libs += -lapt-pkg +libs += -licucore +libs += -lpcre + uikit := uikit += -framework UIKit @@ -59,9 +55,12 @@ backrow += -FAppleTV -framework BackRow -framework AppleTV version := $(shell ./version.sh) -#cycc = cycc -r4.2 -i$(ios) -o$@ -gxx := /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++-$(gcc) -cycc = $(gxx) -mthumb -arch armv6 -o $@ -mcpu=arm1176jzf-s -miphoneos-version-min=2.0 -isysroot $(sdk) -idirafter /usr/include -F{sysroot,}/Library/Frameworks +cycc = $(gxx) -arch armv6 -o $@ -miphoneos-version-min=2.0 -isysroot $(sdk) -idirafter /usr/include -F{sysroot,}/Library/Frameworks + +cycc += -marm # @synchronized +cycc += -mcpu=arm1176jzf-s +cycc += -mllvm -arm-reserve-r9 +link += -lgcc_s.1 dirs := Menes CyteKit Cydia SDURLCache @@ -94,19 +93,19 @@ clean: Objects/%.o: %.c $(header) @mkdir -p $(dir $@) @echo "[cycc] $<" - @$(cycc) -c -o $@ -x c $< + @$(cycc) -c -x c $< Objects/%.o: %.m $(header) @mkdir -p $(dir $@) @echo "[cycc] $<" - @$(cycc) -c -o $@ $< $(flags) + @$(cycc) -c $< $(flags) Objects/%.o: %.mm $(header) @mkdir -p $(dir $@) @echo "[cycc] $<" - @$(cycc) -c -o $@ $< $(flags) $(xflags) + @$(cycc) -std=c++11 -c $< $(flags) $(xflags) -Objects/Version.o: version.h +Objects/Version.o: Version.h Images/%.png: %.png @mkdir -p $(dir $@) @@ -118,22 +117,34 @@ sysroot: sysroot.sh @echo 1>&2 @exit 1 -MobileCydia: sysroot $(object) +MobileCydia: sysroot $(object) entitlements.xml @echo "[link] $(object:Objects/%=%)" - @$(cycc) $(filter %.o,$^) $(flags) $(link) $(uikit) + @$(cycc) $(filter %.o,$^) $(flags) $(link) $(libs) $(uikit) -Wl,-sdk_version,8.0 + @mkdir -p bins + @cp -a $@ bins/$@-$(version) @echo "[strp] $@" - @strip -no_uuid $@ + @strip $@ + @echo "[uikt] $@" + @./uikit.sh $@ @echo "[sign] $@" - @ldid -T0 -Slaunch.xml $@ || { rm -f $@ && false; } + @ldid -T0 -Sentitlements.xml $@ || { rm -f $@ && false; } CydiaAppliance: CydiaAppliance.mm - $(cycc) $(filter %.mm,$^) $(flags) -bundle $(link) $(backrow) + $(cycc) $(filter %.mm,$^) $(flags) $(link) -bundle $(libs) $(backrow) + +cfversion: cfversion.mm + $(cycc) $(filter %.mm,$^) $(flags) $(link) -framework CoreFoundation + @ldid -T0 -S $@ + +setnsfpn: setnsfpn.cpp + $(cycc) $(filter %.cpp,$^) $(flags) $(link) + @ldid -T0 -S $@ postinst: postinst.mm Sources.mm Sources.h CyteKit/stringWithUTF8Bytes.mm CyteKit/stringWithUTF8Bytes.h CyteKit/UCPlatform.h - $(cycc) $(filter %.mm,$^) $(flags) -framework CoreFoundation -framework Foundation -framework UIKit -lpcre - @ldid -T0 -S postinst + $(cycc) -std=c++11 $(filter %.mm,$^) $(flags) $(link) -framework CoreFoundation -framework Foundation -framework UIKit -lpcre + @ldid -T0 -S $@ -debs/cydia_$(version)_iphoneos-arm.deb: MobileCydia preinst postinst $(images) $(shell find MobileCydia.app) cydia.control +debs/cydia_$(version)_iphoneos-arm.deb: MobileCydia preinst postinst cfversion setnsfpn $(images) $(shell find MobileCydia.app) cydia.control Library/firmware.sh Library/move.sh Library/startup sudo rm -rf _ mkdir -p _/var/lib/cydia @@ -144,9 +155,11 @@ debs/cydia_$(version)_iphoneos-arm.deb: MobileCydia preinst postinst $(images) $ mkdir -p _/usr/libexec cp -a Library _/usr/libexec/cydia cp -a sysroot/usr/bin/du _/usr/libexec/cydia + cp -a cfversion _/usr/libexec/cydia + cp -a setnsfpn _/usr/libexec/cydia - mkdir -p _/System/Library - cp -a LaunchDaemons _/System/Library/LaunchDaemons + mkdir -p _/Library + cp -a LaunchDaemons _/Library/LaunchDaemons mkdir -p _/Applications cp -a MobileCydia.app _/Applications/Cydia.app