With the fix “AU: Fixed a compiler error when building AU hosts” my plugins no longer run.
I get “JUCE Assertion failure in juce_Array.h:271”
coming from the new code here:
for (j = 0; j < supportedChannels.size(); ++j)
if (info.inChannels == channelInfo.getReference (j).inChannels && info.outChannels == channelInfo.getReference (j).outChannels)
break;
The issue is supportedChannels has size 3 for me, but channelInfo has size 0. I am using the isBusesLayoutSupported() method of defining my channel config.