Page 1 of 1
Love 11.4 ALSOFT
Posted: Fri Jan 07, 2022 9:19 pm
by GVovkiv
it's okay, that appimage of love 11.4 throws that at every launch?:
Code: Select all
[ALSOFT] (WW) Cannot connect to server socket err = No such file or directory
[ALSOFT] (WW) Cannot connect to server request channel
[ALSOFT] (WW) jack server is not running or cannot be started
[ALSOFT] (WW) JackShmReadWritePtr::~JackShmReadWritePtr - Init not done for -1, skipping unlock
[ALSOFT] (WW) JackShmReadWritePtr::~JackShmReadWritePtr - Init not done for -1, skipping unlock
[ALSOFT] (WW) jack_client_open() failed, 0x11
[ALSOFT] (WW) Failed to initialize backend "jack"
[ALSOFT] (EE) Failed to set real-time priority for thread: Operation not permitted (1)
[ALSOFT] (EE) Failed to set real-time priority for thread: Operation not permitted (1)
Re: Love 11.4 ALSOFT
Posted: Fri Jan 07, 2022 9:20 pm
by GVovkiv
It doesn't seems to affects anything, but still, what is that?
Re: Love 11.4 ALSOFT
Posted: Sat Jan 08, 2022 4:01 am
by MrFariator
OpenAL soft is the library löve uses for implementing audio. Seems like it's having difficulties initializing on your machine. Specifically, it looks like it's trying to establish a connection with JACK (in simple terms, a sound server daemon on linux), and failing.
Re: Love 11.4 ALSOFT
Posted: Sat Jan 08, 2022 8:53 am
by GVovkiv
MrFariator wrote: ↑Sat Jan 08, 2022 4:01 am
OpenAL soft is the library löve uses for implementing audio. Seems like it's having difficulties initializing on your machine. Specifically, it looks like it's trying to establish a connection with JACK (in simple terms, a sound server daemon on linux), and failing.
So how i can investigate where exactly problem lies?
Re: Love 11.4 ALSOFT
Posted: Sat Jan 08, 2022 9:24 am
by zorg
If you still have sound, then it's not really an error or anything; löve can't supress the warnings OALS spits into the console, so this is kinda inevitable;
Besides the WW warnings, the last two lines about real-time priority might seem like errors (EE), but that's a thing newer linux versions deny apps by default iirc.
Re: Love 11.4 ALSOFT
Posted: Sat Jan 08, 2022 9:48 am
by GVovkiv
zorg wrote: ↑Sat Jan 08, 2022 9:24 am
If you still have sound, then it's not really an error or anything; löve can't supress the warnings OALS spits into the console, so this is kinda inevitable;
Besides the WW warnings, the last two lines about real-time priority might seem like errors (EE), but that's a thing newer linux versions deny apps by default iirc.
oh, okay then
Re: Love 11.4 ALSOFT
Posted: Sat Jan 08, 2022 10:07 am
by MrFariator
And I suppose for further information, even on Windows OpenAL might occasionally spit out some errors - mostly complaining about closing devices when a löve application exits. But so long you have audio without any obvious problems, it's just the library spitting out some errors of its own, which löve can't really surpress without modifying the source.