Update mapping between Apple Clang versions and upstream Clang

For Xcode 14.0 and 14.3

Pick-to: 6.6 6.5
Change-Id: Idd533e2d1f7b0feffa618ddf633165ce29043d5e
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
This commit is contained in:
Tor Arne Vestbø 2023-06-06 14:18:30 +02:00
parent bee7d2c610
commit 18f966aed1

View File

@ -120,7 +120,11 @@
// 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__ >= 13160021 // Xcode 13.3
# if __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
# elif __apple_build_version__ >= 13160021 // Xcode 13.3
# define Q_CC_CLANG 1300
# elif __apple_build_version__ >= 13000029 // Xcode 13.0
# define Q_CC_CLANG 1200