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 running rive package via custom embedder (e.g. Toyota embedder), it fails to load librive_text.so even though it is in the system search path.
The expectation is that librive_text.so is linked to the process. This is true for the Linux GTK embedder, as it links into an executable linking the shared modules. This is not true for custom embedders.
rive-common for Linux case defaults to using
return DynamicLibrary.process();
This only works if librive_text.so is linked to executable at compile time. Otherwise you get this error:
Description
When running rive package via custom embedder (e.g. Toyota embedder), it fails to load librive_text.so even though it is in the system search path.
The expectation is that librive_text.so is linked to the process. This is true for the Linux GTK embedder, as it links into an executable linking the shared modules. This is
not true
for custom embedders.rive-common for Linux case defaults to using
This only works if librive_text.so is linked to executable at compile time. Otherwise you get this error:
Expected behavior
if the shared module is present in the
LD_LIBRARY_PATH
it should load; independent of linking behavior.Device & Versions (please complete the following information)
The text was updated successfully, but these errors were encountered: