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
{{ message }}
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.
Current install name is
/usr/local/lib/sciter-osx-64.dylib
:foo@bar:~/Cloud/SDK/sciter-sdk/bin.osx$ otool -D sciter-osx-64.dylib sciter-osx-64.dylib: /usr/local/lib/sciter-osx-64.dylib
When link with it, at runtime, executable file will try to open
/usr/local/lib/sciter-osx-64.dylib
only , and fails:For now, my workaround is using
install_name_tool
after build to change this path in executable file to use@rpath
:The second command, add
@executable_path
to rpath, is a common step, and is irrelevant to this issueThis works for me, but after a long digging.
So how about we change the default install name to use
@rpath
? IIRC, it is officially recommended.There are also many similar issue/pr in other projects, like:
etc, can be used as a reference.
PS
Same situation for `sciter-js-sdk`, but to avoid duplication, I only open issue in this repo.The text was updated successfully, but these errors were encountered: