]> git.saurik.com Git - uikittools.git/commitdiff
Avoid default cycc behavior of compiling to arm64.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 12 Oct 2015 09:15:02 +0000 (02:15 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 12 Oct 2015 09:15:02 +0000 (02:15 -0700)
makefile

index 77f014c42037405408043941f888019527ee8134..0f169368f12bfaf83e9ebfa6d56f882a857c3e87 100644 (file)
--- a/makefile
+++ b/makefile
@@ -12,6 +12,8 @@ private := -F/System/Library/PrivateFrameworks
 flags := -Os -Werror
 flags += -framework CoreFoundation
 flags += -framework Foundation
+flags += -miphoneos-version-min=2.0
+flags += -arch armv6
 
 gssc := -lobjc
 iomfsetgamma := -I. $(private) -framework IOKit -framework IOMobileFramebuffer
@@ -25,11 +27,11 @@ uicache: csstore.cpp
 extrainst_: csstore.cpp
 
 %: %.mm
-       cycc -i2.0 -o$@ -- $^ $(flags) $($@)
+       cycc -- -o $@ $^ $(flags) $($@)
        ldid -S$(wildcard $@.xml) $@
 
 %: %.c
-       cycc -i2.0 -o$@ -- -x c $^ $(flags) $($@)
+       cycc -- -o $@ -x c $^ $(flags) $($@)
        ldid -S$(wildcard $@.xml) $@
 
 package: all extrainst_