Hi folks,
I’m experiencing a very weird error in production and I’ve pretty much exhausted my knowledge as to what could go wrong. For context, this is a sequencer MIDI FX plug-in (distributed as VST3) which is failing to open at all for a user on Windows 10. They’ve been very kind in helping me test some debug builds and gather additional knowledge, but I don’t feel any closer to a solution.
Here’s all the info I’ve gathered so far:
- My plug-in crashes for this user in any DAW. They’ve tried Ableton 12, 11, and Unify. In all of them, attempting to even load my plug-in will crash the DAW. Unify will crash just trying to scan it.
- I gave them a build with
FileLoggers everywhere. I added one into the ctor ofAudioProcessor, theEditor, and every member object for either of them. The user can find no logs on their machine, which indicates that the floggers aren’t even getting set up or running. - I’ve combed through every static variable and piece of data that the
AudioProcessor’s ctor is relying on it, and verified all of them are safe. - I’ve fully torn out entire dependencies and pieces of complex logic that I suspected might be an issue.
As far as I can tell, my plug-in’s own code never even gets a chance to run. It doesn’t seem like my AudioProcessor ever gets initialized, and nothing within the ctor gets executed at all (creating the flogger is the first step, and every other member variable to the AudioProcessor has been given a flogger as well which never executes).
I’m almost not even sure what to ask at this point but anybody have any ideas what the root cause might be? I’m on the latest version of JUCE 8 and this is the only user experiencing anything like this.

