You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For my Mac app, I have been using a lightly updated fork of your library and have had no problems with it. Now I’ve unmothballed my project and updated it to Xcode 7.2 and the OS X 10.11 SDK.
YACYAML still builds just fine for debugging, but archiving the product (using Release config) fails with the above error message.
I’ve attached a minimal Xcode project where I included YACYAML as described in the Readme. It show the same symptoms: Build + Run works as expected, but Archive fails. TestApp.zip
As an aside, I could get everything to build by “un-framework-ifying” all the imports…
AppDelegate.h:
#import <YACYAML/YACYAML.h> → #import "YACYAML.h"
YACYAML.h:
#import <YACYAML/YACYAMLKeyedArchiver.h> → #import "Archiving/YACYAMLKeyedArchiver.h"
etc.
… and hard-coding the path into my project’s Header Search Paths:
For my Mac app, I have been using a lightly updated fork of your library and have had no problems with it. Now I’ve unmothballed my project and updated it to Xcode 7.2 and the OS X 10.11 SDK.
YACYAML still builds just fine for debugging, but archiving the product (using Release config) fails with the above error message.
I’ve attached a minimal Xcode project where I included YACYAML as described in the Readme. It show the same symptoms: Build + Run works as expected, but Archive fails. TestApp.zip
As an aside, I could get everything to build by “un-framework-ifying” all the imports…
AppDelegate.h:
YACYAML.h:
… and hard-coding the path into my project’s Header Search Paths:
… but this is hardly a solution.
The text was updated successfully, but these errors were encountered: