Originally reported by @cbfry


Hmmm it looks like both errors are related to this "too many open files" I/O error. This error sometimes happens on macos if there is some sort of file handle leak, e.g. if files are being repeatedly open for some reason but never closed.
Does the program crash immediately on startup? Or does it run for a little while? If it does run for a little while, the following would help a lot to identify the cause:
- While the program is running, open the mac Activity Monitor application.
- Select the
audio_server process so that it is highlighted.
- Press the small
i info icon near the top left of the screen.
- Switch to the "Open Files and Ports" tab which should show a list of all open files and ports in raw text.
- Copy all of the text in this box and post it here.
If you could follow these steps I can have a look through that text and see if there are any potential culprit files being repeatedly opened.
Originally reported by @cbfry
Hmmm it looks like both errors are related to this "too many open files" I/O error. This error sometimes happens on macos if there is some sort of file handle leak, e.g. if files are being repeatedly open for some reason but never closed.
Does the program crash immediately on startup? Or does it run for a little while? If it does run for a little while, the following would help a lot to identify the cause:
audio_serverprocess so that it is highlighted.iinfo icon near the top left of the screen.If you could follow these steps I can have a look through that text and see if there are any potential culprit files being repeatedly opened.