Is there any check to see if a plugin is run under Rosetta 2?

Quick Solution

#ifdef JUCE_INTEL
        if (SystemStats::getCpuModel().containsIgnoreCase ("Apple"))
        {
            runsUnderRosetta = true;
        };
#endif
2 Likes