[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)
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.
MrFariator wrote: ↑Sat Jan 08, 2022 4:01 amOpenAL 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?
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.
Me and my stuff True Neutral Aspirant. Why, yes, i do indeed enjoy sarcastically correcting others when they make the most blatant of spelling mistakes. No bullying or trolling the innocent tho.
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.
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.