diff --git a/src/corelib/global/qcompilerdetection.h b/src/corelib/global/qcompilerdetection.h index 3d85f711ea0..3aab6ec30b0 100644 --- a/src/corelib/global/qcompilerdetection.h +++ b/src/corelib/global/qcompilerdetection.h @@ -124,7 +124,13 @@ // define to verify the Clang version we hard-code the versions // based on the best available info we have about the actual // version: http://en.wikipedia.org/wiki/Xcode#Toolchain_Versions -# if __apple_build_version__ >= 14030022 // Xcode 14.3 +# if __apple_build_version__ >= 17000013 // Xcode 16.3 +# define Q_CC_CLANG 1914 +# elif __apple_build_version__ >= 16000026 // Xcode 16.0 +# define Q_CC_CLANG 1706 +# elif __apple_build_version__ >= 15000040 // Xcode 15.0 +# define Q_CC_CLANG 1600 +# elif __apple_build_version__ >= 14030022 // Xcode 14.3 # define Q_CC_CLANG 1500 # elif __apple_build_version__ >= 14000029 // Xcode 14.0 # define Q_CC_CLANG 1400