blob: 7db1a971a789c383cd7a00dd012741e3cb366e7a [file] [log] [blame]
set(_compiler_id_pp_test "defined(__SUNPRO_C)")
set(_compiler_id_version_compute "
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define @PREFIX@COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
# define @PREFIX@COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define @PREFIX@COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
# define @PREFIX@COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
# define @PREFIX@COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# endif")