-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade project to Xcode 4.6 #85
Comments
Wonderful, looking forward to that !! |
There is now a branch |
Important: For the build to work you probably need to install the command line developer tools (those that are located in |
TODOs for when I finally get a proper Xcode 4.5 system to run:
|
A linker error occurs when building for the device. The reason is because in the Xcode project the target architecture is set to $(ARCHS_STANDARD_32_BIT), which resolves to "armv7 armv7s". The 3rd party software, however, is built with architecture "armv7" only, so when the linker tries to gather objects for the "armv7s" arch, it fails. I made an attempt at including "armv7s" into the 3rd party software build, but did not succeed. I ended up fixing the problem by removing "armv7s" from the ARCHS build setting. The change is in commit c0748a6, which is still on feature branch "feature-view-board-positions" (i.e. not yet in develop). |
|
Comments below refer to Xcode 4.5 because the original goal was to upgrade to Xcode 4.5. In the meantime Xcode 4.6 has come out, and I am going straight for this, so I have updated the title of this issue.
The text was updated successfully, but these errors were encountered: