Skip to content

update to iOS 9.2 SDK and define sysroot for iOS#480

Merged
dicej merged 2 commits into
ReadyTalk:masterfrom
dicej:ios
May 14, 2016
Merged

update to iOS 9.2 SDK and define sysroot for iOS#480
dicej merged 2 commits into
ReadyTalk:masterfrom
dicej:ios

Conversation

@dicej
Copy link
Copy Markdown
Member

@dicej dicej commented Apr 4, 2016

Previously, we only seemed to define sysroot for MacOS, not iOS, yet
we reference $(sysroot) in both cases. This ensures it is defined in
both cases as well.

Previously, we only seemed to define sysroot for MacOS, not iOS, yet
we reference $(sysroot) in both cases.  This ensures it is defined in
both cases as well.
Comment thread makefile Outdated

ios-version := $(shell \
if test -L $(sdk-dir)/$(target)9.1.sdk; then echo 9.1; \
if test -L $(sdk-dir)/$(target)9.2.sdk; then echo 9.2; \
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is getting slightly out of hand. How about something like this:?

for x in 9.3 9.2 9.1; do if test -d $(sdk-dir)/$(target)$x.sdk -o -L $(sdk-dir)/$(target)$x.sdk; then echo $x; break; fi; done

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good idea. I just pushed an update.

@joshuawarner32
Copy link
Copy Markdown
Collaborator

Looks like travis had a little hickup. Could you force-push a no-op change to re-trigger the build?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants