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
When I build and run in Xcode, it can't find the framework. And it's not added to the built app.
The error is:
dyld[30429]: Library not loaded: Renaissance.framework/Renaissance
Referenced from: /Users/srbaker/Library/Developer/Xcode/DerivedData/Raphael-fgxqqojptmejsqhakvbdzhcssxdi/Build/Products/Debug/Raphael.app/Contents/MacOS/Raphael
Reason: tried: '/Users/srbaker/Library/Developer/Xcode/DerivedData/Raphael-fgxqqojptmejsqhakvbdzhcssxdi/Build/Products/Debug/Renaissance.framework/Renaissance' (no such file), 'Renaissance.framework/Renaissance' (no such file), '/Library/Frameworks/Renaissance.framework/Renaissance' (no such file), '/System/Library/Frameworks/Renaissance.framework/Renaissance' (no such file)
I suspect this is a complete newbie error on my part. Thanks!
The text was updated successfully, but these errors were encountered:
From the looks of it, you're building and linking your app successfully. Is the framework copied over to the Frameworks folder in the app bundle?
If so, my guess is the dylib loader is missing some rpath to know where to load Renaissance.framework/Renaissance from. However, I'm not a big expert on rpaths on macOS. I think you need to add @executable_path/../Frameworks to your LD_RUNPATH_SEARCH_PATHS build variable.
Hi,
I am new to xcake.
(The Repo is over here: https://github.com/srbaker/Raphael)
I have the following Cakefile, and it references a framework which is built already that I just want to add to my project:
When I build and run in Xcode, it can't find the framework. And it's not added to the built app.
The error is:
I suspect this is a complete newbie error on my part. Thanks!
The text was updated successfully, but these errors were encountered: