We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The assumption for dylib files is that they reside in /opt/local/lib. Once symlinked to /usr/local/lib, GtkD runs properly.
object.Exception@../../.dub/packages/gtk-d-master/src/gtkc/Loader.d(123): Library load failed: /opt/local/lib/libgtk-3.0.dylib
object.Exception@../../.dub/packages/gtk-d-master/src/gtkc/Loader.d(123): Library load failed: /opt/local/lib/libglib-2.0.dylib
The text was updated successfully, but these errors were encountered:
Could we do the same thine we do on Linux?
Don't load from a specific path, but assume the path in which the libraries reside are in ld.so.conf (or the OSX equivalent).
Sorry, something went wrong.
The mac man page indicates that dlopen searches in paths specified in the $DYLD_LIBRARY_PATH environment variable.
So that would be a yes to my question.
f6ca2d5
MikeWey
No branches or pull requests
The assumption for dylib files is that they reside in /opt/local/lib. Once symlinked to /usr/local/lib, GtkD runs properly.
object.Exception@../../.dub/packages/gtk-d-master/src/gtkc/Loader.d(123): Library load failed: /opt/local/lib/libgtk-3.0.dylib
object.Exception@../../.dub/packages/gtk-d-master/src/gtkc/Loader.d(123): Library load failed: /opt/local/lib/libglib-2.0.dylib
The text was updated successfully, but these errors were encountered: