-
Notifications
You must be signed in to change notification settings - Fork 10
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
Support ARC #3
Comments
I think I figured it out. The project that was working properly has a blank Framework Search Paths, but its Base SDK is set to Current OS X. I think having an explicit Framework Search Paths set allows the Xcode ARC stuff to parse the headers in the framework that isn't ARC compatible. I'm a little worried that using ARC with this framework may be a Bad Thing™ in some way that I don't yet understand. |
After creating a new SkankySDK project, use the **Refactor > Convert to Objective-C ARC…** command to convert your project to ARC.
After creating a new SkankySDK project, use the **Refactor > Convert to Objective-C ARC…** command to convert your project to ARC.
After creating a new SkankySDK project, use the **Refactor > Convert to Objective-C ARC…** command to convert your project to ARC.
Using ARC limits your plugin to the 64 bit runtime, and most QC hosts use 32 bit - so thats a problem. |
I'm still a bit of an Xcode n00b, but…
I was somehow able to get one of my projects to use ARC and successfully build while using the SkankySDK. Since then I have not been able to do it again.
Ideally, the QCPatchXcodeTemplate would support ARC out-of-the-box.
I'm happy to do the work, I just don't even know where to begin learning about this stuff. Anyone know where to go to learn up on some of these kinds of Xcode edge cases?
The text was updated successfully, but these errors were encountered: