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
I just tested this on linux, and it works as intended, while debugging a strange issue (that the update RPC button didn't work) I found a bug, in line 275 if (videoname ~= " ") then it is checked against a empty string, but for that it has to be if (videoname ~= "") then.
A Note to to the linux shared library, if you're putting the library in /usr/local/lib you also have to have that in you're ldconfig As far as I know it isn't standard in some distributions to have that in there, and additionally this directory was owned by root (it was present on my machine). So I preferred to put it in ~/.local/lib, since that is user owned, but not default in the ldconfig, to add it, you can either change /etc/ld.so.conf or add a new file into /etc/ld.so.conf.d/<whatever>.conf with the line ~/.local/lib
The text was updated successfully, but these errors were encountered:
I just tested this on linux, and it works as intended, while debugging a strange issue (that the update RPC button didn't work) I found a bug, in line 275
if (videoname ~= " ") then
it is checked against a empty string, but for that it has to beif (videoname ~= "") then
.A Note to to the linux shared library, if you're putting the library in
/usr/local/lib
you also have to have that in you'reldconfig
As far as I know it isn't standard in some distributions to have that in there, and additionally this directory was owned by root (it was present on my machine). So I preferred to put it in~/.local/lib
, since that is user owned, but not default in theldconfig
, to add it, you can either change/etc/ld.so.conf
or add a new file into/etc/ld.so.conf.d/<whatever>.conf
with the line~/.local/lib
The text was updated successfully, but these errors were encountered: