summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-06-08 22:42:18 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2011-06-08 22:42:18 -0700
commit4cc9e99a32a73858f3b9739c0cf8ec82bb35e93e (patch)
tree31fbd2791655a0e23e3bd0a173744d92602dd0f1 /makefile
parent058813ae78aec1b25c7c44b2a6188b7ae2264107 (diff)
Make compilations with clang succeed.
Diffstat (limited to 'makefile')
-rw-r--r--makefile38
1 files changed, 28 insertions, 10 deletions
diff --git a/makefile b/makefile
index f7933f7..931ec83 100644
--- a/makefile
+++ b/makefile
@@ -1,9 +1,17 @@
-sdks := /Developer/Platforms/iPhoneOS.platform/Developer/SDKs
+dev := /Developer/Platforms/iPhoneOS.platform/Developer
+sdks := $(dev)/SDKs
ioss := $(sort $(patsubst $(sdks)/iPhoneOS%.sdk,%,$(wildcard $(sdks)/iPhoneOS*.sdk)))
-
ios := $(word $(words $(ioss)),$(ioss))
+
+# if you can tolerate clang, set this to blank
gcc := 4.2
+ifeq ($(gcc),)
+gxx := $(dev)/usr/bin/clang++
+else
+gxx := $(dev)/usr/bin/g++-$(gcc)
+endif
+
flags :=
link :=
@@ -21,18 +29,29 @@ endif
sdk := $(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 += -I. -isystem sysroot/usr/include
flags += -fmessage-length=0
flags += -g0 -O2
+flags += -fvisibility=hidden
+
+flags += -Wall
+
+ifeq ($(gcc),)
+flags += -Wno-unknown-warning-option
+flags += -Wno-logical-op-parentheses
+else
flags += -fobjc-exceptions
flags += -fno-guess-branch-probability
-flags += -fvisibility=hidden
+endif
+
+flags += -Wno-deprecated-declarations
xflags :=
xflags += -fobjc-call-cxx-cdtors
xflags += -fvisibility-inlines-hidden
+link += -Lsysroot/usr/lib
+
link += -framework CoreFoundation
link += -framework CoreGraphics
link += -framework Foundation
@@ -59,9 +78,8 @@ 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 = cycc -r4.2 -i$(ios) -o$@
dirs := Menes CyteKit Cydia SDURLCache
@@ -94,17 +112,17 @@ 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) -c $< $(flags) $(xflags)
Objects/Version.o: version.h