Disable checking for debugger on assertion

Hello,

on Linux when an assertion is hit and the assertion macro checks for a debugger with ptrace() the whole program hangs up horribly. Most of the time some threads won't quit normally and from time to time the whole program won't quit.

Is it possible to include a preprocessor switch to disable the breaking into debugger completly?

Thank you very much.

They'll be disabled if you turn off JUCE_DEBUG, is that not a solution that would work for you?

It could be that your newest commit fixes the issue. I'll do some testing and may report if there are some issues left

Yes this was fixed on the newest commit. Thanks for reporting this!