LWJGL Forum

Programming => OpenAL => Topic started by: bobjob on September 24, 2016, 22:42:42

Title: OpenAL console output with 3.0.1
Post by: bobjob on September 24, 2016, 22:42:42
I just got 3.0.1 working.

Everything works fine, but I am getting an OpenAL error line that I didnt get previously.

when I call: device = ALC10.alcOpenDevice((ByteBuffer)null);
the console outputs in 'red'
QuoteAL lib: (EE) GetProcPath: Failed to link /proc/self/file: No such file or directory

It does not seem to effect anything, as sound still works, but I'm wondering if anyone has any insight into this error.
Title: Re: OpenAL console output with 3.0.1
Post by: spasi on September 25, 2016, 08:26:44
Reply from OpenAL Soft's developer:

QuoteThat means your system doesn't have either /proc/self/exe or /proc/self/file, which is used to find the binary's directory to look for an app-specific config file (mostly just for self-contained apps that you may want to have custom settings for). It's harmless as long as you don't need it automatically picking up app-specific configs I should probably downgrade that to a warning, though.
Title: Re: OpenAL console output with 3.0.1
Post by: bobjob on September 25, 2016, 22:07:16
Thanx spasi