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
@bangnoise just checking in. I didn't commit a framework change, but running an optimized build I had to replace Syphon.frameworks @rpath for a @loader_path so Adobe apps could find the Syphon framework properly.
I forget the nuances of the above behavioral change. Should we be defaulting to @loader_path in the framework?
The text was updated successfully, but these errors were encountered:
You need to set "Runpath Search Paths" for this project (and not modify Syphon). The key addition here is @loader_path - depending on the structure of your bundle, it might look like:
This would be normal practice for any loaded code (library or plugin) using third-party frameworks - you need to tell the linker to look relative to the loaded code as well as the executable.
@bangnoise just checking in. I didn't commit a framework change, but running an optimized build I had to replace Syphon.frameworks
@rpath
for a@loader_path
so Adobe apps could find the Syphon framework properly.I forget the nuances of the above behavioral change. Should we be defaulting to
@loader_path
in the framework?The text was updated successfully, but these errors were encountered: