035a658f4f
Create an `ARMCC` compiler id corresponding to compilers identified and versioned by the `__ARMCC_VERSION` predefined macro. See documentation for the compilers at http://infocenter.arm.com/help/topic/com.arm.doc.set.swdev/index.html
17 lines
708 B
CMake
17 lines
708 B
CMake
# ARMCC Toolchain
|
|
set(_compiler_id_pp_test "defined(__ARMCC_VERSION)")
|
|
|
|
set(_compiler_id_version_compute "
|
|
#if __ARMCC_VERSION >= 1000000
|
|
/* __ARMCC_VERSION = VRRPPPP */
|
|
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/1000000)
|
|
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 100)
|
|
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
|
|
#else
|
|
/* __ARMCC_VERSION = VRPPPP */
|
|
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/100000)
|
|
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 10)
|
|
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
|
|
#endif
|
|
")
|