mirror of
https://github.com/corda/corda.git
synced 2025-01-03 19:54:13 +00:00
Merge pull request #480 from dicej/ios
update to iOS 9.2 SDK and define sysroot for iOS
This commit is contained in:
commit
08982cc9ed
24
makefile
24
makefile
@ -799,27 +799,17 @@ ifeq ($(kernel),darwin)
|
||||
platform-dir = $(developer-dir)/Platforms/$(target).platform
|
||||
sdk-dir = $(platform-dir)/Developer/SDKs
|
||||
|
||||
ios-version := $(shell \
|
||||
if test -L $(sdk-dir)/$(target)9.1.sdk; then echo 9.1; \
|
||||
elif test -L $(sdk-dir)/$(target)9.0.sdk; then echo 9.0; \
|
||||
elif test -d $(sdk-dir)/$(target)8.3.sdk; then echo 8.3; \
|
||||
elif test -d $(sdk-dir)/$(target)8.2.sdk; then echo 8.2; \
|
||||
elif test -d $(sdk-dir)/$(target)8.1.sdk; then echo 8.1; \
|
||||
elif test -d $(sdk-dir)/$(target)8.0.sdk; then echo 8.0; \
|
||||
elif test -d $(sdk-dir)/$(target)7.1.sdk; then echo 7.1; \
|
||||
elif test -d $(sdk-dir)/$(target)7.0.sdk; then echo 7.0; \
|
||||
elif test -d $(sdk-dir)/$(target)6.1.sdk; then echo 6.1; \
|
||||
elif test -d $(sdk-dir)/$(target)6.0.sdk; then echo 6.0; \
|
||||
elif test -d $(sdk-dir)/$(target)5.1.sdk; then echo 5.1; \
|
||||
elif test -d $(sdk-dir)/$(target)5.0.sdk; then echo 5.0; \
|
||||
elif test -d $(sdk-dir)/$(target)4.3.sdk; then echo 4.3; \
|
||||
elif test -d $(sdk-dir)/$(target)4.2.sdk; then echo 4.2; \
|
||||
else echo; fi)
|
||||
ios-version := $(shell for x in 9.3 9.2 9.1 9.0 8.3 8.2 8.1 8.0; \
|
||||
do if test -d $(sdk-dir)/$(target)$$x.sdk \
|
||||
-o -L $(sdk-dir)/$(target)$$x.sdk; \
|
||||
then echo $$x; break; fi; done)
|
||||
|
||||
ifeq ($(ios-version),)
|
||||
x := $(error "couldn't find SDK")
|
||||
x := $(error "couldn't find SDK in $(sdk-dir)")
|
||||
endif
|
||||
|
||||
sysroot = $(sdk-dir)/$(target)$(ios-version).sdk
|
||||
|
||||
ios-bin = $(platform-dir)/Developer/usr/bin
|
||||
|
||||
found-gcc = $(shell if test -f $(ios-bin)/gcc; then echo true; else echo false; fi)
|
||||
|
Loading…
Reference in New Issue
Block a user