Skip to content
Snippets Groups Projects
Commit a881ae61 authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'armclang-update-version-computation' into release-3.27


65fac2fa ARMClang: Fix computation of compiler semantic version patch level

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !8636
parents 59ed1930 65fac2fa
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ set(_compiler_id_pp_test "defined(__clang__) && defined(__ARMCOMPILER_VERSION)")
set(_compiler_id_version_compute "
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCOMPILER_VERSION/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCOMPILER_VERSION/10000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCOMPILER_VERSION % 10000)")
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCOMPILER_VERSION/100 % 100)")
string(APPEND _compiler_id_version_compute "
# define @PREFIX@COMPILER_VERSION_INTERNAL @MACRO_DEC@(__ARMCOMPILER_VERSION)")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment