I tried building the AudioPluginHost today using JUCE 8.0.11 today and ran into a build error in juce_CoreAudio_mac.cpp like:
error: no type named 'value_type' in 'std::iterator_traits<juce::CoreAudioClasses::CoreAudioInternal::StrideIterator<const float *>>'
...
juce/modules/juce_audio_devices/native/juce_CoreAudio_mac.cpp:1125:18: note: in instantiation of function template specialization 'std::copy<juce::CoreAudioClasses::CoreAudioInternal::StrideIterator<const float *>, float *>' requested here
std::copy (src, src + (ptrdiff_t) numSamplesInChunk, inStream->tempBuffers[(size_t) index]);
I could easyily silence that error by adding a specialization for std::iterator_traits to the end of the file like
FWIW I’ve seen people complain about this error occasionally on the TAP discord. I always assumed it was an issue with trying to build JUCE 8 on an older version of MacOS or Xcode.