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
Thanks for your amzing work on Elixir Desktop, so far it seems really promising 😊
I now litteraly have a native application running on my computer with Elixir and Phoneix LiveView, which I have been dreaming about.
I ran into some problems when trying to build the installer on EndeavourOS.
First one is that gdk-pixbuf-query-loaders, is located in /usr/bin:
Don't know if you intend to support building on all Linix distros.
But if if you do, then I am curious why gdk-pixbuf-query-loaders and gtk-query-immodules-3.0 isn't just called directly? E.g. System.cmd("gdk-pixbuf-query-loaders", []). Wouln't those executalbes normally by in one of the directories listed in PATH?
And for libgio modules. Could it be a problem to there filter by .so extention that I am not aware of?
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for your amzing work on Elixir Desktop, so far it seems really promising 😊
I now litteraly have a native application running on my computer with Elixir and Phoneix LiveView, which I have been dreaming about.
I ran into some problems when trying to build the installer on EndeavourOS.
First one is that
gdk-pixbuf-query-loaders
, is located in/usr/bin
:I solved that by replacing:
with:
Second one is a bit similar where
gtk-query-immodules-3.0
is also located in/usr/bin
:Here I did a similar change, by replacing:
with:
Last one is an error when trying to strip
/priv/gio/modules/.keep
:I solve that by filtering the files in
import_libgio_modules/2
to only include.so
files. So from:to:
How could this be solved?
Don't know if you intend to support building on all Linix distros.
But if if you do, then I am curious why
gdk-pixbuf-query-loaders
andgtk-query-immodules-3.0
isn't just called directly? E.g.System.cmd("gdk-pixbuf-query-loaders", [])
. Wouln't those executalbes normally by in one of the directories listed inPATH
?And for libgio modules. Could it be a problem to there filter by
.so
extention that I am not aware of?The text was updated successfully, but these errors were encountered: