I’m working through the tutorials, I’m running AudioPluginHost.jucer,
it compiles and runs, but when I scan for local VST3 plugins, I get a bug in Xcode:
IPluginFactory* JUCE_CALLTYPE getPluginFactory()
{
if (factory == nullptr)
if (auto proc = (GetFactoryProc) getFunction ("GetPluginFactory"))
factory = proc();
// The plugin NEEDS to provide a factory to be able to be called a VST3!
// Most likely you are trying to load a 32-bit VST3 from a 64-bit host
// or vice versa.
jassert (factory != nullptr);
return factory;
}
In the second last line, the jassert(factory != nullptr), the code is breaking with the error Pool(15): EXC_Breakpoint
I’m not sure how to get past this, any help would be greatly appreciated
I’m running Xcode 10.2
