Commit ca06fcb fail to export plugin on Mac
-
-
@ulrik tried to export FX plugin, both au and vst3 fails with the same error message
-
Hise Develop branch
MacOs 15.2, --> Xcode 16.2 <--
http://musikboden.seThat's the reason. Downgrade Xcode for now.
-
@Christoph-Hart said in Commit ca06fcb fail to export plugin on Mac:
Hise Develop branch
MacOs 15.2, --> Xcode 16.2 <--
http://musikboden.seThat's the reason. Downgrade Xcode for now.
I have used Xcode version 16.2 a couple of weeks now and successfully compiled all kind of plugins until I used the latest Hise Develop commit, so it's only temporary fault?
I switched from commit -
@Christoph-Hart said in Commit ca06fcb fail to export plugin on Mac:
Hise Develop branch
MacOs 15.2, --> Xcode 16.2 <--
http://musikboden.seThat's the reason. Downgrade Xcode for now.
Ok, downgraded to 16.1, same errors.
Do you know which version will work? -
@Christoph-Hart Ok, I re inserted what you removed in the "remove Sonoma warning"
#if JUCE_MAC auto macOSVersion = SystemStats::getOperatingSystemType(); // deactivate copy step on Sonoma (or later) to avoid the cycle dependencies error... if(macOSVersion >= SystemStats::MacOS_14) { PresetHandler::showMessageWindow("Copystep diabled", "macOS Sonoma (or later) will cause a compile error if the copy step is enabled, so you have to copy the plugin files into the plugin folders manually after compilation"); copyPlugin = false; } #endif
Compiled Hise again and now I'm able to export plugins again with Xcode 6.2
Was it a bad thing to do? It seems to work nicely.
And I have gotten use to the "copyPlugin = false" behavior :) -
@ulrik oops, I was too ambitious here. I wanted to erase the warning message, not the flag. Should be fixed now.