A short while ago, I added:
set(CMAKE_OSX_DEPLOYMENT_TARGET 13.0 CACHE STRING "Minimum operating system version for deployment")
to my top level CMake file.
The code would not compile. So I removed the line and deleted the CMake cache and tried to rebuild.
And for my pains I got this:
c++: error: unsupported option '-mavx' for target 'arm64-apple-darwin24.4.0'
c++: error: unsupported option '-mavx2' for target 'arm64-apple-darwin24.4.0'
c++: error: unsupported option '-mfma' for target 'arm64-apple-darwin24.4.0'
c++: error: unsupported option '-mssse3' for target 'arm64-apple-darwin24.4.0'
This code was all compiled just fine up until this change, but now it just won't do so.
Help!!! David